Keep remote machine name in device info set. Use it when needed
[reactos.git] / reactos / lib / setupapi / setupapi_private.h
1 /*
2 * Copyright 2001 Andreas Mohr
3 * Copyright 2005 Hervé Poussineau
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20 #ifndef __SETUPAPI_PRIVATE_H
21 #define __SETUPAPI_PRIVATE_H
22
23 #include <assert.h>
24 #include <fcntl.h>
25 #include <share.h>
26 #include <wchar.h>
27
28 #define WIN32_NO_STATUS
29 #include <windows.h>
30 #include <cfgmgr32.h>
31 #include <fdi.h>
32 #include <setupapi.h>
33 #include <shlobj.h>
34 #include <wine/debug.h>
35 #include <wine/unicode.h>
36 #define NTOS_MODE_USER
37 #include <ndk/ntndk.h>
38
39 #include <pnp_c.h>
40 #include "rpc_private.h"
41 #include "resource.h"
42
43 #define SETUP_DEV_INFO_SET_MAGIC 0xd00ff057
44
45 struct DeviceInterface /* Element of DeviceInfoElement.InterfaceListHead */
46 {
47 LIST_ENTRY ListEntry;
48
49 struct DeviceInfoElement* DeviceInfo;
50 GUID InterfaceClassGuid;
51
52
53 /* SPINT_ACTIVE : the interface is active/enabled
54 * SPINT_DEFAULT: the interface is the default interface for the device class FIXME???
55 * SPINT_REMOVED: the interface is removed
56 */
57 DWORD Flags;
58
59 WCHAR SymbolicLink[0]; /* \\?\ACPI#PNP0501#4&2658d0a0&0#{GUID} */
60 };
61
62 /* We don't want to open the .inf file to read only one information in it, so keep a handle to it once it
63 * has been already loaded once. Keep also a reference counter */
64 struct InfFileDetails
65 {
66 HINF hInf;
67 LONG References;
68
69 /* May contain no directory if the file is already in %SYSTEMROOT%\Inf */
70 WCHAR FullInfFileName[0];
71 };
72
73 struct DriverInfoElement /* Element of DeviceInfoSet.DriverListHead and DeviceInfoElement.DriverListHead */
74 {
75 LIST_ENTRY ListEntry;
76
77 DWORD DriverRank;
78 SP_DRVINFO_DATA_V2_W Info;
79 SP_DRVINFO_DETAIL_DATA_W Details;
80 GUID ClassGuid;
81 LPWSTR MatchingId;
82 struct InfFileDetails *InfFileDetails;
83 };
84
85 struct DeviceInfoElement /* Element of DeviceInfoSet.ListHead */
86 {
87 LIST_ENTRY ListEntry;
88
89 /* Reserved Field points to a struct DriverInfoElement */
90 SP_DEVINSTALL_PARAMS_W InstallParams;
91
92 /* Information about devnode:
93 * - DeviceName:
94 * "Root\*PNP0501" for example.
95 * It doesn't contain the unique ID for the device
96 * (points into the Data field at the end of the structure)
97 * WARNING: no NULL char exist between DeviceName and UniqueId
98 * in Data field!
99 * - UniqueId
100 * "5&1be2108e&0" or "0000"
101 * If DICD_GENERATE_ID is specified in creation flags,
102 * this unique ID is autogenerated using 4 digits, base 10
103 * (points into the Data field at the end of the structure)
104 * - DeviceDescription
105 * String which identifies the device. Can be NULL. If not NULL,
106 * points into the Data field at the end of the structure
107 * - ClassGuid
108 * Identifies the class of this device. It is GUID_NULL if the
109 * device has not been installed
110 * - CreationFlags
111 * Is a combination of:
112 * - DICD_GENERATE_ID
113 * the unique ID needs to be generated
114 * - DICD_INHERIT_CLASSDRVS
115 * inherit driver of the device info set (== same pointer)
116 */
117 PCWSTR DeviceName;
118 PCWSTR UniqueId;
119 PCWSTR DeviceDescription;
120 GUID ClassGuid;
121 DWORD CreationFlags;
122
123 /* If CreationFlags contains DICD_INHERIT_CLASSDRVS, this list is invalid */
124 /* If the driver is not searched/detected, this list is empty */
125 LIST_ENTRY DriverListHead; /* List of struct DriverInfoElement */
126
127 /* List of interfaces implemented by this device */
128 LIST_ENTRY InterfaceListHead; /* List of struct DeviceInterface */
129
130 WCHAR Data[0];
131 };
132
133 struct DeviceInfoSet /* HDEVINFO */
134 {
135 DWORD magic; /* SETUP_DEV_INFO_SET_MAGIC */
136 GUID ClassGuid; /* If != GUID_NULL, only devices of this class can be in the device info set */
137 HKEY HKLM; /* Local or distant HKEY_LOCAL_MACHINE registry key */
138 HMACHINE hMachine; /* Used in CM_* functions */
139
140 /* Reserved Field points to a struct DriverInfoElement */
141 SP_DEVINSTALL_PARAMS_W InstallParams;
142
143 /* If the driver is not searched/detected, this list is empty */
144 LIST_ENTRY DriverListHead; /* List of struct DriverInfoElement */
145
146 LIST_ENTRY ListHead; /* List of struct DeviceInfoElement */
147
148 /* Contains the name of the remote computer ('\\COMPUTERNAME' for example),
149 * or NULL if related to local machine. Points into szData field at the
150 * end of the structure */
151 PCWSTR MachineName;
152 WCHAR szData[0];
153 };
154
155 extern HINSTANCE hInstance;
156 #define RC_STRING_MAX_SIZE 256
157
158 #define REG_INSTALLEDFILES "System\\CurrentControlSet\\Control\\InstalledFiles"
159 #define REGPART_RENAME "\\Rename"
160 #define REG_VERSIONCONFLICT "Software\\Microsoft\\VersionConflictManager"
161
162 /* string substitutions */
163
164 struct inf_file;
165 extern const WCHAR *DIRID_get_string( HINF hinf, int dirid );
166 extern unsigned int PARSER_string_substA( struct inf_file *file, const WCHAR *text,
167 char *buffer, unsigned int size );
168 extern unsigned int PARSER_string_substW( struct inf_file *file, const WCHAR *text,
169 WCHAR *buffer, unsigned int size );
170 extern const WCHAR *PARSER_get_src_root( HINF hinf );
171 extern WCHAR *PARSER_get_dest_dir( INFCONTEXT *context );
172
173 /* support for Ascii queue callback functions */
174
175 struct callback_WtoA_context
176 {
177 void *orig_context;
178 PSP_FILE_CALLBACK_A orig_handler;
179 };
180
181 UINT CALLBACK QUEUE_callback_WtoA( void *context, UINT notification, UINT_PTR, UINT_PTR );
182
183 /* from msvcrt/sys/stat.h */
184 #define _S_IWRITE 0x0080
185 #define _S_IREAD 0x0100
186
187 extern HINSTANCE hInstance;
188 extern OSVERSIONINFOW OsVersionInfo;
189
190 DWORD WINAPI CaptureAndConvertAnsiArg(LPCSTR pSrc, LPWSTR *pDst);
191
192 #endif /* __SETUPAPI_PRIVATE_H */