|
From: <ted...@us...> - 2012-04-17 19:11:29
|
Revision: 1842
http://frontierkernel.svn.sourceforge.net/frontierkernel/?rev=1842&view=rev
Author: tedchoward
Date: 2012-04-17 19:11:18 +0000 (Tue, 17 Apr 2012)
Log Message:
-----------
fixed #defines for the windows build
Modified Paths:
--------------
Frontier/trunk/Common/source/icon.c
Modified: Frontier/trunk/Common/source/icon.c
===================================================================
--- Frontier/trunk/Common/source/icon.c 2011-11-01 18:20:44 UTC (rev 1841)
+++ Frontier/trunk/Common/source/icon.c 2012-04-17 19:11:18 UTC (rev 1842)
@@ -67,7 +67,9 @@
#define windoidwithtexticon 137
#define windoidwithnotexticon 138
+#if defined (MACVERSION)
OSStatus loadicondatafromodb(bigstring bsadricon, bigstring bsicondatatype, Handle *hicon);
+#endif
boolean ploticonfromodb (const Rect *r, short align, short transform, bigstring bsadricon) {
#if defined (MACVERSION)
@@ -149,6 +151,7 @@
#endif
}
+#if defined (MACVERSION)
OSStatus loadicondatafromodb(bigstring bsadricon, bigstring bsicondatatype, Handle *hicon) {
bigstring bsname;
hdlhashtable ht;
@@ -173,6 +176,7 @@
return noErr;
}
+#endif
boolean ploticonresource (const Rect *r, short align, short transform, short resid) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|