Skip to content

NET_SDK_GetNextDiskInfo

Interface Definition

1
2
3
BOOL NET_SDK_GetNextDiskInfo(
    POINTERHANDLE lDiskHandle,
    NET_SDK_DISK_INFO* pDiskInfo);
1
2
3
public static extern bool NET_SDK_GetNextDiskInfo(
    POINTERHANDLE lDiskHandle,
    IntPtr pDiskInfo);

Function Description

Get the hard disk information of each device one by one. (Call multiple times until failure is returned).

Parameter Description

Parameters Type Remark
lDiskHandlein POINTERHANDLE Get the disk information handle, the return value of NET_SDK_FindDisk
pDiskInfoout NET_SDK_DISK_INFO* Returns disk information.

Return Value

  • type:BOOL

  • remark:Returns TRUE if successful, FALSE if failed.

Remarks

None

Error Code