KDE 1.x has problems with using XShapeCombineMask when there was no
[wine/hacks.git] / dlls / setupapi / stubs.c
blob677a8a54192a493f2624649d49834e04c2990cbf
1 /*
2 * SetupAPI stubs
4 */
6 #include "debugtools.h"
7 #include "windef.h"
9 DEFAULT_DEBUG_CHANNEL(setupapi);
12 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_A)( PVOID Context, UINT Notification,
13 UINT Param1, UINT Param2 );
15 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_W)( PVOID Context, UINT Notification,
16 UINT Param1, UINT Param2 );
18 /***********************************************************************
19 * SetupIterateCabinetA
21 BOOL WINAPI SetupIterateCabinetA(PCSTR CabinetFile, DWORD Reserved,
22 PSP_FILE_CALLBACK_A MsgHandler, PVOID Context)
24 FIXME("not implemented (setupapi.dll) \n");
25 return 0;
28 /***********************************************************************
29 * SetupIterateCabinetW
31 BOOL WINAPI SetupIterateCabinetW(PWSTR CabinetFile, DWORD Reserved,
32 PSP_FILE_CALLBACK_W MsgHandler, PVOID Context)
34 FIXME("not implemented (setupapi.dll) \n");
35 return 0;