1
0
Fork 0

fix VS2013

This commit is contained in:
torusrxxx 2023-12-30 11:23:07 +08:00
parent e30a70ad4d
commit a006d75ee5
No known key found for this signature in database
GPG Key ID: A795C73A0F1CFADD
1 changed files with 3 additions and 2 deletions

View File

@ -701,8 +701,8 @@ static bool GetUnsafeModuleInfoImpl(MODINFO & Info, ULONG_PTR FileMapVA, void(*f
return true;
}
// User/system module
static auto GetDefaultParty(const MODINFO & Info)
// Determine user/system module based on path, the default method
static MODULEPARTY GetDefaultParty(const MODINFO & Info)
{
if(Info.isVirtual)
return mod_user;
@ -721,6 +721,7 @@ static auto GetDefaultParty(const MODINFO & Info)
}
}
// These are used to store party in DB
struct MODULEPARTYINFO : AddrInfo
{
MODULEPARTY party;