io.h
来自「dicom file 查看工具 DICOM文件是医疗设备使用的文件格式。」· C头文件 代码 · 共 28 行
H
28 行
/* * io.h -- * *//* * $Id: io.h,v 1.1 2002/10/14 21:56:01 enlf Exp $ */#ifndef _IO#define _IO#include "jpeg.h"/* * Size of the input and output buffer */#define JPEG_BUF_SIZE 4096 /* * The following variables keep track of the input and output * buffer for the JPEG data. */extern char outputBuffer[JPEG_BUF_SIZE]; /* output buffer */extern int numOutputBytes; /* bytes in the output buffer */extern Uchar *inputBuffer; /* Input buffer for JPEG data */extern int inputBufferOffset; /* Offset of current byte */#endif /* _IO */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?