]> git.sesse.net Git - vlc/blob - src/interface/intf_console.h
97358cd4a571735813b9214c40d5ad4fd803ccee
[vlc] / src / interface / intf_console.h
1 /*****************************************************************************
2  * intf_console.h: generic console methods for interface
3  * (c)1998 VideoLAN
4  *****************************************************************************/
5
6 /*****************************************************************************
7  * Prototypes
8  *****************************************************************************/
9 p_intf_console_t  intf_ConsoleCreate    ( void );
10 void              intf_ConsoleDestroy   ( p_intf_console_t p_console );
11
12 void              intf_ConsoleClear     ( p_intf_console_t p_console );
13 void              intf_ConsolePrint     ( p_intf_console_t p_console, char *psz_str );
14 void              intf_ConsoleExec      ( p_intf_console_t p_console, char *psz_str );
15
16