if.h 846 B

12345678910111213141516171819202122232425262728293031
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * if.h - substitute net/if.h for systems without one;
  11. *
  12. *--------------------------------------------------------------------*/
  13. #ifndef IF_HEADER
  14. #define IF_HEADER
  15. /*====================================================================*
  16. * constants;
  17. *--------------------------------------------------------------------*/
  18. #if defined (WIN32)
  19. #define IF_NAMESIZE 128
  20. #endif
  21. /*====================================================================*
  22. * end;
  23. *--------------------------------------------------------------------*/
  24. #endif