:pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Tue Dec 4 22:45 CET 2001
[gnokii.git] / include / gsm-bitmaps.h
1 /*
2
3   $Id$
4
5   G N O K I I
6
7   A Linux/Unix toolset and driver for Nokia mobile phones.
8
9   Copyright (C) 1999, 2000 Hugh Blemings & Pavel Janík ml. 
10
11   Released under the terms of the GNU GPL, see file COPYING for more details.
12   
13   Functions for common bitmap operations.
14
15   $Log$
16   Revision 1.1.1.1  2001/11/25 21:59:19  short
17   :pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Sun Nov 25 22:56 CET 2001
18
19   Revision 1.4  2001/11/20 16:22:22  pkot
20   First attempt to read Picture Messages. They should appear when you enable DEBUG. Nokia seems to break own standards. :/ (Markus Plail)
21
22   Revision 1.3  2001/06/28 00:28:45  pkot
23   Small docs updates (Pawel Kot)
24
25
26 */
27
28 #ifndef __gsm_bitmaps_h__
29 #define __gsm_bitmaps_h__
30
31 void GSM_SetPointBitmap(GSM_Bitmap *bmp, int x, int y);
32 void GSM_ClearPointBitmap(GSM_Bitmap *bmp, int x, int y);
33 bool GSM_IsPointBitmap(GSM_Bitmap *bmp, int x, int y);
34 void GSM_ClearBitmap(GSM_Bitmap *bmp);
35 void GSM_ResizeBitmap(GSM_Bitmap *bitmap, GSM_Bitmap_Types target, GSM_Information *info);
36 void GSM_PrintBitmap(GSM_Bitmap *bitmap);
37
38 /* SMS bitmap functions */
39
40 GSM_Error GSM_ReadSMSBitmap(int type, char *message, char *code, GSM_Bitmap *bitmap);
41 int  GSM_SaveSMSBitmap(GSM_SMSMessage *message, GSM_Bitmap *bitmap);
42
43 #endif
44
45
46
47
48