https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 07bc22976619fdf27edc6c6e2ebd12d248c9c811 authored by a1ex on 01 June 2014, 11:50:42 UTC
Close branch Pelican/fio_seekskipfile-added-stubss-edited-onl-1401619680648.
Tip revision: 07bc229
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