mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
37 lines
816 B
C
37 lines
816 B
C
/*
|
|
* COPYRIGHT: See COPYING.ARM in the top level directory
|
|
* PROJECT: ReactOS UEFI OS Loader
|
|
* FILE: boot/environ/app/rosload/rosload.h
|
|
* PURPOSE: Main OS Loader Header
|
|
* PROGRAMMER: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
#ifndef _ROSLOAD_H
|
|
#define _ROSLOAD_H
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
/* C Headers */
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <wchar.h>
|
|
|
|
/* NT Base Headers */
|
|
#include <initguid.h>
|
|
#include <ntifs.h>
|
|
|
|
/* UEFI Headers */
|
|
#include <Uefi.h>
|
|
|
|
/* Boot Library Headers */
|
|
#include <bl.h>
|
|
|
|
/* BCD Headers */
|
|
#include <bcd.h>
|
|
|
|
/* STRUCTURES ****************************************************************/
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
#endif
|