- Fixed a bug related to MSVC optimizations that broke Ryujin's relocation algorithm and its fix-up logic. - Introduced a standardized FFI argument-passing method for Ryujin Core; the legacy method remains compatible. - Ryujin GUI now fully supports the Anti-Debug features. - Various minor bug fixes and improvements to project structure.
9 lines
324 B
C++
9 lines
324 B
C++
#ifdef RYUJINCORE_EXPORTS
|
|
#define RYUJINCORE_API __declspec(dllexport)
|
|
#else
|
|
#define RYUJINCORE_API __declspec(dllimport)
|
|
#endif
|
|
#include "Ryujin/Ryujin.hh"
|
|
|
|
RYUJINCORE_API BOOL __stdcall RunRyujinCore(const char* strInputFilePath, const char* strPdbFilePath, const char* strOutputFilePath, RyujinObfuscatorConfig &config);
|