https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 917ea3f01ec12474a358b55992d8559efde3b57a authored by a1ex on 03 June 2014, 07:23:15 UTC
Close branch edmac_channels_600D
Tip revision: 917ea3f
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