Ignore:
Timestamp:
Mar 7, 2007, 5:36:31 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

#55#73#75とりあえず完了

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/function.sbp

    r133 r137  
    11171117Function _System_WideCharToMultiByte(ws As PCWSTR, size As Long, flag As DWord) As PSTR
    11181118    Dim sizeMBS = WideCharToMultiByte(CP_THREAD_ACP, flag, s, size, 0, 0, 0, 0)
    1119     Dim mbs = malloc(sizeMBS) As PSTR
     1119    Dim mbs = _System_malloc(sizeMBS) As PSTR
    11201120    WideCharToMultiByte(CP_THREAD_ACP, flag, s, size, mbs, sizeMBS, 0, 0)
    11211121    Return mbs
     
    11321132Function _System_MultiByteToWideChar(s As PCSTR, size As Long, flag As DWord) As PWSTR
    11331133    Dim sizeMBS = MultiByteToWideChar(CP_THREAD_ACP, flag, s, size, 0, 0)
    1134     Dim mbs = malloc(SizeOf (WCHAR) * sizeMBS) As PWSTR
     1134    Dim mbs = _System_malloc(SizeOf (WCHAR) * sizeMBS) As PWSTR
    11351135    MultiByteToWideChar(CP_THREAD_ACP, flag, s, size, mbs, sizeMBS)
    11361136    Return mbs
Note: See TracChangeset for help on using the changeset viewer.