mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-09 13:27:54 +08:00
20 lines
422 B
C
20 lines
422 B
C
|
#pragma once
|
||
|
|
||
|
#include "targetver.h"
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||
|
// Windows Header Files:
|
||
|
#include <windows.h>
|
||
|
|
||
|
// C RunTime Header Files
|
||
|
#include <stdlib.h>
|
||
|
#include <malloc.h>
|
||
|
#include <memory.h>
|
||
|
#include <wchar.h>
|
||
|
#include <atlbase.h>
|
||
|
#include <strsafe.h>
|
||
|
#include <pathcch.h>
|
||
|
#include <shobjidl.h>
|
||
|
#include <shellapi.h>
|
||
|
|
||
|
#include "PowerRenameInterfaces.h"
|