systemspecific.h
来自「Jpeg编解码器的源代码」· C头文件 代码 · 共 44 行
H
44 行
#ifndef CB__SYSTEMSPECIFIC_H
#define CB__SYSTEMSPECIFIC_H
//
// Copyright (c) 1997,1998 Colosseum Builders, Inc.
// All rights reserved.
//
// Colosseum Builders, Inc. makes no warranty, expressed or implied
// with regards to this software. It is provided as is.
//
// See the README.TXT file that came with this software for restrictions
// on the use and redistribution of this file or send E-mail to
// info@colosseumbuilders.com
//
//
// For some reason MSVC++ gives errors about missing return statements
// in non-void functions for execution paths that can never be reached
// due to throw statements.
//
#define DUMMY_RETURN
#pragma warn -csu
#pragma warn -sig
#pragma warn -pch
#pragma warn -inl
#pragma warn -pck
// One of these pairs should use int
typedef char BYTE1 ;
typedef unsigned char UBYTE1 ;
typedef short BYTE2 ;
typedef unsigned short UBYTE2 ;
typedef int BYTE4 ;
typedef unsigned int UBYTE4 ;
#include "littleendian.h"
#define BILLSELLSPOOP
#define ENDBILLSELLSPOOP
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?