mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-07 13:16:34 +02:00
Added inline function type
This commit is contained in:
parent
10fb038c37
commit
4f724b6eaf
1 changed files with 3 additions and 0 deletions
|
@ -517,6 +517,9 @@ typedef void (*function_type) ();
|
||||||
/** Variable-argument function type */
|
/** Variable-argument function type */
|
||||||
typedef void (*function_type_va) (int, object, object, object, ...);
|
typedef void (*function_type_va) (int, object, object, object, ...);
|
||||||
|
|
||||||
|
/** Non-CPS function type */
|
||||||
|
typedef object (*inline_function_type) ();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief C-variable integration type - wrapper around a Cyclone object pointer
|
* @brief C-variable integration type - wrapper around a Cyclone object pointer
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue