Skip to content

NET_SDK_SMART_TARGET_SNAP_IMG_LIST

Structure Definition

1
2
3
4
5
6
typedef struct _net_sdk_smart_target_snap_img_list_
{
    unsigned int bEnd;                       
    unsigned int listNum;                    
    NET_SDK_SMART_TARGET_SNAP_IMG* pImgItem; 
} NET_SDK_SMART_TARGET_SNAP_IMG_LIST;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_SMART_TARGET_SNAP_IMG_LIST
{
    public UInt32 bEnd;
    public UInt32 listNum;
    public IntPtr pImgItem;
}

Function Description

List of Smart Goals screenshots.

Member Description

Member Type Remark
bEnd unsigned int Whether the search is finished, 1: indicates that the image search is finished, 0: indicates that there is more to come.
listNum unsigned int The returned quantity is the number of pImgItem.
pImgItem NET_SDK_SMART_TARGET_SNAP_IMG* Target screenshot information.
Error Code