https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: b46486831b8fdbc852fb110ccc16b2673bf8f5dd authored by Giovanni C on 06 June 2013, 20:41:26 UTC
Close branch 700d-support
Tip revision: b464868
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