📄 pch.h
字号:
/*++
Copyright (c) 1999 - 2002 Microsoft Corporation
Module Name:
pch.h
Abstract:
This module includes all the headers which need to be
precompiled & are included by all the source files in this
project
Environment:
Kernel mode
--*/
#ifndef __CTX_PCH_H__
#define __CTX_PCH_H__
//
// Enabled warnings
//
#pragma warning(error:4100) // Enable-Unreferenced formal parameter
#pragma warning(error:4101) // Enable-Unreferenced local variable
#pragma warning(error:4061) // Eenable-missing enumeration in switch statement
#pragma warning(error:4505) // Enable-identify dead functions
//
// Includes
//
#include <fltKernel.h>
#include <dontuse.h>
#include <suppress.h>
#include "CtxStruc.h"
#include "CtxProc.h"
#endif __CTX_PCH_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -