Data Structures | |
| struct | s_PXENV_UNDI_FORCE_INTERRUPT |
| Parameter block for pxenv_undi_force_interrupt(). More... | |
Defines | |
| #define | PXENV_UNDI_FORCE_INTERRUPT 0x0010 |
| PXE API function code for pxenv_undi_force_interrupt(). | |
Typedefs | |
| typedef struct s_PXENV_UNDI_FORCE_INTERRUPT | PXENV_UNDI_FORCE_INTERRUPT_t |
Functions | |
| PXENV_EXIT_t | pxenv_undi_force_interrupt (struct s_PXENV_UNDI_FORCE_INTERRUPT *undi_force_interrupt) |
| #define PXENV_UNDI_FORCE_INTERRUPT 0x0010 |
PXE API function code for pxenv_undi_force_interrupt().
Definition at line 1334 of file pxe_api.h.
Referenced by pxe_api_call(), and pxeparent_function_name().
| typedef struct s_PXENV_UNDI_FORCE_INTERRUPT PXENV_UNDI_FORCE_INTERRUPT_t |
| PXENV_EXIT_t pxenv_undi_force_interrupt | ( | struct s_PXENV_UNDI_FORCE_INTERRUPT * | undi_force_interrupt | ) |
Definition at line 503 of file pxe_undi.c.
References DBG, PXENV_EXIT_FAILURE, PXENV_STATUS_UNSUPPORTED, and s_PXENV_UNDI_FORCE_INTERRUPT::Status.
Referenced by pxe_api_call().
00504 { 00505 DBG ( "PXENV_UNDI_FORCE_INTERRUPT failed: unsupported\n" ); 00506 00507 undi_force_interrupt->Status = PXENV_STATUS_UNSUPPORTED; 00508 return PXENV_EXIT_FAILURE; 00509 }
1.5.7.1