diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-03-19 11:52:34 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-03-19 11:52:34 +0100 |
| commit | 7db570af13eed1e90dd9a166e57e37f58db7d5c7 (patch) | |
| tree | da809af62f68bc031c3946f628d6c34410c3c8b3 /src/wrapped/generated/wrappedlibncursesw6types.h | |
| parent | 6a2183189462127c2b23abc882245adc25eb644d (diff) | |
| download | box64-7db570af13eed1e90dd9a166e57e37f58db7d5c7.tar.gz box64-7db570af13eed1e90dd9a166e57e37f58db7d5c7.zip | |
Rmoved the 32bits->64bits wrapper hack (there might be some regression, but it's needed for riscv and other architectures wich sign extend ther 32bits values)
Diffstat (limited to 'src/wrapped/generated/wrappedlibncursesw6types.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibncursesw6types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wrapped/generated/wrappedlibncursesw6types.h b/src/wrapped/generated/wrappedlibncursesw6types.h index 99ab01ec..2921b5c6 100644 --- a/src/wrapped/generated/wrappedlibncursesw6types.h +++ b/src/wrapped/generated/wrappedlibncursesw6types.h @@ -12,10 +12,10 @@ #endif typedef void* (*pFv_t)(void); -typedef int64_t (*iFpV_t)(void*, ...); -typedef int64_t (*iFppA_t)(void*, void*, va_list); -typedef int64_t (*iFiipV_t)(int64_t, int64_t, void*, ...); -typedef int64_t (*iFpiipV_t)(void*, int64_t, int64_t, void*, ...); +typedef int32_t (*iFpV_t)(void*, ...); +typedef int32_t (*iFppA_t)(void*, void*, va_list); +typedef int32_t (*iFiipV_t)(int32_t, int32_t, void*, ...); +typedef int32_t (*iFpiipV_t)(void*, int32_t, int32_t, void*, ...); #define SUPER() ADDED_FUNCTIONS() \ GO(initscr, pFv_t) \ |