?? aid_func.h
字號:
#ifndef __aid_func_h
#define __aid_func_h
#define DATA_PACKAGE 101
#define ENQ_PACKAGE 102
#define OK_PACKAGE 103
#define NG_PACKAGE 104
#define CLEAR_PACKAGE 105
struct PG_HEAD /* both for Client_To_Serve & Serve_To_Serve */
{
int reqType ; /*DATA_PACKAGE | OK_PACKAGE | NG_PACKAGE */
int binType ; /* 1: Binary data ; 0 : Text data */
int reqSize ;
} ;
struct DATA_BIN
{
int w_len ;
char byte[1024] ;
} ;
void TraceLog_recv( struct PG_HEAD * pg_head , char * p_data) ;
void TraceLog_send( struct PG_HEAD * pg_head , char * p_data) ;
void TraceLog_str( char * pMsg ) ;
void TraceLog_clear(int binType ) ;
#else
extern void TraceLog_recv( struct PG_HEAD * pg_head , char * p_data) ;
extern void TraceLog_send( struct PG_HEAD * pg_head , char * p_data) ;
extern void TraceLog_str( char * pMsg ) ;
extern void TraceLog_clear( ) ;
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -