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/wrappedsdl1types.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/wrappedsdl1types.h')
| -rw-r--r-- | src/wrapped/generated/wrappedsdl1types.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/wrapped/generated/wrappedsdl1types.h b/src/wrapped/generated/wrappedsdl1types.h index aa08b377..66c1613e 100644 --- a/src/wrapped/generated/wrappedsdl1types.h +++ b/src/wrapped/generated/wrappedsdl1types.h @@ -12,22 +12,22 @@ #endif typedef void (*vFp_t)(void*); -typedef int64_t (*iFv_t)(void); -typedef int64_t (*iFp_t)(void*); -typedef uint64_t (*uFp_t)(void*); +typedef int32_t (*iFv_t)(void); +typedef int32_t (*iFp_t)(void*); +typedef uint32_t (*uFp_t)(void*); typedef uint64_t (*UFp_t)(void*); typedef void* (*pFv_t)(void); typedef void* (*pFp_t)(void*); -typedef int64_t (*iFup_t)(uint64_t, void*); -typedef int64_t (*iFpp_t)(void*, void*); -typedef uint64_t (*uFpW_t)(void*, uint16_t); -typedef uint64_t (*uFpu_t)(void*, uint64_t); -typedef uint64_t (*uFpU_t)(void*, uint64_t); -typedef void* (*pFpi_t)(void*, int64_t); +typedef int32_t (*iFup_t)(uint32_t, void*); +typedef int32_t (*iFpp_t)(void*, void*); +typedef uint32_t (*uFpW_t)(void*, uint16_t); +typedef uint32_t (*uFpu_t)(void*, uint32_t); +typedef uint32_t (*uFpU_t)(void*, uint64_t); +typedef void* (*pFpi_t)(void*, int32_t); typedef void* (*pFpp_t)(void*, void*); -typedef int64_t (*iFppi_t)(void*, void*, int64_t); -typedef void* (*pFupp_t)(uint64_t, void*, void*); -typedef void* (*pFpippp_t)(void*, int64_t, void*, void*, void*); +typedef int32_t (*iFppi_t)(void*, void*, int32_t); +typedef void* (*pFupp_t)(uint32_t, void*, void*); +typedef void* (*pFpippp_t)(void*, int32_t, void*, void*, void*); #define SUPER() ADDED_FUNCTIONS() \ GO(SDL_KillThread, vFp_t) \ |