diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 16:25:58 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 16:26:55 +0300 |
commit | 8e04d594e8d280e37651f9976be52e0052c90513 (patch) | |
tree | 01d467f5e744e8808f83c75fd35bb33ea65bd9d0 | |
parent | cf2459d4cab72e3e0072fdf76ca2f5d8f9593f78 (diff) | |
download | ejit-8e04d594e8d280e37651f9976be52e0052c90513.tar.gz ejit-8e04d594e8d280e37651f9976be52e0052c90513.zip |
add relative args
-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; |