Ignore:
Timestamp:
Nov 13, 2002, 12:50:07 PM (23 years ago)
Author:
sandervl
Message:

Wine resync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/setupapi/setupx_main.c

    r8421 r9403  
    6262#include "winerror.h"
    6363#include "wine/winuser16.h"
     64#include "wownt32.h"
    6465#include "setupapi.h"
    6566#include "setupx16.h"
     
    7071WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
    7172
     73
    7274/***********************************************************************
    7375 *              SURegOpenKey (SETUPX.47)
    7476 */
    75 DWORD WINAPI SURegOpenKey( HKEY hkey, LPCSTR lpszSubKey, LPHKEY retkey )
    76 {
    77     FIXME("(%x,%s,%p), semi-stub.\n",hkey,debugstr_a(lpszSubKey),retkey);
     77DWORD WINAPI SURegOpenKey( HKEY hkey, LPCSTR lpszSubKey, PHKEY retkey )
     78{
     79    FIXME("(%p,%s,%p), semi-stub.\n",hkey,debugstr_a(lpszSubKey),retkey);
    7880    return RegOpenKeyA( hkey, lpszSubKey, retkey );
    7981}
     
    8688                                LPBYTE lpbData, LPDWORD lpcbData )
    8789{
    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),
    8991          lpdwReserved,lpdwType,lpbData,lpcbData?*lpcbData:0);
    9092    return RegQueryValueExA( hkey, lpszValueName, lpdwReserved, lpdwType,
     
    203205        case HOW_ALWAYS_PROMPT_REBOOT:
    204206        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)
    206208                reboot = TRUE;
    207209            break;
     
    502504RETERR16 WINAPI CtlDelLdd16(LOGDISKID16 ldid)
    503505{
    504     FIXME("(%d); - please report to a.mohr@mailto.de !!!\n", ldid);
     506    FIXME("(%d); - please report this!\n", ldid);
    505507    return SETUPX_DelLdd(ldid);
    506508}
     
    679681RETERR16 WINAPI CtlGetLdd16(LPLOGDISKDESC pldd)
    680682{
    681     FIXME("(%p); - please report to a.mohr@mailto.de !!!\n", pldd);
     683    FIXME("(%p); - please report this!\n", pldd);
    682684    return SETUPX_GetLdd(pldd);
    683685}
Note: See TracChangeset for help on using the changeset viewer.