Lines Matching refs:where
82 static int GetFromRegistry(const char *name, int where, DWORD type,
84 static int GetIntFromRegistry(const char *name, int defvalue, int where);
86 size_t length, int where);
139 GetFromRegistry(const char *name, int where, DWORD type,
142 if (where & IDN_PERPROG) {
152 if (((where & IDN_CURUSER) &&
162 if (where & IDN_GLOBAL) {
166 if (((where & IDN_CURUSER) &&
182 GetIntFromRegistry(const char *name, int defvalue, int where)
186 if (GetFromRegistry(name, where, REG_DWORD, ¶m, sizeof(param))) {
193 GetStringFromRegistry(const char *name, char *result, size_t length, int where)
195 if (GetFromRegistry(name, where, REG_SZ, result, (DWORD)length)) {