summaryrefslogtreecommitdiffstats
path: root/generic/tclOOIntDecls.h
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2008-06-01 02:02:47 (GMT)
committerkennykb <kennykb@noemail.net>2008-06-01 02:02:47 (GMT)
commit307b650f53bda6912ae50cc8a03c09dfd6ce7568 (patch)
tree3c54f9e99462ad249266b4ec5a3495acf3eac0b8 /generic/tclOOIntDecls.h
parent7875b65c7d697490845e6cd6cfb7d567ebcbec8c (diff)
downloadtcl-307b650f53bda6912ae50cc8a03c09dfd6ce7568.zip
tcl-307b650f53bda6912ae50cc8a03c09dfd6ce7568.tar.gz
tcl-307b650f53bda6912ae50cc8a03c09dfd6ce7568.tar.bz2
* generic/tclOODecls.h: Added the swizzling of DLLEXPORT and
* generic/tclOOIntDecls.h: DLLIMPORT needed to make EXTERN work. FossilOrigin-Name: 882dc411856a2f16156051683d66b7158337373f
Diffstat (limited to 'generic/tclOOIntDecls.h')
-rw-r--r--generic/tclOOIntDecls.h27
1 files changed, 26 insertions, 1 deletions
diff --git a/generic/tclOOIntDecls.h b/generic/tclOOIntDecls.h
index 4ee8b8d..bc6c2d3 100644
--- a/generic/tclOOIntDecls.h
+++ b/generic/tclOOIntDecls.h
@@ -1,9 +1,29 @@
/*
- * $Id: tclOOIntDecls.h,v 1.3 2008/06/01 00:33:05 dkf Exp $
+ * $Id: tclOOIntDecls.h,v 1.4 2008/06/01 02:02:49 kennykb Exp $
*
* This file is (mostly) automatically generated from tclOO.decls.
*/
+#ifndef _TCLOOINTDECLS
+#define _TCLOOINTDECLS
+
+#undef TCL_STORAGE_CLASS
+#ifdef BUILD_tcl
+# define TCL_STORAGE_CLASS DLLEXPORT
+#else
+# ifdef USE_TCL_STUBS
+# define TCL_STORAGE_CLASS
+# else
+# define TCL_STORAGE_CLASS DLLIMPORT
+# endif
+#endif
+
+/*
+ * WARNING: This file is automatically generated by the tools/genStubs.tcl
+ * script. Any modifications to the function declarations below should be made
+ * in the generic/tcl.decls script.
+ */
+
/* !BEGIN!: Do not edit below this line. */
/*
@@ -242,3 +262,8 @@ struct TclOOStubAPI {
CONST TclOOStubs *stubsPtr;
CONST TclOOIntStubs *intStubsPtr;
};
+
+#undef TCL_STORAGE_CLASS
+#define TCL_STORAGE_CLASS DLLIMPORT
+
+#endif /* _TCLOODECLS */