Textractor_test/include/defs.h

45 lines
965 B
C
Raw Normal View History

#pragma once
// vnrhook/defs.h
// 8/23/2013 jichi
2018-12-19 05:56:04 +08:00
#include "common.h"
// Pipes
2018-11-04 17:00:14 +08:00
constexpr auto HOOK_PIPE = L"\\\\.\\pipe\\TEXTRACTOR_HOOK";
constexpr auto HOST_PIPE = L"\\\\.\\pipe\\TEXTRACTOR_HOST";
// Sections
2018-11-04 17:00:14 +08:00
constexpr auto ITH_SECTION_ = L"VNR_SECTION_"; // _%d
// Mutex
2018-11-04 17:00:14 +08:00
constexpr auto ITH_HOOKMAN_MUTEX_ = L"VNR_HOOKMAN_"; // ITH_HOOKMAN_%d
// Files
2018-12-19 05:56:04 +08:00
constexpr auto ITH_DLL = L"vnrhook"; // .dll but LoadLibrary automatically adds that
2018-11-04 17:00:14 +08:00
constexpr auto CONFIG_FILE = u8"Textractor.ini";
constexpr auto HOOK_SAVE_FILE = u8"SavedHooks.txt";
constexpr auto EXTEN_SAVE_FILE = u8"Extensions.txt";
2018-12-19 05:56:04 +08:00
// Functions
template <typename... Ts>
2018-12-21 00:02:22 +08:00
inline void FORMAT_MESSAGE(const char* format, Ts ...args)
2018-12-19 05:56:04 +08:00
{
2018-12-21 00:02:22 +08:00
char buffer[250] = {};
sprintf_s<250>(buffer, format, args...);
MessageBoxA(NULL, buffer, "Textractor Message", MB_OK);
2018-12-19 05:56:04 +08:00
}
2018-12-27 12:56:42 +08:00
#ifdef _DEBUG
#define TEST(...) static auto _ = std::invoke([]{ { __VA_ARGS__; } return 0; })
#else
#define TEST(...)
#endif
// EOF