forked from notepad-plus-plus/nppShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframework.h
More file actions
25 lines (21 loc) · 665 Bytes
/
Copy pathframework.h
File metadata and controls
25 lines (21 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once
#pragma warning(disable:4324)
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files
#include <windows.h>
#include <aclapi.h>
#include <shlwapi.h>
#include <shlobj.h>
#include <shobjidl_core.h>
#include <strsafe.h>
#include <Unknwn.h>
// WinRT Header Files
#include "winrt/base.h"
#include "winrt/Windows.ApplicationModel.h"
#include "winrt/Windows.Foundation.Collections.h"
#include "winrt/Windows.Management.Deployment.h"
// Windows Implementation Library Header Files
#include "wil\winrt.h"
// Link libraries
#pragma comment(lib, "shlwapi.lib")
#pragma comment(lib, "runtimeobject.lib")