mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
39630c3d58
fe-windows.[ch] git-svn-id: http://svn.irssi.org/repos/irssi/trunk@846 dbcabf3a-b0e7-0310-adc4-f8d773084564
17 lines
434 B
C
17 lines
434 B
C
#ifndef __COMMAND_HISTORY_H
|
|
#define __COMMAND_HISTORY_H
|
|
|
|
#include "fe-windows.h"
|
|
|
|
void command_history_init(void);
|
|
void command_history_deinit(void);
|
|
|
|
void command_history_add(WINDOW_REC *window, const char *text, int prepend);
|
|
|
|
const char *command_history_prev(WINDOW_REC *window, const char *text);
|
|
const char *command_history_next(WINDOW_REC *window, const char *text);
|
|
|
|
void command_history_clear_pos(WINDOW_REC *window);
|
|
|
|
#endif
|