⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bmp.h

📁 空战游戏flacon源码
💻 H
字号:
/***************************************************************************\
    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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -