summaryrefslogtreecommitdiffstats
path: root/src/ocaml-flexdll-test.c
blob: 943a5f9df66a1046ae040d7f32882ff8fc68cbf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

/*****************************************************************
   FlexDLL
   Alain Frisch

   Copyright 2007 Institut National de Recherche en Informatique et
   en Automatique.

******************************************************************/

/* An example (main program) */

#include <stdlib.h>
#include <stdio.h>
#include "flexdll.h"

typedef void torun();

void api(char *msg){ printf("API: %s\n", msg); }

int main(int argc, char **argv)
{
  void *sym;
  void *handle;
  int i;
  torun *torun;

  printf("INIT\n"); fflush(stdout);
  flexdll_dump_exports(NULL);
  printf("OK\n"); fflush(stdout);
  for (i = 1; i < argc; i++) {
    printf("** Loading %s\n", argv[i]);
    handle = flexdll_dlopen(argv[i], FLEXDLL_RTLD_GLOBAL);
    if (NULL == handle) { printf("error: %s\n", flexdll_dlerror()); exit(2); }
    printf("** handle = %p\n", handle);
    flexdll_dump_exports(handle);
    flexdll_dump_relocations(handle);

    if (NULL == handle) { printf("error: %s\n", flexdll_dlerror()); exit(2); }

    torun = flexdll_dlsym(handle, "torun");
    if (torun) torun();
  }
  exit(0);
}