Removed some unnecessary includes.
[wine] / dlls / setupapi / stubs.c
1 /*
2  * SetupAPI stubs
3  *
4  */
5
6 #include "debugtools.h"
7 #include "windef.h"
8 #include "setupapi.h"
9
10
11 DEFAULT_DEBUG_CHANNEL(setupapi);
12
13
14 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_A)( PVOID Context, UINT Notification,
15                                               UINT Param1, UINT Param2 );
16
17 typedef UINT (CALLBACK* PSP_FILE_CALLBACK_W)( PVOID Context, UINT Notification,
18                                               UINT Param1, UINT Param2 );
19
20 /***********************************************************************
21  *              SetupIterateCabinetA
22  */
23 BOOL WINAPI SetupIterateCabinetA(PCSTR CabinetFile, DWORD Reserved,
24                                  PSP_FILE_CALLBACK_A MsgHandler, PVOID Context)
25 {
26         FIXME("not implemented (setupapi.dll) \n");
27         return 0;
28 }
29
30 /***********************************************************************
31  *              SetupIterateCabinetW
32  */
33 BOOL WINAPI SetupIterateCabinetW(PWSTR CabinetFile, DWORD Reserved,
34                                  PSP_FILE_CALLBACK_W MsgHandler, PVOID Context) 
35 {
36         FIXME("not implemented (setupapi.dll) \n");
37         return 0;
38 }
39
40
41 /***********************************************************************
42  *              SetupGetStringFieldA
43  */
44 BOOL WINAPI SetupGetStringFieldA(PINFCONTEXT Context, DWORD FieldIndex, 
45                                  LPSTR ReturnBuffer, DWORD ReturnBufferSize,
46                                  PDWORD RequiredSize)
47 {
48         FIXME("not implemented (setupapi.dll) \n");
49         return 0;
50 }
51
52
53 /***********************************************************************
54  *              SetupFindNextLine
55  */
56 BOOL WINAPI SetupFindNextLine (PINFCONTEXT ContextIn, PINFCONTEXT ContextOut)
57 {
58         FIXME("not implemented (setupapi.dll) \n");
59         return 0;
60 }
61
62
63 /***********************************************************************
64  *              SetupInitDefaultQueueCallback
65  */
66 PVOID WINAPI SetupInitDefaultQueueCallback(HWND OwnerWindow)
67 {
68         FIXME("not implemented (setupapi.dll) \n");
69         return 0;
70 }
71
72
73 /***********************************************************************
74  *              SetupGetLineTextA
75  */
76 BOOL WINAPI SetupGetLineTextA (PINFCONTEXT Context, HINF InfHandle,
77                         PCSTR Section, PCSTR Key, LPSTR ReturnBuffer,
78                         DWORD ReturnBufferSize, PDWORD RequiredSize)
79 {
80         FIXME("not implemented (setupapi.dll) \n");
81         return 0;
82 }
83
84
85 /***********************************************************************
86  *              SetupCloseInfFile
87  */
88 VOID WINAPI SetupCloseInfFile (HINF InfHandle)
89 {
90         FIXME("not implemented (setupapi.dll) \n");
91 }
92
93
94 /***********************************************************************
95  *              SetupDefaultQueueCallbackA
96  */
97 UINT WINAPI SetupDefaultQueueCallbackA (PVOID Context, UINT Notification,
98                                         UINT Param1, UINT Param2)
99 {
100         FIXME("not implemented (setupapi.dll) \n");
101         return 0;
102 }
103
104
105 /***********************************************************************
106  *              SetupFindFirstLineA
107  */
108 BOOL WINAPI SetupFindFirstLineA (HINF InfHandle, PCSTR Section, PCSTR Key,
109                                  PINFCONTEXT Context)
110 {
111         FIXME("not implemented (setupapi.dll) \n");
112         return 0;
113 }
114
115
116 /***********************************************************************
117  *              SetupInstallFromInfSectionA
118  */
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)
124 {
125         FIXME("not implemented (setupapi.dll) \n");
126         return 0;
127 }
128
129
130 /***********************************************************************
131  *              SetupOpenInfFileA
132  */
133 HINF WINAPI SetupOpenInfFileA (PCSTR FileName, PCSTR InfClass, DWORD InfStyle,
134                                PUINT ErrorLine)
135 {
136         FIXME("not implemented (setupapi.dll) \n");
137         return 0;
138 }