X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ca584c16e35d7cafe4abca1f1e891a5caa011d5b..c01bbf930f6f8a0d0b2730cb6effba0023a7ec69:/include/xbt/function_types.h diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index a632b5af9c..a5044bdaba 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -16,17 +16,18 @@ SG_BEGIN_DECL() - 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 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 void (*void_pf_void_t) (void); - typedef int (*int_pf_void_t) (void); + typedef int (*int_f_void_t) (void); + + typedef int (*int_f_pvoid_pvoid_t) (void*,void*); + + typedef int (*xbt_main_func_t)(int argc, char *argv[]); SG_END_DECL() -#endif /* XBT_MISC_H */ +#endif /* XBT_FUNCTION_TYPE_H */