?? options.h
字號:
/*
* 全局數據定義
*/
#ifndef __SOCK_OPTIONS_H__
#define __SOCK_OPTIONS_H__
struct options
{
const char *my_ip;
const char *server_ip;
const char *username;
const char *password;
const char *services;
const char *version;
char *session;
int sesslen;
unsigned short my_port;
unsigned short server_port;
unsigned char my_mac[6];
int recv_timeout;
int console;
int login_wait;
int ping_wait;
};
extern struct options g_options;
extern int options_init(void);
extern int options_exit(void);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -