GetItemSpacing(true): Return the default item spacing if the view is
[wine] / dlls / setupapi / setupx_private.h
1 #ifndef __SETUPX_PRIVATE_H
2 #define __SETUPX_PRIVATE_H
3
4 #include "wine/windef16.h"
5
6 typedef struct tagLDD_LIST {
7         LPLOGDISKDESC pldd;
8         struct tagLDD_LIST *next;
9 } LDD_LIST;
10
11 #define INIT_LDD(ldd, LDID) \
12   do { \
13     memset(&(ldd), 0, sizeof(LOGDISKDESC_S)); \
14    (ldd).cbSize = sizeof(LOGDISKDESC_S); \
15    ldd.ldid = LDID; \
16   } while(0)
17
18 typedef struct {
19     HINF16 hInf;
20     HFILE hInfFile;
21     LPSTR lpInfFileName;
22 } INF_FILE;
23
24 extern INF_FILE *InfList;
25 extern WORD InfNumEntries;
26
27 extern LPCSTR IP_GetFileName(HINF16 hInf);
28
29 #endif /* __SETUPX_PRIVATE_H */