You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dhcp_basemem.h 314B

12345678910111213
  1. #ifndef DHCP_BASEMEM_H
  2. #define DHCP_BASEMEM_H
  3. #include <realmode.h>
  4. /** Maximum length of a DHCP data buffer */
  5. #define DHCP_BASEMEM_LEN 1514
  6. /** DHCP data buffer */
  7. extern char __data16_array ( dhcp_basemem, [DHCP_BASEMEM_LEN] );
  8. #define dhcp_basemem __use_data16 ( dhcp_basemem )
  9. #endif /* DHCP_BASEMEM_H */