stdafx.h

来自「ESS3890+SL原代码(1*16内存)」· C头文件 代码 · 共 89 行

H
89
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?