https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 01eefb15ef6e18b691af6b3c9ab65e80011f25c1 authored by a1ex on 22 October 2013, 21:26:01 UTC
Close branch ppluciennik/new_makefile_system.
Tip revision: 01eefb1
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