[go: up one dir, main page]

Menu

[r4]: / trunk / gui.h  Maximize  Restore  History

Download this file

20 lines (12 with data), 374 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
// Access to GUI stuff for various functions
// Very OS-dependent
#ifndef GUI_H
#define GUI_H
#include <windows.h>
void ShowMessage(char *format,...);
void ShowError(char *format,...);
int ShowQuestion(char *format,...);
void ShowStatus(char *format,...);
void AddConvertText(char *format,...);
BOOL GetInt(HWND hDlg,int item,int *result);
#endif