Changeset 8687 for trunk/src/kernel32/registry.cpp
- Timestamp:
- Jun 15, 2002, 7:16:06 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/registry.cpp
r8431 r8687 1 /* $Id: registry.cpp,v 1.1 5 2002-05-16 12:53:45sandervl Exp $ */1 /* $Id: registry.cpp,v 1.16 2002-06-15 17:16:06 sandervl Exp $ */ 2 2 3 3 /* … … 1040 1040 DWORD cbData) 1041 1041 { 1042 if(fdwType == REG_SZ ) {1042 if(fdwType == REG_SZ || fdwType == REG_EXPAND_SZ) { 1043 1043 dprintf(("ADVAPI32: RegSetValueExA)%08xh,%s,%08xh,%08xh,%s,%08xh)", 1044 1044 hkey, … … 1059 1059 } 1060 1060 1061 if(fdwType == REG_EXPAND_SZ) { 1062 dprintf(("!WARNING!: REG_EXPAND_SZ converted to REG_SZ")); 1063 fdwType = REG_SZ; //registry.dll doesn't like this type 1064 } 1061 1065 return O32_RegSetValueEx(ConvertKey(hkey), 1062 1066 lpszValueName,
Note:
See TracChangeset
for help on using the changeset viewer.