Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
attempt to get rid of all const_cast
[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, 2012-2015. 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/base.h"
13
14 SG_BEGIN_DECL()
15
16 typedef void (*void_f_pvoid_t) (void *);
17 typedef void *(*pvoid_f_void_t) (void);
18 typedef void *(*pvoid_f_pvoid_t) (void *);
19 typedef void (*void_f_void_t) (void);
20
21 typedef int (*int_f_void_t) (void);
22 typedef int (*int_f_pvoid_t) (void*);
23
24 typedef int (*int_f_pvoid_pvoid_t) (void *, void *);
25 typedef int (*int_f_cpvoid_cpvoid_t) (const void *, const void *);
26
27 typedef int (*xbt_main_func_t) (int argc, char *argv[]);
28
29 SG_END_DECL()
30 #endif                          /* XBT_FUNCTION_TYPE_H */