[Vm-dev] [commit][2687] update VMVersion and add ioSetCursorARGB to sqRPCWindows

commits at squeakvm.org commits at squeakvm.org
Sat Feb 16 01:25:45 UTC 2013


Revision: 2687
Author:   rowledge
Date:     2013-02-15 17:25:45 -0800 (Fri, 15 Feb 2013)
Log Message:
-----------
update VMVersion and add ioSetCursorARGB to sqRPCWindows

Modified Paths:
--------------
    trunk/platforms/RiscOS/vm/sqRPCVersion.c
    trunk/platforms/RiscOS/vm/sqRPCWindows.c

Modified: trunk/platforms/RiscOS/vm/sqRPCVersion.c
===================================================================
--- trunk/platforms/RiscOS/vm/sqRPCVersion.c	2013-02-16 01:24:14 UTC (rev 2686)
+++ trunk/platforms/RiscOS/vm/sqRPCVersion.c	2013-02-16 01:25:45 UTC (rev 2687)
@@ -28,4 +28,4 @@
 // A trivial file to recompile every time a VM is built so as to track
 // the exact time and date of build
 
-char	VMVersion[] = "3.9 of "__DATE__"@"__TIME__;
+char	VMVersion[] = "4.4 of "__DATE__"@"__TIME__;

Modified: trunk/platforms/RiscOS/vm/sqRPCWindows.c
===================================================================
--- trunk/platforms/RiscOS/vm/sqRPCWindows.c	2013-02-16 01:24:14 UTC (rev 2686)
+++ trunk/platforms/RiscOS/vm/sqRPCWindows.c	2013-02-16 01:25:45 UTC (rev 2687)
@@ -1446,6 +1446,11 @@
 	return ioSetCursorWithMask(cursorBitsIndex, NULL, offsetX, offsetY);
 }
 
+sqInt ioSetCursorARGB(sqInt cursorBitsIndex, sqInt extentX, sqInt extentY, sqInt offsetX, sqInt offsetY) {
+// no information on what this is supposed to do yet, assume old api can work for now
+	return ioSetCursorWithMask(cursorBitsIndex, NULL, offsetX, offsetY);
+}
+
 /* Backwards compat stub */
 sqInt ioShowDisplay( sqInt dispBitsIndex, sqInt width, sqInt height, sqInt depth, sqInt affectedL, sqInt affectedR, sqInt affectedT, sqInt affectedB) {
 	return ioShowDisplayOnWindow( (unsigned *)dispBitsIndex, width, height, depth, affectedL, affectedR, affectedT, affectedB, 1);



More information about the Vm-dev mailing list