Skip to content

NET_SDK_IVE_PERIMETER_T

Structure Definition

1
2
3
4
5
typedef struct
{
    unsigned int count;                 
    NET_SDK_IVE_PER_INFO_T perInfo[32]; 
} NET_SDK_IVE_PERIMETER_T;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_PERIMETER_T
{
    public UInt32 count;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 32)]
    public NET_SDK_IVE_PER_INFO_T[] perInfo;
}

Function Description

Region invasion information structure.

Member Description

Member Type Remark
count unsigned int Number.
perInfo NET_SDK_IVE_PER_INFO_T[32] Regional intrusion analysis result information.
Error Code