Reworked configuration parser a bit. Added configuration for S3 ViRGE and 8-bit Sound Blasters. IRQ 2 routed to IRQ 9 on AT machines.
34 lines
617 B
C
34 lines
617 B
C
extern HINSTANCE hinstance;
|
|
extern HWND ghwnd;
|
|
extern int mousecapture;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define szClassName "PCemMainWnd"
|
|
#define szSubClassName "PCemSubWnd"
|
|
|
|
void leave_fullscreen();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
void status_open(HWND hwnd);
|
|
extern HWND status_hwnd;
|
|
extern int status_is_open;
|
|
|
|
void hdconf_open(HWND hwnd);
|
|
|
|
void config_open(HWND hwnd);
|
|
|
|
void deviceconfig_open(HWND hwnd, struct device_t *device);
|
|
|
|
extern char openfilestring[260];
|
|
|
|
int getfile(HWND hwnd, char *f, char *fn);
|
|
int getsfile(HWND hwnd, char *f, char *fn);
|
|
|
|
extern int pause;
|