Keep track of per-column information inside the listview.
[wine] / dlls / setupapi / stubs.c
1 /*
2  * SetupAPI stubs
3  *
4  * Copyright 2000 James Hatheway
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "wine/debug.h"
22 #include "windef.h"
23 #include "setupapi.h"
24
25 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
26
27
28 /***********************************************************************
29  *              SetupIterateCabinetA (SETUPAPI.@)
30  */
31 BOOL WINAPI SetupIterateCabinetA(PCSTR CabinetFile, DWORD Reserved,
32                                  PSP_FILE_CALLBACK_A MsgHandler, PVOID Context)
33 {
34         FIXME("not implemented (setupapi.dll) \n");
35         return 0;
36 }
37
38 /***********************************************************************
39  *              SetupIterateCabinetW (SETUPAPI.@)
40  */
41 BOOL WINAPI SetupIterateCabinetW(PWSTR CabinetFile, DWORD Reserved,
42                                  PSP_FILE_CALLBACK_W MsgHandler, PVOID Context)
43 {
44         FIXME("not implemented (setupapi.dll) \n");
45         return 0;
46 }
47
48
49 /***********************************************************************
50  *              TPWriteProfileString (SETUPX.62)
51  */
52 BOOL WINAPI TPWriteProfileString16( LPCSTR section, LPCSTR entry, LPCSTR string )
53 {
54     FIXME( "%s %s %s: stub\n", debugstr_a(section), debugstr_a(entry), debugstr_a(string) );
55     return TRUE;
56 }
57
58
59 /***********************************************************************
60  *              suErrorToIds  (SETUPX.61)
61  */
62 DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
63 {
64     FIXME( "%x %x: stub\n", w1, w2 );
65     return 0;
66 }
67
68 /*WINAPI  in description not given*/
69 HKEY WINAPI SetupDiOpenClassRegKeyExW(LPGUID class, DWORD access, DWORD flags, LPCWSTR  machine, PVOID reserved)
70 {
71   FIXME("\n");
72   return INVALID_HANDLE_VALUE;
73 }
74
75 BOOL WINAPI SetupDiGetClassDescriptionExW (GUID* class, LPCWSTR desc, DWORD size, PDWORD required, LPCWSTR  machine, PVOID reserved)
76 {
77   FIXME("\n");
78   return FALSE;
79 }
80
81 BOOL WINAPI SetupDiClassNameFromGuidExW (GUID* class, LPCWSTR desc, DWORD size, PDWORD required, LPCWSTR  machine, PVOID reserved)
82 {
83   FIXME("\n");
84   return FALSE;
85 }
86
87 BOOL WINAPI SetupDiBuildClassInfoListExW(DWORD flags, LPGUID list, DWORD size, PDWORD required,  LPCWSTR  machine, PVOID reserved)
88 {
89   FIXME("\n");
90   return FALSE;
91 }
92 BOOL WINAPI SetupDiGetDeviceInfoListDetailW(HDEVINFO devinfo, PSP_DEVINFO_DATA devinfo_data )
93 {
94   FIXME("\n");
95   return FALSE;
96 }
97 HDEVINFO WINAPI SetupDiCreateDeviceInfoListExW(LPGUID class, HWND parend, LPCWSTR machine, PVOID reserved)
98 {
99   FIXME("\n");
100   return FALSE;
101 }
102 /* NO WINAPI in description given*/
103 HDEVINFO WINAPI SetupDiGetClassDevsExW(LPGUID class, LPCWSTR filter, HWND parent, DWORD flags, HDEVINFO deviceset, LPCWSTR machine, PVOID reserved)
104 {
105   FIXME("\n");
106   return FALSE;
107 }
108 BOOL WINAPI SetupDiClassGuidsFromNameExW(LPCWSTR class, LPGUID list, DWORD size, PDWORD required,  LPCWSTR  machine, PVOID reserved)
109 {
110   FIXME("\n");
111   return FALSE;
112 }
113 DWORD WINAPI CM_Connect_MachineW(LPCWSTR name, void * machine)
114 {
115 #define  CR_SUCCESS       0x00000000
116 #define  CR_ACCESS_DENIED 0x00000033
117   FIXME("\n");
118   return  CR_ACCESS_DENIED;
119 }
120 DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
121 {
122   FIXME("\n");
123   return  CR_SUCCESS;
124
125 }