Skip to content

NET_SDK_IVE_FACE_MATCH_ADD_FACE_REPLY_T

Structure Definition

1
2
3
4
5
6
typedef struct _net_sdk_ive_face_match_add_face_reply_t
{
    unsigned int dwResult; 
    int iPersonId;         
    char szRes[32];        
} NET_SDK_IVE_FACE_MATCH_ADD_FACE_REPLY_T;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_FACE_MATCH_ADD_FACE_REPLY_T
{
    public UInt32 dwResult;
    public Int32 iPersonId;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 32)]
    public byte[] szRes;
}

Function Description

Add face response structure for face comparison.

Member Description

Member Type Remark
dwResult unsigned int Operation result, 0: failure, 1: success.
iPersonId int Personnel ID.
szRes char[32] Reserved field.
Error Code