Changeset 119 for Include/crt.sbp
- Timestamp:
- Feb 23, 2007, 11:00:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/crt.sbp
r86 r119 4 4 #define _INC_CRT 5 5 6 Declare Function _beginthread cdecl Lib "msvcrt" (start_address As VoidPtr, stack_size As DWord, arglist As VoidPtr) As HANDLE 7 Declare Function _beginthreadex cdecl Lib "msvcrt" ( 6 #ifndef _DEFINE_CRTDLL_NAME 7 Const _CrtDllName = "msvcrt" 8 #endif 9 10 Declare Function _beginthread cdecl Lib _CrtDllName (start_address As VoidPtr, stack_size As DWord, arglist As VoidPtr) As HANDLE 11 Declare Function _beginthreadex cdecl Lib _CrtDllName ( 8 12 security As *SECURITY_ATTRIBUTES, 9 13 stack_size As DWord, … … 12 16 initflag As DWord, 13 17 ByRef thrdaddr As DWord) As HANDLE 14 Declare Sub _endthread cdecl Lib "msvcrt"()15 Declare Sub _endthreadex cdecl Lib "msvcrt"(retval As DWord)18 Declare Sub _endthread cdecl Lib _CrtDllName () 19 Declare Sub _endthreadex cdecl Lib _CrtDllName (retval As DWord) 16 20 17 Declare Function strstr cdecl Lib "msvcrt"(s1 As LPSTR, s2 As LPSTR) As LPSTR18 Declare Function memmove cdecl Lib "msvcrt"(dest As VoidPtr, src As VoidPtr, count As SIZE_T) As VoidPtr19 Declare Function _mbsstr cdecl Lib "msvcrt"(s1 As LPSTR, s2 As LPSTR) As LPSTR21 Declare Function strstr cdecl Lib _CrtDllName (s1 As LPSTR, s2 As LPSTR) As LPSTR 22 Declare Function memmove cdecl Lib _CrtDllName (dest As VoidPtr, src As VoidPtr, count As SIZE_T) As VoidPtr 23 Declare Function _mbsstr cdecl Lib _CrtDllName (s1 As LPSTR, s2 As LPSTR) As LPSTR 20 24 21 Declare Function memcmp CDecl Lib "msvcrt"(buf1 As VoidPtr, buf2 As VoidPtr, c As SIZE_T) As Long22 Declare Function memicmp CDecl Lib "msvcrt"Alias "_memicmp" (buf1 As VoidPtr, buf2 As VoidPtr, c As SIZE_T) As Long25 Declare Function memcmp CDecl Lib _CrtDllName (buf1 As VoidPtr, buf2 As VoidPtr, c As SIZE_T) As Long 26 Declare Function memicmp CDecl Lib _CrtDllName Alias "_memicmp" (buf1 As VoidPtr, buf2 As VoidPtr, c As SIZE_T) As Long 23 27 24 28 TypeDef va_list = VoidPtr 25 29 26 Declare Function sprintf CDecl Lib "msvcrt" (buffer As PSTR, format As PCSTR, ...) As Long 27 Declare Function _snprintf CDecl Lib "msvcrt" (buffer As PSTR, count As SIZE_T, format As PCSTR, ...) As Long 28 Declare Function _scprintf CDecl Lib "msvcrt" (format As PCSTR, ...) As Long 29 Declare Function vsprintf CDecl Lib "msvcrt" (buffer As PSTR, format As PCSTR, argptr As va_list) As Long 30 Declare Function _vsnprintf CDecl Lib "msvcrt" (buffer As PSTR, count As SIZE_T, format As PCSTR, argptr As va_list) As Long 31 Declare Function _vscprintf CDecl Lib "msvcrt" (format As PCSTR, argptr As va_list) As Long 30 Declare Function sprintf CDecl Lib _CrtDllName (buffer As PSTR, format As PCSTR, ...) As Long 31 Declare Function _snprintf CDecl Lib _CrtDllName (buffer As PSTR, count As SIZE_T, format As PCSTR, ...) As Long 32 Declare Function _scprintf CDecl Lib _CrtDllName (format As PCSTR, ...) As Long 33 Declare Function vsprintf CDecl Lib _CrtDllName (buffer As PSTR, format As PCSTR, argptr As va_list) As Long 34 Declare Function _vsnprintf CDecl Lib _CrtDllName (buffer As PSTR, count As SIZE_T, format As PCSTR, argptr As va_list) As Long 35 Declare Function _vscprintf CDecl Lib _CrtDllName (format As PCSTR, argptr As va_list) As Long 36 37 Declare Function swprintf CDecl Lib _CrtDllName (buffer As PWSTR, format As PCWSTR, ...) As Long 38 Declare Function _snwprintf CDecl Lib _CrtDllName (buffer As PWSTR, count As SIZE_T, format As PCWSTR, ...) As Long 39 Declare Function _scwprintf CDecl Lib _CrtDllName (format As PCWSTR, ...) As Long 40 Declare Function vswprintf CDecl Lib _CrtDllName (buffer As PWSTR, format As PCWSTR, argptr As va_list) As Long 41 Declare Function _vsnwprintf CDecl Lib _CrtDllName (buffer As PWSTR, count As SIZE_T, format As PCWSTR, argptr As va_list) As Long 42 Declare Function _vscwprintf CDecl Lib _CrtDllName (format As PCWSTR, argptr As va_list) As Long 43 #ifdef UNICODE 44 Declare Function _stprintf CDecl Lib _CrtDllName Alias "swprintf" (buffer As PWSTR, format As PCWSTR, ...) As Long 45 Declare Function _sntprintf CDecl Lib _CrtDllName Alias "_snwprintf" (buffer As PWSTR, count As SIZE_T, format As PCWSTR, ...) As Long 46 Declare Function _sctprintf CDecl Lib _CrtDllName Alias "_scwprintf" (format As PCWSTR, ...) As Long 47 Declare Function _vstprintf CDecl Lib _CrtDllName Alias "vswprintf" (buffer As PWSTR, format As PCWSTR, argptr As va_list) As Long 48 Declare Function _vsntprintf CDecl Lib _CrtDllName Alias "_vsnwprintf" (buffer As PWSTR, count As SIZE_T, format As PCWSTR, argptr As va_list) As Long 49 Declare Function _vsctprintf CDecl Lib _CrtDllName Alias "_vscwprintf" (format As PCWSTR, argptr As va_list) As Long 50 #else 51 Declare Function _stprintf CDecl Lib _CrtDllName Alias "sprintf" (buffer As PSTR, format As PCSTR, ...) As Long 52 Declare Function _sntprintf CDecl Lib _CrtDllName Alias "_snprintf" (buffer As PSTR, count As SIZE_T, format As PCSTR, ...) As Long 53 Declare Function _sctprintf CDecl Lib _CrtDllName Alias "_scprintf" (format As PCSTR, ...) As Long 54 Declare Function _vstprintf CDecl Lib _CrtDllName Alias "vsprintf" (buffer As PSTR, format As PCSTR, argptr As va_list) As Long 55 Declare Function _vsntprintf CDecl Lib _CrtDllName Alias "_vsnprintf" (buffer As PSTR, count As SIZE_T, format As PCSTR, argptr As va_list) As Long 56 Declare Function _vsctprintf CDecl Lib _CrtDllName Alias "_vscprintf" (format As PCSTR, argptr As va_list) As Long 57 #endif 32 58 33 59 #endif '_INC_CRT
Note:
See TracChangeset
for help on using the changeset viewer.