<< Click to Display Table of Contents >> Navigation: WinLicense > WinLicense SDK > Miscellaneous Functions > WLHardwareGetUsbNameAtW |
The WLHardwareGetUsbNameAtW function retrieves the drive name (as UNICODE string) for a specific found USB drive on the system. You need to first call the function WLHardwareGetNumberUsbDrives to know the number of USB drives that were found on the system. After that, you have to iterate over all found USB drives calling the function WLHardwareGetUsbNameAtW.
bool WLHardwareGetUsbNameAtW( int Index, wchar_t* pUsbName ); |
function WLHardwareGetUsbNameAtW( Index:Integer; pUsbName:PWideChar ):Boolean; stdcall; |
[C#] [DllImport(WINLICENSE_SDK_DLL, CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall)] public static extern bool WLHardwareGetUsbNameAtW(int Index, StringBuilder HardwareId);
[Visual Basic] <DllImport("WinlicenseSDK.dll", CharSet:=CharSet.Unicode, CallingConvention:=CallingConvention.StdCall)> Public Shared Function WLHardwareGetUsbNameAtW(Index As Integer, ByRef HardwareId As String) As Boolean End Function |
Parameters
Index
[in] Index of the specific USB drive to retrieve the drive name
pHardwareId
[out] Pointer to a buffer that will receive a null-terminated UNICODE string with the drive name for the USB drive at the given position.
Return Values
If the function succeeds, the return value is True.
If the function fails, the return value is False.