summaryrefslogtreecommitdiffstats
path: root/src/include/pxe.h
diff options
context:
space:
mode:
authorMichael Brown2007-08-04 02:23:37 +0200
committerMichael Brown2007-08-04 02:23:37 +0200
commit950057eeeddcd6d253fcdeb43adf94f2953c14b9 (patch)
treed4cadd9949f33579f431593e63919d4a47a9dbbc /src/include/pxe.h
parentMake read_user() non-blocking, and add select() call. (diff)
downloadipxe-950057eeeddcd6d253fcdeb43adf94f2953c14b9.tar.gz
ipxe-950057eeeddcd6d253fcdeb43adf94f2953c14b9.tar.xz
ipxe-950057eeeddcd6d253fcdeb43adf94f2953c14b9.zip
Add PXE FILE API.
Diffstat (limited to 'src/include/pxe.h')
-rw-r--r--src/include/pxe.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/pxe.h b/src/include/pxe.h
index 301bb10b..ecb664d5 100644
--- a/src/include/pxe.h
+++ b/src/include/pxe.h
@@ -58,6 +58,11 @@ union u_PXENV_ANY {
struct s_PXENV_UNDI_GET_IFACE_INFO undi_get_iface_info;
struct s_PXENV_UNDI_GET_STATE undi_get_state;
struct s_PXENV_UNDI_ISR undi_isr;
+ struct s_PXENV_FILE_OPEN file_open;
+ struct s_PXENV_FILE_CLOSE file_close;
+ struct s_PXENV_FILE_SELECT file_select;
+ struct s_PXENV_FILE_READ file_read;
+ struct s_PXENV_GET_FILE_SIZE get_file_size;
};
typedef union u_PXENV_ANY PXENV_ANY_t;