X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/91f96895b59fdd084301de4855db3517575d1773..11a3b32b0d8ce88e299239800946ab8b81984856:/include/xbt/function_types.h diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index 10c6fe7501..7e476a7463 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -16,13 +16,15 @@ 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_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 */ SG_END_DECL()