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

    r3688 r3942  
    1 /* $Id: reg.cpp,v 1.3 2000-06-12 11:35:14 phaller Exp $ */
     1/* $Id: reg.cpp,v 1.4 2000-08-02 20:18:23 bird Exp $ */
    22
    33/*
     
    4141/*****************************************************************************
    4242 * Name      : DWORD SHRegCreateUSKeyA
    43  * Purpose   : 
    44  * Parameters: 
    45  * Variables :
    46  * Result    : 
     43 * Purpose   :
     44 * Parameters:
     45 * Variables :
     46 * Result    :
    4747 * Remark    : SHLWAPI.594 SHLWAPI.SHRegCreateUSKeyA
    48  * Status    : UNTESTED
     48 * Status    : STUB UNTESTED
    4949 *
    5050 * Author    : Patrick Haller [Wed, 1999/12/29 23:02]
     
    6565/*****************************************************************************
    6666 * Name      : DWORD SHRegCreateUSKeyW
    67  * Purpose   : 
    68  * Parameters: 
    69  * Variables :
    70  * Result    : 
     67 * Purpose   :
     68 * Parameters:
     69 * Variables :
     70 * Result    :
    7171 * Remark    : SHLWAPI.595 SHLWAPI.SHRegCreateUSKeyW
    72  * Status    : UNTESTED
     72 * Status    : STUB UNTESTED
    7373 *
    7474 * Author    : Patrick Haller [Wed, 1999/12/29 23:02]
     
    8383{
    8484  char szBuffer[256];
    85  
     85
    8686  // convert unicode to ascii
    8787  if (0 == WideCharToMultiByte(0,
     
    9494                               0))
    9595    return GetLastError();
    96  
     96
    9797  return SHRegCreateUSKeyA(szBuffer,
    9898                         arg1,
     
    175175 * Result    : unknown
    176176 * Remark    : SHLWAPI.SHRegGetBoolUSValueA
    177  * Status    : UNTESTED
     177 * Status    : COMPLETELY IMPLEMENTED ? UNTESTED
    178178 *
    179179 * Author    : Patrick Haller [Wed, 1999/12/29 23:02]
     
    189189  DWORD dwLength = sizeof(szBuffer);
    190190  LONG  rc;
    191  
     191
    192192  dprintf(("subkey=%s, value=%s\n",
    193193           pszSubKey,
    194194           pszValue));
    195  
     195
    196196  rc = SHRegGetUSValueA(pszSubKey,
    197197                        pszValue,
     
    204204  if (rc != ERROR_SUCCESS)
    205205    return rc;
    206  
     206
    207207  if (lstrcmpiA("YES",
    208208                szBuffer) == 0)
     
    220220                szBuffer) == 0)
    221221    return 0;
    222  
    223  
     222
     223
    224224  return ERROR_SUCCESS;  /* return success */
    225225}
     
    233233 * Result    : unknown
    234234 * Remark    : SHLWAPI.SHRegGetBoolUSValueW
    235  * Status    : UNTESTED
     235 * Status    : STUB UNTESTED
    236236 *
    237237 * Author    : Patrick Haller [Wed, 1999/12/29 23:02]
     
    255255/*****************************************************************************
    256256 * Name      : DWORD SHRegSetUSValueA
    257  * Purpose   : 
    258  * Parameters: 
    259  * Variables :
    260  * Result    : 
     257 * Purpose   :
     258 * Parameters:
     259 * Variables :
     260 * Result    :
    261261 * Remark    : SHLWAPI.SHRegSetUSValueA SHLWAPI.615
    262  * Status    : UNTESTED
     262 * Status    : STUB UNTESTED
    263263 *
    264264 * Author    : Patrick Haller [Wed, 1999/12/29 23:02]
     
    274274{
    275275  LONG rc;
    276  
     276
    277277#if 0
    278278  rc = SHRegCreateUSKeyA(hKey,
     
    291291  }
    292292#endif
    293  
     293
    294294  return rc;
    295295}
     
    300300/*****************************************************************************
    301301 * Name      : DWORD SHRegSetUSValueW
    302  * Purpose   : 
    303  * Parameters: 
    304  * Variables :
    305  * Result    : 
     302 * Purpose   :
     303 * Parameters:
     304 * Variables :
     305 * Result    :
    306306 * Remark    : SHLWAPI.SHRegSetUSValueW SHLWAPI.616
    307  * Status    : UNTESTED
     307 * Status    : STUB UNTESTED
    308308 *
    309309 * Author    : Patrick Haller [Wed, 1999/12/29 23:02]
     
    319319{
    320320  LONG rc;
    321  
     321
    322322#if 0
    323323  rc = SHRegCreateUSKeyW(hKey,
     
    336336  }
    337337#endif
    338  
     338
    339339  return rc;
    340340}
Note: See TracChangeset for help on using the changeset viewer.