diff options
| author | Dan Lynch | 2006-06-21 12:26:01 +0200 |
|---|---|---|
| committer | Dan Lynch | 2006-06-21 12:26:01 +0200 |
| commit | 12ca5aa442ff0f47eb31ab438e0705eaf1abb6a1 (patch) | |
| tree | d6f4987b6e10c3f95186310046c0395ec17b6310 /src | |
| parent | - major implementation work completed (testing in progress) (diff) | |
| download | ipxe-12ca5aa442ff0f47eb31ab438e0705eaf1abb6a1.tar.gz ipxe-12ca5aa442ff0f47eb31ab438e0705eaf1abb6a1.tar.xz ipxe-12ca5aa442ff0f47eb31ab438e0705eaf1abb6a1.zip | |
added doxygen file header
Diffstat (limited to 'src')
| -rw-r--r-- | src/hci/mucurses/alert.c | 6 | ||||
| -rw-r--r-- | src/hci/mucurses/cursor.c | 6 | ||||
| -rw-r--r-- | src/hci/mucurses/cursor.h | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/src/hci/mucurses/alert.c b/src/hci/mucurses/alert.c index dedc3ba5e..4e88b82a7 100644 --- a/src/hci/mucurses/alert.c +++ b/src/hci/mucurses/alert.c @@ -1,6 +1,12 @@ #include <curses.h> #include <vsprintf.h> +/** @file + * + * MuCurses alert functions + * + */ + /** * Audible signal * diff --git a/src/hci/mucurses/cursor.c b/src/hci/mucurses/cursor.c index 0d1a175ab..956056942 100644 --- a/src/hci/mucurses/cursor.c +++ b/src/hci/mucurses/cursor.c @@ -1,6 +1,12 @@ #include <curses.h> #include "cursor.h" +/** @file + * + * MuCurses cursor preserving functions + * + */ + /** * Restore cursor position from encoded backup variable * diff --git a/src/hci/mucurses/cursor.h b/src/hci/mucurses/cursor.h index acc68ec56..72c6d0382 100644 --- a/src/hci/mucurses/cursor.h +++ b/src/hci/mucurses/cursor.h @@ -1,6 +1,12 @@ #ifndef CURSOR_H #define CURSOR_H +/** @file + * + * MuCurses cursor implementation specific header file + * + */ + struct cursor_pos { unsigned int y, x; }; |
