if (key_is_invalid)
return def;
- LONG res = RegQueryValueExA (key, name, 0, &type, (unsigned char *) &dst,
- &size);
+ LONG res = RegQueryValueExA (key, name, 0, &type, (LPBYTE) &dst, &size);
+
+ if (type != REG_DWORD || res != ERROR_SUCCESS)
+ return def;
+
+ return dst;
+}
+
+int
+reg_key::get_int (const PWCHAR name, int def)
+{
+ DWORD type;
+ DWORD dst;
+ DWORD size = sizeof (dst);
+
+ if (key_is_invalid)
+ return def;
+
+ LONG res = RegQueryValueExW (key, name, 0, &type, (LPBYTE) &dst, &size);
if (type != REG_DWORD || res != ERROR_SUCCESS)
return def;
return key_is_invalid;
return (int) RegSetValueExA (key, name, 0, REG_DWORD,
- (unsigned char *) &value, sizeof (value));
+ (const BYTE *) &value, sizeof (value));
+}
+
+int
+reg_key::set_int (const PWCHAR name, int val)
+{
+ DWORD value = val;
+ if (key_is_invalid)
+ return key_is_invalid;
+
+ return (int) RegSetValueExW (key, name, 0, REG_DWORD,
+ (const BYTE *) &value, sizeof (value));
}
/* Given the current registry key, return the specific string value
requested. Return zero on success, non-zero on failure. */
int
-reg_key::get_string (const char *name, char *dst, size_t max, const char * def)
+reg_key::get_string (const char *name, char *dst, size_t max, const char *def)
{
DWORD size = max;
DWORD type;
if (key_is_invalid)
res = key_is_invalid;
else
- res = RegQueryValueExA (key, name, 0, &type, (unsigned char *) dst, &size);
+ res = RegQueryValueExA (key, name, 0, &type, (LPBYTE) dst, &size);
if ((def != 0) && ((type != REG_SZ) || (res != ERROR_SUCCESS)))
strcpy (dst, def);
return (int) res;
}
+int
+reg_key::get_string (const PWCHAR name, PWCHAR dst, size_t max, const PWCHAR def)
+{
+ DWORD size = max;
+ DWORD type;
+ LONG res;
+
+ if (key_is_invalid)
+ res = key_is_invalid;
+ else
+ res = RegQueryValueExW (key, name, 0, &type, (LPBYTE) dst, &size);
+
+ if ((def != 0) && ((type != REG_SZ) || (res != ERROR_SUCCESS)))
+ wcscpy (dst, def);
+ return (int) res;
+}
+
/* Given the current registry key, set a specific string value. */
int
{
if (key_is_invalid)
return key_is_invalid;
- return (int) RegSetValueExA (key, name, 0, REG_SZ, (unsigned char*) src,
+ return (int) RegSetValueExA (key, name, 0, REG_SZ, (const BYTE*) src,
strlen (src) + 1);
}
+int
+reg_key::set_string (const PWCHAR name, const PWCHAR src)
+{
+ if (key_is_invalid)
+ return key_is_invalid;
+ return (int) RegSetValueExW (key, name, 0, REG_SZ, (const BYTE*) src,
+ (wcslen (src) + 1) * sizeof (WCHAR));
+}
+
/* Return the handle to key. */
HKEY
int killvalue (const char *name);
HKEY get_key ();
- int get_int (const char *,int def);
- int get_string (const char *, char *buf, size_t len, const char *def);
- int set_string (const char *,const char *);
- int set_int (const char *, int val);
+
+ int get_int (const char *, int);
+ int get_int (const PWCHAR, int);
+ int get_string (const char *, char *, size_t, const char *);
+ int get_string (const PWCHAR, PWCHAR, size_t, const PWCHAR);
+
+ int set_int (const char *, int);
+ int set_int (const PWCHAR, int);
+ int set_string (const char *, const char *);
+ int set_string (const PWCHAR, const PWCHAR);
+
bool created () const {return _disposition & REG_CREATED_NEW_KEY;}
~reg_key ();