Changeset 137 for Include/api_system.sbp
- Timestamp:
- Mar 7, 2007, 5:36:31 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/api_system.sbp
r125 r137 3 3 #ifndef _INC_SYSTEM 4 4 #define _INC_SYSTEM 5 6 #ifdef UNICODE 7 Const _FuncName_lstrcpy = "lstrcpyW" 8 #else 9 Const _FuncName_lstrcpy = "lstrcpyA" 10 #endif 5 11 6 12 … … 546 552 Declare Function FreeLibrary Lib "kernel32" (hLibModule As HINSTANCE) As BOOL 547 553 Declare Sub FreeLibraryAndExitThread Lib "kernel32" (hModule As HANDLE, dwExitCode As DWord) 548 Declare Function GetCommandLine Lib "kernel32" Alias "GetCommandLineA" () As BytePtr 554 Declare Function GetCommandLineA Lib "kernel32" () As PCSTR 555 Declare Function GetCommandLineW Lib "kernel32" () As PCWSTR 556 #ifdef UNICODE 557 Declare Function GetCommandLine Lib "kernel32" Alias "GetCommandLineW" () As PCWSTR 558 #else 559 Declare Function GetCommandLine Lib "kernel32" Alias "GetCommandLineA" () As PCSTR 560 #endif 549 561 Declare Function GetCompressedFileSize Lib "kernel32" Alias "GetCompressedFileSizeA" (lpFileName As BytePtr, ByRef lpFileSizeHigh As DWord) As DWord 550 562 … … 782 794 Declare Function lstrcmp Lib "kernel32" Alias "lstrcmpA" (pString1 As PCSTR, pString2 As PCSTR) As Long 783 795 Declare Function lstrcmpi Lib "kernel32" Alias "lstrcmpiA" (pString1 As PCSTR, pString2 As PCSTR) As Long 784 Declare Function lstrcpy Lib "kernel32" Alias "lstrcpyA" (pString1 As PSTR, pString2 As PCSTR) As PSTR796 Declare Function lstrcpy Lib "kernel32" Alias _FuncName_lstrcpy (pString1 As PTSTR, pString2 As PCTSTR) As PSTR 785 797 Declare Function lstrlenA Lib "kernel32" (pString As PCSTR) As Long 786 798 Declare Function lstrlenW Lib "kernel32" (pString As PCWSTR) As Long 787 799 #ifdef UNICODE 788 Declare Function lstrlen Lib "kernel32" Alias "lstrlenW" ( lpString As PCTSTR) As Long800 Declare Function lstrlen Lib "kernel32" Alias "lstrlenW" (pString As PCTSTR) As Long 789 801 #else 790 Declare Function lstrlen Lib "kernel32" Alias "lstrlenA" ( lpString As PCTSTR) As Long802 Declare Function lstrlen Lib "kernel32" Alias "lstrlenA" (pString As PCTSTR) As Long 791 803 #endif 792 804 Declare Sub memcpy Lib "kernel32" Alias "RtlMoveMemory" (pDest As VoidPtr, pSrc As VoidPtr, length As SIZE_T)
Note:
See TracChangeset
for help on using the changeset viewer.