~ubuntu-branches/ubuntu/precise/wine1.3/precise

« back to all changes in this revision

Viewing changes to dlls/wininet/internet.c

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-01-17 09:00:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120117090034-eyhpp02jawlvrrkc
Tags: 1.3.37-0ubuntu1
* New upstream release
  - Many changes
* Convert to 3.0 source format
* debian/control:
  - Remove pre-multiarch amd64 build depends
  - Remove quilt build depends
  - Recommend proper gecko versions
* debian/rules:
  - Remove manual dh_quilt patch and unpatch
  - No need to uuencode/uudecode anymore with new source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
287
287
 
288
288
            g_dwTlsErrIndex = TlsAlloc();
289
289
 
290
 
            if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
291
 
                return FALSE;
 
290
            if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
 
291
                return FALSE;
292
292
 
293
293
            URLCacheContainers_CreateDefaults();
294
294
 
295
295
            WININET_hModule = hinstDLL;
 
296
            break;
296
297
 
297
298
        case DLL_THREAD_ATTACH:
298
 
            break;
 
299
            break;
299
300
 
300
301
        case DLL_THREAD_DETACH:
301
302
            if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
635
636
        UrlComponents.dwUserNameLength = INTERNET_MAX_USER_NAME_LENGTH;
636
637
        UrlComponents.lpszPassword = password;
637
638
        UrlComponents.dwPasswordLength = INTERNET_MAX_PASSWORD_LENGTH;
 
639
        UrlComponents.dwUrlPathLength = 0;
638
640
        UrlComponents.dwExtraInfoLength = 0;
639
641
 
640
642
        if(InternetCrackUrlW(wpi.proxy, 0, 0, &UrlComponents))
2106
2108
DWORD WINAPI InternetSetFilePointer(HINTERNET hFile, LONG lDistanceToMove,
2107
2109
    PVOID pReserved, DWORD dwMoveContext, DWORD_PTR dwContext)
2108
2110
{
2109
 
    FIXME("stub\n");
 
2111
    FIXME("(%p %d %p %d %lx): stub\n", hFile, lDistanceToMove, pReserved, dwMoveContext, dwContext);
2110
2112
    return FALSE;
2111
2113
}
2112
2114
 
4383
4385
    FIXME("(%p, %08lx) stub\n", a, b);
4384
4386
    return 0;
4385
4387
}
 
4388
 
 
4389
DWORD WINAPI ShowClientAuthCerts(HWND parent)
 
4390
{
 
4391
    FIXME("%p: stub\n", parent);
 
4392
    return 0;
 
4393
}