59 lines
2.2 KiB
C
59 lines
2.2 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* Objective Caml */
|
|
/* */
|
|
/* Manuel Serrano and Xavier Leroy, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 2000 Institut National de Recherche en Informatique et */
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
/* the special exception on linking described in file ../LICENSE. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
#ifndef CAML_CUSTOM_H
|
|
#define CAML_CUSTOM_H
|
|
|
|
|
|
#ifndef CAML_NAME_SPACE
|
|
#include "compatibility.h"
|
|
#endif
|
|
#include "mlvalues.h"
|
|
|
|
struct custom_operations {
|
|
char *identifier;
|
|
void (*finalize)(value v);
|
|
int (*compare)(value v1, value v2);
|
|
long (*hash)(value v);
|
|
void (*serialize)(value v,
|
|
/*out*/ unsigned long * wsize_32 /*size in bytes*/,
|
|
/*out*/ unsigned long * wsize_64 /*size in bytes*/);
|
|
unsigned long (*deserialize)(void * dst);
|
|
};
|
|
|
|
#define custom_finalize_default NULL
|
|
#define custom_compare_default NULL
|
|
#define custom_hash_default NULL
|
|
#define custom_serialize_default NULL
|
|
#define custom_deserialize_default NULL
|
|
|
|
#define Custom_ops_val(v) (*((struct custom_operations **) (v)))
|
|
|
|
CAMLextern value alloc_custom(struct custom_operations * ops,
|
|
unsigned long size, /*size in bytes*/
|
|
mlsize_t mem, /*resources consumed*/
|
|
mlsize_t max /*max resources*/);
|
|
|
|
CAMLextern void register_custom_operations(struct custom_operations * ops);
|
|
|
|
/* <private> */
|
|
extern struct custom_operations * find_custom_operations(char * ident);
|
|
extern struct custom_operations * final_custom_operations(void (*fn)(value));
|
|
|
|
extern void init_custom_operations(void);
|
|
/* </private> */
|
|
|
|
#endif /* CAML_CUSTOM_H */
|