app_guiobj_ethernetconf.h 783 B

12345678910111213141516171819202122232425262728293031323334
  1. /*****************************************************************************
  2. ** File: app_guiobj_language.h:
  3. **
  4. ** Description:
  5. **
  6. ** Copyright(c) 2008 Sunmedia Technologies - All Rights Reserved
  7. **
  8. ** Author : wuliang
  9. **
  10. ** $Id: app_guiobj_setup.c 1069 2010-11-16 10:32:32Z b.yang_c1 $
  11. *****************************************************************************/
  12. #ifndef _APP_GUIOBJ_ETHERNETCONF_H_
  13. #define _APP_GUIOBJ_ETHERNETCONF_H_
  14. typedef enum
  15. {
  16. LINKTYPE_ITEM,
  17. CONFIG_ITEM,
  18. #ifdef SUPPORT_PING_TEST
  19. PING_TEST_ITEM,
  20. #endif
  21. ETHERNETCONFIG_MAX_ITEM
  22. }EthernetConfigItem_t;
  23. typedef enum {
  24. EthernetConfig_FROM_MAINMENU = 0,
  25. EthernetConfig_FROM_CONFIG = CONFIG_ITEM,
  26. #ifdef SUPPORT_PING_TEST
  27. PingTestConf_FROM_EhternetConfig,
  28. #endif
  29. } EthernetConfig_Param_t;
  30. #endif