|
From: John M M. <jo...@us...> - 2003-05-19 07:19:46
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory sc8-pr-cvs1:/tmp/cvs-serv31269/squeak/platforms/Mac OS/vm
Modified Files:
osExports.c
Log Message:
3.5.1b1 Changed plugin def to browserplugin to avoid confusion.
Index: osExports.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/osExports.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** osExports.c 8 Aug 2002 04:44:50 -0000 1.5
--- osExports.c 19 May 2003 07:19:43 -0000 1.6
***************
*** 31,35 ****
int serialPortNames(int portNum, char *portName, char *inName, char *outName);
Boolean IsKeyDown(void);
! #ifdef PLUGIN
int primitivePluginBrowserReady(void);
int primitivePluginDestroyRequest(void);
--- 31,35 ----
int serialPortNames(int portNum, char *portName, char *inName, char *outName);
Boolean IsKeyDown(void);
! #if defined( BROWSERPLUGIN ) && !defined ( __APPLE__ ) && !defined ( __MACH__ )
int primitivePluginBrowserReady(void);
int primitivePluginDestroyRequest(void);
***************
*** 57,64 ****
XFN(serialPortWriteFrom)
XFN(IsKeyDown)
! #if !defined(PLUGIN) & I_AM_CARBON_EVENT
XFN(getUIToLock)
#endif
! #ifdef PLUGIN
/* Plugin support primitives
We should make these primitives a proper plugin
--- 57,64 ----
XFN(serialPortWriteFrom)
XFN(IsKeyDown)
! #if !defined(BROWSERPLUGIN) & I_AM_CARBON_EVENT
XFN(getUIToLock)
#endif
! #if defined( BROWSERPLUGIN ) && !defined ( __APPLE__ ) && !defined ( __MACH__ )
/* Plugin support primitives
We should make these primitives a proper plugin
|