Changeset 3942 for trunk/src/shlwapi/url.cpp
- Timestamp:
- Aug 2, 2000, 10:18:25 PM (25 years ago)
- 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:01bird Exp $ */1 /* $Id: url.cpp,v 1.5 2000-08-02 20:18:24 bird Exp $ */ 2 2 3 3 /* … … 139 139 * second flag guarantees that, if no valid scheme can be 140 140 * determined, the function will apply the default scheme to the URL. 141 * Status : UNTESTED141 * Status : PARTIALLY IMPLEMENTED UNTESTED 142 142 * 143 143 * Author : Patrick Haller [Thu, 2000/04/20 19:46] … … 161 161 162 162 163 /** 164 * @status partially 165 */ 163 166 ODINFUNCTION4(HRESULT, UrlApplySchemeW, 164 167 LPCWSTR, pszIn, … … 254 257 255 258 259 /** 260 * @status stub 261 */ 256 262 ODINFUNCTION4(HRESULT, UrlCanonicalizeW, 257 263 LPCWSTR, pszUrl, … … 321 327 * Other errors A standard OLE error value is returned. 322 328 * Remark : SHLWAPI. 323 * Status : UNTESTED329 * Status : STUB UNTESTED 324 330 * 325 331 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 339 345 340 346 347 /** 348 * @status stub 349 */ 341 350 ODINFUNCTION5(HRESULT, UrlCombineW, 342 351 LPCWSTR, pszBase, … … 370 379 * with UrlCanonicalize. Then, compare the canonicalized URLs with 371 380 * UrlCompare. 372 * Status : UNTESTED381 * Status : PARTIALLY IMPLEMENTED UNTESTED 373 382 * 374 383 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 386 395 } 387 396 397 /** 398 * @status stub 399 */ 388 400 ODINFUNCTION3(int, UrlCompareW, 389 401 LPCWSTR, pszURL1, … … 410 422 * returns S_OK if successful or a standard OLE error value if not. 411 423 * Remark : SHLWAPI. 412 * Status : UNTESTED424 * Status : STUB UNTESTED 413 425 * 414 426 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 427 439 428 440 441 /** 442 * @status stub 443 */ 429 444 ODINFUNCTION4(HRESULT,UrlCreateFromPathW, 430 445 LPCWSTR,pszPath, … … 490 505 * during transport across the internet. This functions converts 491 506 * unsafe characters into their equivalent "%xy" escape sequences. 492 * Status : UNTESTED507 * Status : STUB UNTESTED 493 508 * 494 509 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 507 522 508 523 524 /** 525 * @status stub 526 */ 509 527 ODINFUNCTION4(HRESULT, UrlEscapeW, 510 528 LPCWSTR, pszURL, … … 531 549 * character. If a file URL has a query string, the returned 532 550 * string includes the query string. 533 * Status : UNTESTED551 * Status : STUB UNTESTED 534 552 * 535 553 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 545 563 546 564 565 /** 566 * @status stub 567 */ 547 568 ODINFUNCTION1(LPCWSTR, UrlGetLocationW, 548 569 LPCWSTR, pszURL) … … 590 611 * the buffer must be able to contain, including the terminating 591 612 * NULL character. Otherwise, an OLE error value is returned. 592 * Status : UNTESTED613 * Status : STUB UNTESTED 593 614 * 594 615 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 608 629 609 630 631 /** 632 * @status stub 633 */ 610 634 ODINFUNCTION5(HRESULT, UrlGetPartW, 611 635 LPCWSTR, pszIn, … … 638 662 * pbHash = (LPBYTE)&dwHashedValue, where dwHashedValue is a 639 663 * DWORD buffer. 640 * Status : UNTESTED664 * Status : STUB UNTESTED 641 665 * 642 666 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 654 678 655 679 680 /** 681 * @status stub 682 */ 656 683 ODINFUNCTION3(HRESULT,UrlHashW, 657 684 LPCWSTR,pszURL, … … 685 712 * or FALSE otherwise. 686 713 * Remark : SHLWAPI. 687 * Status : UNTESTED714 * Status : STUB UNTESTED 688 715 * 689 716 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 700 727 701 728 729 /** 730 * @status stub 731 */ 702 732 ODINFUNCTION2(BOOL, UrlIsW, 703 733 LPCWSTR, pszUrl, … … 718 748 * A No History URL is a URL that browsers typically do not 719 749 * include in their navigation history. 720 * Status : UNTESTED750 * Status : STUB UNTESTED 721 751 * 722 752 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 730 760 731 761 762 /** 763 * @status stub 764 */ 732 765 ODINFUNCTION1(BOOL, UrlIsNoHistoryW, 733 766 LPCWSTR,pszURL) … … 749 782 * URL. Opaque URLs cannot be separated into the standard 750 783 * URL heirarchy. 751 * Status : UNTESTED784 * Status : STUB UNTESTED 752 785 * 753 786 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 761 794 762 795 796 /** 797 * @status stub 798 */ 763 799 ODINFUNCTION1(BOOL, UrlIsOpaqueW, 764 800 LPCWSTR,pszURL) … … 814 850 * Remark : SHLWAPI.UrlUnEscape 815 851 * An escape sequence has the form "%xy". 816 * Status : UNTESTED852 * Status : STUB UNTESTED 817 853 * 818 854 * Author : Patrick Haller [Tue, 2000/04/25 02:02] … … 831 867 832 868 869 /** 870 * @status stub 871 */ 833 872 ODINFUNCTION4(HRESULT,UrlUnescapeW, 834 873 LPWSTR, pszURL,
Note:
See TracChangeset
for help on using the changeset viewer.