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/wrappedcryptotypes.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/wrappedcryptotypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedcryptotypes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wrapped/generated/wrappedcryptotypes.h b/src/wrapped/generated/wrappedcryptotypes.h index 2e4d8254..46fc4ff0 100644 --- a/src/wrapped/generated/wrappedcryptotypes.h +++ b/src/wrapped/generated/wrappedcryptotypes.h @@ -15,11 +15,11 @@ typedef void (*vFp_t)(void*); typedef void* (*pFp_t)(void*); typedef void (*vFpp_t)(void*, void*); typedef void* (*pFpp_t)(void*, void*); -typedef int64_t (*iFppp_t)(void*, void*, void*); +typedef int32_t (*iFppp_t)(void*, void*, void*); typedef void* (*pFpppp_t)(void*, void*, void*, void*); -typedef int64_t (*iFpiipp_t)(void*, int64_t, int64_t, void*, void*); -typedef int64_t (*iFpplppi_t)(void*, void*, intptr_t, void*, void*, int64_t); -typedef int64_t (*iFppppipp_t)(void*, void*, void*, void*, int64_t, void*, void*); +typedef int32_t (*iFpiipp_t)(void*, int32_t, int32_t, void*, void*); +typedef int32_t (*iFpplppi_t)(void*, void*, intptr_t, void*, void*, int32_t); +typedef int32_t (*iFppppipp_t)(void*, void*, void*, void*, int32_t, void*, void*); #define SUPER() ADDED_FUNCTIONS() \ GO(CRYPTO_set_id_callback, vFp_t) \ |