mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-05 08:47:53 +00:00
replace float_exponent with macro
This commit is contained in:
@@ -146,7 +146,6 @@ namespace hook_api
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_divide, int64_t float1, int64_t float2 );
|
||||
DECLARE_HOOK_FUNCNARG(int64_t, float_one );
|
||||
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_exponent, int64_t float1 );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_exponent_set, int64_t float1, int32_t exponent );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_mantissa, int64_t float1 );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_mantissa_set, int64_t float1, int64_t mantissa );
|
||||
@@ -586,14 +585,11 @@ namespace hook
|
||||
ADD_HOOK_FUNCTION(float_sto, ctx);
|
||||
ADD_HOOK_FUNCTION(float_sto_set, ctx);
|
||||
ADD_HOOK_FUNCTION(float_invert, ctx);
|
||||
ADD_HOOK_FUNCTION(float_mantissa, ctx);
|
||||
ADD_HOOK_FUNCTION(float_exponent, ctx);
|
||||
|
||||
ADD_HOOK_FUNCTION(float_divide, ctx);
|
||||
ADD_HOOK_FUNCTION(float_one, ctx);
|
||||
ADD_HOOK_FUNCTION(float_mantissa, ctx);
|
||||
ADD_HOOK_FUNCTION(float_mantissa_set, ctx);
|
||||
ADD_HOOK_FUNCTION(float_exponent, ctx);
|
||||
ADD_HOOK_FUNCTION(float_exponent_set, ctx);
|
||||
ADD_HOOK_FUNCTION(float_sign, ctx);
|
||||
ADD_HOOK_FUNCTION(float_sign_set, ctx);
|
||||
|
||||
Reference in New Issue
Block a user