Changeset 179 for Include/basic.sbp
- Timestamp:
- Mar 25, 2007, 6:20:49 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic.sbp
r170 r179 38 38 TypeDef Int8 = SByte 39 39 40 ' Boolean型の定数 40 TypeDef BOOL = Long 41 42 ' Boolena型の定数 41 43 Const True = 1 As Boolean 42 44 Const False = 0 As Boolean 43 45 44 ' BOOL型の定数(Booleanへの移行を推奨) 45 Const _System_TRUE = -1 46 Const _System_FALSE = 0 46 ' 文字型の定義 47 TypeDef WCHAR = Word 48 #ifdef UNICODE 49 TypeDef Char = WCHAR 50 #else 51 TypeDef Char = SByte 52 #endif 47 53 48 54 ' 文字型 … … 94 100 GetChar = p[0] 95 101 End Function 102 96 103 97 104 '--------------------------
Note:
See TracChangeset
for help on using the changeset viewer.