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/string.cpp

    r3700 r3942  
    1  /* $Id: string.cpp,v 1.5 2000-06-13 18:14:21 phaller Exp $ */
     1 /* $Id: string.cpp,v 1.6 2000-08-02 20:18:24 bird Exp $ */
    22
    33/*
     
    7171/*****************************************************************************
    7272 * Name      : ChrCmpIA
    73  * Purpose   : 
    74  * Parameters: 
    75  * Variables :
    76  * Result    : 
    77  * Remark    : 
    78  * Status    : UNTESTED
     73 * Purpose   :
     74 * Parameters:
     75 * Variables :
     76 * Result    :
     77 * Remark    :
     78 * Status    : PARTIALLY IMPLEMENTED UNTESTED
    7979 *
    8080 * Author    : Patrick Haller [Wed, 1999/12/29 09:00]
     
    8686{
    8787  // Note: IsDBCSLeadByte ignored !
    88  
     88
    8989  if ( (ch1 >= 'A') && (ch1 <= 'Z') ) ch1 |= 0x20;
    9090  if ( (ch2 >= 'A') && (ch2 <= 'Z') ) ch2 |= 0x20;
    91  
     91
    9292  return ch1 - ch2;
    9393}
     
    375375 *             the string if successful, or NULL otherwise.
    376376 * Remark    : SHELL32.
    377  * Status    : UNTESTED UNKNOWN
     377 * Status    : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN
    378378 *
    379379 * Author    : Patrick Haller [Wed, 1999/12/29 09:00]
     
    408408 *             the string if successful, or NULL otherwise.
    409409 * Remark    : SHELL32.
    410  * Status    : UNTESTED UNKNOWN
     410 * Status    : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN
    411411 *
    412412 * Author    : Patrick Haller [Wed, 1999/12/29 09:00]
     
    441441 *             substring if successful, or NULL otherwise.
    442442 * Remark    : SHELL32.
    443  * Status    : UNTESTED UNKNOWN
     443 * Status    : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN
    444444 *
    445445 * Author    : Patrick Haller [Wed, 1999/12/29 09:00]
     
    487487 *             substring if successful, or NULL otherwise.
    488488 * Remark    : SHELL32.
    489  * Status    : UNTESTED UNKNOWN
     489 * Status    : COMPLETELY IMPLEMENTED UNTESTED UNKNOWN
    490490 *
    491491 * Author    : Patrick Haller [Wed, 1999/12/29 09:00]
     
    578578        }
    579579        lstrcpynA (pszBuf, buf, cchBuf);
    580         return pszBuf; 
     580        return pszBuf;
    581581}
    582582
     
    600600        }
    601601        lstrcpynAtoW (pszBuf, buf, cchBuf);
    602         return pszBuf; 
     602        return pszBuf;
    603603}
    604604
     
    607607 * Name      : StrCpyA
    608608 * Purpose   : copy a string
    609  * Parameters: 
    610  * Variables :
    611  * Result    : 
     609 * Parameters:
     610 * Variables :
     611 * Result    :
    612612 * Remark    : not exported ?
    613  * Status    : UNTESTED 
    614  *
    615  * Author    : 
     613 * Status    : UNTESTED
     614 *
     615 * Author    :
    616616 *****************************************************************************/
    617617
     
    628628 * Name      : StrCpyW
    629629 * Purpose   : copy a wide-character string
    630  * Parameters: 
    631  * Variables :
    632  * Result    : 
     630 * Parameters:
     631 * Variables :
     632 * Result    :
    633633 * Remark    : SHLWAPI.642
    634  * Status    : UNTESTED
    635  *
    636  * Author    : 
     634 * Status    : COMPLETELY IMPLEMENTED UNTESTED
     635 *
     636 * Author    :
    637637 *****************************************************************************/
    638638
     
    649649 * Name      : StrDupA
    650650 * Purpose   : duplicate a string on the local heap
    651  * Parameters: 
    652  * Variables :
    653  * Result    : 
     651 * Parameters:
     652 * Variables :
     653 * Result    :
    654654 * Remark    : SHLWAPI.644
    655  * Status    : UNTESTED
    656  *
    657  * Author    : 
     655 * Status    : COMPLETELY IMPLEMENTED UNTESTED
     656 *
     657 * Author    :
    658658 *****************************************************************************/
    659659
     
    667667    StrCpyA((LPSTR)hLocal,
    668668            lpStr);
    669  
     669
    670670  return (LPSTR)hLocal;
    671671}
     
    675675 * Name      : StrDupW
    676676 * Purpose   : duplicate a wide-characters string on the local heap
    677  * Parameters: 
    678  * Variables :
    679  * Result    : 
     677 * Parameters:
     678 * Variables :
     679 * Result    :
    680680 * Remark    : SHLWAPI.645
    681  * Status    : UNTESTED
    682  *
    683  * Author    : 
     681 * Status    : COMPLETELY IMPLEMENTED UNTESTED
     682 *
     683 * Author    :
    684684 *****************************************************************************/
    685685
     
    693693    StrCpyW((LPWSTR)hLocal,
    694694            lpStr);
    695  
     695
    696696  return (LPWSTR)hLocal;
    697697}
Note: See TracChangeset for help on using the changeset viewer.