OSDN Git Service

a2605a3d7412cec49d11a2bed9b6691a0abd4730
[eos/optional.git] / doc / Objects / mapFile.html
1 <H4> Update Time 02/03/13---05:38:56 </H4>
2 <HR>
3 <A NAME="Information">
4 <H2>Information from source codes</H2>
5 </A>
6 <PRE>
7 ../src/mapFileRead.c:
8 </PRE>
9 <HR>
10 <A NAME="include">
11 <H2>mapFile.h</H2>
12 </A>
13 <PRE>
14 /*
15 # %M% %Y% %I%
16 # The latest update : %G% at %U%
17 #
18 #%Z% mapFile.h ver %I%
19 #%Z% Created by 
20 #%Z%
21 #%Z% Usage : mapFile.h 
22 #%Z% Attention
23 #%Z%
24 */
25
26 /* struct begin */
27
28 typedef struct mapFileShortCoord {
29         short x;
30         short y;
31         short z;
32 } mapShortCoord;
33
34 typedef struct mapFileHeader {
35         mapShortCoord Start;
36         mapShortCoord N;
37         mapShortCoord M;
38         mapShortCoord Length;
39         mapShortCoord Angle;
40         short prod;
41         short plus;
42         short i1;
43         short i2;
44         short dummy[256-19];
45 } mapFileHeader;
46
47 typedef struct mapFile {
48         mapFileHeader Header;
49         unsigned char* Image;
50 } mapFile;
51
52 /* struct end */
53 </PRE>