20 lines
269 B
C
20 lines
269 B
C
|
#pragma once
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
kProcType_Steam,
|
||
|
kProcType_Normal,
|
||
|
|
||
|
kProcType_Packed,
|
||
|
|
||
|
kProcType_Unknown
|
||
|
};
|
||
|
|
||
|
struct ProcHookInfo
|
||
|
{
|
||
|
UInt64 version;
|
||
|
UInt32 procType;
|
||
|
};
|
||
|
|
||
|
bool IdentifyEXE(const char * procName, bool isEditor, std::string * dllSuffix, ProcHookInfo * hookInfo);
|