mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-05-08 02:19:11 -05:00
26 lines
465 B
C++
26 lines
465 B
C++
#ifndef PCH_H
|
|
#define PCH_H
|
|
|
|
#include "framework.h"
|
|
#include "kernelx.h"
|
|
|
|
#include "CoreWindowWrapperX.h"
|
|
#include "ICoreWindowX.h"
|
|
|
|
#include "../src/detours.h"
|
|
|
|
#include <intrin.h>
|
|
#include <winternl.h>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <roapi.h>
|
|
#include <wrl.h>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <__msvc_string_view.hpp>
|
|
#include <ntstatus.h>
|
|
|
|
using namespace Microsoft::WRL;
|
|
using namespace Microsoft::WRL::Wrappers;
|
|
|
|
#endif //PCH_H
|