mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Irssi::printformat() called printformat_window() to print the text which
lost server/target information. Added printtext_dest() function which it uses now. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1642 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
088358ca61
commit
40ffd87ded
3 changed files with 15 additions and 4 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#define __PRINTTEXT_H
|
||||
|
||||
#include "fe-windows.h"
|
||||
#include "formats.h"
|
||||
|
||||
void printformat_module(const char *module, void *server, const char *target, int level, int formatnum, ...);
|
||||
void printformat_module_window(const char *module, WINDOW_REC *window, int level, int formatnum, ...);
|
||||
|
|
@ -13,6 +14,7 @@ void printtext(void *server, const char *target, int level, const char *text, ..
|
|||
void printtext_string(void *server, const char *target, int level, const char *text);
|
||||
void printtext_window(WINDOW_REC *window, int level, const char *text, ...);
|
||||
void printtext_multiline(void *server, const char *target, int level, const char *format, const char *text);
|
||||
void printtext_dest(TEXT_DEST_REC *dest, const char *text, ...);
|
||||
|
||||
/* only GUI should call these - used for printing text to somewhere else
|
||||
than windows */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue