https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 7e280c83205f602a1711323e343f071b95f51e3f authored by alex@thinkpad on 29 June 2012, 09:00:21 UTC
Fixed black level (was disabled in backend but enabled in menu)
Tip revision: 7e280c8
console.h
#ifndef _CONSOLE_H_
#define _CONSOLE_H_

// console
OS_FUNCTION( 0x0800001,	void,	console_puts, const char* str );
OS_FUNCTION( 0x0800002,	int,	console_vprintf, const char* fmt, va_list ap );
OS_FUNCTION( 0x0800003,	int,	console_printf, const char* fmt, ... );



#endif // _CONSOLE_H_
back to top