aboutsummaryrefslogtreecommitdiffstats
path: root/main/cygload.c
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-17 09:37:12 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-17 09:37:12 +0000
commitadfbbca7d53fa6e312267f81f2723c394b151b92 (patch)
tree642f0b5266cc79d7e936d2dcc850afa4b340c612 /main/cygload.c
parent370182a28879eaa9ffbe25bf32bc21d6140e116f (diff)
Loader for cygwin where asterisk is really a big dll
(something like this is already in 1.2) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89364 f38db490-d61c-443f-a65b-d21fe96a405b
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());
+}