912d262318
Signed-off-by: Chloe M. <chloe@yiffware.org>
20 lines
311 B
C
20 lines
311 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Boot video driver
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _BOOTVID_FBIO_H_
|
|
#define _BOOTVID_FBIO_H_ 1
|
|
|
|
#include <ptdef.h>
|
|
|
|
/*
|
|
* Initialize the boot video driver
|
|
*/
|
|
VOID BootVidInit(VOID);
|
|
|
|
#endif /* !_BOOTVID_FBIO_H_ */
|