From: cherierm Date: Thu, 4 Oct 2007 07:40:48 +0000 (+0000) Subject: I just add two function pointer types. X-Git-Tag: v3.3~1025 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d184124fe746b760ff77116171493c43e0eaff89 I just add two function pointer types. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4766 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index 801a69571d..c12ca70e07 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -27,6 +27,9 @@ SG_BEGIN_DECL() typedef int (int_f_pvoid_pvoid_t) (void*,void*); typedef int (*xbt_main_func_t)(int argc, char *argv[]); + + typedef void* (*pvoid_pf_void_t)(void); + typedef void (*void_fp_pvoid_t)(void*); SG_END_DECL() #endif /* XBT_FUNCTION_TYPE_H */