diff options
Diffstat (limited to 'Mac/Python/macglue.c')
-rw-r--r-- | Mac/Python/macglue.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 38f654f..24667e6 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -223,6 +223,9 @@ static void scan_event_queue(flush) int flush; { +#if defined(__MWERKS__) && defined(__CFM68K__) + return; /* No GetEvQHdr yet */ +#else register EvQElPtr q; q = (EvQElPtr) GetEvQHdr()->qHead; @@ -237,6 +240,7 @@ scan_event_queue(flush) break; } } +#endif } int |