Skip to content
Snippets Groups Projects
Commit 2940cf94 authored by Luigi Rizzo's avatar Luigi Rizzo
Browse files

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
parent 59efa922
No related branches found
No related tags found
No related merge requests found
/*
* 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());
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment