From 8e04d594e8d280e37651f9976be52e0052c90513 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 14 Jul 2024 16:25:58 +0300 Subject: add relative args --- include/ejit/ejit.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include') 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; -- cgit v1.2.3