|
From: Andreas R. <and...@us...> - 2002-05-04 23:20:31
|
Update of /cvsroot/squeak/squeak/platforms/win32/plugins/FilePlugin
In directory usw-pr-cvs1:/tmp/cvs-serv7733/plugins/FilePlugin
Modified Files:
sqWin32FilePrims.c
Log Message:
Update to 3.2.1
Index: sqWin32FilePrims.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/win32/plugins/FilePlugin/sqWin32FilePrims.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** sqWin32FilePrims.c 28 Jan 2002 13:56:59 -0000 1.3
--- sqWin32FilePrims.c 4 May 2002 23:20:27 -0000 1.4
***************
*** 51,54 ****
--- 51,58 ----
extern unsigned char *memory;
+ int sqFileThisSession(void) {
+ return thisSession;
+ }
+
int sqFileAtEnd(SQFile *f) {
/* Return true if the file's read/write head is at the end of the file. */
***************
*** 215,222 ****
}
return (int) dwReallyWritten;
- }
-
- int sqFileThisSession() {
- return thisSession;
}
--- 219,222 ----
|