Searched refs:appkey (Results 1 - 2 of 2) sorted by relevance
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | wined3d_main.c | 146 static DWORD get_config_key(HKEY defkey, HKEY appkey, const char *name, char *buffer, DWORD size) argument 148 if (appkey && !RegQueryValueExA(appkey, name, 0, NULL, (BYTE *)buffer, &size)) return 0; 153 static DWORD get_config_key_dword(HKEY defkey, HKEY appkey, const char *name, DWORD *data) argument 157 if (appkey && !RegQueryValueExA(appkey, name, 0, &type, (BYTE *)data, &size) && (type == REG_DWORD)) return 0; 168 HKEY appkey = 0; local 229 if (RegOpenKeyA( tmpkey, appname, &appkey )) appkey = 0; 234 if (hkey || appkey) [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | wined3d_main.c | 130 static inline DWORD get_config_key(HKEY defkey, HKEY appkey, const char* name, char* buffer, DWORD size) argument 132 if (0 != appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE) buffer, &size )) return 0; 137 static inline DWORD get_config_key_dword(HKEY defkey, HKEY appkey, const char* name, DWORD *data) argument 141 if (0 != appkey && !RegQueryValueExA( appkey, name, 0, &type, (LPBYTE) data, &size ) && (type == REG_DWORD)) return 0; 167 HKEY appkey = 0; local 240 if (RegOpenKeyA( tmpkey, appname, &appkey )) appkey = 0; 245 if ( 0 != hkey || 0 != appkey ) [all...] |
Completed in 60 milliseconds