Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'MC_LTL'
[simgrid.git] / include / xbt / function_types.h
1 /* function_type.h - classical types for pointer to function                */
2
3 /* Copyright (c) 2006, 2007, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef XBT_FUNCTION_TYPE_H
10 #define XBT_FUNCTION_TYPE_H
11
12 #include "xbt/misc.h"
13
14 SG_BEGIN_DECL()
15
16 typedef void (*void_f_ppvoid_t) (void **);
17 typedef void (*void_f_pvoid_t) (void *);
18 typedef void (*void_f_int_pvoid_t) (int, void *);
19 typedef void *(*pvoid_f_void_t) (void);
20 typedef void *(*pvoid_f_pvoid_t) (void *);
21 typedef void (*void_f_void_t) (void);
22
23 typedef int (*int_f_void_t) (void);
24
25 typedef int (*int_f_pvoid_pvoid_t) (void *, void *);
26 typedef int (*int_f_cpvoid_cpvoid_t) (const void *, const void *);
27
28 typedef int (*xbt_main_func_t) (int argc, char *argv[]);
29
30 typedef double(*double_f_pvoid_t) (void *);
31 typedef double(*double_f_cpvoid_t) (const void *);
32
33 SG_END_DECL()
34 #endif                          /* XBT_FUNCTION_TYPE_H */