mirror of
https://github.com/jmarshall23/Hellfire.git
synced 2026-08-11 23:40:51 +02:00
36 lines
760 B
C++
36 lines
760 B
C++
#ifdef _DEBUG
|
|
#ifndef _MONO_C_H_
|
|
#define _MONO_C_H_
|
|
|
|
#include "mono.h"
|
|
|
|
//°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
|
|
//
|
|
// Global Function Declarations
|
|
//
|
|
//°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
|
|
|
|
void mono_setAttrib( MonoAttrib aVal );
|
|
MonoAttrib mono_getAttrib( void );
|
|
|
|
|
|
|
|
int mono_getExist ( void );
|
|
int mono_getEnable( void );
|
|
void mono_setEnable( int flag );
|
|
|
|
void mono_cls ( void );
|
|
|
|
void mono_putc ( short x, short y, char c );
|
|
void mono_puts ( short x, short y, char const * const str );
|
|
void __cdecl mono_printf( short x, short y, char const * const format, ... );
|
|
|
|
void mono_dump ( short port = 1);
|
|
|
|
void mono_setHardwareCursor( int flag );
|
|
|
|
|
|
|
|
#endif
|
|
#endif
|
|
|