Changeset 21900 for branches/gcc-kmk/src
- Timestamp:
- Dec 15, 2011, 6:07:42 PM (14 years ago)
- Location:
- branches/gcc-kmk/src
- Files:
-
- 6 added
- 24 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/Makefile.kmk
r21899 r21900 75 75 include $(PATH_SUB_CURRENT)/uxtheme/Makefile.kmk 76 76 include $(PATH_SUB_CURRENT)/vdmdbg/Makefile.kmk 77 include $(PATH_SUB_CURRENT)/wing32/Makefile.kmk 78 include $(PATH_SUB_CURRENT)/wininet/Makefile.kmk 79 include $(PATH_SUB_CURRENT)/wintrust/Makefile.kmk 80 include $(PATH_SUB_CURRENT)/wnaspi32/Makefile.kmk 81 include $(PATH_SUB_CURRENT)/wnetap32/Makefile.kmk 82 include $(PATH_SUB_CURRENT)/wow32/Makefile.kmk 77 83 78 84 include $(FILE_KBUILD_SUB_FOOTER) -
branches/gcc-kmk/src/wing32/initterm.cpp
r6640 r21900 1 1 /* $Id: initterm.cpp,v 1.6 2001-09-05 10:32:33 bird Exp $ 2 2 * 3 * DLL entry point3 * WING32 DLL entry point 4 4 * 5 5 * Copyright 1998 Sander van Leeuwen 6 6 * Copyright 1998 Peter Fitzsimmons 7 7 * 8 *9 8 * Project Odin Software License can be found in LICENSE.TXT 10 *11 9 */ 12 10 13 /*-------------------------------------------------------------*/14 /* INITERM.C -- Source for a custom dynamic link library */15 /* initialization and termination (_DLL_InitTerm) */16 /* function. */17 /* */18 /* When called to perform initialization, this sample function */19 /* gets storage for an array of integers, and initializes its */20 /* elements with random integers. At termination time, it */21 /* frees the array. Substitute your own special processing. */22 /*-------------------------------------------------------------*/23 24 25 /* Include files */26 11 #define INCL_DOSMODULEMGR 27 12 #define INCL_DOSPROCESS … … 38 23 #include "wing32impl.h" 39 24 40 extern "C" { 41 //Win32 resource table (produced by wrc) 42 extern DWORD _Resource_PEResTab; 43 } 25 // Win32 resource table (produced by wrc) 26 extern DWORD wing32_PEResTab; 27 44 28 static HMODULE dllHandle = 0; 45 29 46 //******************************************************************************47 //******************************************************************************48 30 BOOL WINAPI LibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad) 49 31 { 50 switch (fdwReason)51 {52 case DLL_PROCESS_ATTACH:32 switch (fdwReason) 33 { 34 case DLL_PROCESS_ATTACH: 53 35 if(!InitWing32()) 54 36 return FALSE; 55 37 56 return TRUE;38 return TRUE; 57 39 58 case DLL_THREAD_ATTACH:59 case DLL_THREAD_DETACH:60 return TRUE;40 case DLL_THREAD_ATTACH: 41 case DLL_THREAD_DETACH: 42 return TRUE; 61 43 62 case DLL_PROCESS_DETACH: 63 ctordtorTerm(); 64 return TRUE; 65 } 66 return FALSE; 44 case DLL_PROCESS_DETACH: 45 #ifdef __IBMC__ 46 ctordtorTerm(); 47 #endif 48 return TRUE; 49 } 50 return FALSE; 67 51 } 68 /****************************************************************************/ 69 /* _DLL_InitTerm is the function that gets called by the operating system */ 70 /* loader when it loads and frees this DLL for each process that accesses */ 71 /* this DLL. However, it only gets called the first time the DLL is loaded */ 72 /* and the last time it is freed for a particular process. The system */ 73 /* linkage convention MUST be used because the operating system loader is */ 74 /* calling this function. */ 75 /****************************************************************************/ 76 unsigned long SYSTEM _DLL_InitTerm(unsigned long hModule, unsigned long 77 ulFlag) 52 53 ULONG SYSTEM DLL_InitWing32(ULONG hModule) 78 54 { 79 size_t i; 80 APIRET rc; 55 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ 81 56 82 /*-------------------------------------------------------------------------*/ 83 /* If ulFlag is zero then the DLL is being loaded so initialization should */ 84 /* be performed. If ulFlag is 1 then the DLL is being freed so */ 85 /* termination should be performed. */ 86 /*-------------------------------------------------------------------------*/ 57 dllHandle = RegisterLxDll(hModule, LibMain, (PVOID)&wing32_PEResTab); 58 if (dllHandle == 0) 59 return -1; 87 60 88 switch (ulFlag) 89 { 90 case 0 : 91 { 92 ctordtorInit(); 61 return 0; 62 } 93 63 94 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ 64 void SYSTEM DLL_TermWing32(ULONG hModule) 65 { 66 if (dllHandle) 67 UnregisterLxDll(dllHandle); 68 } 95 69 96 dllHandle = RegisterLxDll(hModule, LibMain, (PVOID)&_Resource_PEResTab); 97 if(dllHandle == 0) 98 return 0UL; 70 ULONG SYSTEM DLL_Init(ULONG hModule) 71 { 72 if (DLL_InitDefault(hModule) == -1) 73 return -1; 74 return DLL_InitWing32(hModule); 75 } 99 76 100 break; 101 } 102 case 1 : 103 if(dllHandle) { 104 UnregisterLxDll(dllHandle); 105 } 106 break; 107 default : 108 return 0UL; 109 } 110 111 /***********************************************************/ 112 /* A non-zero value must be returned to indicate success. */ 113 /***********************************************************/ 114 return 1UL; 77 void SYSTEM DLL_Term(ULONG hModule) 78 { 79 DLL_TermWing32(hModule); 80 DLL_TermDefault(hModule); 115 81 } -
branches/gcc-kmk/src/wing32/wing32.cpp
r3925 r21900 444 444 #pragma pack(2) 445 445 446 st ruct446 static struct 447 447 { 448 448 WORD palVersion; … … 458 458 DWORD dwCapsRaster; 459 459 460 st ruct {460 static struct { 461 461 BITMAPINFOHEADER bmiHeader; 462 462 RGBQUAD bmiColors[256]; -
branches/gcc-kmk/src/wing32/wing32.def
r4809 r21900 4 4 CODE LOADONCALL 5 5 EXPORTS 6 WinGBitBlt = _WinGBitBlt@32@17 WinGCreateBitmap = _WinGCreateBitmap@12@28 WinGCreateDC = _WinGCreateDC@0@39 WinGCreateHalftoneBrush = _WinGCreateHalftoneBrush@12@410 WinGCreateHalftonePalette = _WinGCreateHalftonePalette@0@511 WinGGetDIBColorTable = _WinGGetDIBColorTable@16@612 WinGGetDIBPointer = _WinGGetDIBPointer@8@713 WinGRecommendDIBFormat = _WinGRecommendDIBFormat@4@814 WinGSetDIBColorTable = _WinGSetDIBColorTable@16@915 WinGStretchBlt = _WinGStretchBlt@40@106 WinGBitBlt = "_WinGBitBlt@32" @1 7 WinGCreateBitmap = "_WinGCreateBitmap@12" @2 8 WinGCreateDC = "_WinGCreateDC@0" @3 9 WinGCreateHalftoneBrush = "_WinGCreateHalftoneBrush@12" @4 10 WinGCreateHalftonePalette = "_WinGCreateHalftonePalette@0" @5 11 WinGGetDIBColorTable = "_WinGGetDIBColorTable@16" @6 12 WinGGetDIBPointer = "_WinGGetDIBPointer@8" @7 13 WinGRecommendDIBFormat = "_WinGRecommendDIBFormat@4" @8 14 WinGSetDIBColorTable = "_WinGSetDIBColorTable@16" @9 15 WinGStretchBlt = "_WinGStretchBlt@40" @10 16 16 -
branches/gcc-kmk/src/wininet/initterm.cpp
r21842 r21900 1 /* $Id: init wininet.cpp,v 1.22003-10-24 13:10:03 sandervl Exp $1 /* $Id: initterm.cpp,v 1.8 2003-10-24 13:10:03 sandervl Exp $ 2 2 * 3 * DLL entry point3 * WININET DLL entry point 4 4 * 5 5 * Copyright 1998 Sander van Leeuwen 6 6 * Copyright 1998 Peter Fitzsimmons 7 7 * 8 *9 8 * Project Odin Software License can be found in LICENSE.TXT 10 *11 9 */ 12 10 13 /*-------------------------------------------------------------*/14 /* INITERM.C -- Source for a custom dynamic link library */15 /* initialization and termination (_DLL_InitTerm) */16 /* function. */17 /* */18 /* When called to perform initialization, this sample function */19 /* gets storage for an array of integers, and initializes its */20 /* elements with random integers. At termination time, it */21 /* frees the array. Substitute your own special processing. */22 /*-------------------------------------------------------------*/23 24 25 /* Include files */26 11 #define INCL_DOSMODULEMGR 27 12 #define INCL_DOSPROCESS … … 37 22 #include <initdll.h> 38 23 24 // Win32 resource table (produced by wrc) 25 extern DWORD wininet_PEResTab; 39 26 40 extern "C" {41 //Win32 resource table (produced by wrc)42 extern DWORD wininet_PEResTab;43 }44 27 static HMODULE dllHandle = 0; 45 28 46 29 BOOL WINAPI WININET_LibMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved); 47 30 48 //******************************************************************************49 //******************************************************************************50 31 BOOL WINAPI WininetLibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad) 51 32 { 52 BOOL ret;33 BOOL ret; 53 34 54 switch (fdwReason)55 {56 case DLL_PROCESS_ATTACH:57 case DLL_THREAD_ATTACH:58 case DLL_THREAD_DETACH:59 return WININET_LibMain(hinstDLL, fdwReason, fImpLoad);35 switch (fdwReason) 36 { 37 case DLL_PROCESS_ATTACH: 38 case DLL_THREAD_ATTACH: 39 case DLL_THREAD_DETACH: 40 return WININET_LibMain(hinstDLL, fdwReason, fImpLoad); 60 41 61 case DLL_PROCESS_DETACH:62 ret = WININET_LibMain(hinstDLL, fdwReason, fImpLoad);63 return ret;64 }65 return FALSE;42 case DLL_PROCESS_DETACH: 43 ret = WININET_LibMain(hinstDLL, fdwReason, fImpLoad); 44 return ret; 45 } 46 return FALSE; 66 47 } 67 48 49 ULONG SYSTEM DLL_InitWinInet(ULONG hModule) 50 { 51 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/ 68 52 69 /****************************************************************************/ 70 /* _DLL_InitTerm is the function that gets called by the operating system */ 71 /* loader when it loads and frees this DLL for each process that accesses */ 72 /* this DLL. However, it only gets called the first time the DLL is loaded */ 73 /* and the last time it is freed for a particular process. The system */ 74 /* linkage convention MUST be used because the operating system loader is */ 75 /* calling this function. */ 76 /****************************************************************************/ 77 ULONG APIENTRY inittermWininet(ULONG hModule, ULONG ulFlag) 53 dllHandle = RegisterLxDll(hModule, WininetLibMain, (PVOID)&wininet_PEResTab); 54 if (dllHandle == 0) 55 return -1; 56 57 return 0; 58 } 59 60 void SYSTEM DLL_TermWinInet(ULONG hModule) 78 61 { 79 size_t i; 80 APIRET rc; 62 if (dllHandle) 63 UnregisterLxDll(dllHandle); 64 } 81 65 82 /*-------------------------------------------------------------------------*/ 83 /* If ulFlag is zero then the DLL is being loaded so initialization should */ 84 /* be performed. If ulFlag is 1 then the DLL is being freed so */ 85 /* termination should be performed. */ 86 /*-------------------------------------------------------------------------*/ 66 ULONG SYSTEM DLL_Init(ULONG hModule) 67 { 68 if (DLL_InitDefault(hModule) == -1) 69 return -1; 70 return DLL_InitWinInet(hModule); 71 } 87 72 88 switch (ulFlag) { 89 case 0 : 90 CheckVersionFromHMOD(PE2LX_VERSION, hModule);/* PLF Wed 98-03-18 05:28:48*/ 91 92 /*******************************************************************/ 93 /* A DosExitList routine must be used to clean up if runtime calls */ 94 /* are required and the runtime is dynamically linked. */ 95 /*******************************************************************/ 96 97 dllHandle = RegisterLxDll(hModule, WininetLibMain, (PVOID)&wininet_PEResTab); 98 if(dllHandle == 0) 99 return 0UL; 100 101 break; 102 case 1 : 103 if(dllHandle) { 104 UnregisterLxDll(dllHandle); 105 } 106 break; 107 108 default : 109 return 0UL; 110 } 111 112 /***********************************************************/ 113 /* A non-zero value must be returned to indicate success. */ 114 /***********************************************************/ 115 return 1UL; 73 void SYSTEM DLL_Term(ULONG hModule) 74 { 75 DLL_TermWinInet(hModule); 76 DLL_TermDefault(hModule); 116 77 } 117 //******************************************************************************118 //****************************************************************************** -
branches/gcc-kmk/src/wininet/internet.c
r9439 r21900 25 25 #include <win/windef.h> 26 26 #define strncasecmp strnicmp 27 #define TLS_OUT_OF_INDEXES -128 27 #define MAXHOSTNAME 100 29 28 #else -
branches/gcc-kmk/src/wininet/wininet.cpp
r21720 r21900 15 15 BOOL WINAPI InternetTimeFromSystemTime(CONST SYSTEMTIME *pst, DWORD dwRFC, 16 16 LPSTR lpszTime, DWORD cbTime) 17 {dprintf(("ERROR: "__FUNCTION__" not implemented"));17 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 18 18 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 19 19 return 0; … … 23 23 BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags, 24 24 LPURL_COMPONENTSW lpUrlComponents) 25 {dprintf(("ERROR: "__FUNCTION__" not implemented"));25 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 26 26 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 27 27 return 0; … … 31 31 BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags, 32 32 LPSTR lpszUrl, LPDWORD lpdwUrlLength) 33 {dprintf(("ERROR: "__FUNCTION__" not implemented"));33 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 34 34 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 35 35 return 0; … … 39 39 BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags, 40 40 LPWSTR lpszUrl, LPDWORD lpdwUrlLength) 41 {dprintf(("ERROR: "__FUNCTION__" not implemented"));41 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 42 42 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 43 43 return 0; … … 47 47 BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer, 48 48 LPDWORD lpdwBufferLength, DWORD dwFlags) 49 {dprintf(("ERROR: "__FUNCTION__" not implemented"));49 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 50 50 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 51 51 return 0; … … 56 56 LPSTR lpszBuffer, LPDWORD lpdwBufferLength, 57 57 DWORD dwFlags) 58 {dprintf(("ERROR: "__FUNCTION__" not implemented"));58 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 59 59 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 60 60 return 0; … … 65 65 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength, 66 66 DWORD dwFlags) 67 {dprintf(("ERROR: "__FUNCTION__" not implemented"));67 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 68 68 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 69 69 return 0; … … 74 74 LPCWSTR lpszProxy, LPCWSTR lpszProxyBypass, 75 75 DWORD dwFlags) 76 {dprintf(("ERROR: "__FUNCTION__" not implemented"));76 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 77 77 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 78 78 return 0; … … 84 84 LPCWSTR lpszPassword, DWORD dwService, 85 85 DWORD dwFlags, DWORD dwContext) 86 {dprintf(("ERROR: "__FUNCTION__" not implemented"));86 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 87 87 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 88 88 return 0; … … 93 93 PVOID pReserved, DWORD dwMoveMethod, 94 94 DWORD dwContext) 95 {dprintf(("ERROR: "__FUNCTION__" not implemented"));95 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 96 96 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 97 97 return 0; … … 100 100 //****************************************************************************** 101 101 BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData) 102 {dprintf(("ERROR: "__FUNCTION__" not implemented"));102 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 103 103 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 104 104 return 0; … … 108 108 BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption, LPVOID lpBuffer, 109 109 LPDWORD lpdwBufferLength) 110 {dprintf(("ERROR: "__FUNCTION__" not implemented"));110 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 111 111 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 112 112 return 0; … … 116 116 BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption, LPVOID lpBuffer, 117 117 DWORD dwBufferLength) 118 {dprintf(("ERROR: "__FUNCTION__" not implemented"));118 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 119 119 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 120 120 return 0; … … 124 124 BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption, LPVOID lpBuffer, 125 125 DWORD dwBufferLength) 126 {dprintf(("ERROR: "__FUNCTION__" not implemented"));126 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 127 127 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 128 128 return 0; … … 132 132 BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption, LPVOID lpBuffer, 133 133 DWORD dwBufferLength, DWORD dwFlags) 134 {dprintf(("ERROR: "__FUNCTION__" not implemented"));134 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 135 135 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 136 136 return 0; … … 140 140 BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption, LPVOID lpBuffer, 141 141 DWORD dwBufferLength, DWORD dwFlags) 142 {dprintf(("ERROR: "__FUNCTION__" not implemented"));142 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 143 143 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 144 144 return 0; … … 148 148 BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError, LPWSTR lpszBuffer, 149 149 LPDWORD lpdwBufferLength) 150 {dprintf(("ERROR: "__FUNCTION__" not implemented"));150 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 151 151 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 152 152 return 0; … … 157 157 LPWIN32_FIND_DATAW lpFindFileData, 158 158 DWORD dwFlags, DWORD dwContext) 159 {dprintf(("ERROR: "__FUNCTION__" not implemented"));159 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 160 160 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 161 161 return 0; … … 167 167 DWORD dwFlagsAndAttributes, DWORD dwFlags, 168 168 DWORD dwContext) 169 {dprintf(("ERROR: "__FUNCTION__" not implemented"));169 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 170 170 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 171 171 return 0; … … 175 175 BOOL WINAPI FtpPutFileW(HINTERNET hConnect, LPCWSTR lpszLocalFile, LPCWSTR lpszNewRemoteFile, 176 176 DWORD dwFlags, DWORD dwContext) 177 {dprintf(("ERROR: "__FUNCTION__" not implemented"));177 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 178 178 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 179 179 return 0; … … 182 182 //****************************************************************************** 183 183 BOOL WINAPI FtpDeleteFileW(HINTERNET hConnect, LPCWSTR lpszFileName) 184 {dprintf(("ERROR: "__FUNCTION__" not implemented"));184 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 185 185 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 186 186 return 0; … … 189 189 //****************************************************************************** 190 190 BOOL WINAPI FtpRenameFileW(HINTERNET hConnect, LPCWSTR lpszExisting,LPCWSTR lpszNew) 191 {dprintf(("ERROR: "__FUNCTION__" not implemented"));191 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 192 192 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 193 193 return 0; … … 197 197 HINTERNET WINAPI FtpOpenFileW(HINTERNET hConnect, LPCWSTR lpszFileName, 198 198 DWORD dwAccess, DWORD dwFlags, DWORD dwContext) 199 {dprintf(("ERROR: "__FUNCTION__" not implemented"));199 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 200 200 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 201 201 return 0; … … 204 204 //****************************************************************************** 205 205 BOOL WINAPI FtpCreateDirectoryW(HINTERNET hConnect, LPCWSTR lpszDirectory) 206 {dprintf(("ERROR: "__FUNCTION__" not implemented"));206 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 207 207 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 208 208 return 0; … … 211 211 //****************************************************************************** 212 212 BOOL WINAPI FtpRemoveDirectoryW(HINTERNET hConnect, LPCWSTR lpszDirectory) 213 {dprintf(("ERROR: "__FUNCTION__" not implemented"));213 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 214 214 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 215 215 return 0; … … 218 218 //****************************************************************************** 219 219 BOOL WINAPI FtpSetCurrentDirectoryW(HINTERNET hConnect, LPCWSTR lpszDirectory) 220 {dprintf(("ERROR: "__FUNCTION__" not implemented"));220 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 221 221 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 222 222 return 0; … … 226 226 BOOL WINAPI FtpGetCurrentDirectoryW(HINTERNET hConnect, LPWSTR lpszCurrentDirectory, 227 227 LPDWORD lpdwCurrentDirectory) 228 {dprintf(("ERROR: "__FUNCTION__" not implemented"));228 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 229 229 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 230 230 return 0; … … 234 234 BOOL WINAPI FtpCommandA(HINTERNET hConnect, BOOL fExpectResponse, DWORD dwFlags, 235 235 LPCSTR lpszCommand, DWORD dwContext) 236 {dprintf(("ERROR: "__FUNCTION__" not implemented"));236 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 237 237 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 238 238 return 0; … … 242 242 BOOL WINAPI FtpCommandW(HINTERNET hConnect, BOOL fExpectResponse, DWORD dwFlags, 243 243 LPCWSTR lpszCommand, DWORD dwContext) 244 {dprintf(("ERROR: "__FUNCTION__" not implemented"));244 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 245 245 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 246 246 return 0; … … 252 252 DWORD dwGopherType, LPSTR lpszLocator, 253 253 LPDWORD lpdwBufferLength) 254 {dprintf(("ERROR: "__FUNCTION__" not implemented"));254 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 255 255 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 256 256 return 0; … … 262 262 DWORD dwGopherType, LPWSTR lpszLocator, 263 263 LPDWORD lpdwBufferLength) 264 {dprintf(("ERROR: "__FUNCTION__" not implemented"));264 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 265 265 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 266 266 return 0; … … 269 269 //****************************************************************************** 270 270 BOOL WINAPI GopherGetLocatorTypeA(LPCSTR lpszLocator, LPDWORD lpdwGopherType) 271 {dprintf(("ERROR: "__FUNCTION__" not implemented"));271 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 272 272 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 273 273 return 0; … … 276 276 //****************************************************************************** 277 277 BOOL WINAPI GopherGetLocatorTypeW(LPCWSTR lpszLocator, LPDWORD lpdwGopherType) 278 {dprintf(("ERROR: "__FUNCTION__" not implemented"));278 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 279 279 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 280 280 return 0; … … 285 285 LPCSTR lpszSearchString, LPGOPHER_FIND_DATAA lpFindData, 286 286 DWORD dwFlags, DWORD dwContext) 287 {dprintf(("ERROR: "__FUNCTION__" not implemented"));287 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 288 288 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 289 289 return 0; … … 294 294 LPCWSTR lpszSearchString, LPGOPHER_FIND_DATAA lpFindData, 295 295 DWORD dwFlags, DWORD dwContext) 296 {dprintf(("ERROR: "__FUNCTION__" not implemented"));296 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 297 297 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 298 298 return 0; … … 302 302 HINTERNET WINAPI GopherOpenFileA(HINTERNET hConnect, LPCSTR lpszLocator, 303 303 LPCSTR lpszView, DWORD dwFlags, DWORD dwContext) 304 {dprintf(("ERROR: "__FUNCTION__" not implemented"));304 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 305 305 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 306 306 return 0; … … 310 310 HINTERNET WINAPI GopherOpenFileW(HINTERNET hConnect, LPCWSTR lpszLocator, 311 311 LPCWSTR lpszView, DWORD dwFlags, DWORD dwContext) 312 {dprintf(("ERROR: "__FUNCTION__" not implemented"));312 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 313 313 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 314 314 return 0; … … 321 321 GOPHER_ATTRIBUTE_ENUMERATOR lpfnEnumerator, 322 322 DWORD dwContext) 323 {dprintf(("ERROR: "__FUNCTION__" not implemented"));323 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 324 324 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 325 325 return 0; … … 332 332 GOPHER_ATTRIBUTE_ENUMERATOR lpfnEnumerator, 333 333 DWORD dwContext) 334 {dprintf(("ERROR: "__FUNCTION__" not implemented"));334 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 335 335 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 336 336 return 0; … … 342 342 LPCWSTR lpszReferrer, LPCWSTR * lplpszAcceptTypes, 343 343 DWORD dwFlags, DWORD dwContext) 344 {dprintf(("ERROR: "__FUNCTION__" not implemented"));344 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 345 345 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 346 346 return 0; … … 350 350 BOOL WINAPI HttpAddRequestHeadersW(HINTERNET hRequest, LPCWSTR lpszHeaders, 351 351 DWORD dwHeadersLength, DWORD dwModifiers) 352 {dprintf(("ERROR: "__FUNCTION__" not implemented"));352 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 353 353 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 354 354 return 0; … … 359 359 DWORD dwHeadersLength, LPVOID lpOptional, 360 360 DWORD dwOptionalLength) 361 {dprintf(("ERROR: "__FUNCTION__" not implemented"));361 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 362 362 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 363 363 return 0; … … 367 367 BOOL WINAPI HttpQueryInfoW(HINTERNET hRequest, DWORD dwInfoLevel, LPVOID lpBuffer, 368 368 LPDWORD lpdwBufferLength, LPDWORD lpdwIndex) 369 {dprintf(("ERROR: "__FUNCTION__" not implemented"));369 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 370 370 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 371 371 return 0; … … 374 374 //****************************************************************************** 375 375 BOOL WINAPI InternetSetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName, LPCSTR lpszCookieData) 376 {dprintf(("ERROR: "__FUNCTION__" not implemented"));376 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 377 377 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 378 378 return 0; … … 381 381 //****************************************************************************** 382 382 BOOL WINAPI InternetSetCookieW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName, LPCWSTR lpszCookieData) 383 {dprintf(("ERROR: "__FUNCTION__" not implemented"));383 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 384 384 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 385 385 return 0; … … 389 389 BOOL WINAPI InternetGetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName, LPSTR lpCookieData, 390 390 LPDWORD lpdwSize) 391 {dprintf(("ERROR: "__FUNCTION__" not implemented"));391 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 392 392 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 393 393 return 0; … … 397 397 BOOL WINAPI InternetGetCookieW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName, LPWSTR lpCookieData, 398 398 LPDWORD lpdwSize) 399 {dprintf(("ERROR: "__FUNCTION__" not implemented"));399 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 400 400 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 401 401 return 0; … … 405 405 DWORD WINAPI InternetErrorDlg(HWND hWnd, HINTERNET hRequest, 406 406 DWORD dwError, DWORD dwFlags, LPVOID * lppvData) 407 {dprintf(("ERROR: "__FUNCTION__" not implemented"));407 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 408 408 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 409 409 return 0; … … 412 412 //* ******************************************************************************/ 413 413 DWORD WINAPI InternetCheckConnectionW(LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved) 414 {dprintf(("ERROR: "__FUNCTION__" not implemented"));414 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 415 415 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 416 416 return 0; … … 420 420 DWORD WINAPI InternetConfirmZoneCrossing(HWND hWnd, LPSTR szUrlPrev, 421 421 LPSTR szUrlNew, BOOL bPost) 422 {dprintf(("ERROR: "__FUNCTION__" not implemented"));422 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 423 423 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 424 424 return 0; … … 429 429 LPCSTR lpszFileExtension, LPSTR lpszFileName, 430 430 DWORD dwReserved) 431 {dprintf(("ERROR: "__FUNCTION__" not implemented"));431 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 432 432 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 433 433 return 0; … … 438 438 LPCWSTR lpszFileExtension, LPWSTR lpszFileName, 439 439 DWORD dwReserved) 440 {dprintf(("ERROR: "__FUNCTION__" not implemented"));440 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 441 441 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 442 442 return 0; … … 449 449 DWORD dwHeaderSize, LPCTSTR lpszFileExtension, 450 450 DWORD dwReserved) 451 {dprintf(("ERROR: "__FUNCTION__" not implemented"));451 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 452 452 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 453 453 return 0; … … 460 460 DWORD dwHeaderSize, LPCTSTR lpszFileExtension, 461 461 DWORD dwReserved) 462 {dprintf(("ERROR: "__FUNCTION__" not implemented"));462 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 463 463 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 464 464 return 0; … … 469 469 LPDWORD lpdwCacheEntryInfoBufferSize, 470 470 DWORD dwReserved) 471 {dprintf(("ERROR: "__FUNCTION__" not implemented"));471 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 472 472 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 473 473 return 0; … … 478 478 LPDWORD lpdwCacheEntryInfoBufferSize, 479 479 DWORD dwReserved) 480 {dprintf(("ERROR: "__FUNCTION__" not implemented"));480 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 481 481 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 482 482 return 0; … … 485 485 //****************************************************************************** 486 486 BOOL WINAPI UnlockUrlCacheEntryFile(LPCSTR lpszUrlName, DWORD dwReserved) 487 {dprintf(("ERROR: "__FUNCTION__" not implemented"));487 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 488 488 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 489 489 return 0; … … 494 494 LPDWORD lpdwCacheEntryInfoBufferSize, 495 495 BOOL fRandomRead, DWORD dwReserved) 496 {dprintf(("ERROR: "__FUNCTION__" not implemented"));496 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 497 497 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 498 498 return 0; … … 503 503 LPDWORD lpdwCacheEntryInfoBufferSize, 504 504 BOOL fRandomRead, DWORD dwReserved) 505 {dprintf(("ERROR: "__FUNCTION__" not implemented"));505 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 506 506 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 507 507 return 0; … … 512 512 LPVOID lpBuffer, LPDWORD lpdwLen, 513 513 DWORD Reserved) 514 {dprintf(("ERROR: "__FUNCTION__" not implemented"));514 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 515 515 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 516 516 return 0; … … 519 519 //****************************************************************************** 520 520 BOOL WINAPI UnlockUrlCacheEntryStream(HANDLE hUrlCacheStream, DWORD Reserved) 521 {dprintf(("ERROR: "__FUNCTION__" not implemented"));521 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 522 522 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 523 523 return 0; … … 527 527 BOOL WINAPI GetUrlCacheEntryInfoA(LPCSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_INFOA lpCacheEntryInfo, 528 528 LPDWORD lpdwCacheEntryInfoBufferSize) 529 {dprintf(("ERROR: "__FUNCTION__" not implemented"));529 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 530 530 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 531 531 return 0; … … 535 535 BOOL WINAPI GetUrlCacheEntryInfoW(LPCWSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_INFOW lpCacheEntryInfo, 536 536 LPDWORD lpdwCacheEntryInfoBufferSize) 537 {dprintf(("ERROR: "__FUNCTION__" not implemented"));537 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 538 538 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 539 539 return 0; … … 543 543 BOOL WINAPI SetUrlCacheEntryInfoA(LPCSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_INFOA lpCacheEntryInfo, 544 544 DWORD dwFieldControl) 545 {dprintf(("ERROR: "__FUNCTION__" not implemented"));545 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 546 546 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 547 547 return 0; … … 551 551 BOOL WINAPI SetUrlCacheEntryInfoW(LPCWSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_INFOW lpCacheEntryInfo, 552 552 DWORD dwFieldControl) 553 {dprintf(("ERROR: "__FUNCTION__" not implemented"));553 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 554 554 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 555 555 return 0; … … 560 560 LPINTERNET_CACHE_ENTRY_INFOA lpFirstCacheEntryInfo, 561 561 LPDWORD lpdwFirstCacheEntryInfoBufferSize) 562 {dprintf(("ERROR: "__FUNCTION__" not implemented"));562 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 563 563 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 564 564 return 0; … … 569 569 LPINTERNET_CACHE_ENTRY_INFOW lpFirstCacheEntryInfo, 570 570 LPDWORD lpdwFirstCacheEntryInfoBufferSize) 571 {dprintf(("ERROR: "__FUNCTION__" not implemented"));571 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 572 572 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 573 573 return 0; … … 578 578 LPINTERNET_CACHE_ENTRY_INFOA lpNextCacheEntryInfo, 579 579 LPDWORD lpdwNextCacheEntryInfoBufferSize) 580 {dprintf(("ERROR: "__FUNCTION__" not implemented"));580 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 581 581 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 582 582 return 0; … … 587 587 LPINTERNET_CACHE_ENTRY_INFOW lpNextCacheEntryInfo, 588 588 LPDWORD lpdwNextCacheEntryInfoBufferSize) 589 {dprintf(("ERROR: "__FUNCTION__" not implemented"));589 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 590 590 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 591 591 return 0; … … 594 594 //****************************************************************************** 595 595 BOOL WINAPI FindCloseUrlCache(HANDLE hEnumHandle) 596 {dprintf(("ERROR: "__FUNCTION__" not implemented"));596 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 597 597 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 598 598 return 0; … … 601 601 //****************************************************************************** 602 602 BOOL WINAPI DeleteUrlCacheEntry(LPCSTR lpszUrlName) 603 {dprintf(("ERROR: "__FUNCTION__" not implemented"));604 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 605 return 0; 606 } 607 //****************************************************************************** 608 //****************************************************************************** 603 {dprintf(("ERROR:%s not implemented", __FUNCTION__)); 604 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 605 return 0; 606 } 607 //****************************************************************************** 608 //****************************************************************************** -
branches/gcc-kmk/src/wininet/wininet.def
r8607 r21900 12 12 ; InternetInitializeAutoProxyDll = _InternetInitializeAutoProxyDll@ @1 13 13 ; ShowCertificate = _ShowCertificate@ @2 14 CommitUrlCacheEntryA = _CommitUrlCacheEntryA@44@315 CommitUrlCacheEntryW = _CommitUrlCacheEntryW@44@414 CommitUrlCacheEntryA = "_CommitUrlCacheEntryA@44" @3 15 CommitUrlCacheEntryW = "_CommitUrlCacheEntryW@44" @4 16 16 ; CreateUrlCacheContainerA = _CreateUrlCacheContainerA@ @5 17 17 ; CreateUrlCacheContainerW = _CreateUrlCacheContainerW@ @6 18 CreateUrlCacheEntryA = _CreateUrlCacheEntryA@20@719 CreateUrlCacheEntryW = _CreateUrlCacheEntryW@20@818 CreateUrlCacheEntryA = "_CreateUrlCacheEntryA@20" @7 19 CreateUrlCacheEntryW = "_CreateUrlCacheEntryW@20" @8 20 20 ; CreateUrlCacheGroup = _CreateUrlCacheGroup@ @9 21 21 ; DeleteIE3Cache = _DeleteIE3Cache@ @10 22 22 ; DeleteUrlCacheContainerA = _DeleteUrlCacheContainerA@ @11 23 23 ; DeleteUrlCacheContainerW = _DeleteUrlCacheContainerW@ @12 24 DeleteUrlCacheEntry = _DeleteUrlCacheEntry@4@1324 DeleteUrlCacheEntry = "_DeleteUrlCacheEntry@4" @13 25 25 ; DeleteUrlCacheGroup = _DeleteUrlCacheGroup@ @14 26 DllInstall = _WININET_DllInstall@8@1527 FindCloseUrlCache = _FindCloseUrlCache@4@1626 DllInstall = "_WININET_DllInstall@8" @15 27 FindCloseUrlCache = "_FindCloseUrlCache@4" @16 28 28 ; FindFirstUrlCacheContainerA = _FindFirstUrlCacheContainerA@ @17 29 29 ; FindFirstUrlCacheContainerW = _FindFirstUrlCacheContainerW@ @18 30 FindFirstUrlCacheEntryA = _FindFirstUrlCacheEntryA@12@1930 FindFirstUrlCacheEntryA = "_FindFirstUrlCacheEntryA@12" @19 31 31 ; FindFirstUrlCacheEntryExA = _FindFirstUrlCacheEntryExA@ @20 32 32 ; FindFirstUrlCacheEntryExW = _FindFirstUrlCacheEntryExW@ @21 33 FindFirstUrlCacheEntryW = _FindFirstUrlCacheEntryW@12@2233 FindFirstUrlCacheEntryW = "_FindFirstUrlCacheEntryW@12" @22 34 34 ; FindNextUrlCacheContainerA = _FindNextUrlCacheContainerA@ @23 35 35 ; FindNextUrlCacheContainerW = _FindNextUrlCacheContainerW@ @24 36 FindNextUrlCacheEntryA = _FindNextUrlCacheEntryA@12@2536 FindNextUrlCacheEntryA = "_FindNextUrlCacheEntryA@12" @25 37 37 ; FindNextUrlCacheEntryExA = _FindNextUrlCacheEntryExA@ @26 38 38 ; FindNextUrlCacheEntryExW = _FindNextUrlCacheEntryExW@ @27 39 FindNextUrlCacheEntryW = _FindNextUrlCacheEntryW@12@2839 FindNextUrlCacheEntryW = "_FindNextUrlCacheEntryW@12" @28 40 40 ; FreeUrlCacheSpaceA = _FreeUrlCacheSpaceA@ @29 41 41 ; FreeUrlCacheSpaceW = _FreeUrlCacheSpaceW@ @30 42 FtpCreateDirectoryA = _FtpCreateDirectoryA@8@3143 FtpCreateDirectoryW = _FtpCreateDirectoryW@8@3244 FtpDeleteFileA = _FtpDeleteFileA@8@3345 FtpDeleteFileW = _FtpDeleteFileW@8@3446 FtpFindFirstFileA = _FtpFindFirstFileA@20@3547 FtpFindFirstFileW = _FtpFindFirstFileW@20@3648 FtpGetCurrentDirectoryA = _FtpGetCurrentDirectoryA@12@3749 FtpGetCurrentDirectoryW = _FtpGetCurrentDirectoryW@12@3850 FtpGetFileA = _FtpGetFileA@28@3951 FtpGetFileW = _FtpGetFileW@28@4052 FtpOpenFileA = _FtpOpenFileA@20@4153 FtpOpenFileW = _FtpOpenFileW@20@4254 FtpPutFileA = _FtpPutFileA@20@4355 FtpPutFileW = _FtpPutFileW@20@4456 FtpRemoveDirectoryA = _FtpRemoveDirectoryA@8@4557 FtpRemoveDirectoryW = _FtpRemoveDirectoryW@8@4658 FtpRenameFileA = _FtpRenameFileA@12@4759 FtpRenameFileW = _FtpRenameFileW@12@4860 FtpSetCurrentDirectoryA = _FtpSetCurrentDirectoryA@8@4961 FtpSetCurrentDirectoryW = _FtpSetCurrentDirectoryW@8@5042 FtpCreateDirectoryA = "_FtpCreateDirectoryA@8" @31 43 FtpCreateDirectoryW = "_FtpCreateDirectoryW@8" @32 44 FtpDeleteFileA = "_FtpDeleteFileA@8" @33 45 FtpDeleteFileW = "_FtpDeleteFileW@8" @34 46 FtpFindFirstFileA = "_FtpFindFirstFileA@20" @35 47 FtpFindFirstFileW = "_FtpFindFirstFileW@20" @36 48 FtpGetCurrentDirectoryA = "_FtpGetCurrentDirectoryA@12" @37 49 FtpGetCurrentDirectoryW = "_FtpGetCurrentDirectoryW@12" @38 50 FtpGetFileA = "_FtpGetFileA@28" @39 51 FtpGetFileW = "_FtpGetFileW@28" @40 52 FtpOpenFileA = "_FtpOpenFileA@20" @41 53 FtpOpenFileW = "_FtpOpenFileW@20" @42 54 FtpPutFileA = "_FtpPutFileA@20" @43 55 FtpPutFileW = "_FtpPutFileW@20" @44 56 FtpRemoveDirectoryA = "_FtpRemoveDirectoryA@8" @45 57 FtpRemoveDirectoryW = "_FtpRemoveDirectoryW@8" @46 58 FtpRenameFileA = "_FtpRenameFileA@12" @47 59 FtpRenameFileW = "_FtpRenameFileW@12" @48 60 FtpSetCurrentDirectoryA = "_FtpSetCurrentDirectoryA@8" @49 61 FtpSetCurrentDirectoryW = "_FtpSetCurrentDirectoryW@8" @50 62 62 ; GetUrlCacheConfigInfoA = _GetUrlCacheConfigInfoA@ @51 63 63 ; GetUrlCacheConfigInfoW = _GetUrlCacheConfigInfoW@ @52 64 GetUrlCacheEntryInfoA = _GetUrlCacheEntryInfoA@12@5364 GetUrlCacheEntryInfoA = "_GetUrlCacheEntryInfoA@12" @53 65 65 ; GetUrlCacheEntryInfoExA = _GetUrlCacheEntryInfoExA@ @54 66 66 ; GetUrlCacheEntryInfoExW = _GetUrlCacheEntryInfoExW@ @55 67 GetUrlCacheEntryInfoW = _GetUrlCacheEntryInfoW@12@5667 GetUrlCacheEntryInfoW = "_GetUrlCacheEntryInfoW@12" @56 68 68 ; GetUrlCacheHeaderData = _GetUrlCacheHeaderData@ @57 69 GopherCreateLocatorA = _GopherCreateLocatorA@28@5870 GopherCreateLocatorW = _GopherCreateLocatorW@28@5971 GopherFindFirstFileA = _GopherFindFirstFileA@24@6072 GopherFindFirstFileW = _GopherFindFirstFileW@24@6173 GopherGetAttributeA = _GopherGetAttributeA@32@6274 GopherGetAttributeW = _GopherGetAttributeW@32@6375 GopherGetLocatorTypeA = _GopherGetLocatorTypeA@8@6476 GopherGetLocatorTypeW = _GopherGetLocatorTypeW@8@6577 GopherOpenFileA = _GopherOpenFileA@20@6678 GopherOpenFileW = _GopherOpenFileW@20@6779 HttpAddRequestHeadersA = _HttpAddRequestHeadersA@16@6880 HttpAddRequestHeadersW = _HttpAddRequestHeadersW@16@6969 GopherCreateLocatorA = "_GopherCreateLocatorA@28" @58 70 GopherCreateLocatorW = "_GopherCreateLocatorW@28" @59 71 GopherFindFirstFileA = "_GopherFindFirstFileA@24" @60 72 GopherFindFirstFileW = "_GopherFindFirstFileW@24" @61 73 GopherGetAttributeA = "_GopherGetAttributeA@32" @62 74 GopherGetAttributeW = "_GopherGetAttributeW@32" @63 75 GopherGetLocatorTypeA = "_GopherGetLocatorTypeA@8" @64 76 GopherGetLocatorTypeW = "_GopherGetLocatorTypeW@8" @65 77 GopherOpenFileA = "_GopherOpenFileA@20" @66 78 GopherOpenFileW = "_GopherOpenFileW@20" @67 79 HttpAddRequestHeadersA = "_HttpAddRequestHeadersA@16" @68 80 HttpAddRequestHeadersW = "_HttpAddRequestHeadersW@16" @69 81 81 ; HttpEndRequestA = _HttpEndRequestA@ @70 82 82 ; HttpEndRequestW = _HttpEndRequestW@ @71 83 HttpOpenRequestA = _HttpOpenRequestA@32@7284 HttpOpenRequestW = _HttpOpenRequestW@32@7385 HttpQueryInfoA = _HttpQueryInfoA@20@7486 HttpQueryInfoW = _HttpQueryInfoW@20@7587 HttpSendRequestA = _HttpSendRequestA@20@7688 HttpSendRequestExA = _HttpSendRequestExA@20@7783 HttpOpenRequestA = "_HttpOpenRequestA@32" @72 84 HttpOpenRequestW = "_HttpOpenRequestW@32" @73 85 HttpQueryInfoA = "_HttpQueryInfoA@20" @74 86 HttpQueryInfoW = "_HttpQueryInfoW@20" @75 87 HttpSendRequestA = "_HttpSendRequestA@20" @76 88 HttpSendRequestExA = "_HttpSendRequestExA@20" @77 89 89 ; HttpSendRequestExW = _HttpSendRequestExW@ @78 90 HttpSendRequestW = _HttpSendRequestW@20@7990 HttpSendRequestW = "_HttpSendRequestW@20" @79 91 91 ; IncrementUrlCacheHeaderData = _IncrementUrlCacheHeaderData@ @80 92 InternetAttemptConnect = _InternetAttemptConnect@4@8192 InternetAttemptConnect = "_InternetAttemptConnect@4" @81 93 93 ; InternetAutodial = _InternetAutodial@ @82 94 94 ; InternetAutodialCallback = _InternetAutodialCallback@ @83 95 95 ; InternetAutodialHangup = _InternetAutodialHangup@ @84 96 InternetCanonicalizeUrlA = _InternetCanonicalizeUrlA@16@8597 InternetCanonicalizeUrlW = _InternetCanonicalizeUrlW@16@8698 InternetCheckConnectionA = _InternetCheckConnectionA@12@8796 InternetCanonicalizeUrlA = "_InternetCanonicalizeUrlA@16" @85 97 InternetCanonicalizeUrlW = "_InternetCanonicalizeUrlW@16" @86 98 InternetCheckConnectionA = "_InternetCheckConnectionA@12" @87 99 99 ; InternetCheckConnectionW = _InternetCheckConnectionW@ @88 100 InternetCloseHandle = _InternetCloseHandle@4@89101 InternetCombineUrlA = _InternetCombineUrlA@20@90102 InternetCombineUrlW = _InternetCombineUrlW@20@91103 InternetConfirmZoneCrossing = _InternetConfirmZoneCrossing@16@92104 InternetConnectA = _InternetConnectA@32@93105 InternetConnectW = _InternetConnectW@32@94106 InternetCrackUrlA = _InternetCrackUrlA@16@95107 InternetCrackUrlW = _InternetCrackUrlW@16@96108 InternetCreateUrlA = _InternetCreateUrlA@16@97109 InternetCreateUrlW = _InternetCreateUrlW@16@98100 InternetCloseHandle = "_InternetCloseHandle@4" @89 101 InternetCombineUrlA = "_InternetCombineUrlA@20" @90 102 InternetCombineUrlW = "_InternetCombineUrlW@20" @91 103 InternetConfirmZoneCrossing = "_InternetConfirmZoneCrossing@16" @92 104 InternetConnectA = "_InternetConnectA@32" @93 105 InternetConnectW = "_InternetConnectW@32" @94 106 InternetCrackUrlA = "_InternetCrackUrlA@16" @95 107 InternetCrackUrlW = "_InternetCrackUrlW@16" @96 108 InternetCreateUrlA = "_InternetCreateUrlA@16" @97 109 InternetCreateUrlW = "_InternetCreateUrlW@16" @98 110 110 ; InternetDebugGetLocalTime = _InternetDebugGetLocalTime@ @99 111 111 ; InternetDial = _InternetDial@ @100 112 InternetErrorDlg = _InternetErrorDlg@20@101113 InternetFindNextFileA = _InternetFindNextFileA@8@102114 InternetFindNextFileW = _InternetFindNextFileW@8@103112 InternetErrorDlg = "_InternetErrorDlg@20" @101 113 InternetFindNextFileA = "_InternetFindNextFileA@8" @102 114 InternetFindNextFileW = "_InternetFindNextFileW@8" @103 115 115 ; InternetGetCertByURL = _InternetGetCertByURL@ @104 116 InternetGetConnectedState = _InternetGetConnectedState@8@105117 InternetGetCookieA = _InternetGetCookieA@16@106118 InternetGetCookieW = _InternetGetCookieW@16@107119 InternetGetLastResponseInfoA = _InternetGetLastResponseInfoA@12@108120 InternetGetLastResponseInfoW = _InternetGetLastResponseInfoW@12@109116 InternetGetConnectedState = "_InternetGetConnectedState@8" @105 117 InternetGetCookieA = "_InternetGetCookieA@16" @106 118 InternetGetCookieW = "_InternetGetCookieW@16" @107 119 InternetGetLastResponseInfoA = "_InternetGetLastResponseInfoA@12" @108 120 InternetGetLastResponseInfoW = "_InternetGetLastResponseInfoW@12" @109 121 121 ; InternetGoOnline = _InternetGoOnline@ @110 122 122 ; InternetHangUp = _InternetHangUp@ @111 123 123 ; InternetLockRequestFile = _InternetLockRequestFile@ @112 124 InternetOpenA = _InternetOpenA@20@113124 InternetOpenA = "_InternetOpenA@20" @113 125 125 ; InternetOpenServerPushParse = _InternetOpenServerPushParse@ @114 126 InternetOpenUrlA = _InternetOpenUrlA@24@115127 InternetOpenUrlW = _InternetOpenUrlW@24@116128 InternetOpenW = _InternetOpenW@20@117129 InternetQueryDataAvailable = _InternetQueryDataAvailable@16@118130 InternetQueryOptionA = _InternetQueryOptionA@16@119131 InternetQueryOptionW = _InternetQueryOptionW@16@120132 InternetReadFile = _InternetReadFile@16@121126 InternetOpenUrlA = "_InternetOpenUrlA@24" @115 127 InternetOpenUrlW = "_InternetOpenUrlW@24" @116 128 InternetOpenW = "_InternetOpenW@20" @117 129 InternetQueryDataAvailable = "_InternetQueryDataAvailable@16" @118 130 InternetQueryOptionA = "_InternetQueryOptionA@16" @119 131 InternetQueryOptionW = "_InternetQueryOptionW@16" @120 132 InternetReadFile = "_InternetReadFile@16" @121 133 133 ; InternetReadFileExA = _InternetReadFileExA@ @122 134 134 ; InternetReadFileExW = _InternetReadFileExW@ @123 135 135 ; InternetServerPushParse = _InternetServerPushParse@ @124 136 InternetSetCookieA = _InternetSetCookieA@12@125137 InternetSetCookieW = _InternetSetCookieW@12@126136 InternetSetCookieA = "_InternetSetCookieA@12" @125 137 InternetSetCookieW = "_InternetSetCookieW@12" @126 138 138 ; InternetSetDialState = _InternetSetDialState@ @127 139 InternetSetFilePointer = _InternetSetFilePointer@20@128140 InternetSetOptionA = _InternetSetOptionA@16@129141 InternetSetOptionExA = _InternetSetOptionExA@20@130142 InternetSetOptionExW = _InternetSetOptionExW@20@131143 InternetSetOptionW = _InternetSetOptionW@16@132144 InternetSetStatusCallback = _InternetSetStatusCallback@8@133139 InternetSetFilePointer = "_InternetSetFilePointer@20" @128 140 InternetSetOptionA = "_InternetSetOptionA@16" @129 141 InternetSetOptionExA = "_InternetSetOptionExA@20" @130 142 InternetSetOptionExW = "_InternetSetOptionExW@20" @131 143 InternetSetOptionW = "_InternetSetOptionW@16" @132 144 InternetSetStatusCallback = "_InternetSetStatusCallback@8" @133 145 145 ; InternetShowSecurityInfoByURL = _InternetShowSecurityInfoByURL@ @134 146 InternetTimeFromSystemTime = _InternetTimeFromSystemTime@16@135146 InternetTimeFromSystemTime = "_InternetTimeFromSystemTime@16" @135 147 147 ; InternetTimeToSystemTime = _InternetTimeToSystemTime@ @136 148 148 ; InternetUnlockRequestFile = _InternetUnlockRequestFile@ @137 149 InternetWriteFile = _InternetWriteFile@16@138149 InternetWriteFile = "_InternetWriteFile@16" @138 150 150 ; InternetWriteFileExA = _InternetWriteFileExA@ @139 151 151 ; InternetWriteFileExW = _InternetWriteFileExW@ @140 … … 153 153 ; LoadUrlCacheContent = _LoadUrlCacheContent@ @142 154 154 ; ParseX509EncodedCertificateForListBoxEntry = _ParseX509EncodedCertificateForListBoxEntry@ @143 155 ReadUrlCacheEntryStream = _ReadUrlCacheEntryStream@20@144156 RetrieveUrlCacheEntryFileA = _RetrieveUrlCacheEntryFileA@16@145157 RetrieveUrlCacheEntryFileW = _RetrieveUrlCacheEntryFileW@16@146158 RetrieveUrlCacheEntryStreamA = _RetrieveUrlCacheEntryStreamA@20@147159 RetrieveUrlCacheEntryStreamW = _RetrieveUrlCacheEntryStreamW@20@148155 ReadUrlCacheEntryStream = "_ReadUrlCacheEntryStream@20" @144 156 RetrieveUrlCacheEntryFileA = "_RetrieveUrlCacheEntryFileA@16" @145 157 RetrieveUrlCacheEntryFileW = "_RetrieveUrlCacheEntryFileW@16" @146 158 RetrieveUrlCacheEntryStreamA = "_RetrieveUrlCacheEntryStreamA@20" @147 159 RetrieveUrlCacheEntryStreamW = "_RetrieveUrlCacheEntryStreamW@20" @148 160 160 ; RunOnceUrlCache = _RunOnceUrlCache@ @149 161 161 ; SetUrlCacheConfigInfoA = _SetUrlCacheConfigInfoA@ @150 162 162 ; SetUrlCacheConfigInfoW = _SetUrlCacheConfigInfoW@ @151 163 163 ; SetUrlCacheEntryGroup = _SetUrlCacheEntryGroup@ @152 164 SetUrlCacheEntryInfoA = _SetUrlCacheEntryInfoA@12@153165 SetUrlCacheEntryInfoW = _SetUrlCacheEntryInfoW@12@154164 SetUrlCacheEntryInfoA = "_SetUrlCacheEntryInfoA@12" @153 165 SetUrlCacheEntryInfoW = "_SetUrlCacheEntryInfoW@12" @154 166 166 ; SetUrlCacheHeaderData = _SetUrlCacheHeaderData@ @155 167 167 ; ShowClientAuthCerts = _ShowClientAuthCerts@ @156 168 168 ; ShowSecurityInfo = _ShowSecurityInfo@ @157 169 169 ; ShowX509EncodedCertificate = _ShowX509EncodedCertificate@ @158 170 UnlockUrlCacheEntryFile = _UnlockUrlCacheEntryFile@8@159171 UnlockUrlCacheEntryStream = _UnlockUrlCacheEntryStream@8@160170 UnlockUrlCacheEntryFile = "_UnlockUrlCacheEntryFile@8" @159 171 UnlockUrlCacheEntryStream = "_UnlockUrlCacheEntryStream@8" @160 172 172 ; UpdateUrlCacheContentPath = _UpdateUrlCacheContentPath@ @161 173 173 174 174 175 175 ;ordinals??? 176 FtpCommandA = _FtpCommandA@20@200177 FtpCommandW = _FtpCommandW@20@201176 FtpCommandA = "_FtpCommandA@20" @200 177 FtpCommandW = "_FtpCommandW@20" @201 -
branches/gcc-kmk/src/wintrust/wintrust.def
r7624 r21900 52 52 ;;address 0x6a70 WTHelperProvDataFromStateData @42 (0x20153a70) 53 53 54 WinVerifyTrust = _WinVerifyTrust@12@4354 WinVerifyTrust = "_WinVerifyTrust@12" @43 55 55 56 56 ;;address 0x5cb5 WinVerifyTrustEx @44 (0x20152cb5) -
branches/gcc-kmk/src/wnaspi32/initterm.cpp
r21842 r21900 1 /* $Id: init wnaspi32.cpp,v 1.7 2002-06-08 11:42:02sandervl Exp $1 /* $Id: initterm.cpp,v 1.8 2001-10-15 17:06:18 sandervl Exp $ 2 2 * 3 * DLL entry point3 * WNASPI322 DLL entry point 4 4 * 5 5 * Copyright 1998 Sander van Leeuwen 6 6 * Copyright 1998 Peter Fitzsimmons 7 7 * 8 *9 8 * Project Odin Software License can be found in LICENSE.TXT 10 *11 9 */ 12 10 13 /*-------------------------------------------------------------*/14 /* INITERM.C -- Source for a custom dynamic link library */15 /* initialization and termination (_DLL_InitTerm) */16 /* function. */17 /* */18 /* When called to perform initialization, this sample function */19 /* gets storage for an array of integers, and initializes its */20 /* elements with random integers. At termination time, it */21 /* frees the array. Substitute your own special processing. */22 /*-------------------------------------------------------------*/23 24 25 /* Include files */26 11 #define INCL_DOSMODULEMGR 27 12 #define INCL_DOSPROCESS … … 40 25 #include "cdio.h" 41 26 42 extern "C" { 43 //Win32 resource table (produced by wrc) 44 extern DWORD wnaspi32_PEResTab; 45 } 27 // Win32 resource table (produced by wrc) 28 extern DWORD wnaspi32_PEResTab; 29 46 30 static HMODULE dllHandle = 0; 31 47 32 BOOL fASPIAvailable = TRUE; 48 33 49 //******************************************************************************50 //******************************************************************************51 34 void WIN32API DisableASPI() 52 35 { 53 dprintf(("DisableASPI"));54 fASPIAvailable = FALSE;36 dprintf(("DisableASPI")); 37 fASPIAvailable = FALSE; 55 38 } 56 //****************************************************************************** 57 //****************************************************************************** 39 58 40 BOOL WINAPI Wnaspi32LibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad) 59 41 { 60 switch (fdwReason)61 {62 case DLL_PROCESS_ATTACH:63 {64 if(fASPIAvailable == FALSE) return TRUE;42 switch (fdwReason) 43 { 44 case DLL_PROCESS_ATTACH: 45 { 46 if(fASPIAvailable == FALSE) return TRUE; 65 47 66 if(OSLibCdIoInitialize() == FALSE) { 67 dprintf(("WNASPI32: LibMain; can't allocate aspi object! APIs will not work!")); 68 // @@@AH 20011020 we shouldn't prevent DLL loading in this case 69 // just make sure that all API calls fail 70 return TRUE; 71 } 72 fASPIAvailable = TRUE; 73 dprintf(("WNASPI32: LibMain; os2cdrom.dmd ASPI interface available")); 74 return TRUE; 75 } 48 if(OSLibCdIoInitialize() == FALSE) 49 { 50 dprintf(("WNASPI32: LibMain; can't allocate aspi object! APIs will not work!")); 51 // @@@AH 20011020 we shouldn't prevent DLL loading in this case 52 // just make sure that all API calls fail 53 return TRUE; 54 } 55 fASPIAvailable = TRUE; 56 dprintf(("WNASPI32: LibMain; os2cdrom.dmd ASPI interface available")); 57 return TRUE; 58 } 76 59 77 case DLL_THREAD_ATTACH:78 case DLL_THREAD_DETACH:79 return TRUE;60 case DLL_THREAD_ATTACH: 61 case DLL_THREAD_DETACH: 62 return TRUE; 80 63 81 case DLL_PROCESS_DETACH:82 OSLibCdIoTerminate();83 return TRUE;84 }85 return FALSE;64 case DLL_PROCESS_DETACH: 65 OSLibCdIoTerminate(); 66 return TRUE; 67 } 68 return FALSE; 86 69 } 87 /****************************************************************************/ 88 /* _DLL_InitTerm is the function that gets called by the operating system */ 89 /* loader when it loads and frees this DLL for each process that accesses */ 90 /* this DLL. However, it only gets called the first time the DLL is loaded */ 91 /* and the last time it is freed for a particular process. The system */ 92 /* linkage convention MUST be used because the operating system loader is */ 93 /* calling this function. */ 94 /****************************************************************************/ 95 ULONG APIENTRY inittermWnaspi32(ULONG hModule, ULONG ulFlag) 70 71 ULONG SYSTEM DLL_InitWinAspi32(ULONG hModule) 96 72 { 97 size_t i; 98 APIRET rc; 73 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ 99 74 100 /*-------------------------------------------------------------------------*/ 101 /* If ulFlag is zero then the DLL is being loaded so initialization should */ 102 /* be performed. If ulFlag is 1 then the DLL is being freed so */ 103 /* termination should be performed. */ 104 /*-------------------------------------------------------------------------*/ 75 dllHandle = RegisterLxDll(hModule, Wnaspi32LibMain, (PVOID)&wnaspi32_PEResTab); 76 if (dllHandle == 0) 77 return -1; 105 78 106 switch (ulFlag) { 107 case 0 : 108 dllHandle = RegisterLxDll(hModule, Wnaspi32LibMain, (PVOID)&wnaspi32_PEResTab); 109 if(dllHandle == 0) 110 return 0UL; 79 return 0; 80 } 111 81 112 break; 113 case 1 : 114 if(dllHandle) { 115 UnregisterLxDll(dllHandle); 116 } 117 break; 118 default : 119 return 0UL; 120 } 82 void SYSTEM DLL_TermWinAspi32(ULONG hModule) 83 { 84 if (dllHandle) 85 UnregisterLxDll(dllHandle); 86 } 121 87 122 /***********************************************************/ 123 /* A non-zero value must be returned to indicate success. */ 124 /***********************************************************/ 125 return 1UL; 88 ULONG SYSTEM DLL_Init(ULONG hModule) 89 { 90 if (DLL_InitDefault(hModule) == -1) 91 return -1; 92 return DLL_InitWinAspi32(hModule); 126 93 } 127 //****************************************************************************** 128 //****************************************************************************** 94 95 void SYSTEM DLL_Term(ULONG hModule) 96 { 97 DLL_TermWinAspi32(hModule); 98 DLL_TermDefault(hModule); 99 } -
branches/gcc-kmk/src/wnaspi32/wnaspi32.def
r8601 r21900 3 3 DESCRIPTION 'Odin32 System DLL - WnAspi32' 4 4 5 PROTMODE6 5 DATA MULTIPLE NONSHARED READWRITE LOADONCALL 7 6 CODE LOADONCALL -
branches/gcc-kmk/src/wnetap32/errorlog.cpp
r6672 r21900 32 32 #include <os2win.h> 33 33 #include <misc.h> 34 #include <string.h> 34 35 #include <heapstring.h> 35 #include <string.h>36 36 37 37 #include "oslibnet.h" -
branches/gcc-kmk/src/wnetap32/group.cpp
r6672 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/mem.cpp
r6672 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/netapi32.def
r10492 r21900 39 39 ; 0023 I_NetDfsSetLocalVolumeState 40 40 ; 0024 I_NetDfsSetServerInfo 41 I_NetGetDCList = _OS2I_NetGetDCList@24@2541 I_NetGetDCList = "_OS2I_NetGetDCList@24" @25 42 42 ; 0026 I_NetListCanonicalize 43 43 ; 0027 I_NetListTraverse 44 44 ; 0028 I_NetLogonControl2 45 I_NetLogonControl = _OS2I_NetLogonControl@24@2945 I_NetLogonControl = "_OS2I_NetLogonControl@24" @29 46 46 ; 0030 I_NetLogonSamLogoff 47 47 ; 0031 I_NetLogonSamLogon 48 48 ; 0032 I_NetLogonUasLogoff 49 49 ; 0033 I_NetLogonUasLogon 50 I_NetNameCanonicalize = _OS2I_NetNameCanonicalize@16@3451 I_NetNameCompare = _OS2I_NetNameCompare@16@3552 I_NetNameValidate = _OS2I_NetNameValidate@12@3653 I_NetPathCanonicalize = _OS2I_NetPathCanonicalize@16@3754 I_NetPathCompare = _OS2I_NetPathCompare@16@3855 I_NetPathType = _OS2I_NetPathType@8@3950 I_NetNameCanonicalize = "_OS2I_NetNameCanonicalize@16" @34 51 I_NetNameCompare = "_OS2I_NetNameCompare@16" @35 52 I_NetNameValidate = "_OS2I_NetNameValidate@12" @36 53 I_NetPathCanonicalize = "_OS2I_NetPathCanonicalize@16" @37 54 I_NetPathCompare = "_OS2I_NetPathCompare@16" @38 55 I_NetPathType = "_OS2I_NetPathType@8" @39 56 56 ; 0041 I_NetServerAuthenticate 57 57 ; 0040 I_NetServerAuthenticate2 … … 60 60 ; 0044 I_NetServerSetServiceBits 61 61 ; 0045 I_NetServerSetServiceBitsEx 62 NetAlertRaise = _OS2NetAlertRaise@12@46 ;stubonly63 NetAlertRaiseEx = _OS2NetAlertRaiseEx@16@47 ;stubonly64 NetApiBufferAllocate = _OS2NetApiBufferAllocate@8@48 ;stubonly65 NetApiBufferFree = _OS2NetApiBufferFree@4@49 ;stubonly66 NetApiBufferReallocate = _OS2NetApiBufferReallocate@12@50 ;stubonly67 NetApiBufferSize = _OS2NetApiBufferSize@8@51 ;stubonly68 NetAuditClear = _OS2NetAuditClear@12@5269 NetAuditRead = _OS2NetAuditRead@44@5370 NetAuditWrite = _OS2NetAuditWrite@44@5462 NetAlertRaise = "_OS2NetAlertRaise@12" @46 ;stubonly 63 NetAlertRaiseEx = "_OS2NetAlertRaiseEx@16" @47 ;stubonly 64 NetApiBufferAllocate = "_OS2NetApiBufferAllocate@8" @48 ;stubonly 65 NetApiBufferFree = "_OS2NetApiBufferFree@4" @49 ;stubonly 66 NetApiBufferReallocate = "_OS2NetApiBufferReallocate@12" @50 ;stubonly 67 NetApiBufferSize = "_OS2NetApiBufferSize@8" @51 ;stubonly 68 NetAuditClear = "_OS2NetAuditClear@12" @52 69 NetAuditRead = "_OS2NetAuditRead@44" @53 70 NetAuditWrite = "_OS2NetAuditWrite@44" @54 71 71 ; 0055 NetBrowserStatisticsGet 72 NetConfigGet = _OS2NetConfigGet@16@5673 NetConfigGetAll = _OS2NetConfigGetAll@12@5774 NetConfigSet = _OS2NetConfigSet@28@5875 NetConnectionEnum = _OS2NetConnectionEnum@32@5972 NetConfigGet = "_OS2NetConfigGet@16" @56 73 NetConfigGetAll = "_OS2NetConfigGetAll@12" @57 74 NetConfigSet = "_OS2NetConfigSet@28" @58 75 NetConnectionEnum = "_OS2NetConnectionEnum@32" @59 76 76 ; 0060 NetDfsAdd 77 77 ; 0061 NetDfsEnum … … 83 83 ; 0067 NetDfsSetInfo 84 84 ; 0068 NetEnumerateTrustedDomains 85 NetErrorLogClear = _OS2NetErrorLogClear@12@6986 NetErrorLogRead = _OS2NetErrorLogRead@44@7087 NetErrorLogWrite = _OS2NetErrorLogWrite@44@7188 NetFileClose = _OS2NetFileClose@8@7289 NetFileEnum = _OS2NetFileEnum@36@73 ;stubonly90 NetFileGetInfo = _OS2NetFileGetInfo@16@74 ;stubonly91 NetGetAnyDCName = _OS2NetGetAnyDCName@12@75 ;stubonly92 NetGetDCName = _OS2NetGetDCName@12@76 ;stubonly93 NetGetDisplayInformationIndex = _OS2NetGetDisplayInformationIndex@16@77 ;stubonly94 NetGroupAdd = _OS2NetGroupAdd@16@78 ;stubonly95 NetGroupAddUser = _OS2NetGroupAddUser@12@79 ;stubonly96 NetGroupDel = _OS2NetGroupDel@8@80 ;stubonly97 NetGroupDelUser = _OS2NetGroupDelUser@12@81 ;stubonly98 NetGroupEnum = _OS2NetGroupEnum@28@82 ;stubonly99 NetGroupGetInfo = _OS2NetGroupGetInfo@16@83 ;stubonly100 NetGroupGetUsers = _OS2NetGroupGetUsers@32@84 ;stubonly101 NetGroupSetInfo = _OS2NetGroupSetInfo@20@85 ;stubonly102 NetGroupSetUsers = _OS2NetGroupSetUsers@20@86 ;stubonly85 NetErrorLogClear = "_OS2NetErrorLogClear@12" @69 86 NetErrorLogRead = "_OS2NetErrorLogRead@44" @70 87 NetErrorLogWrite = "_OS2NetErrorLogWrite@44" @71 88 NetFileClose = "_OS2NetFileClose@8" @72 89 NetFileEnum = "_OS2NetFileEnum@36" @73 ;stubonly 90 NetFileGetInfo = "_OS2NetFileGetInfo@16" @74 ;stubonly 91 NetGetAnyDCName = "_OS2NetGetAnyDCName@12" @75 ;stubonly 92 NetGetDCName = "_OS2NetGetDCName@12" @76 ;stubonly 93 NetGetDisplayInformationIndex = "_OS2NetGetDisplayInformationIndex@16" @77 ;stubonly 94 NetGroupAdd = "_OS2NetGroupAdd@16" @78 ;stubonly 95 NetGroupAddUser = "_OS2NetGroupAddUser@12" @79 ;stubonly 96 NetGroupDel = "_OS2NetGroupDel@8" @80 ;stubonly 97 NetGroupDelUser = "_OS2NetGroupDelUser@12" @81 ;stubonly 98 NetGroupEnum = "_OS2NetGroupEnum@28" @82 ;stubonly 99 NetGroupGetInfo = "_OS2NetGroupGetInfo@16" @83 ;stubonly 100 NetGroupGetUsers = "_OS2NetGroupGetUsers@32" @84 ;stubonly 101 NetGroupSetInfo = "_OS2NetGroupSetInfo@20" @85 ;stubonly 102 NetGroupSetUsers = "_OS2NetGroupSetUsers@20" @86 ;stubonly 103 103 ; NetHandleGetInfo = _OS2NetHandleGetInfo@20 @ ;stubonly NOT in DLL but in SDK Doc 104 104 ; NetHandleSetInfo = _OS2NetHandleSetInfo@20 @ ;stubonly NOT in DLL but in SDK Doc 105 NetLocalGroupAdd = _OS2NetLocalGroupAdd@16@87 ;stubonly106 NetLocalGroupAddMember = _OS2NetLocalGroupAddMember@12@88107 NetLocalGroupAddMembers = _OS2NetLocalGroupAddMembers@20@89 ;stubonly108 NetLocalGroupDel = _OS2NetLocalGroupDel@8@90 ;stubonly105 NetLocalGroupAdd = "_OS2NetLocalGroupAdd@16" @87 ;stubonly 106 NetLocalGroupAddMember = "_OS2NetLocalGroupAddMember@12" @88 107 NetLocalGroupAddMembers = "_OS2NetLocalGroupAddMembers@20" @89 ;stubonly 108 NetLocalGroupDel = "_OS2NetLocalGroupDel@8" @90 ;stubonly 109 109 ; 0091 NetLocalGroupDelMember 110 NetLocalGroupDelMembers = _OS2NetLocalGroupDelMembers@20@92 ;stubonly111 NetLocalGroupEnum = _OS2NetLocalGroupEnum@28@93 ;stubonly112 NetLocalGroupGetInfo = _OS2NetLocalGroupGetInfo@16@94 ;stubonly113 NetLocalGroupGetMembers = _OS2NetLocalGroupGetMembers@32@95 ;stubonly114 NetLocalGroupSetInfo = _OS2NetLocalGroupSetInfo@20@96 ;stubonly115 NetLocalGroupSetMembers = _OS2NetLocalGroupSetMembers@20@97 ;stubonly116 NetMessageBufferSend = _OS2NetMessageBufferSend@20@98 ;stubonly117 NetMessageNameAdd = _OS2NetMessageNameAdd@8@99 ;stubonly118 NetMessageNameDel = _OS2NetMessageNameDel@8@100 ;stubonly119 NetMessageNameEnum = _OS2NetMessageNameEnum@28@101 ;stubonly120 NetMessageNameGetInfo = _OS2NetMessageNameGetInfo@16@102 ;stubonly121 NetQueryDisplayInformation = _OS2NetQueryDisplayInformation@28@103 ;stubonly122 NetRemoteTOD = _OS2NetRemoteTOD@8@105 ;stubonly123 NetReplExportDirAdd = _OS2NetReplExportDirAdd@16@106 ;stubonly124 NetReplExportDirDel = _OS2NetReplExportDirDel@8@107 ;stubonly125 NetReplExportDirEnum = _OS2NetReplExportDirEnum@28@108 ;stubonly126 NetReplExportDirGetInfo = _OS2NetReplExportDirGetInfo@16@109 ;stubonly127 NetReplExportDirLock = _OS2NetReplExportDirLock@8@110 ;stubonly128 NetReplExportDirSetInfo = _OS2NetReplExportDirSetInfo@20@111 ;stubonly129 NetReplExportDirUnlock = _OS2NetReplExportDirUnlock@12@112 ;stubonly130 NetReplGetInfo = _OS2NetReplGetInfo@12@113 ;stubonly131 NetReplImportDirAdd = _OS2NetReplImportDirAdd@16@114 ;stubonly132 NetReplImportDirDel = _OS2NetReplImportDirDel@8@115 ;stubonly133 NetReplImportDirEnum = _OS2NetReplImportDirEnum@28@116 ;stubonly134 NetReplImportDirGetInfo = _OS2NetReplImportDirGetInfo@16@117 ;stubonly135 NetReplImportDirLock = _OS2NetReplImportDirLock@8@118 ;stubonly136 NetReplImportDirUnlock = _OS2NetReplImportDirUnlock@12@119 ;stubonly137 NetReplSetInfo = _OS2NetReplSetInfo@16@120 ;stubonly110 NetLocalGroupDelMembers = "_OS2NetLocalGroupDelMembers@20" @92 ;stubonly 111 NetLocalGroupEnum = "_OS2NetLocalGroupEnum@28" @93 ;stubonly 112 NetLocalGroupGetInfo = "_OS2NetLocalGroupGetInfo@16" @94 ;stubonly 113 NetLocalGroupGetMembers = "_OS2NetLocalGroupGetMembers@32" @95 ;stubonly 114 NetLocalGroupSetInfo = "_OS2NetLocalGroupSetInfo@20" @96 ;stubonly 115 NetLocalGroupSetMembers = "_OS2NetLocalGroupSetMembers@20" @97 ;stubonly 116 NetMessageBufferSend = "_OS2NetMessageBufferSend@20" @98 ;stubonly 117 NetMessageNameAdd = "_OS2NetMessageNameAdd@8" @99 ;stubonly 118 NetMessageNameDel = "_OS2NetMessageNameDel@8" @100 ;stubonly 119 NetMessageNameEnum = "_OS2NetMessageNameEnum@28" @101 ;stubonly 120 NetMessageNameGetInfo = "_OS2NetMessageNameGetInfo@16" @102 ;stubonly 121 NetQueryDisplayInformation = "_OS2NetQueryDisplayInformation@28" @103 ;stubonly 122 NetRemoteTOD = "_OS2NetRemoteTOD@8" @105 ;stubonly 123 NetReplExportDirAdd = "_OS2NetReplExportDirAdd@16" @106 ;stubonly 124 NetReplExportDirDel = "_OS2NetReplExportDirDel@8" @107 ;stubonly 125 NetReplExportDirEnum = "_OS2NetReplExportDirEnum@28" @108 ;stubonly 126 NetReplExportDirGetInfo = "_OS2NetReplExportDirGetInfo@16" @109 ;stubonly 127 NetReplExportDirLock = "_OS2NetReplExportDirLock@8" @110 ;stubonly 128 NetReplExportDirSetInfo = "_OS2NetReplExportDirSetInfo@20" @111 ;stubonly 129 NetReplExportDirUnlock = "_OS2NetReplExportDirUnlock@12" @112 ;stubonly 130 NetReplGetInfo = "_OS2NetReplGetInfo@12" @113 ;stubonly 131 NetReplImportDirAdd = "_OS2NetReplImportDirAdd@16" @114 ;stubonly 132 NetReplImportDirDel = "_OS2NetReplImportDirDel@8" @115 ;stubonly 133 NetReplImportDirEnum = "_OS2NetReplImportDirEnum@28" @116 ;stubonly 134 NetReplImportDirGetInfo = "_OS2NetReplImportDirGetInfo@16" @117 ;stubonly 135 NetReplImportDirLock = "_OS2NetReplImportDirLock@8" @118 ;stubonly 136 NetReplImportDirUnlock = "_OS2NetReplImportDirUnlock@12" @119 ;stubonly 137 NetReplSetInfo = "_OS2NetReplSetInfo@16" @120 ;stubonly 138 138 ; 0121 NetRplAdapterAdd 139 139 ; 0122 NetRplAdapterDel … … 165 165 ; 0148 NetRplWkstaGetInfo 166 166 ; 0149 NetRplWkstaSetInfo 167 NetScheduleJobAdd = _OS2NetScheduleJobAdd@12@150 ;stubonly168 NetScheduleJobDel = _OS2NetScheduleJobDel@12@151 ;stubonly169 NetScheduleJobEnum = _OS2NetScheduleJobEnum@24@152 ;stubonly170 NetScheduleJobGetInfo = _OS2NetScheduleJobGetInfo@12@153 ;stubonly167 NetScheduleJobAdd = "_OS2NetScheduleJobAdd@12" @150 ;stubonly 168 NetScheduleJobDel = "_OS2NetScheduleJobDel@12" @151 ;stubonly 169 NetScheduleJobEnum = "_OS2NetScheduleJobEnum@24" @152 ;stubonly 170 NetScheduleJobGetInfo = "_OS2NetScheduleJobGetInfo@12" @153 ;stubonly 171 171 ; 0154 NetServerComputerNameAdd 172 172 ; 0155 NetServerComputerNameDel 173 NetServerDiskEnum = _OS2NetServerDiskEnum@28@156 ;stubonly174 NetServerEnum = _OS2NetServerEnum@36@157 ;stubonly173 NetServerDiskEnum = "_OS2NetServerDiskEnum@28" @156 ;stubonly 174 NetServerEnum = "_OS2NetServerEnum@36" @157 ;stubonly 175 175 ; 0158 NetServerEnumEx 176 NetServerGetInfo = _OS2NetServerGetInfo@12@159 ;stubonly177 NetServerSetInfo = _OS2NetServerSetInfo@16@160 ;stubonly178 NetServerTransportAdd = _OS2NetServerTransportAdd@12@161 ;stubonly179 NetServerTransportDel = _OS2NetServerTransportDel@8@163 ;stubonly180 NetServerTransportEnum = _OS2NetServerTransportEnum@28@164 ;stubonly181 NetServiceControl = _OS2NetServiceControl@20@165182 NetServiceEnum = _OS2NetServiceEnum@28@166183 NetServiceGetInfo = _OS2NetServiceGetInfo@16@167184 NetServiceInstall = _OS2NetServiceInstall@20@168185 NetSessionDel = _OS2NetSessionDel@12@169 ;stubonly186 NetSessionEnum = _OS2NetSessionEnum@36@170 ;stubonly187 NetSessionGetInfo = _OS2NetSessionGetInfo@20@171 ;stubonly188 NetShareAdd = _OS2NetShareAdd@16@172 ;stubonly189 NetShareCheck = _OS2NetShareCheck@12@173 ;stubonly190 NetShareDel = _OS2NetShareDel@12@174 ;stubonly191 NetShareDelSticky = _OS2NetShareDelSticky@12@175192 NetShareEnum = _OS2NetShareEnum@28@176193 NetShareEnumSticky = _OS2NetShareEnumSticky@28@177194 NetShareGetInfo = _OS2NetShareGetInfo@16@178 ;stubonly195 NetShareSetInfo = _OS2NetShareSetInfo@20@179 ;stubonly196 NetStatisticsGet = _OS2NetStatisticsGet@20@180 ;stubonly197 NetUseAdd = _OS2NetUseAdd@16@181198 NetUseDel = _OS2NetUseDel@12@182199 NetUseEnum = _OS2NetUseEnum@28@183200 NetUseGetInfo = _OS2NetUseGetInfo@16@184201 NetUserAdd = _OS2NetUserAdd@16@185 ;stubonly202 NetUserChangePassword = _OS2NetUserChangePassword@16@186 ;stubonly203 NetUserDel = _OS2NetUserDel@8@187 ;stubonly204 NetUserEnum = _OS2NetUserEnum@32@188 ;stubonly205 NetUserGetGroups = _OS2NetUserGetGroups@28@189 ;stubonly206 NetUserGetInfo = _OS2NetUserGetInfo@16@190 ;stubonly207 NetUserGetLocalGroups = _OS2NetUserGetLocalGroups@32@191 ;stubonly208 NetUserModalsGet = _OS2NetUserModalsGet@12@192 ;stubonly209 NetUserModalsSet = _OS2NetUserModalsSet@16@193 ;stubonly210 NetUserSetGroups = _OS2NetUserSetGroups@20@194 ;stubonly211 NetUserSetInfo = _OS2NetUserSetInfo@20@195 ;stubonly212 NetWkstaGetInfo = _OS2NetWkstaGetInfo@12@196 ;stubonly213 NetWkstaSetInfo = _OS2NetWkstaSetInfo@16@197 ;stubonly214 NetWkstaTransportAdd = _OS2NetWkstaTransportAdd@12@198 ;stubonly215 NetWkstaTransportDel = _OS2NetWkstaTransportDel@12@199 ;stubonly216 NetWkstaTransportEnum = _OS2NetWkstaTransportEnum@28@200 ;stubonly217 NetWkstaUserEnum = _OS2NetWkstaUserEnum@28@201 ;stubonly218 NetWkstaUserGetInfo = _OS2NetWkstaUserGetInfo@12@202 ;stubonly219 NetWkstaUserSetInfo = _OS2NetWkstaUserSetInfo@16@203 ;stubonly220 NetapipBufferAllocate = _OS2NetapipBufferAllocate@12@204221 Netbios = _OS2Netbios@4@205176 NetServerGetInfo = "_OS2NetServerGetInfo@12" @159 ;stubonly 177 NetServerSetInfo = "_OS2NetServerSetInfo@16" @160 ;stubonly 178 NetServerTransportAdd = "_OS2NetServerTransportAdd@12" @161 ;stubonly 179 NetServerTransportDel = "_OS2NetServerTransportDel@8" @163 ;stubonly 180 NetServerTransportEnum = "_OS2NetServerTransportEnum@28" @164 ;stubonly 181 NetServiceControl = "_OS2NetServiceControl@20" @165 182 NetServiceEnum = "_OS2NetServiceEnum@28" @166 183 NetServiceGetInfo = "_OS2NetServiceGetInfo@16" @167 184 NetServiceInstall = "_OS2NetServiceInstall@20" @168 185 NetSessionDel = "_OS2NetSessionDel@12" @169 ;stubonly 186 NetSessionEnum = "_OS2NetSessionEnum@36" @170 ;stubonly 187 NetSessionGetInfo = "_OS2NetSessionGetInfo@20" @171 ;stubonly 188 NetShareAdd = "_OS2NetShareAdd@16" @172 ;stubonly 189 NetShareCheck = "_OS2NetShareCheck@12" @173 ;stubonly 190 NetShareDel = "_OS2NetShareDel@12" @174 ;stubonly 191 NetShareDelSticky = "_OS2NetShareDelSticky@12" @175 192 NetShareEnum = "_OS2NetShareEnum@28" @176 193 NetShareEnumSticky = "_OS2NetShareEnumSticky@28" @177 194 NetShareGetInfo = "_OS2NetShareGetInfo@16" @178 ;stubonly 195 NetShareSetInfo = "_OS2NetShareSetInfo@20" @179 ;stubonly 196 NetStatisticsGet = "_OS2NetStatisticsGet@20" @180 ;stubonly 197 NetUseAdd = "_OS2NetUseAdd@16" @181 198 NetUseDel = "_OS2NetUseDel@12" @182 199 NetUseEnum = "_OS2NetUseEnum@28" @183 200 NetUseGetInfo = "_OS2NetUseGetInfo@16" @184 201 NetUserAdd = "_OS2NetUserAdd@16" @185 ;stubonly 202 NetUserChangePassword = "_OS2NetUserChangePassword@16" @186 ;stubonly 203 NetUserDel = "_OS2NetUserDel@8" @187 ;stubonly 204 NetUserEnum = "_OS2NetUserEnum@32" @188 ;stubonly 205 NetUserGetGroups = "_OS2NetUserGetGroups@28" @189 ;stubonly 206 NetUserGetInfo = "_OS2NetUserGetInfo@16" @190 ;stubonly 207 NetUserGetLocalGroups = "_OS2NetUserGetLocalGroups@32" @191 ;stubonly 208 NetUserModalsGet = "_OS2NetUserModalsGet@12" @192 ;stubonly 209 NetUserModalsSet = "_OS2NetUserModalsSet@16" @193 ;stubonly 210 NetUserSetGroups = "_OS2NetUserSetGroups@20" @194 ;stubonly 211 NetUserSetInfo = "_OS2NetUserSetInfo@20" @195 ;stubonly 212 NetWkstaGetInfo = "_OS2NetWkstaGetInfo@12" @196 ;stubonly 213 NetWkstaSetInfo = "_OS2NetWkstaSetInfo@16" @197 ;stubonly 214 NetWkstaTransportAdd = "_OS2NetWkstaTransportAdd@12" @198 ;stubonly 215 NetWkstaTransportDel = "_OS2NetWkstaTransportDel@12" @199 ;stubonly 216 NetWkstaTransportEnum = "_OS2NetWkstaTransportEnum@28" @200 ;stubonly 217 NetWkstaUserEnum = "_OS2NetWkstaUserEnum@28" @201 ;stubonly 218 NetWkstaUserGetInfo = "_OS2NetWkstaUserGetInfo@12" @202 ;stubonly 219 NetWkstaUserSetInfo = "_OS2NetWkstaUserSetInfo@16" @203 ;stubonly 220 NetapipBufferAllocate = "_OS2NetapipBufferAllocate@12" @204 221 Netbios = "_OS2Netbios@4" @205 222 222 ; 0206 NetpAccessCheck 223 223 ; 0207 NetpAccessCheckAndAudit … … 278 278 ; 0262 NlBindingAddServerToCache 279 279 ; 0263 NlBindingRemoveServerFromCache 280 RxNetAccessAdd = _OS2RxNetAccessAdd@24@264281 RxNetAccessDel = _OS2RxNetAccessDel@24@265282 RxNetAccessEnum = _OS2RxNetAccessEnum@24@266283 RxNetAccessGetInfo = _OS2RxNetAccessGetInfo@24@267284 RxNetAccessGetUserPerms = _OS2RxNetAccessGetUserPerms@24@268285 RxNetAccessSetInfo = _OS2RxNetAccessSetInfo@24@269280 RxNetAccessAdd = "_OS2RxNetAccessAdd@24" @264 281 RxNetAccessDel = "_OS2RxNetAccessDel@24" @265 282 RxNetAccessEnum = "_OS2RxNetAccessEnum@24" @266 283 RxNetAccessGetInfo = "_OS2RxNetAccessGetInfo@24" @267 284 RxNetAccessGetUserPerms = "_OS2RxNetAccessGetUserPerms@24" @268 285 RxNetAccessSetInfo = "_OS2RxNetAccessSetInfo@24" @269 286 286 ; 0270 RxNetServerEnum 287 287 ; 0271 RxNetUserPasswordSet -
branches/gcc-kmk/src/wnetap32/repl.cpp
r6672 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/schedule.cpp
r6672 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/server.cpp
r10492 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/service.cpp
r6676 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/share.cpp
r6676 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/use.cpp
r6676 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/user.cpp
r6672 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/wksta.cpp
r10492 r21900 27 27 #include <os2win.h> 28 28 #include <misc.h> 29 #include <string.h> 29 30 #include <unicode.h> 30 31 #include <heapstring.h> 31 #include <string.h>32 32 #include <winconst.h> 33 33 -
branches/gcc-kmk/src/wnetap32/wnetap32.cpp
r10492 r21900 33 33 #include <os2win.h> 34 34 #include <misc.h> 35 #include <string.h> 35 36 #include <unicode.h> 36 37 #include <heapstring.h> 37 #include <string.h>38 38 #include <winconst.h> 39 39 -
branches/gcc-kmk/src/wow32/wow32.cpp
r5821 r21900 15 15 #include <unicode.h> 16 16 #include <heapstring.h> 17 #include <wow32.h>17 #include "wow32.h" 18 18 19 19 ODINDEBUGCHANNEL(WOW32) -
branches/gcc-kmk/src/wow32/wow32.def
r5822 r21900 10 10 11 11 EXPORTS 12 WOWHandle16 = _WOWHandle16@812 WOWHandle16 = "_WOWHandle16@8" 13 13 14 14 ; 1 forward WOWGetDescriptor kernel32.K32WOWGetDescriptor
Note:
See TracChangeset
for help on using the changeset viewer.