https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 48888e5e76ed3386709c87b387cb13cb996eac12 authored by a1ex on 28 January 2015, 17:26:06 UTC
Close branch raw-disable-powersave
Tip revision: 48888e5
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