Skip to content
This repository has been archived by the owner on Jun 23, 2018. It is now read-only.

Commit

Permalink
Added comments
Browse files Browse the repository at this point in the history
Describing function XOutputGetBusVersion()
  • Loading branch information
shauleiz committed May 25, 2016
1 parent 7777ef7 commit 5b9bc28
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions XOutput/XOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,26 @@ extern "C"
_Out_ PDWORDLONG Version
);

///-------------------------------------------------------------------------------------------------
/// <summary>
/// Get Version of Virtual bus driver.
// The value is hardcoded into the driver
/// </summary>
///
/// <remarks>
/// The format is A.B.C.D where all fields are in the range 0-255
// The output of this function dedicates one BYTE (8 bits) per field.
/// </remarks>
///
/// <param name="Version"> Driver version number. </param>
///
/// <returns>
/// If the function succeeds, the return value is ERROR_SUCCESS.
///
/// If the function fails, the return value is an error code defined in XOutput.h. The function
/// does not use SetLastError to set the calling thread's last-error code.
/// </returns>
///-------------------------------------------------------------------------------------------------
XOUTPUT_API DWORD XOutputGetBusVersion(
_Out_ PDWORD Version
);
Expand Down

0 comments on commit 5b9bc28

Please sign in to comment.