- correct number of colormap entries looked at in GetDIBColorTable.
[wine/multimedia.git] / dlls / setupapi / stubs.c
blob8b6201b31c5a5e97a719e752371c0d840aeb2e4b
1 /*
2 * SetupAPI stubs
4 */
6 #include "debugtools.h"
7 #include "windef.h"
8 #include "setupapi.h"
11 DEFAULT_DEBUG_CHANNEL(setupapi);
14 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_A)( PVOID Context, UINT Notification,
15 UINT Param1, UINT Param2 );
17 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_W)( PVOID Context, UINT Notification,
18 UINT Param1, UINT Param2 );
20 /***********************************************************************
21 * SetupIterateCabinetA
23 BOOL WINAPI SetupIterateCabinetA(PCSTR CabinetFile, DWORD Reserved,
24 PSP_FILE_CALLBACK_A MsgHandler, PVOID Context)
26 FIXME("not implemented (setupapi.dll) \n");
27 return 0;
30 /***********************************************************************
31 * SetupIterateCabinetW
33 BOOL WINAPI SetupIterateCabinetW(PWSTR CabinetFile, DWORD Reserved,
34 PSP_FILE_CALLBACK_W MsgHandler, PVOID Context)
36 FIXME("not implemented (setupapi.dll) \n");
37 return 0;
41 /***********************************************************************
42 * SetupGetStringFieldA
44 BOOL WINAPI SetupGetStringFieldA(PINFCONTEXT Context, DWORD FieldIndex,
45 LPSTR ReturnBuffer, DWORD ReturnBufferSize,
46 PDWORD RequiredSize)
48 FIXME("not implemented (setupapi.dll) \n");
49 return 0;
53 /***********************************************************************
54 * SetupFindNextLine
56 BOOL WINAPI SetupFindNextLine (PINFCONTEXT ContextIn, PINFCONTEXT ContextOut)
58 FIXME("not implemented (setupapi.dll) \n");
59 return 0;
63 /***********************************************************************
64 * SetupInitDefaultQueueCallback
66 PVOID WINAPI SetupInitDefaultQueueCallback(HWND OwnerWindow)
68 FIXME("not implemented (setupapi.dll) \n");
69 return 0;
73 /***********************************************************************
74 * SetupGetLineTextA
76 BOOL WINAPI SetupGetLineTextA (PINFCONTEXT Context, HINF InfHandle,
77 PCSTR Section, PCSTR Key, LPSTR ReturnBuffer,
78 DWORD ReturnBufferSize, PDWORD RequiredSize)
80 FIXME("not implemented (setupapi.dll) \n");
81 return 0;
85 /***********************************************************************
86 * SetupCloseInfFile
88 VOID WINAPI SetupCloseInfFile (HINF InfHandle)
90 FIXME("not implemented (setupapi.dll) \n");
94 /***********************************************************************
95 * SetupDefaultQueueCallbackA
97 UINT WINAPI SetupDefaultQueueCallbackA (PVOID Context, UINT Notification,
98 UINT Param1, UINT Param2)
100 FIXME("not implemented (setupapi.dll) \n");
101 return 0;
105 /***********************************************************************
106 * SetupFindFirstLineA
108 BOOL WINAPI SetupFindFirstLineA (HINF InfHandle, PCSTR Section, PCSTR Key,
109 PINFCONTEXT Context)
111 FIXME("not implemented (setupapi.dll) \n");
112 return 0;
116 /***********************************************************************
117 * SetupInstallFromInfSectionA
119 BOOL WINAPI SetupInstallFromInfSectionA (HWND Owner, HINF InfHandle, PCSTR SectionName,
120 UINT Flags, HKEY RelativeKeyRoot, PCSTR SourceRootPath,
121 UINT CopyFlags, PSP_FILE_CALLBACK_A MsgHandler,
122 PVOID Context, HDEVINFO DeviceInfoSet,
123 PSP_DEVINFO_DATA DeviceInfoData)
125 FIXME("not implemented (setupapi.dll) \n");
126 return 0;
130 /***********************************************************************
131 * SetupOpenInfFileA
133 HINF WINAPI SetupOpenInfFileA (PCSTR FileName, PCSTR InfClass, DWORD InfStyle,
134 PUINT ErrorLine)
136 FIXME("not implemented (setupapi.dll) \n");
137 return 0;