1 |
|
/* |
2 |
|
* main.h - General definitions |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2000 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2001 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
46 |
|
extern void FlushCodeCache(void *start, uint32 size); // Code was patched, flush caches if neccessary |
47 |
|
extern void QuitEmulator(void); // Quit emulator |
48 |
|
extern void ErrorAlert(const char *text); // Display error alert |
49 |
+ |
extern void ErrorAlert(int string_id); |
50 |
|
extern void WarningAlert(const char *text); // Display warning alert |
51 |
+ |
extern void WarningAlert(int string_id); |
52 |
|
extern bool ChoiceAlert(const char *text, const char *pos, const char *neg); // Display choice alert |
53 |
|
|
54 |
|
// Interrupt flags |
65 |
|
extern uint32 InterruptFlags; // Currently pending interrupts |
66 |
|
extern void SetInterruptFlag(uint32 flag); // Set/clear interrupt flags |
67 |
|
extern void ClearInterruptFlag(uint32 flag); |
66 |
– |
extern void TriggerNMI(void); |
68 |
|
|
69 |
|
#endif |