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

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);