mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-29 06:50:35 -05:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
struct CodeCache
|
||||
{
|
||||
char* bucket{};
|
||||
|
||||
CodeCache();
|
||||
~CodeCache();
|
||||
|
||||
void Init();
|
||||
void Insert(uint32_t guest, const void* host);
|
||||
|
||||
void* Find(uint32_t guest) const;
|
||||
};
|
||||
|
||||
extern CodeCache gCodeCache;
|
||||
Reference in New Issue
Block a user