1 |
|
/* |
2 |
|
* main.h - General definitions |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2004 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 |
38 |
|
uint16 sr; |
39 |
|
}; |
40 |
|
|
41 |
< |
// Functions |
41 |
> |
// General functions |
42 |
> |
extern bool InitAll(void); |
43 |
> |
extern void ExitAll(void); |
44 |
> |
|
45 |
> |
// Platform-specific functions |
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 |
+ |
// Mutexes (non-recursive) |
55 |
+ |
struct B2_mutex; |
56 |
+ |
extern B2_mutex *B2_create_mutex(void); |
57 |
+ |
extern void B2_lock_mutex(B2_mutex *mutex); |
58 |
+ |
extern void B2_unlock_mutex(B2_mutex *mutex); |
59 |
+ |
extern void B2_delete_mutex(B2_mutex *mutex); |
60 |
+ |
|
61 |
|
// Interrupt flags |
62 |
|
enum { |
63 |
< |
INTFLAG_60HZ = 1, // 60Hz VBL |
64 |
< |
INTFLAG_SERIAL = 2, // Serial driver |
65 |
< |
INTFLAG_ETHER = 4, // Ethernet driver |
66 |
< |
INTFLAG_AUDIO = 8, // Audio block read |
67 |
< |
INTFLAG_TIMER = 16 // Time Manager |
63 |
> |
INTFLAG_60HZ = 1, // 60.15Hz VBL |
64 |
> |
INTFLAG_1HZ = 2, // ~1Hz interrupt |
65 |
> |
INTFLAG_SERIAL = 4, // Serial driver |
66 |
> |
INTFLAG_ETHER = 8, // Ethernet driver |
67 |
> |
INTFLAG_AUDIO = 16, // Audio block read |
68 |
> |
INTFLAG_TIMER = 32, // Time Manager |
69 |
> |
INTFLAG_ADB = 64, // ADB |
70 |
> |
INTFLAG_NMI = 128 // NMI |
71 |
|
}; |
72 |
|
|
73 |
|
extern uint32 InterruptFlags; // Currently pending interrupts |