stdafx.h
来自「一个内核开发的usb加密解密驱动」· C头文件 代码 · 共 24 行
H
24 行
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
#endif
#include <stdio.h>
#include <tchar.h>
#include <windows.h>
#include <process.h>
//For list and string functions
#include "xstring"
#include <list>
#define USB_CNTL_STOP_EVNT_NAME _T("Usb_Cntl_Stop_Event")
// TODO: reference additional headers your program requires here
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?