-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.h
More file actions
49 lines (36 loc) · 858 Bytes
/
config.h
File metadata and controls
49 lines (36 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
Birl is Ruijie Linux
作者:木瓜无衣 (1401570404@qq.com)
*/
#ifndef CONFIG_H
#define CONFIG_H
#include <gtk/gtk.h>
#include "common.h"
GtkWidget *main_window;
GtkWidget *main_frame;
GtkWidget *login_button;
GtkWidget *set_button;
GtkWidget *username_label;
GtkWidget *password_label;
GtkWidget *username_comobox;
GtkWidget *password_entry;
GtkWidget *main_window_backimage;
GtkWidget *save_checkbutton;
GList *items_username_comobox;
gchar guiUsername[16];
gchar guiPassword[16];
gchar defaultNic[16];
gchar defaultStart[16];
gchar defaultMode[16];
//gchar defaultIP[16];
//gchar defaultMask[16];
int nicNum;
int getNicMsg();
CSTRING nicMsg;
GtkWidget *connect_frame;
GtkWidget *connect_label;
GtkWidget *connect_exit_button;
static int config_button_is_clicked;
void main_window_init();
void set_focus();
#endif // CONFIG_H_INCLUDED