Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / bmp.h
1 /* atlc - arbitrary transmission line calculator, for the analysis of
2 transmission lines are directional couplers. 
3
4 Copyright (C) 2002. Dr. David Kirkby, PhD (G8WRB).
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either package_version 2
9 of the License, or (at your option) any later package_version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
19 USA.
20
21 Dr. David Kirkby, e-mail drkirkby at ntlworld.com 
22
23 */
24
25 struct Bitmap_File_Head_Struct
26 {
27   char   zzMagic[2];    /* 00 "BM" */
28   long   bfSize;      /* 02 */
29   short  zzHotX;        /* 06 */
30   short  zzHotY;        /* 08 */
31   long   bfOffs;      /* 0A */
32   long   biSize;      /* 0E */
33 } Bitmap_File_Head;
34
35 struct Bitmap_Head_Struct
36 {
37   long   biWidth;     /* 12 */
38   long   biHeight;    /* 16 */
39   short  biPlanes;    /* 1A */
40   short  biBitCnt;    /* 1C */
41   long   biCompr;     /* 1E */
42   long   biSizeIm;    /* 22 */
43   long   biXPels;     /* 26 */
44   long   biYPels;     /* 2A */
45   long   biClrUsed;   /* 2E */
46   long   biClrImp;    /* 32 */
47                         /* 36 */
48 } Bitmap_Head;