mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08:00
670033c4da
* [Launcher/Settings] Low Level Keyboard Hooks * [Run] LowLevel Keyboard Hook for Hotkeys * Prevent shortcuts from auto repeating when keeping the keys pressed down
15 lines
589 B
C
15 lines
589 B
C
// pch.h: This is a precompiled header file.
|
|
// Files listed below are compiled only once, improving build performance for future builds.
|
|
// This also affects IntelliSense performance, including code completion and many code browsing features.
|
|
// However, files listed here are ALL re-compiled if any one of them is updated between builds.
|
|
// Do not add files here that you will be updating frequently as this negates the performance advantage.
|
|
|
|
#ifndef PCH_H
|
|
#define PCH_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
// add headers that you want to pre-compile here
|
|
#include <Windows.h>
|
|
|
|
#endif //PCH_H
|