mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
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
This commit is contained in:
20
main/cygload.c
Normal file
20
main/cygload.c
Normal file
@@ -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());
|
||||
}
|
Reference in New Issue
Block a user