Added exception handling wrapper to a number of server requests.
[wine] / dlls / setupapi / stubs.c
1 /*
2  * SetupAPI stubs
3  *
4  */
5
6 #include "debugtools.h"
7 #include "windef.h"
8
9 DEFAULT_DEBUG_CHANNEL(setupapi);
10
11
12 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_A)( PVOID Context, UINT Notification,
13                                               UINT Param1, UINT Param2 );
14
15 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_W)( PVOID Context, UINT Notification,
16                                               UINT Param1, UINT Param2 );
17
18 /***********************************************************************
19  *              SetupIterateCabinetA
20  */
21 BOOL WINAPI SetupIterateCabinetA(PCSTR CabinetFile, DWORD Reserved,
22                                  PSP_FILE_CALLBACK_A MsgHandler, PVOID Context)
23 {
24         FIXME("not implemented (setupapi.dll) \n");
25         return 0;
26 }
27
28 /***********************************************************************
29  *              SetupIterateCabinetW
30  */
31 BOOL WINAPI SetupIterateCabinetW(PWSTR CabinetFile, DWORD Reserved,
32                                  PSP_FILE_CALLBACK_W MsgHandler, PVOID Context) 
33 {
34         FIXME("not implemented (setupapi.dll) \n");
35         return 0;
36 }