https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: ce8529fc269558f7490c9a955f9292ad13389033 authored by a1ex on 16 July 2014, 20:01:53 UTC
Close branch mlv_play
Tip revision: ce8529f
console.h
#ifndef _CONSOLE_H_
#define _CONSOLE_H_

// console
void console_puts( const char* str );
int console_vprintf( const char* fmt, va_list ap );
int console_printf( const char* fmt, ... );

void console_show();
void console_hide();

void console_draw_from_menu();

#endif // _CONSOLE_H_
back to top