mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-07-15 23:07:59 +08:00
Bumped GTAV-Classes, removed unused declarations and other stuff (#638)
This commit is contained in:
@ -8,9 +8,6 @@ namespace big
|
||||
{
|
||||
class looped {
|
||||
public:
|
||||
static void api_login_session();
|
||||
|
||||
static void context_menu();
|
||||
static void hud_transition_state();
|
||||
|
||||
static void tunables_disable_phone();
|
||||
@ -19,8 +16,6 @@ namespace big
|
||||
static void player_spectate();
|
||||
static void player_remote_control_vehicle();
|
||||
|
||||
static void protections_replay_interface();
|
||||
|
||||
static void self_clean_player();
|
||||
static void self_free_cam_disable_control_action();
|
||||
static void self_free_cam();
|
||||
@ -40,6 +35,7 @@ namespace big
|
||||
|
||||
static void session_local_time();
|
||||
|
||||
static void system_disable_sigscanner();
|
||||
static void system_self_globals();
|
||||
static void system_update_pointers();
|
||||
static void system_desync_kick_protection();
|
||||
|
15
src/backend/looped/system/disable_sigscanner.cpp
Normal file
15
src/backend/looped/system/disable_sigscanner.cpp
Normal file
@ -0,0 +1,15 @@
|
||||
#include "backend/looped/looped.hpp"
|
||||
#include "pointers.hpp"
|
||||
#include "rage/atSingleton.hpp"
|
||||
#include "security/RageSecurity.hpp"
|
||||
|
||||
namespace big
|
||||
{
|
||||
void looped::system_disable_sigscanner()
|
||||
{
|
||||
if (g_pointers->m_security->isValid())
|
||||
{
|
||||
g_pointers->m_security->getInstance()->m_interval = std::numeric_limits<std::uint32_t>::max();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user