Skip to content

DD_DATE_SCHEDULE

Structure Definition

1
2
3
4
typedef struct _dd_date_schedule_
{
    unsigned long long hour[24]; 
} DD_DATE_SCHEDULE;
1
2
3
4
5
6
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_DATE_SCHEDULE
{
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U8, SizeConst = 24)]
    public UInt64[] hour;
}

Function Description

Daily schedule structure.

Member Description

Member Type Remark
hour unsigned long long[24] Daily schedule structure, 24 represents 24 hours, and each bit of unsigned long long represents the status of each minute.
Error Code