mirror of http://gerrit.asterisk.org/asterisk
(something like this is already in 1.2) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89364 65c4cc65-6c06-0410-ace0-fbb531ad65f31.6.0
parent
59efa92285
commit
2940cf943f
@ -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());
|
||||
}
|
Loading…
Reference in new issue