Changeset 21856 for branches/gcc-kmk/src/kernel32/registry.cpp
- Timestamp:
- Dec 6, 2011, 6:32:05 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/registry.cpp
r21852 r21856 319 319 *****************************************************************************/ 320 320 321 LONG WIN32API RegDeleteValueA(HKEY hKey, LP STR lpszValue)321 LONG WIN32API RegDeleteValueA(HKEY hKey, LPCSTR lpszValue) 322 322 { 323 323 return O32_RegDeleteValue(ConvertKey(hKey), … … 338 338 *****************************************************************************/ 339 339 340 LONG WIN32API RegDeleteValueW(HKEY hKey, LP WSTR lpszValue)340 LONG WIN32API RegDeleteValueW(HKEY hKey, LPCWSTR lpszValue) 341 341 { 342 342 char *astring = UnicodeToAsciiString(lpszValue);
Note:
See TracChangeset
for help on using the changeset viewer.