mirror of
https://github.com/PrimeDecomp/prime.git
synced 2024-11-23 13:19:53 +00:00
7fbf44a471
Former-commit-id: 0e8b7c5637
18 lines
284 B
C
18 lines
284 B
C
#ifndef _CONSOLE_IO
|
|
#define _CONSOLE_IO
|
|
|
|
#include "stddef.h"
|
|
#include "file_struc.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int __write_console(__file_handle handle, unsigned char * buffer, size_t * count, __idle_proc idle_proc);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _CONSOLE_IO
|