Like the AUTORADIOBUTTON, the parent of a RADIOBUTTON style button
[wine] / dlls / setupx / setupx_main.c
1 /*
2  *      SETUPX library
3  *
4  *      Copyright 1998  Andreas Mohr
5  *
6  * FIXME: Rather non-functional functions for now.
7  */
8
9 #include "windows.h"
10 #include "debugtools.h"
11
12 DEFAULT_DEBUG_CHANNEL(setupx);
13
14 /***********************************************************************
15  *              SURegOpenKey
16  */
17 DWORD WINAPI SURegOpenKey( HKEY hkey, LPCSTR lpszSubKey, LPHKEY retkey )
18 {
19     FIXME("(%x,%s,%p), semi-stub.\n",hkey,debugstr_a(lpszSubKey),retkey);
20     return RegOpenKeyA( hkey, lpszSubKey, retkey );
21 }
22
23 /***********************************************************************
24  *              SURegQueryValueEx
25  */
26 DWORD WINAPI SURegQueryValueEx( HKEY hkey, LPSTR lpszValueName,
27                                 LPDWORD lpdwReserved, LPDWORD lpdwType,
28                                 LPBYTE lpbData, LPDWORD lpcbData )
29 {
30     FIXME("(%x,%s,%p,%p,%p,%ld), semi-stub.\n",hkey,debugstr_a(lpszValueName),
31           lpdwReserved,lpdwType,lpbData,lpcbData?*lpcbData:0);
32     return RegQueryValueExA( hkey, lpszValueName, lpdwReserved, lpdwType,
33                                lpbData, lpcbData );
34 }