iPXE
message.h
Go to the documentation of this file.
1 #ifndef _IPXE_MESSAGE_H
2 #define _IPXE_MESSAGE_H
3 
4 /** @file
5  *
6  * Message printing
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 
12 extern void msg ( unsigned int row, const char *fmt, ... );
13 extern void clearmsg ( unsigned int row );
14 extern void alert ( unsigned int row, const char *fmt, ... );
15 
16 #endif /* _IPXE_MESSAGE_H */
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
void clearmsg(unsigned int row)
Clear message on specified row.
Definition: message.c:74
void msg(unsigned int row, const char *fmt,...)
Print message centred on specified row.
Definition: message.c:61
void alert(unsigned int row, const char *fmt,...)
Show alert message.
Definition: message.c:103
int ssize_t const char * fmt
Definition: vsprintf.h:72