ScrUtil (C)
Manejo de consola
 Todo Estructuras de Datos Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones 'defines'
scrutil.h
Ir a la documentaciĆ³n de este archivo.
1 #ifndef SCRUTIL_H_INCLUDED
2 #define SCRUTIL_H_INCLUDED
3 
4 #include <stdbool.h>
5 
7 typedef enum _Color {
11 } Color;
12 
16 typedef struct _scrPosition {
17  unsigned short int row;
18  unsigned short int column;
19 } scrPosition;
20 
21 typedef struct _scrAttributes {
25 
29 void scrClear();
30 
36 void scrSetColors(Color tinta, Color papel);
37 
44 
51 
59 
65 void scrMoveCursorTo(unsigned short int fila, unsigned short int columna);
66 
73 
81 
89 unsigned short int scrGetMaxRows();
90 
96 unsigned short int scrGetMaxColumns();
97 
105 
110 void scrShowCursor(bool see);
111 
112 #endif // SCRUTIL_H_INCLUDED