Some "cast to pointer from integer of different size" warnings removed.
[AROS-Contrib.git] / MultiMedia / radium / common / gfx_wtext_proc.h
blob528dfecd3cb0d131f68c695ff7353c59d0e01d13
1 /* Copyright 2000 Kjetil S. Matheussen
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public License
5 as published by the Free Software Foundation; either version 2
6 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 #ifndef TRACKER_INCLUDE
19 #include "nsmtracker.h"
21 extern void SetTextNum(
22 struct Tracker_Windows *window,
23 int color,
24 int num,
25 int length,
26 int x,
27 int y,
28 bool t
31 extern int SetTextNumLine(
32 struct Tracker_Windows *window,
33 struct WBlocks *wblocks,
34 int color,
35 int num,
36 int length,
37 int x,
38 int realline,
39 bool t
42 extern int SetTextLine(
43 struct Tracker_Windows *window,
44 struct WBlocks *wblock,
45 int color,
46 char *text,
47 int x,
48 int realline,
49 bool t
52 extern int SetInvertTextLine(
53 struct Tracker_Windows *window,
54 struct WBlocks *wblock,
55 int color,
56 char *text,
57 int x,
58 int realline,
59 bool t
62 int SetInvertTextLineNotext(
63 struct Tracker_Windows *window,
64 struct WBlocks *wblock,
65 int color,
66 int len,
67 int x,
68 int realline,
69 bool t
73 #endif