david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

added doxygen file header

This commit is contained in:
Dan Lynch 2006-06-21 10:26:01 +00:00
parent 1632c25c78
commit 12ca5aa442
3 changed files with 18 additions and 0 deletions

View File

@ -1,6 +1,12 @@
#include <curses.h>
#include <vsprintf.h>
/** @file
*
* MuCurses alert functions
*
*/
/**
* Audible signal
*

View File

@ -1,6 +1,12 @@
#include <curses.h>
#include "cursor.h"
/** @file
*
* MuCurses cursor preserving functions
*
*/
/**
* Restore cursor position from encoded backup variable
*

View File

@ -1,6 +1,12 @@
#ifndef CURSOR_H
#define CURSOR_H
/** @file
*
* MuCurses cursor implementation specific header file
*
*/
struct cursor_pos {
unsigned int y, x;
};