32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* Objective Caml */
|
|
/* */
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
|
/* Automatique. Distributed only by permission. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
/* Callbacks from C to Caml */
|
|
|
|
#ifndef _callback_
|
|
#define _callback_
|
|
|
|
#include "mlvalues.h"
|
|
|
|
value callback P((value closure, value arg));
|
|
value callback2 P((value closure, value arg1, value arg2));
|
|
value callback3 P((value closure, value arg1, value arg2, value arg3));
|
|
extern int callback_depth;
|
|
|
|
value * caml_named_value P((char * name));
|
|
|
|
void caml_main P((char ** argv));
|
|
void caml_startup P((char ** argv));
|
|
|
|
#endif
|