]> git.sesse.net Git - vlc/blob - include/intf_console.h
Virationnement d'un warning avec l'ancien d�codeur (j'ai vraiment du temps �
[vlc] / include / 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