2019-10-17 20:57:19 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "targetver.h"
|
|
|
|
|
|
2019-12-20 16:59:20 +03:00
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
2023-08-14 21:43:31 +02:00
|
|
|
#define NOMINMAX
|
2019-10-17 20:57:19 -07:00
|
|
|
// Windows Header Files:
|
2020-04-29 13:02:18 -07:00
|
|
|
#include <winrt/Windows.Foundation.h>
|
|
|
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
2019-10-17 20:57:19 -07:00
|
|
|
#include <windows.h>
|
2024-12-06 06:33:08 -10:00
|
|
|
#include <Unknwn.h>
|
2019-10-17 20:57:19 -07:00
|
|
|
#include <shlwapi.h>
|
|
|
|
|
#include <atlbase.h>
|
2021-10-25 15:40:19 +02:00
|
|
|
#include <atlcom.h>
|
|
|
|
|
#include <atlfile.h>
|
|
|
|
|
#include <atlstr.h>
|
2019-10-17 20:57:19 -07:00
|
|
|
#include <Shobjidl.h>
|
|
|
|
|
#include <Shlobj.h>
|
2019-12-19 12:15:54 +03:00
|
|
|
#include "CLSID.h"
|
2019-10-17 20:57:19 -07:00
|
|
|
|
2019-12-19 12:15:54 +03:00
|
|
|
void ModuleAddRef();
|
|
|
|
|
void ModuleRelease();
|