📄 stdafx.h
字号:
/****************************************************************
* Copyright (C) 2007 Microsoft Corporation
* Author: Andrew Arnott (http://blogs.msdn.com/andrewarnottms)
* This file is released under the MS-PL license.
* The full text of this license can be retrieved from:
* http://www.microsoft.com/resources/sharedsource/licensingbasics/publiclicense.mspx
*****************************************************************/
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <winsock.h>
#include <wincrypt.h>
#include <Schnlsp.h>
#include <tchar.h>
#define SECURITY_WIN32
#include <security.h>
#include <sspi.h>
#define error(...) printf("ERROR: "); printf(__VA_ARGS__);
#define verbose(...) printf("VERBOSE: "); printf(__VA_ARGS__);
#define echo(...) printf(__VA_ARGS__);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -