bmp.h
来自「空战游戏flacon源码」· C头文件 代码 · 共 19 行
H
19 行
/***************************************************************************\
BMP
Scott Randolph
October 27, 1995
Opens and reads a 24 bit Windows BMP file and provides a pointer to the
RGB data. The memory allocated by the BMPread() call must be freed by a
call to BMPfree().
\***************************************************************************/
#ifndef _BMP_H_
#define _BMP_H_
#include <windows.h>
void *BMPread( const char *filename, BITMAPINFO *info, BOOL packLines );
void BMPfree( void *buffer );
#endif // _BMP_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?