blob: e2e783740c79be94c57cb4d45a3db92f6b173c5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _IPXE_MESSAGE_H
#define _IPXE_MESSAGE_H
/** @file
*
* Message printing
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
extern void msg ( unsigned int row, const char *fmt, ... );
extern void clearmsg ( unsigned int row );
extern void alert ( unsigned int row, const char *fmt, ... );
#endif /* _IPXE_MESSAGE_H */
|