Source:NetHack 3.6.0/include/bitmfile.h

From NetHackWiki
Revision as of 16:05, 10 December 2015 by Nooodl (talk | contribs) (Created page with "__MIXEDSYNTAXHIGHLIGHT__ Below is the full text to '''bitmfile.h''' from the source code of NetHack 3.6.0. To link to a particular line, writ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Below is the full text to bitmfile.h from the source code of NetHack 3.6.0. To link to a particular line, write [[Source:NetHack 3.6.0/include/bitmfile.h#line123]], for example.

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

/****************************\
* Bitmap mit Farbtabelle als *
* Graphik-Datei speichern		 *
* Autor: Gabriel Schmidt		 *
* (c} 1992 by MAXON-Computer *
* -> Header-Datei						 *
\****************************/

#ifndef H_TO_FILE
#define H_TO_FILE

/*	#include <portab.h>	*/
#define UWORD unsigned short
#define ULONG unsigned long
#define UBYTE unsigned char

#define XIMG_MAGIC 0x58494D47

typedef enum { IMG, XIMG } FILE_TYP;

const char *get_file_ext(FILE_TYP typ);

struct RGB {
UWORD r, g, b;
};

int bitmap_to_file(FILE_TYP typ, int ww, int wh, unsigned int pwx,
unsigned int pwy, unsigned int planes, unsigned int colors,
const char *filename,
void (*get_color)(unsigned int colind, struct RGB *rgb),
void (*get_pixel)(int x, int y, unsigned int *colind));

#endif