00001 /***************************************************************************** 00002 * 00003 * $RCSfile: dobitmap_8h-source.html,v $ 00004 * 00005 * Display image stored in memory area pointed to by **lines 00006 * using WinDrawBitmap 00007 * 00008 * created: 2002-12-15 00009 * 00010 * History: 00011 * 2002-12-15: first version, taken from the program PiNGer which is 00012 * part of the ZBoxZ application suite (Rev. 0.30) 00013 * by Tom Zerucha 00014 * 00015 * This program is Copyright (C) 12/2002 Matthias Prinke 00016 * <matthias.prinke@surfeu.de> and covered by GNU's GPL. 00017 * In particular, this program is free software and comes WITHOUT 00018 * ANY WARRANTY. 00019 * 00020 * $Author: mp $ 00021 * 00022 * $Date: 2007-10-08 20:40:32 $ 00023 * 00024 * $Revision: 1.7.2.1 $ 00025 * 00026 * $Log: dobitmap_8h-source.html,v $ 00026 * Revision 1.7.2.1 2007-10-08 20:40:32 mp 00026 * updated for gps4palm V0.9.5 beta 00026 * 00027 * Revision 1.1.1.1 2003-07-14 18:59:29 mp 00028 * Imported GPS4Palm to CVS revision control. 00029 * 00030 * 00031 ****************************************************************************/ 00032 #ifndef DOBITMAP_H 00033 #define DOBITMAP_H 00034 00035 /* 00036 * The map display functions are in their own segment 00037 */ 00038 #define DOBITMAP_SECTION __attribute__ ((section ("maps"))) 00039 00040 extern void dobitmap( 00041 short unsigned int xofs, short unsigned int yofs, 00042 short unsigned int mag, 00043 short unsigned int dx, short unsigned int dy, 00044 short unsigned int dw, short unsigned int dh, 00045 short unsigned int deep) DOBITMAP_SECTION; 00046 00047 #endif