blob: 44f2b44e64117f0ca4ddee80cf7c60fb801e0b4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __GUI_PRINTTEXT_H
#define __GUI_PRINTTEXT_H
#include "gui-windows.h"
#include "formats.h"
extern int mirc_colors[];
void gui_printtext_init(void);
void gui_printtext_deinit(void);
void gui_printtext(int xpos, int ypos, const char *str);
void gui_printtext_after(TEXT_DEST_REC *dest, LINE_REC *prev, const char *str);
#endif
|