Skip to content

Commit

Permalink
feat(Natives): Added hashes for 1.0.2845
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarusCoding committed Mar 2, 2023
1 parent ebb4846 commit 75c49b0
Show file tree
Hide file tree
Showing 3 changed files with 6,588 additions and 4 deletions.
6 changes: 3 additions & 3 deletions NativeExtractor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

#include "Errors.h"

// Only tested on 1.0.2802.0 & 1.0.2824
// Only tested on 1.0.2802.0 & 1.0.2824 & 1.0.2845
static LPCTSTR szTableSig = _T("E8 ?? ?? ?? ?? 48 8B D8 48 8D 05 ?? ?? ?? ?? 48 89 ?? 48 8D");
static LPCTSTR szSysTableSig = _T("53 48 83 EC ?? 48 8D 1D ?? ?? ?? ?? 4C");
// Will only work on 1.0.2824
static LPCTSTR szFuncRegNativeSig = _T("E9 D5 FA DD 01");
// Will only work on 1.0.2845
static LPCTSTR szFuncRegNativeSig = _T("E9 B4 F0 2D 02");
static UINT uTableSize = 0x2AE;

BOOL FileExists(LPCTSTR szFile) {
Expand Down
2 changes: 1 addition & 1 deletion NativeExtractor.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace NativeExtractor {

//TODO get dynamic
static std::basic_string<TCHAR> TARGET_BUILD_VERSION = _T("1.0.2824.0");
static std::basic_string<TCHAR> TARGET_BUILD_VERSION = _T("1.0.2845.0");

class HashExtractor final {

Expand Down
Loading

0 comments on commit 75c49b0

Please sign in to comment.