https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: ddd4dd85e56a76bef9eb0342056cad6a64bf0914 authored by a1ex on 19 June 2016, 18:09:28 UTC
Close branch 650D_700D_magic_Zoom_Flicker_Fix.
Tip revision: ddd4dd8
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