enderalse/source/fs.dll/skse64/skse64_loader_common/IdentifyEXE.h

20 lines
269 B
C
Raw Normal View History

2021-10-06 00:45:46 +00:00
#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);