The SP_INF_INFORMATION structure stores information about an INF file, including the style, number of constituent INF files, and version data.
typedef struct _SP_INF_INFORMATION {
DWORD InfStyle; //the style of the INF file
DWORD InfCount; //number of constituent INF files
BYTE VersionData[ANYSIZE_ARRAY];
//array to store the INF information
} SP_INF_INFORMATION, *PSP_INF_INFORMATION;
Value | Meaning |
---|---|
INF_STYLE_NONE | Specifies that the style of the INF file is unrecognized or nonexistent. |
INF_STYLE_OLDNT | Specifies a Windows NT 3.x style INF file. |
INF_STYLE_WIN4 | Specifies a Windows 95- or Windows NT-style INF file. |
Windows NT: Use version 4.0 and later.
Windows: Use Windows 95 and later.
Windows CE: Unsupported.
Header: Declared in setupapi.h.
Overview, Structures, SetupGetInfInformation, SetupQueryInfFileInformation, SetupQueryInfVersionInformation