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
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13extern void msg ( unsigned int row, const char *fmt, ... );
14extern void clearmsg ( unsigned int row );
15extern void alert ( unsigned int row, const char *fmt, ... );
16
17#endif /* _IPXE_MESSAGE_H */
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
void alert(unsigned int row, const char *fmt,...)
Show alert message.
Definition message.c:104
void clearmsg(unsigned int row)
Clear message on specified row.
Definition message.c:75
void msg(unsigned int row, const char *fmt,...)
Print message centred on specified row.
Definition message.c:62
int ssize_t const char * fmt
Definition vsprintf.h:73