summaryrefslogtreecommitdiff
path: root/main/cygload.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2007-11-17 09:37:12 +0000
committerLuigi Rizzo <rizzo@icir.org>2007-11-17 09:37:12 +0000
commit2940cf943f075eb805632b466cee367f2ca364d5 (patch)
tree642f0b5266cc79d7e936d2dcc850afa4b340c612 /main/cygload.c
parent59efa92285f375b22a16260996d40aead0e799db (diff)
Loader for cygwin where asterisk is really a big dll
(something like this is already in 1.2) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89364 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/cygload.c')
-rw-r--r--main/cygload.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/main/cygload.c b/main/cygload.c
new file mode 100644
index 000000000..fc9c1c2f8
--- /dev/null
+++ b/main/cygload.c
@@ -0,0 +1,20 @@
+/*
+ * Loader for asterisk under windows.
+ * Open the dll, locate main, run.
+ */
+#include <unistd.h>
+#include <dlfcn.h>
+#include <stdio.h>
+
+typedef int (*main_f)(int argc, char *argv[]);
+
+int main(int argc, char *argv[])
+{
+ main_f ast_main = NULL;
+ void *handle = dlopen("asterisk.dll", 0);
+ if (handle)
+ ast_main = (main_f)dlsym(handle, "amain");
+ if (ast_main)
+ return ast_main(argc, argv);
+ fprintf(stderr, "could not load asterisk, %s\n", dlerror());
+}