blob: de9b8fb5296eb5ab56639a66baae7767034ee71c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _UNDIPRELOAD_H
#define _UNDIPRELOAD_H
/** @file
*
* Preloaded UNDI stack
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
#include <realmode.h>
#include <undi.h>
extern struct undi_device __data16 ( preloaded_undi );
#define preloaded_undi __use_data16 ( preloaded_undi )
#endif /* _UNDIPRELOAD_H */
|