Skip to content

NET_SDK_IMAGE

Structure Definition

1
2
3
4
5
6
7
8
typedef struct _net_sdk_image_
{
    DWORD dwChannel;        
    DWORD dwImageType;      
    DD_TIME_EX captureTime; 
    DWORD totalNum;         
    unsigned char resv[8];  
} NET_SDK_IMAGE;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IMAGE
{
    public UInt32 dwChannel;
    public UInt32 dwImageType;
    public DD_TIME_EX captureTime;
    public UInt32 totalNum;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 8)]
    public byte[] resv;
}

Function Description

Device capture information.

Member Description

Member Type Remark
dwChannel DWORD Screen capture channel.
dwImageType DWORD Capture type IMAGE_EVENT_TYPE.
captureTime DD_TIME_EX Time.
totalNum DWORD Total number of images.
resv unsigned char[8] Reserved field.
Error Code