Ignore:
Timestamp:
Aug 2, 2000, 10:18:25 PM (25 years ago)
Author:
bird
Message:

Function status corrections.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shlwapi/url.cpp

    r3849 r3942  
    1 /* $Id: url.cpp,v 1.4 2000-07-18 18:00:01 bird Exp $ */
     1/* $Id: url.cpp,v 1.5 2000-08-02 20:18:24 bird Exp $ */
    22
    33/*
     
    139139 *             second flag guarantees that, if no valid scheme can be
    140140 *             determined, the function will apply the default scheme to the URL.
    141  * Status    : UNTESTED
     141 * Status    : PARTIALLY IMPLEMENTED UNTESTED
    142142 *
    143143 * Author    : Patrick Haller [Thu, 2000/04/20 19:46]
     
    161161
    162162
     163/**
     164 * @status      partially
     165 */
    163166ODINFUNCTION4(HRESULT, UrlApplySchemeW,
    164167              LPCWSTR, pszIn,
     
    254257
    255258
     259/**
     260 * @status      stub
     261 */
    256262ODINFUNCTION4(HRESULT, UrlCanonicalizeW,
    257263              LPCWSTR, pszUrl,
     
    321327 *             Other errors A standard OLE error value is returned.
    322328 * Remark    : SHLWAPI.
    323  * Status    : UNTESTED
     329 * Status    : STUB UNTESTED
    324330 *
    325331 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    339345
    340346
     347/**
     348 * @status      stub
     349 */
    341350ODINFUNCTION5(HRESULT, UrlCombineW,
    342351              LPCWSTR, pszBase,
     
    370379 *             with UrlCanonicalize. Then, compare the canonicalized URLs with
    371380 *             UrlCompare.
    372  * Status    : UNTESTED
     381 * Status    : PARTIALLY IMPLEMENTED UNTESTED
    373382 *
    374383 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    386395}
    387396
     397/**
     398 * @status      stub
     399 */
    388400ODINFUNCTION3(int,     UrlCompareW,
    389401              LPCWSTR, pszURL1,
     
    410422 *             returns S_OK if successful or a standard OLE error value if not.
    411423 * Remark    : SHLWAPI.
    412  * Status    : UNTESTED
     424 * Status    : STUB UNTESTED
    413425 *
    414426 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    427439
    428440
     441/**
     442 * @status      stub
     443 */
    429444ODINFUNCTION4(HRESULT,UrlCreateFromPathW,
    430445              LPCWSTR,pszPath,
     
    490505 *             during transport across the internet. This functions converts
    491506 *             unsafe characters into their equivalent "%xy" escape sequences.
    492  * Status    : UNTESTED
     507 * Status    : STUB UNTESTED
    493508 *
    494509 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    507522
    508523
     524/**
     525 * @status      stub
     526 */
    509527ODINFUNCTION4(HRESULT, UrlEscapeW,
    510528              LPCWSTR, pszURL,
     
    531549 *             character. If a file URL has a query string, the returned
    532550 *             string includes the query string.
    533  * Status    : UNTESTED
     551 * Status    : STUB UNTESTED
    534552 *
    535553 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    545563
    546564
     565/**
     566 * @status      stub
     567 */
    547568ODINFUNCTION1(LPCWSTR, UrlGetLocationW,
    548569              LPCWSTR, pszURL)
     
    590611 *             the buffer must be able to contain, including the terminating
    591612 *             NULL character. Otherwise, an OLE error value is returned.
    592  * Status    : UNTESTED
     613 * Status    : STUB UNTESTED
    593614 *
    594615 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    608629
    609630
     631/**
     632 * @status      stub
     633 */
    610634ODINFUNCTION5(HRESULT, UrlGetPartW,
    611635              LPCWSTR, pszIn,
     
    638662 *             pbHash = (LPBYTE)&dwHashedValue, where dwHashedValue is a
    639663 *             DWORD buffer.
    640  * Status    : UNTESTED
     664 * Status    : STUB UNTESTED
    641665 *
    642666 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    654678
    655679
     680/**
     681 * @status      stub
     682 */
    656683ODINFUNCTION3(HRESULT,UrlHashW,
    657684              LPCWSTR,pszURL,
     
    685712 *             or FALSE otherwise.
    686713 * Remark    : SHLWAPI.
    687  * Status    : UNTESTED
     714 * Status    : STUB UNTESTED
    688715 *
    689716 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    700727
    701728
     729/**
     730 * @status      stub
     731 */
    702732ODINFUNCTION2(BOOL,    UrlIsW,
    703733              LPCWSTR, pszUrl,
     
    718748 *             A No History URL is a URL that browsers typically do not
    719749 *             include in their navigation history.
    720  * Status    : UNTESTED
     750 * Status    : STUB UNTESTED
    721751 *
    722752 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    730760
    731761
     762/**
     763 * @status      stub
     764 */
    732765ODINFUNCTION1(BOOL,   UrlIsNoHistoryW,
    733766              LPCWSTR,pszURL)
     
    749782 *             URL. Opaque URLs cannot be separated into the standard
    750783 *             URL heirarchy.
    751  * Status    : UNTESTED
     784 * Status    : STUB UNTESTED
    752785 *
    753786 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    761794
    762795
     796/**
     797 * @status      stub
     798 */
    763799ODINFUNCTION1(BOOL,   UrlIsOpaqueW,
    764800              LPCWSTR,pszURL)
     
    814850 * Remark    : SHLWAPI.UrlUnEscape
    815851 *             An escape sequence has the form "%xy".
    816  * Status    : UNTESTED
     852 * Status    : STUB UNTESTED
    817853 *
    818854 * Author    : Patrick Haller [Tue, 2000/04/25 02:02]
     
    831867
    832868
     869/**
     870 * @status      stub
     871 */
    833872ODINFUNCTION4(HRESULT,UrlUnescapeW,
    834873              LPWSTR, pszURL,
Note: See TracChangeset for help on using the changeset viewer.