Changeset 167 for Include/system


Ignore:
Timestamp:
Mar 13, 2007, 11:58:58 AM (17 years ago)
Author:
イグトランス (egtra)
Message:

String関連の変更とHex$の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/system/string.sbp

    r149 r167  
    55#define _INC_BASIC_STRING
    66
    7 Function StrPtr(buf As *Char) As *Char
     7Function StrPtr(buf As *StrChar) As *StrChar
    88    StrPtr = buf
    99End Function
     
    1515End Function
    1616
    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
     17Function MakeStr(psz As PSTR) As String
     18    Return New String(psz)
     19End Function
     20
     21Function MakeStr(psz As PWSTR) As String
     22    Return New String(psz)
    2523End Function
    2624
Note: See TracChangeset for help on using the changeset viewer.