pgm.h
来自「Screen Chatting source」· C头文件 代码 · 共 30 行
H
30 行
/*
/--------------------------------------------------------------------
|
| Jose Miguel Buenaposada Biencinto. Mar 2000.
|
\--------------------------------------------------------------------
*/
//! Defines structures and constants present in PGM files.
#ifndef INCL_PGM
#define INCL_PGM
typedef struct _PgmHeader
{
int ImageType; // Image Type
int ImageWidth; // Image Width
int ImageHeight; // Image Height
int MaxGrayValue;
} PGMHEADER;
#define PGM_MAXLINESIZE 80 // Maximum number of characters per line
// Definitions for image types.
#define PGM_P2 0
#define PGM_P5 1
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?