From 437a6d36578cecbbf0eea5d6491db42752075d49 Mon Sep 17 00:00:00 2001 From: Oleg Trofimov Date: Tue, 29 Oct 2024 16:07:26 +0300 Subject: [PATCH] ALTV-469 fixed "i" to "I" ALTV-469 fixed "h" to "H" ALTV-469 changed GetHwidProtHash() to Gethwid3() ALTV-469 fixed GetHwIdProtHash ALTV-469 fixed build ALTV-469 Add interface for protected HWID --- objects/IPlayer.h | 1 + script-objects/IConnectionInfo.h | 1 + 2 files changed, 2 insertions(+) diff --git a/objects/IPlayer.h b/objects/IPlayer.h index 8cf1a13..c4a1eca 100644 --- a/objects/IPlayer.h +++ b/objects/IPlayer.h @@ -91,6 +91,7 @@ namespace alt virtual std::string GetSocialClubName() const = 0; virtual uint64_t GetHwidHash() const = 0; virtual uint64_t GetHwidExHash() const = 0; + virtual std::string GetHwId3() const = 0; virtual std::string GetAuthToken() const = 0; virtual int64_t GetDiscordId() const = 0; diff --git a/script-objects/IConnectionInfo.h b/script-objects/IConnectionInfo.h index 14562d9..d03729c 100644 --- a/script-objects/IConnectionInfo.h +++ b/script-objects/IConnectionInfo.h @@ -20,6 +20,7 @@ namespace alt virtual std::string GetSocialName() const = 0; virtual uint64_t GetHwIdHash() const = 0; virtual uint64_t GetHwIdExHash() const = 0; + virtual std::string GetHwId3() const = 0; virtual std::string GetAuthToken() const = 0; virtual bool GetIsDebug() const = 0; virtual std::string GetBranch() const = 0;