Changeset 9403 for trunk/src/setupapi/setupx_main.c
- Timestamp:
- Nov 13, 2002, 12:50:07 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/setupapi/setupx_main.c
r8421 r9403 62 62 #include "winerror.h" 63 63 #include "wine/winuser16.h" 64 #include "wownt32.h" 64 65 #include "setupapi.h" 65 66 #include "setupx16.h" … … 70 71 WINE_DEFAULT_DEBUG_CHANNEL(setupapi); 71 72 73 72 74 /*********************************************************************** 73 75 * SURegOpenKey (SETUPX.47) 74 76 */ 75 DWORD WINAPI SURegOpenKey( HKEY hkey, LPCSTR lpszSubKey, LPHKEY retkey )76 { 77 FIXME("(% x,%s,%p), semi-stub.\n",hkey,debugstr_a(lpszSubKey),retkey);77 DWORD WINAPI SURegOpenKey( HKEY hkey, LPCSTR lpszSubKey, PHKEY retkey ) 78 { 79 FIXME("(%p,%s,%p), semi-stub.\n",hkey,debugstr_a(lpszSubKey),retkey); 78 80 return RegOpenKeyA( hkey, lpszSubKey, retkey ); 79 81 } … … 86 88 LPBYTE lpbData, LPDWORD lpcbData ) 87 89 { 88 FIXME("(% x,%s,%p,%p,%p,%ld), semi-stub.\n",hkey,debugstr_a(lpszValueName),90 FIXME("(%p,%s,%p,%p,%p,%ld), semi-stub.\n",hkey,debugstr_a(lpszValueName), 89 91 lpdwReserved,lpdwType,lpbData,lpcbData?*lpcbData:0); 90 92 return RegQueryValueExA( hkey, lpszValueName, lpdwReserved, lpdwType, … … 203 205 case HOW_ALWAYS_PROMPT_REBOOT: 204 206 case HOW_PROMPT_REBOOT: 205 if (MessageBoxA( hwnd, "You must restart Wine before the new settings will take effect.\n\nDo you want to exit Wine now ?", "Systems Settings Change", MB_YESNO|MB_ICONQUESTION) == IDYES)207 if (MessageBoxA(HWND_32(hwnd), "You must restart Wine before the new settings will take effect.\n\nDo you want to exit Wine now ?", "Systems Settings Change", MB_YESNO|MB_ICONQUESTION) == IDYES) 206 208 reboot = TRUE; 207 209 break; … … 502 504 RETERR16 WINAPI CtlDelLdd16(LOGDISKID16 ldid) 503 505 { 504 FIXME("(%d); - please report t o a.mohr@mailto.de !!!\n", ldid);506 FIXME("(%d); - please report this!\n", ldid); 505 507 return SETUPX_DelLdd(ldid); 506 508 } … … 679 681 RETERR16 WINAPI CtlGetLdd16(LPLOGDISKDESC pldd) 680 682 { 681 FIXME("(%p); - please report t o a.mohr@mailto.de !!!\n", pldd);683 FIXME("(%p); - please report this!\n", pldd); 682 684 return SETUPX_GetLdd(pldd); 683 685 }
Note:
See TracChangeset
for help on using the changeset viewer.