summaryrefslogtreecommitdiffstats
path: root/testsuite/tests/lib-dynlink-csharp/entry.c
blob: b5d11636efb7d5fc3290821e7f56b2c14131f2ad (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
/***********************************************************************/
/*                                                                     */
/*                                OCaml                                */
/*                                                                     */
/*                        Alain Frisch, LexiFi                         */
/*                                                                     */
/*  Copyright 2007 Institut National de Recherche en Informatique et   */
/*  en Automatique.  All rights reserved.  This file is distributed    */
/*  under the terms of the Q Public License version 1.0.               */
/*                                                                     */
/***********************************************************************/

#include <caml/memory.h>
#include <caml/alloc.h>
#include <caml/mlvalues.h>
#include <caml/callback.h>
#include <caml/custom.h>
#include <caml/fail.h>

#if !defined(OPENSTEP) && (defined(__WIN32__) && !defined(__CYGWIN__))
#  if defined(_MSC_VER) || defined(__MINGW32__)
#    define _DLLAPI __declspec(dllexport)
#  else
#    define _DLLAPI extern
#  endif
#  if defined(__MINGW32__) || defined(UNDER_CE)
#    define _CALLPROC
#  else
#    define _CALLPROC __stdcall
#  endif
#elif defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 303
#  define _DLLAPI __attribute__((visibility("default")))
#  define _CALLPROC
#endif /* WIN32 && !CYGWIN */

_DLLAPI void _CALLPROC start_caml_engine() {
  char * argv[2];
  argv[0] = "--";
  argv[1] = NULL;
  caml_startup(argv);
}