ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/include/main.h
(Generate patch)

Comparing BasiliskII/src/include/main.h (file contents):
Revision 1.8 by cebix, 2001-06-30T17:21:55Z vs.
Revision 1.9 by cebix, 2001-07-03T15:59:49Z

# Line 51 | Line 51 | extern void WarningAlert(const char *tex
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,       // 60.15Hz VBL

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines