OSDN Git Service

スクリプトファイルの属性を変更
[unagi/old-svn-converted.git] / client / trunk / type.h
1 #ifndef _TYPE_H_
2 #define _TYPE_H_
3 #include <stdint.h>
4 #ifndef __cplusplus 
5   #include <stdbool.h>
6 #endif
7
8 enum{
9         OK = 0, NG
10 };
11 #ifdef _UNICODE
12   #include <wchar.h>
13   typedef wchar_t wgChar;
14   #define wgT(x) L##x
15 #else
16   typedef char wgChar;
17   #define wgT(x) x
18 #endif
19 #endif