29 lines
684 B
C
29 lines
684 B
C
#ifndef INCLUDED_C_WINUI_CONSOLE_H
|
|||
|
|
#define INCLUDED_C_WINUI_CONSOLE_H
|
||
|
|
|
||
|
|
#ifndef INCLUDED_WINDOWS_H
|
||
|
|
#define INCLUDED_WINDOWS_H
|
||
|
|
#include <windows.h>
|
||
|
|
#endif /*INCLUDED_WINDOWS_H*/
|
||
|
|
|
||
|
|
#ifndef INCLUDED_STDIO_H
|
||
|
|
#define INCLUDED_STDIO_H
|
||
|
|
#include <stdio.h>
|
||
|
|
#endif /*INCLUDED_STDIO_H*/
|
||
|
|
|
||
|
|
|
||
|
|
/* ------------------------------------------------------------------------------------------------------------------ */
|
||
|
|
/* */
|
||
|
|
|
||
|
|
void c_WinUI_Console_ClearScreen();
|
||
|
|
|
||
|
|
void c_WinUI_Console_WriteXY(int x, int y, const char* s, WORD attr);
|
||
|
|
|
||
|
|
void c_WinUI_Console_GotoXY(int x, int y);
|
||
|
|
|
||
|
|
void c_WinUI_Console_BlankLine(int y);
|
||
|
|
|
||
|
|
void c_WinUI_Console_WriteStr(const char* str);
|
||
|
|
|
||
|
|
#endif /*INCLUDED_C_WINUI_CONSOLE_H*/
|