Data Structures | |
| struct | s_PXENV_UNDI_CLOSE |
| Parameter block for pxenv_undi_close(). More... | |
Defines | |
| #define | PXENV_UNDI_CLOSE 0x0007 |
| PXE API function code for pxenv_undi_close(). | |
Typedefs | |
| typedef struct s_PXENV_UNDI_CLOSE | PXENV_UNDI_CLOSE_t |
Functions | |
| PXENV_EXIT_t | pxenv_undi_close (struct s_PXENV_UNDI_CLOSE *undi_close) |
| #define PXENV_UNDI_CLOSE 0x0007 |
PXE API function code for pxenv_undi_close().
Definition at line 1039 of file pxe_api.h.
Referenced by pxe_api_call(), pxeparent_function_name(), and undinet_close().
| typedef struct s_PXENV_UNDI_CLOSE PXENV_UNDI_CLOSE_t |
| PXENV_EXIT_t pxenv_undi_close | ( | struct s_PXENV_UNDI_CLOSE * | undi_close | ) |
Definition at line 209 of file pxe_undi.c.
References DBG, pxe_netdev_close(), PXENV_EXIT_SUCCESS, PXENV_STATUS_SUCCESS, and s_PXENV_UNDI_CLOSE::Status.
Referenced by pxe_api_call().
00209 { 00210 DBG ( "PXENV_UNDI_CLOSE\n" ); 00211 00212 pxe_netdev_close(); 00213 00214 undi_close->Status = PXENV_STATUS_SUCCESS; 00215 return PXENV_EXIT_SUCCESS; 00216 }
1.5.7.1