]> icculus.org git repositories - taylor/freespace2.git/blob - src/network/stand_gui.cpp
silence various compiler warnings (clang:rel)
[taylor/freespace2.git] / src / network / stand_gui.cpp
1 #include "pstypes.h"
2 #include "stand_gui.h"
3
4 void std_add_ban(const char *name)
5 {
6         STUB_FUNCTION;
7 }
8
9 void std_add_chat_text(const char *text, int player_index, int add_id)
10 {
11         STUB_FUNCTION;
12 }
13
14 void std_add_player(net_player *p)
15 {
16         STUB_FUNCTION;
17 }
18
19 int std_connect_set_connect_count()
20 {
21         STUB_FUNCTION;
22         
23         return 0;
24 }
25
26 void std_connect_set_gamename(const char *name)
27 {
28         STUB_FUNCTION;
29 }
30
31 void std_connect_set_host_connect_status()
32 {
33         STUB_FUNCTION;
34 }
35
36 void std_create_gen_dialog(const char *title)
37 {
38         STUB_FUNCTION;
39 }
40
41 void std_debug_set_standalone_state_string(const char *str)
42 {
43         STUB_FUNCTION;
44 }
45
46 void std_destroy_gen_dialog()
47 {
48         STUB_FUNCTION;
49 }
50
51 void std_do_gui_frame()
52 {
53         STUB_FUNCTION;
54 }
55
56 void std_gen_set_text(const char *str, int field_num)
57 {
58         STUB_FUNCTION;
59 }
60
61 void std_init_standalone()
62 {
63         STUB_FUNCTION;
64 }
65
66 int std_is_host_passwd()
67 {
68         return 0;
69 }
70
71 void std_multi_add_goals()
72 {
73         STUB_FUNCTION;
74 }
75
76 void std_multi_set_standalone_mission_name(const char *mission_name)
77 {
78         STUB_FUNCTION;
79 }
80
81 void std_multi_set_standalone_missiontime(float mission_time)
82 {
83         STUB_FUNCTION;
84 }
85
86 void std_multi_setup_goal_tree()
87 {
88         STUB_FUNCTION;
89 }
90
91 void std_multi_update_goals()
92 {
93         STUB_FUNCTION;
94 }
95
96 void std_multi_update_netgame_info_controls()
97 {
98         STUB_FUNCTION;
99 }
100
101 int std_player_is_banned(const char *name)
102 {
103         return 0;
104 }
105
106 int std_remove_player(net_player *p)
107 {
108         STUB_FUNCTION;
109         
110         return 0;
111 }
112
113 void std_reset_standalone_gui()
114 {
115         STUB_FUNCTION;
116 }
117
118 void std_reset_timestamps()
119 {
120         STUB_FUNCTION;
121 }
122
123 void std_set_standalone_fps(float fps)
124 {
125         STUB_FUNCTION;
126 }
127
128 void std_update_player_ping(net_player *p)
129 {
130         STUB_FUNCTION;
131 }