Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 27, 2004, 4:14:47 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/updater: implemented a new SignalHandler, signals for starting and quiting the Gui are now located in OrxonoxGuiExec.
Now thinking about a way to pass options to Orxonox (so the GUI really makes sense)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/updater/src/gui/orxonox_gui_exec.h

    r3297 r3300  
    4848
    4949#ifdef HAVE_GTK2
    50   static int startOrxonox (GtkWidget *widget, Widget* data);
     50  static int startOrxonox (GtkWidget *widget, void* data);
     51  static int quitOrxonox (GtkWidget *widget, void* data);
    5152#else /* HAVE_GTK2 */
    52   static int startOrxonox (void* widget, Widget* data);
     53  static int startOrxonox (void* widget, void* data);
     54  static int quitOrxonox (void* widget, void* data);
    5355#endif /* HAVE_GTK2 */
    5456};
     57
     58
     59struct HashTable
     60{
     61  char* name;
     62  char* value;
     63  HashTable* next;
     64};
     65
     66
    5567#endif /* _ORXONOX_GUI_EXEC_H */
Note: See TracChangeset for help on using the changeset viewer.