~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/win32/ui.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2006-07-30 19:15:59 UTC
  • mto: (9.1.1 lenny) (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20060730191559-g31ymd2mk102kzff
Tags: upstream-1.19
ImportĀ upstreamĀ versionĀ 1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
extern void ui_dispatch_next_event(void);
85
85
extern void ui_dispatch_events(void);
86
86
extern void ui_error_string(const char *text);
87
 
extern void ui_display_statustext(const char *text);
88
87
 
89
88
extern ui_button_t ui_ask_confirmation(const char *title, const char *text);
90
89
 
98
97
 
99
98
/* Windows-specific functions.  */
100
99
 
 
100
extern void ui_update_menu();
101
101
extern HWND ui_get_main_hwnd(void);
102
102
extern HWND ui_open_canvas_window(const char *title, unsigned int width,
103
103
                                  unsigned int height,
106
106
                                    unsigned int height);
107
107
extern FILE *ui_console_save_dialog(HWND hwnd);
108
108
extern int ui_emulation_is_paused(void);
 
109
extern void ui_set_alwaysontop(int alwaysontop);
109
110
 
110
111
#endif
111
112