AEP_dot_command


#include <aep.h>

typedef struct AEP_dot_command { /* */
    struct AEPHDR  AEP_i_t_o_hdr;  // Standard Header
    UCHAR  AEP_d_c_flags;     // flags; see below
    PVOID  AEP_d_c_pkeyword;  // address of keyword string; see below
    UCHAR  AEP_d_c_key_len;   // length of keyword; see below
    ULONG  AEP_d_c_num_1;     // first numeric parameter
    ULONG  AEP_d_c_num_2;     // second numeric parameter
    ULONG  AEP_d_c_num_3;     // third numeric parameter
} AEP_dot_command, *PAEP_dot_command;

Contains information for a AEP_DBG_DOT_CMD function.

AEP_d_c_flags

Flags. Can be one of these values:

AEP_D_C_NUM_1_PRES (0x01)

Numeric parameter 1 is present.

AEP_D_C_NUM_2_PRES (0x02)

Numeric parameter 2 is present.

AEP_D_C_NUM_3_PRES (0x04)

Numeric parameter 3 is present.


AEP_d_c_pkeyword

Address of a string specifying the command keyword.

AEP_d_c_key_len

Length in bytes of the keyword string. The length cannot exceed MAX_DOT_CMD_KEYWORD_SIZE.

See also AEP