Difference between revisions of "mapFile(API)"

From EosPedia
Jump to: navigation, search
(Created page with "DataManip/'''mapFile''' is API for map file. == constant == == struct == typedef struct mapFileShortCoord { short x; short y; short z; } mapShortCoord; typedef...")
 
(No difference)

Latest revision as of 06:31, 30 July 2014

DataManip/mapFile is API for map file.

constant

struct

typedef struct mapFileShortCoord {
	short x;
	short y;
	short z;
} mapShortCoord;
typedef struct mapFileHeader {
	mapShortCoord Start;
	mapShortCoord N;
	mapShortCoord M;
	mapShortCoord Length;
	mapShortCoord Angle;
	short prod;
	short plus;
	short i1;
	short i2;
	short dummy[256-19];
} mapFileHeader;
typedef struct mapFile {
	mapFileHeader Header;
	unsigned char* Image;
} mapFile;

API