📄 stdafx.h
字号:
/* Copyright 2000, ESS Technology, Inc. *//* SCCSID @(#)stdafx.h 1.1 10/16/01 *//* Based on DVD/SVCD version 1.1 12/01/00 *//* $Id$ *//* * $Log$ *//* //////////////////////////////////////////////////////////////////////////// stdafx.h : include file for standard system include files,// or project specific include files that are used frequently, but// are changed infrequently//// 05/11/96 -- Creation (LING)// Copyright by Talent Communications, Inc.////////////////////////////////////////////////////////////////////////// */#ifndef DWORD#define DWORD int#endif#ifndef WORD#define WORD short#endif#ifndef byte#define byte unsigned char#endif#ifndef NULL#define NULL 0#endif#ifndef BOOL#define BOOL int#endif#ifndef TRUE#define TRUE 1#endif#ifndef FALSE#define FALSE 0#endif#ifndef max#define max(a, b) ((a > b) ? (a) : (b))#endif#ifndef min#define min(a, b) ((a < b) ? (a) : (b))#endif#ifndef ASSERT#define ASSERT(a)#endif#ifndef ASSERT_VALID#define ASSERT_VALID(a)#endif#ifndef ERR#define ERR(a)#endif#ifndef WIN31#define huge#endif#ifndef _WINDOWS#define DOUBLE_INT int#else#define DOUBLE_INT double#endif#ifndef _WINDOWS#define FLOAT_INT int#else#define FLOAT_INT float#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -