Changeset 3942 for trunk/src/shlwapi/string.cpp
- Timestamp:
- Aug 2, 2000, 10:18:25 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shlwapi/string.cpp
r3700 r3942 1 /* $Id: string.cpp,v 1. 5 2000-06-13 18:14:21 phallerExp $ */1 /* $Id: string.cpp,v 1.6 2000-08-02 20:18:24 bird Exp $ */ 2 2 3 3 /* … … 71 71 /***************************************************************************** 72 72 * Name : ChrCmpIA 73 * Purpose : 74 * Parameters: 75 * Variables : 76 * Result : 77 * Remark : 78 * Status : UNTESTED73 * Purpose : 74 * Parameters: 75 * Variables : 76 * Result : 77 * Remark : 78 * Status : PARTIALLY IMPLEMENTED UNTESTED 79 79 * 80 80 * Author : Patrick Haller [Wed, 1999/12/29 09:00] … … 86 86 { 87 87 // Note: IsDBCSLeadByte ignored ! 88 88 89 89 if ( (ch1 >= 'A') && (ch1 <= 'Z') ) ch1 |= 0x20; 90 90 if ( (ch2 >= 'A') && (ch2 <= 'Z') ) ch2 |= 0x20; 91 91 92 92 return ch1 - ch2; 93 93 } … … 375 375 * the string if successful, or NULL otherwise. 376 376 * Remark : SHELL32. 377 * Status : UNTESTED UNKNOWN377 * Status : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN 378 378 * 379 379 * Author : Patrick Haller [Wed, 1999/12/29 09:00] … … 408 408 * the string if successful, or NULL otherwise. 409 409 * Remark : SHELL32. 410 * Status : UNTESTED UNKNOWN410 * Status : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN 411 411 * 412 412 * Author : Patrick Haller [Wed, 1999/12/29 09:00] … … 441 441 * substring if successful, or NULL otherwise. 442 442 * Remark : SHELL32. 443 * Status : UNTESTED UNKNOWN443 * Status : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN 444 444 * 445 445 * Author : Patrick Haller [Wed, 1999/12/29 09:00] … … 487 487 * substring if successful, or NULL otherwise. 488 488 * Remark : SHELL32. 489 * Status : UNTESTED UNKNOWN489 * Status : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN 490 490 * 491 491 * Author : Patrick Haller [Wed, 1999/12/29 09:00] … … 578 578 } 579 579 lstrcpynA (pszBuf, buf, cchBuf); 580 return pszBuf; 580 return pszBuf; 581 581 } 582 582 … … 600 600 } 601 601 lstrcpynAtoW (pszBuf, buf, cchBuf); 602 return pszBuf; 602 return pszBuf; 603 603 } 604 604 … … 607 607 * Name : StrCpyA 608 608 * Purpose : copy a string 609 * Parameters: 610 * Variables : 611 * Result : 609 * Parameters: 610 * Variables : 611 * Result : 612 612 * Remark : not exported ? 613 * Status : UNTESTED 614 * 615 * Author : 613 * Status : UNTESTED 614 * 615 * Author : 616 616 *****************************************************************************/ 617 617 … … 628 628 * Name : StrCpyW 629 629 * Purpose : copy a wide-character string 630 * Parameters: 631 * Variables : 632 * Result : 630 * Parameters: 631 * Variables : 632 * Result : 633 633 * Remark : SHLWAPI.642 634 * Status : UNTESTED635 * 636 * Author : 634 * Status : COMPLETELY IMPLEMENTED UNTESTED 635 * 636 * Author : 637 637 *****************************************************************************/ 638 638 … … 649 649 * Name : StrDupA 650 650 * Purpose : duplicate a string on the local heap 651 * Parameters: 652 * Variables : 653 * Result : 651 * Parameters: 652 * Variables : 653 * Result : 654 654 * Remark : SHLWAPI.644 655 * Status : UNTESTED656 * 657 * Author : 655 * Status : COMPLETELY IMPLEMENTED UNTESTED 656 * 657 * Author : 658 658 *****************************************************************************/ 659 659 … … 667 667 StrCpyA((LPSTR)hLocal, 668 668 lpStr); 669 669 670 670 return (LPSTR)hLocal; 671 671 } … … 675 675 * Name : StrDupW 676 676 * Purpose : duplicate a wide-characters string on the local heap 677 * Parameters: 678 * Variables : 679 * Result : 677 * Parameters: 678 * Variables : 679 * Result : 680 680 * Remark : SHLWAPI.645 681 * Status : UNTESTED682 * 683 * Author : 681 * Status : COMPLETELY IMPLEMENTED UNTESTED 682 * 683 * Author : 684 684 *****************************************************************************/ 685 685 … … 693 693 StrCpyW((LPWSTR)hLocal, 694 694 lpStr); 695 695 696 696 return (LPWSTR)hLocal; 697 697 }
Note:
See TracChangeset
for help on using the changeset viewer.