https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 40d821eae59443ebbb6b104be237efee9fdfd53c authored by Johanan Pandone on 23 August 2015, 02:44:49 UTC
Close branch dpjpandone/shutter-finetuning-does-work-on-eosm-cha-1440297620122
Tip revision: 40d821e
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