[commit] r2430 - Correct types of UUIDPlugin helper/plugin init functions to int from sqInt.

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[commit] r2430 - Correct types of UUIDPlugin helper/plugin init functions to int from sqInt.

commits-3
 
Author: eliot
Date: 2011-06-17 11:55:18 -0700 (Fri, 17 Jun 2011)
New Revision: 2430

Modified:
   trunk/platforms/Cross/plugins/UUIDPlugin/UUIDPlugin.h
Log:
Correct types of UUIDPlugin helper/plugin init functions to int from sqInt.


Modified: trunk/platforms/Cross/plugins/UUIDPlugin/UUIDPlugin.h
===================================================================
--- trunk/platforms/Cross/plugins/UUIDPlugin/UUIDPlugin.h 2011-06-17 04:47:57 UTC (rev 2429)
+++ trunk/platforms/Cross/plugins/UUIDPlugin/UUIDPlugin.h 2011-06-17 18:55:18 UTC (rev 2430)
@@ -2,6 +2,6 @@
 
 typedef char sqUUID[16];
 
-sqInt MakeUUID(sqUUID location);
-sqInt sqUUIDInit(void);
-sqInt sqUUIDShutdown(void);
+int MakeUUID(sqUUID location);
+int sqUUIDInit(void);
+int sqUUIDShutdown(void);