summaryrefslogtreecommitdiff
path: root/ipl/packs/loadfuncpp/examples/mkexternal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ipl/packs/loadfuncpp/examples/mkexternal.cpp')
-rw-r--r--ipl/packs/loadfuncpp/examples/mkexternal.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/ipl/packs/loadfuncpp/examples/mkexternal.cpp b/ipl/packs/loadfuncpp/examples/mkexternal.cpp
new file mode 100644
index 0000000..39c9b84
--- /dev/null
+++ b/ipl/packs/loadfuncpp/examples/mkexternal.cpp
@@ -0,0 +1,15 @@
+
+/* Example of a C++ extension to icon via loadfunc,
+ * without garbage collection difficulties.
+ * Type 'make iexample' to build.
+ * Carl Sturtivant, 2007/9/25
+ */
+
+#include "loadfuncpp.h"
+using namespace Icon;
+
+extern "C" int iexample(int argc, value argv[]) {
+ argv[0] = new external();
+ return SUCCEEDED;
+}
+