Changeset 167 for Include/system/string.sbp
- Timestamp:
- Mar 13, 2007, 11:58:58 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/system/string.sbp
r149 r167 5 5 #define _INC_BASIC_STRING 6 6 7 Function StrPtr(buf As * Char) As *Char7 Function StrPtr(buf As *StrChar) As *StrChar 8 8 StrPtr = buf 9 9 End Function … … 15 15 End Function 16 16 17 Function MakeStr(pBuf As PSTR) As String 18 Dim temp As String(pBuf) 19 Return temp 20 End Function 21 22 Function MakeStr(pBuf As PWSTR) As String 23 Dim temp As String(pBuf) 24 Return temp 17 Function MakeStr(psz As PSTR) As String 18 Return New String(psz) 19 End Function 20 21 Function MakeStr(psz As PWSTR) As String 22 Return New String(psz) 25 23 End Function 26 24
Note:
See TracChangeset
for help on using the changeset viewer.