Ignore:
Timestamp:
Jul 29, 2000, 4:10:09 PM (25 years ago)
Author:
bird
Message:

Added the CVS Id keyword to the header.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wininet/internet.c

    r2624 r3898  
    1 /*
     1/* $Id: internet.c,v 1.2 2000-07-29 14:10:09 bird Exp $
     2 *
    23 * Wininet
    34 *
     
    7071 *
    7172 */
    72 INTERNETAPI HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, 
     73INTERNETAPI HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent,
    7374        DWORD dwAccessType, LPCSTR lpszProxy,
    7475        LPCSTR lpszProxyBypass, DWORD dwFlags)
     
    199200        lpFindFileData = (LPWIN32_FIND_DATAA) lpvFindData;
    200201        access = mktime(&lpwh->lpafp[lpwh->index].tmLastModified);
    201                
     202
    202203        /* Not all fields are filled in */
    203204        lpFindFileData->ftLastAccessTime.dwHighDateTime = HIWORD(access);
     
    245246                        retval = FTP_CloseFindNextHandle((LPWININETFINDNEXTA) lpwh);
    246247                        break;
    247                
     248
    248249                default:
    249250                        break;
     
    264265 *
    265266 */
    266 BOOLAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags, 
     267BOOLAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
    267268                LPURL_COMPONENTSA lpUrlComponents)
    268269{
     
    372373        // [<user>[<:password>]@]<host>[:<port>]
    373374        // First find the user and password if they exist...
    374                        
     375
    375376        szHost = strchr( szNetLoc, '@' );
    376377        if( szHost == NULL )
     
    458459 *
    459460 * Sets up a callback function which is called as progress is made
    460  * during an operation. 
     461 * during an operation.
    461462 *
    462463 * RETURNS
     
    473474        TRACE("\n");
    474475        if (lpwai->hdr.htype != WH_HINIT)
    475                 return INTERNET_INVALID_STATUS_CALLBACK; 
     476                return INTERNET_INVALID_STATUS_CALLBACK;
    476477
    477478        retVal = lpwai->lpfnStatusCB;
     
    485486 *           InternetWriteFile (WININET.138)
    486487 *
    487  * Write data to an open internet file 
     488 * Write data to an open internet file
    488489 *
    489490 * RETURNS
     
    506507        {
    507508                case WH_HHTTPREQ:
    508                         nSocket = ((LPWININETHTTPREQA)hFile)->nSocketFD; 
     509                        nSocket = ((LPWININETHTTPREQA)hFile)->nSocketFD;
    509510                        break;
    510511
     
    533534 *           InternetReadFile (WININET.121)
    534535 *
    535  * Read data from an open internet file 
     536 * Read data from an open internet file
    536537 *
    537538 * RETURNS
     
    540541 *
    541542 */
    542 BOOLAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer, 
     543BOOLAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
    543544        DWORD dwNumOfBytesToRead, LPDWORD dwNumOfBytesRead)
    544545{
     
    554555        {
    555556                case WH_HHTTPREQ:
    556                         nSocket = ((LPWININETHTTPREQA)hFile)->nSocketFD; 
     557                        nSocket = ((LPWININETHTTPREQA)hFile)->nSocketFD;
    557558                        break;
    558559
Note: See TracChangeset for help on using the changeset viewer.