Skip to content

DD_OPERATE_TYPE

Enum Definition

1
2
3
4
5
6
typedef enum _dd_operate_type_
{
    DD_OPERATE_ADD = 0x01,
    DD_OPERATE_EDIT = 0x02,
    DD_OPERATE_DELETE = 0x03,
} DD_OPERATE_TYPE;
1
2
3
4
5
6
public enum DD_OPERATE_TYPE
{
    DD_OPERATE_ADD = 0x01,
    DD_OPERATE_EDIT = 0x02,
    DD_OPERATE_DELETE = 0x03,
}

Function Description

The type of operation.

Member Description

Enum name Value Remark
DD_OPERATE_ADD 0x01 Add to.
DD_OPERATE_EDIT 0x02 Edit.
DD_OPERATE_DELETE 0x03 Delete.
Error Code