Group: Setup API functions - Library: setupapi
Listing INF files in a specified directory
BOOL SetupGetInfFileList(
PCTSTR DirectoryPath, // optional, the directory path
DWORD InfStyle, // style of the INF file
PTSTR ReturnBuffer, // optional, receives the file list
DWORD ReturnBufferSize, // size of the supplied buffer
PDWORD RequiredSize // optional, buffer size needed
);
DECLARE INTEGER SetupGetInfFileList IN setupapi;
STRING DirectoryPath,;
INTEGER InfStyle,;
STRING @ ReturnBuffer,;
INTEGER ReturnBufferSize,;
INTEGER @ RequiredSize
DirectoryPath An optional parameter that points to a null-terminated string containing the path of the directory in which to search. If this value is NULL, the %windir%\inf directory is used.
InfStyle Specifies the style of INF file to search for.
ReturnBuffer If not NULL, points to a caller-supplied buffer in which this function returns the list of all INF files of the desired style(s) that were found in the specified subdirectory.
ReturnBufferSize Specifies the size of the buffer pointed to by the ReturnBuffer parameter.
RequiredSize If not NULL, points to a caller-supplied variable in which this function returns the required size for the buffer pointed to by the ReturnBuffer parameter.
If the function succeeds, the return value is a non-zero value. If the function fails, the return value is zero.
Under WinMe this function returns -- to my experience -- only a small part of INF files existing in a directory.