Skip to content

NVRChlListStruct

Structure Definition

1
2
3
4
struct NVRChlListStruct
{
    char chlList[256][64]; 
};
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NVRChlListStruct
{
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
    public struct ChlListItem
    {
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
        public string guid;
    }
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 20)]
    public ChlListItem[] chlList;
}

Function Description

NVR channel list structure.

Member Description

Member Type Remark
chlList char[256] List of channel guids.
Error Code