mirror of
https://github.com/Ed94/metadesk.git
synced 2026-07-15 22:11:29 -07:00
32 lines
937 B
C
32 lines
937 B
C
#ifdef INTELLISENSE_DIRECTIVES
|
|
# pragma once
|
|
#endif
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Includes / Libraries
|
|
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define WIN32_MEAN_AND_LEAN
|
|
#define VC_EXTRALEAN
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <timeapi.h>
|
|
#include <tlhelp32.h>
|
|
#include <Shlobj.h>
|
|
#include <processthreadsapi.h>
|
|
#pragma comment(lib, "user32")
|
|
#pragma comment(lib, "winmm")
|
|
#pragma comment(lib, "shell32")
|
|
#pragma comment(lib, "advapi32")
|
|
#pragma comment(lib, "rpcrt4")
|
|
#pragma comment(lib, "shlwapi")
|
|
#pragma comment(lib, "comctl32")
|
|
#pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") // this is required for loading correct comctl32 dll file
|
|
#undef NOMINMAX
|
|
#undef WIN32_LEAN_AND_MEAN
|
|
#undef WIN32_MEAN_AND_LEAN
|
|
#undef VC_EXTRALEAN
|