深入理解Linux内核(第二版).pdf
class SrcPreprocess
{
public:
static const int SOFTWARE_ID_LEN = 32;
static const int SCRIPT_PATH_LEN = 128;
static const int ERROR_TEXT_LEN = 128;
struct request_pre_process_msg
{
unsigned short n_msg_len;
unsigned short n_msg_type;
char psz_software_id[SOFTWARE_ID_LEN];
char psz_preprocess_script[SCRIPT_PATH_LEN];
};
struct response_pre_process_msg
{
unsigned short n_msg_len;
unsigned short n_msg_type;
int n_process;
char psz_software_id[SOFTWARE_ID_LEN];
char psz_err_description[ERROR_TEXT_LEN];
};
};
阅读(272) | 评论(0) | 转发(0) |