summaryrefslogtreecommitdiffstats
path: root/src/testshlibrary.d
diff options
context:
space:
mode:
authorGravatar mszulecki2007-02-23 14:42:57 +0000
committerGravatar mszulecki2007-02-23 14:42:57 +0000
commite871e41637d8c511a0cf0379c5e4ca872f6cf469 (patch)
tree03cf75db28b8e8fe24c389b64bf9645decbc4b07 /src/testshlibrary.d
parent9d7a4bddb8e15687c654ab54c8e194fce2f00617 (diff)
downloaddskel-e871e41637d8c511a0cf0379c5e4ca872f6cf469.tar.gz
dskel-e871e41637d8c511a0cf0379c5e4ca872f6cf469.tar.bz2
Attempt at shared object library building.
git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@14 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
Diffstat (limited to 'src/testshlibrary.d')
-rw-r--r--src/testshlibrary.d9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testshlibrary.d b/src/testshlibrary.d
new file mode 100644
index 0000000..13cbea9
--- /dev/null
+++ b/src/testshlibrary.d
@@ -0,0 +1,9 @@
+module testshlibrary;
+
+public static class HelloWorldSharedObjectFactory
+{
+ public static char[] getVersion()
+ {
+ return "Version:";
+ }
+}