mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
.. lots of changes ..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@197 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
bacfcb060c
commit
d3dc9a1307
106 changed files with 4864 additions and 1597 deletions
29
src/fe-text/mainwindows.h
Normal file
29
src/fe-text/mainwindows.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef __MAINWINDOWS_H
|
||||
#define __MAINWINDOWS_H
|
||||
|
||||
#include "windows.h"
|
||||
|
||||
typedef struct {
|
||||
WINDOW_REC *active;
|
||||
|
||||
int first_line, last_line;
|
||||
int statusbar_lines;
|
||||
void *statusbar;
|
||||
void *statusbar_channel_item;
|
||||
} MAIN_WINDOW_REC;
|
||||
|
||||
extern GSList *mainwindows;
|
||||
extern MAIN_WINDOW_REC *active_mainwin;
|
||||
|
||||
void mainwindows_init(void);
|
||||
void mainwindows_deinit(void);
|
||||
|
||||
MAIN_WINDOW_REC *mainwindow_create(void);
|
||||
void mainwindow_destroy(MAIN_WINDOW_REC *window);
|
||||
|
||||
void mainwindows_redraw(void);
|
||||
void mainwindows_resize(int ychange, int xchange);
|
||||
|
||||
int mainwindows_reserve_lines(int count, int up);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue