skan_config.h

来自「Linux下无线网卡扫描工具源代码」· C头文件 代码 · 共 26 行

H
26
字号
#ifndef __SKAN_CONFIG_H__#define __SKAN_CONFIG_H__#include <gtk/gtk.h>#define CLEARBUF(x,y) while((y = fgetc(x))!='\n' && y != EOF)continue	typedef struct gtkskan_config {		gchar *interface;		gboolean sound;		gchar *snd_path;	} gtkskan_config_t;	void gtkskan_load_config(gtkskan_config_t *);	void gtkskan_save_config(gtkskan_config_t *);	GList * gtkskan_get_interface_list(void);	void gtkskan_configure(gtkskan_config_t *);	void clear_glist(GList *);	void config_handle_soundcheck(GtkWidget *, gpointer);	void config_handle_combo_iface(GtkWidget *, gpointer);	void config_handle_sndpath_ok(GtkWidget *, GtkFileSelection*);	void config_handle_close(GtkWidget *, gpointer);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?