#pragma once // Forward declarations for optional Win32 API procedures // implemented in i_main.cpp #define WIN32_LEAN_AND_MEAN #include #include #define USE_WINDOWS_DWORD #include "i_module.h" extern FModule Kernel32Module; extern FModule Shell32Module; extern FModule User32Module; namespace OptWin32 { extern TOptProc SHGetFolderPathA; extern TOptProc SHGetKnownFolderPath; extern TOptProc GetLongPathNameA; extern TOptProc GetMonitorInfoA; } // namespace OptWin32