1 /**********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12 ***********************************************************************/
15 #include <fc_config.h>
24 #include "optiondlg.h"
27 /****************************************************************************
28 Popup the option dialog for the option set.
30 ****************************************************************************/
31 void option_dialog_popup(const char *name
, const struct option_set
*poptset
)
33 log_error("%s(): PORTME!", __FUNCTION__
);
36 /****************************************************************************
37 Popdown the option dialog for the option set.
39 ****************************************************************************/
40 void option_dialog_popdown(const struct option_set
*poptset
)
42 log_error("%s(): PORTME!", __FUNCTION__
);
45 /****************************************************************************
46 Update the GUI for the option.
48 ****************************************************************************/
49 void option_gui_update(struct option
*poption
)
51 log_error("%s(): PORTME!", __FUNCTION__
);
54 /****************************************************************************
55 Add the GUI for the option.
57 ****************************************************************************/
58 void option_gui_add(struct option
*poption
)
60 log_error("%s(): PORTME!", __FUNCTION__
);
63 /****************************************************************************
64 Remove the GUI for the option.
66 ****************************************************************************/
67 void option_gui_remove(struct option
*poption
)
69 log_error("%s(): PORTME!", __FUNCTION__
);