34 lines
767 B
C
Raw Normal View History

#pragma once
// vnrhook/defs.h
// 8/23/2013 jichi
// Pipes
2018-11-04 04:00:14 -05:00
constexpr auto HOOK_PIPE = L"\\\\.\\pipe\\TEXTRACTOR_HOOK";
constexpr auto HOST_PIPE = L"\\\\.\\pipe\\TEXTRACTOR_HOST";
// Sections
2018-11-04 04:00:14 -05:00
constexpr auto ITH_SECTION_ = L"VNR_SECTION_"; // _%d
// Mutexes
2018-11-04 04:00:14 -05:00
constexpr auto ITH_HOOKMAN_MUTEX_ = L"VNR_HOOKMAN_"; // ITH_HOOKMAN_%d
constexpr auto CONNECTING_MUTEX = L"TEXTRACTOR_CONNECTING_PIPES";
// Events
constexpr auto PIPE_AVAILABLE_EVENT = L"TEXTRACTOR_PIPE_AVAILABLE";
2018-11-04 04:00:14 -05:00
// Files
2018-12-18 16:56:04 -05:00
constexpr auto ITH_DLL = L"vnrhook"; // .dll but LoadLibrary automatically adds that
2018-11-04 04:00:14 -05:00
constexpr auto CONFIG_FILE = u8"Textractor.ini";
// Misc
2019-02-12 19:54:15 -05:00
constexpr auto DEFAULT_EXTENSIONS = u8"Remove Repetition>Lua>Copy to Clipboard>Bing Translate>Extra Window>Extra Newlines";
// EOF