X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/91f96895b59fdd084301de4855db3517575d1773..66095ae5029ae68e10534fc32fd179d0015f40ed:/include/xbt/function_types.h diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index 10c6fe7501..305d10a18b 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -16,14 +16,17 @@ SG_BEGIN_DECL() - typedef void (void_f_ppvoid_t)(void**); - typedef void (void_f_pvoid_t) (void*); - typedef void (*void_f_void_t) (void); + typedef void (*void_f_ppvoid_t) (void **); + typedef void (*void_f_pvoid_t) (void *); + typedef void *(*pvoid_f_void_t) (void); + typedef void *(*pvoid_f_pvoid_t) (void *); + typedef void (*void_f_void_t) (void); - typedef int (int_f_pvoid_pvoid_t) (void*,void*); - - typedef int (*int_f_void_t) (void); /* FIXME: rename it to int_pf_void_t */ + typedef int (*int_f_void_t) (void); -SG_END_DECL() + typedef int (*int_f_pvoid_pvoid_t) (void *, void *); + + typedef int (*xbt_main_func_t) (int argc, char *argv[]); -#endif /* XBT_MISC_H */ +SG_END_DECL() +#endif /* XBT_FUNCTION_TYPE_H */