|
From: Andreas R. <and...@us...> - 2003-04-08 21:17:16
|
Update of /cvsroot/squeak/squeak/platforms/win32/vm
In directory sc8-pr-cvs1:/tmp/cvs-serv8923
Modified Files:
sqWin32Window.c
Log Message:
fix sqNextEventPut() to be non-static
Index: sqWin32Window.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/win32/vm/sqWin32Window.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** sqWin32Window.c 8 Apr 2003 20:59:02 -0000 1.12
--- sqWin32Window.c 8 Apr 2003 21:17:11 -0000 1.13
***************
*** 145,149 ****
void SetSystemTrayIcon(BOOL on);
! static sqInputEvent *sqNextEventPut(void);
--- 145,149 ----
void SetSystemTrayIcon(BOOL on);
! sqInputEvent *sqNextEventPut(void);
***************
*** 935,939 ****
static int eventBufferPut = 0;
! static sqInputEvent *sqNextEventPut(void) {
sqInputEvent *evt;
evt = eventBuffer + eventBufferPut;
--- 935,939 ----
static int eventBufferPut = 0;
! sqInputEvent *sqNextEventPut(void) {
sqInputEvent *evt;
evt = eventBuffer + eventBufferPut;
|