Ignore:
Timestamp:
Dec 6, 2011, 6:32:05 PM (14 years ago)
Author:
dmik
Message:

Make RegDeleteValue take const string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/kernel32/registry.cpp

    r21852 r21856  
    319319 *****************************************************************************/
    320320
    321 LONG WIN32API RegDeleteValueA(HKEY hKey, LPSTR lpszValue)
     321LONG WIN32API RegDeleteValueA(HKEY hKey, LPCSTR lpszValue)
    322322{
    323323  return O32_RegDeleteValue(ConvertKey(hKey),
     
    338338 *****************************************************************************/
    339339
    340 LONG WIN32API RegDeleteValueW(HKEY hKey, LPWSTR lpszValue)
     340LONG WIN32API RegDeleteValueW(HKEY hKey, LPCWSTR lpszValue)
    341341{
    342342  char *astring = UnicodeToAsciiString(lpszValue);
Note: See TracChangeset for help on using the changeset viewer.