aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/graphics.h
diff options
context:
space:
mode:
authorMarvin Borner2019-10-26 16:37:33 +0200
committerMarvin Borner2019-10-26 16:37:33 +0200
commit5668d7cfc5bb05057c5368eceb2bbb8a6a45a8c3 (patch)
tree44229f0221635a5cee11178a80119572aedf3825 /src/kernel/graphics/graphics.h
parent5a4db78897063e5b09a676b02fec3ba4a2965921 (diff)
Removed VGA driver support
Diffstat (limited to 'src/kernel/graphics/graphics.h')
-rw-r--r--src/kernel/graphics/graphics.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/kernel/graphics/graphics.h b/src/kernel/graphics/graphics.h
deleted file mode 100644
index baa054a..0000000
--- a/src/kernel/graphics/graphics.h
+++ /dev/null
@@ -1,62 +0,0 @@
-#ifndef MELVIX_GRAPHICS_H
-#define MELVIX_GRAPHICS_H
-
-#include <stddef.h>
-#include <stdint.h>
-
-/**
- * Linked table of colors and hardware color codes
- */
-enum vga_color;
-
-/**
- * Initialize the terminal color and cursor position
- */
-void terminal_initialize(void);
-
-/**
- * Set the terminal color to a specified hardware color code
- * @see enum vga_color
- * @param color
- */
-void terminal_set_color(uint8_t color);
-
-/**
- * Clear the entire terminal screen
- */
-void terminal_clear();
-
-/**
- * Write a string to the terminal
- * @param data The string that should be written
- */
-void terminal_write_string(const char *data);
-
-/**
- * Write an integer to the terminal
- * @param data The integer that should be written
- */
-void terminal_write_number(int data);
-
-/**
- * Put a new char at the x+1 cursor position and
- * handle according events (e.g. overflow, linebreak)
- * @param c The character (can also be \n or \r)
- */
-void terminal_put_char(char c);
-
-/**
- * Put a new char at the x+1 cursor position,
- * handle according events (e.g. overflow, linebreak) and
- * execute the current command if c is linebreak (\n)
- * @param c The character (can also be \n or \r)
- */
-void terminal_put_keyboard_char(char c);
-
-/**
- * Write a line to the terminal
- * @param data The line (string) that should be written
- */
-void terminal_write_line(const char *data);
-
-#endif \ No newline at end of file