mirror of
https://github.com/ipxe/ipxe
synced 2025-12-29 11:03:15 +03:00
16 lines
235 B
C
16 lines
235 B
C
|
|
#ifndef _GPXE_SEGMENT_H
|
||
|
|
#define _GPXE_SEGMENT_H
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
*
|
||
|
|
* Executable image segments
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <gpxe/uaccess.h>
|
||
|
|
|
||
|
|
extern int prep_segment ( userptr_t segment, size_t filesz, size_t memsz );
|
||
|
|
|
||
|
|
#endif /* _GPXE_SEGMENT_H */
|