mirror of
https://github.com/reactos/reactos.git
synced 2025-08-01 18:53:05 +00:00
Add documentation to SetupDiBuildClassInfoList/SetupDiBuildClassInfoListExA/W
Patch by Christian Gmeiner on wine-patches ML svn path=/trunk/; revision=22292
This commit is contained in:
parent
b9375052c5
commit
6b4f2e1649
1 changed files with 41 additions and 1 deletions
|
@ -99,6 +99,19 @@ static const UPDATE_CLASS_PARAM_HANDLER UpdateClassInstallParamHandlers[] = {
|
|||
|
||||
/***********************************************************************
|
||||
* SetupDiBuildClassInfoList (SETUPAPI.@)
|
||||
*
|
||||
* Returns a list of setup class GUIDs that identify the classes
|
||||
* that are installed on a local machine.
|
||||
*
|
||||
* PARAMS
|
||||
* Flags [I] control exclusion of classes from the list.
|
||||
* ClassGuidList [O] pointer to a GUID-typed array that receives a list of setup class GUIDs.
|
||||
* ClassGuidListSize [I] The number of GUIDs in the array (ClassGuidList).
|
||||
* RequiredSize [O] pointer, which receives the number of GUIDs that are returned.
|
||||
*
|
||||
* RETURNS
|
||||
* Success: TRUE.
|
||||
* Failure: FALSE.
|
||||
*/
|
||||
BOOL WINAPI
|
||||
SetupDiBuildClassInfoList(
|
||||
|
@ -115,6 +128,18 @@ SetupDiBuildClassInfoList(
|
|||
|
||||
/***********************************************************************
|
||||
* SetupDiBuildClassInfoListExA (SETUPAPI.@)
|
||||
*
|
||||
* PARAMS
|
||||
* Flags [I] control exclusion of classes from the list.
|
||||
* ClassGuidList [O] pointer to a GUID-typed array that receives a list of setup class GUIDs.
|
||||
* ClassGuidListSize [I] The number of GUIDs in the array (ClassGuidList).
|
||||
* RequiredSize [O] pointer, which receives the number of GUIDs that are returned.
|
||||
* MachineName [I] name of a remote machine.
|
||||
* Reserved [I] must be NULL.
|
||||
*
|
||||
* RETURNS
|
||||
* Success: TRUE.
|
||||
* Failure: FALSE.
|
||||
*/
|
||||
BOOL WINAPI
|
||||
SetupDiBuildClassInfoListExA(
|
||||
|
@ -147,7 +172,22 @@ SetupDiBuildClassInfoListExA(
|
|||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiBuildClassInfoListExW (SETUPAPI.@)
|
||||
* SetupDiBuildClassInfoListExW (SETUPAPI.@)
|
||||
*
|
||||
* Returns a list of setup class GUIDs that identify the classes
|
||||
* that are installed on a local or remote macine.
|
||||
*
|
||||
* PARAMS
|
||||
* Flags [I] control exclusion of classes from the list.
|
||||
* ClassGuidList [O] pointer to a GUID-typed array that receives a list of setup class GUIDs.
|
||||
* ClassGuidListSize [I] The number of GUIDs in the array (ClassGuidList).
|
||||
* RequiredSize [O] pointer, which receives the number of GUIDs that are returned.
|
||||
* MachineName [I] name of a remote machine.
|
||||
* Reserved [I] must be NULL.
|
||||
*
|
||||
* RETURNS
|
||||
* Success: TRUE.
|
||||
* Failure: FALSE.
|
||||
*/
|
||||
BOOL WINAPI
|
||||
SetupDiBuildClassInfoListExW(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue