Found in "gnokii-working" directory, some November-patches version
[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.4  2002/04/03 00:08:17  short
17   Found in "gnokii-working" directory, some November-patches version
18
19   Revision 1.3  2001/06/28 00:28:45  pkot
20   Small docs updates (Pawel Kot)
21
22
23 */
24
25 void GSM_SetPointBitmap(GSM_Bitmap *bmp, int x, int y);
26 void GSM_ClearPointBitmap(GSM_Bitmap *bmp, int x, int y);
27 bool GSM_IsPointBitmap(GSM_Bitmap *bmp, int x, int y);
28 void GSM_ClearBitmap(GSM_Bitmap *bmp);
29 void GSM_ResizeBitmap(GSM_Bitmap *bitmap, GSM_Bitmap_Types target, GSM_Information *info);
30 void GSM_PrintBitmap(GSM_Bitmap *bitmap);
31
32 /* SMS bitmap functions */
33
34 GSM_Error GSM_ReadSMSBitmap(GSM_SMSMessage *message, GSM_Bitmap *bitmap);
35 int  GSM_SaveSMSBitmap(GSM_SMSMessage *message, GSM_Bitmap *bitmap);
36
37
38
39
40
41
42