1996-11-08 06:48:17 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../LICENSE. */
|
1996-11-08 06:48:17 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* Callbacks from C to Caml */
|
|
|
|
|
2003-12-15 08:28:22 -08:00
|
|
|
#ifndef CAML_CALLBACK_H
|
|
|
|
#define CAML_CALLBACK_H
|
1996-11-08 06:48:17 -08:00
|
|
|
|
2003-12-29 14:15:02 -08:00
|
|
|
#ifndef CAML_NAME_SPACE
|
2003-12-15 08:28:22 -08:00
|
|
|
#include "compatibility.h"
|
2003-12-29 14:15:02 -08:00
|
|
|
#endif
|
1996-11-08 06:48:17 -08:00
|
|
|
#include "mlvalues.h"
|
|
|
|
|
2003-12-31 06:20:40 -08:00
|
|
|
CAMLextern value caml_callback (value closure, value arg);
|
|
|
|
CAMLextern value caml_callback2 (value closure, value arg1, value arg2);
|
|
|
|
CAMLextern value caml_callback3 (value closure, value arg1, value arg2,
|
|
|
|
value arg3);
|
|
|
|
CAMLextern value caml_callbackN (value closure, int narg, value args[]);
|
|
|
|
|
|
|
|
CAMLextern value caml_callback_exn (value closure, value arg);
|
|
|
|
CAMLextern value caml_callback2_exn (value closure, value arg1, value arg2);
|
|
|
|
CAMLextern value caml_callback3_exn (value closure,
|
|
|
|
value arg1, value arg2, value arg3);
|
|
|
|
CAMLextern value caml_callbackN_exn (value closure, int narg, value args[]);
|
1999-02-14 08:48:25 -08:00
|
|
|
|
|
|
|
#define Make_exception_result(v) ((v) | 2)
|
|
|
|
#define Is_exception_result(v) (((v) & 3) == 2)
|
|
|
|
#define Extract_exception(v) ((v) & ~3)
|
1996-11-08 06:48:17 -08:00
|
|
|
|
2006-09-11 05:12:24 -07:00
|
|
|
CAMLextern value * caml_named_value (char const * name);
|
1996-11-08 06:48:17 -08:00
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLextern void caml_main (char ** argv);
|
|
|
|
CAMLextern void caml_startup (char ** argv);
|
|
|
|
|
2003-12-31 06:20:40 -08:00
|
|
|
CAMLextern int caml_callback_depth;
|
1999-02-14 08:48:25 -08:00
|
|
|
|
1996-11-08 06:48:17 -08:00
|
|
|
#endif
|