diff options
-rw-r--r-- | include/ejit/ejit.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index 18ce699..17fa0fb 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -50,6 +50,18 @@ struct ejit_arg { uint32_t u32; int64_t i64; uint64_t u64; + + signed char c; + unsigned char uc; + signed short s; + unsigned short us; + signed int i; + unsigned int ui; + signed long l; + unsigned long ul; + signed long long ll; + unsigned long long ull; + float f; double d; void *p; |