Changeset 21916 for trunk/src/wininet
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 4 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/wininet/internet.c
r9439 r21916 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 -
trunk/src/wininet/wininet.cpp
r9439 r21916 9 9 10 10 #include <os2win.h> 11 #include <win \wininet.h>11 #include <win/wininet.h> 12 12 13 13 //****************************************************************************** … … 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 //****************************************************************************** -
trunk/src/wininet/wininet.def
r8607 r21916 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
Note:
See TracChangeset
for help on using the changeset viewer.