Changeset 400 for trunk/Include/basic.sbp
- Timestamp:
- Jan 22, 2008, 9:19:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/basic.sbp
r304 r400 5 5 ' Unicodeが不安定な間の暫定対応 6 6 #define __STRING_IS_NOT_ALWAYS_UNICODE 7 8 7 9 8 #ifndef _INC_BASIC … … 107 106 End Function 108 107 109 Sub SetChar(p As * Char, c As Char)108 Sub SetChar(p As *WCHAR, c As WCHAR) 110 109 p[0] = c 111 110 End Sub 112 111 113 Function GetChar(p As *Char) As Char 112 Function GetChar(p As *WCHAR) As WCHAR 113 GetChar = p[0] 114 End Function 115 116 Sub SetChar(p As *CHAR, c As CHAR) 117 p[0] = c 118 End Sub 119 120 Function GetChar(p As *CHAR) As CHAR 114 121 GetChar = p[0] 115 122 End Function
Note:
See TracChangeset
for help on using the changeset viewer.