Skip to content

FIREPOINT_EVNET_INFO_T

Structure Definition

1
2
3
4
5
6
7
8
typedef struct
{
    unsigned int dwTargetID;    
    unsigned char ucStatus;     
    unsigned char ucReverse[3]; 
    RECT_16 Rect16;             
    unsigned int dwReverse[32]; 
} FIREPOINT_EVNET_INFO_T;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct FIREPOINT_EVNET_INFO_T
{
    public UInt32 dwTargetID;
    public byte ucStatus;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 3)]
    public byte[] ucReverse;
    public RECT_16 Rect16;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U4, SizeConst = 32)]
    public UInt32[] dwReverse;
}

Function Description

Fire point information

Member Description

Member Type Remark
dwTargetID unsigned int Target ID.
ucStatus unsigned char Status, 0: none; 1: start; 2: end; 3: procedure.
ucReverse unsigned char[3] Reserved field.
Rect16 RECT_16 The target rectangle.
dwReverse unsigned int[32] Reserved field.
Error Code