mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
vtable.cpp clean up
This commit is contained in:
parent
0077320bb7
commit
01724cfaad
@ -14,7 +14,7 @@
|
||||
// const std::string& -
|
||||
// uint32_t
|
||||
//-----------------------------------------------------------------------------
|
||||
CVTableHelper::CVTableHelper(CModule* module, const std::string& tableName, uint32_t refIndex) : m_svVirtualTableName(tableName)
|
||||
CVTableHelper::CVTableHelper(CModule* module, const string& tableName, uint32_t refIndex) : m_svVirtualTableName(tableName)
|
||||
{
|
||||
m_pVirtualTable = module->GetVirtualMethodTable(tableName, refIndex);
|
||||
m_nVirtualFunctionCount = GetVTableLength();
|
||||
@ -27,7 +27,7 @@ CVTableHelper::CVTableHelper(CModule* module, const std::string& tableName, uint
|
||||
// Input : uintptr_t -
|
||||
// const std::string& -
|
||||
//-----------------------------------------------------------------------------
|
||||
CVTableHelper::CVTableHelper(uintptr_t virtualTable, const std::string& tableName) : m_pVirtualTable(virtualTable), m_svVirtualTableName(tableName)
|
||||
CVTableHelper::CVTableHelper(uintptr_t virtualTable, const string& tableName) : m_pVirtualTable(virtualTable), m_svVirtualTableName(tableName)
|
||||
{
|
||||
m_nVirtualFunctionCount = GetVTableLength();
|
||||
GetAllVTableFunctions();
|
||||
@ -39,7 +39,7 @@ CVTableHelper::CVTableHelper(uintptr_t virtualTable, const std::string& tableNam
|
||||
// Input : void* -
|
||||
// const std::string& -
|
||||
//-----------------------------------------------------------------------------
|
||||
CVTableHelper::CVTableHelper(void* virtualTable, const std::string& tableName) : m_pVirtualTable(uintptr_t(virtualTable)), m_svVirtualTableName(tableName)
|
||||
CVTableHelper::CVTableHelper(void* virtualTable, const string& tableName) : m_pVirtualTable(uintptr_t(virtualTable)), m_svVirtualTableName(tableName)
|
||||
{
|
||||
m_nVirtualFunctionCount = GetVTableLength();
|
||||
GetAllVTableFunctions();
|
||||
|
@ -5,9 +5,9 @@ class CVTableHelper
|
||||
public:
|
||||
|
||||
CVTableHelper(void) = default;
|
||||
CVTableHelper(CModule* module, const std::string& tableName = "", uint32_t refIndex = 0);
|
||||
CVTableHelper(uintptr_t virtualTable, const std::string& tableName = "");
|
||||
CVTableHelper(void* virtualTable, const std::string& tableName = "");
|
||||
CVTableHelper(CModule* module, const string& tableName = "", uint32_t refIndex = 0);
|
||||
CVTableHelper(uintptr_t virtualTable, const string& tableName = "");
|
||||
CVTableHelper(void* virtualTable, const string& tableName = "");
|
||||
|
||||
inline operator uintptr_t(void) const
|
||||
{
|
||||
@ -34,7 +34,7 @@ public:
|
||||
return m_nVirtualFunctionCount;
|
||||
}
|
||||
|
||||
const std::string& GetVTableName()
|
||||
const string& GetVTableName()
|
||||
{
|
||||
return m_svVirtualTableName;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user