Desktop Functions: Smart Device Functions:
|
Search Results for "SetupFindNextMatchLine" in [All]setupapi
public static extern bool SetupFindNextMatchLine(ref INFCONTEXT ContextIn, [MarshalAs(UnmanagedType.LPTStr)] string Key, out INFCONTEXT ContextOut);
Public Declare Auto Function SetupFindNextMatchLine Lib "setupapi.dll" (ByRef ContextIn As INFCONTEXT, ByVal Key As String, ByRef ContextOut As INFCONTEXT) As Boolean
If ContextIn.Inf references multiple INF files that have been appended together using SetupOpenAppendInfFile, the SetupFindNextMatchLine function searches across the specified section in all files referenced by the HINF to locate the next matching line.
while(SetupFindNextMatchLine(ref Context, <key to search>, out Context) == true)
While SetupFindNextMatchLine(Context, <key to search>, Context) = True |