Searched defs:FunctionHeader (Results 1 – 2 of 2) sorted by relevance
44 struct FunctionHeader { struct45 void (*execute)(void *); // Execute function pointer46 void (*destroy)(void *); // Destroy function pointer47 void *data; // User data (storing lambda)
53 struct FunctionHeader { struct60 FunctionHeader* create_function_wrapper(F&& func) in create_function_wrapper() argument