|
From: John M M. <jo...@us...> - 2003-05-19 07:20:15
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory sc8-pr-cvs1:/tmp/cvs-serv31672/squeak/platforms/Mac OS/vm
Modified Files:
sqMacUIEvents.c
Log Message:
3.5.1b1 Changed plugin def to browserplugin to avoid confusion.
Index: sqMacUIEvents.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacUIEvents.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** sqMacUIEvents.c 5 Mar 2003 19:57:48 -0000 1.13
--- sqMacUIEvents.c 19 May 2003 07:20:12 -0000 1.14
***************
*** 132,136 ****
Boolean IsKeyDown(void);
! #if !defined(I_AM_CARBON_EVENT) || PLUGIN
int HandleEvents(void);
void HandleMenu(int mSelect);
--- 132,136 ----
Boolean IsKeyDown(void);
! #if !defined(I_AM_CARBON_EVENT) || BROWSERPLUGIN
int HandleEvents(void);
void HandleMenu(int mSelect);
***************
*** 141,145 ****
unsigned long clockTime;
! #ifndef PLUGIN
clockTime = ioLowResMSecs();
if (abs(nextPollTick - clockTime) >= 16) {
--- 141,145 ----
unsigned long clockTime;
! #ifndef BROWSERPLUGIN
clockTime = ioLowResMSecs();
if (abs(nextPollTick - clockTime) >= 16) {
***************
*** 1843,1847 ****
static pascal void PowerManagerDefeatTimer (EventLoopTimerRef theTimer,void* userData) {
! #ifndef PLUGIN
if (gDisablePowerManager && gTapPowerManager) {
IdleUpdate();
--- 1843,1847 ----
static pascal void PowerManagerDefeatTimer (EventLoopTimerRef theTimer,void* userData) {
! #ifndef BROWSERPLUGIN
if (gDisablePowerManager && gTapPowerManager) {
IdleUpdate();
***************
*** 1853,1857 ****
}
! #ifndef PLUGIN
int ioProcessEvents(void) {
if (gQuitNowRightNow) {
--- 1853,1857 ----
}
! #ifndef BROWSERPLUGIN
int ioProcessEvents(void) {
if (gQuitNowRightNow) {
|