menu_table.h 870 B

123456789101112131415161718192021222324252627282930
  1. /*************************************************************************
  2. *
  3. * Used with ICCARM and AARM.
  4. *
  5. * (c) Copyright IAR Systems 2003
  6. *
  7. * File name : config.h
  8. * Description : Define common defenition
  9. *
  10. * History :
  11. * 1. Data : Feb 10, 2005
  12. * Author : Stanimir Bonev
  13. * Description : Create
  14. *
  15. * $Revision: 1.1 $
  16. **************************************************************************/
  17. #ifndef __MENU
  18. #define __MENU
  19. #include "menu_table.h"
  20. LPC_BOOL MenuInit (LANG_TYPE_DEF Language, MEMU_IND_DEF MainMenuInd);
  21. LPC_BOOL MenuEvent (MENU_EVENT_TYPE_DEF MenuEvent);
  22. void Menu (void);
  23. MENU_EVENT_TYPE_DEF MenuGetInd(void);
  24. MENU_EVENT_TYPE_DEF MenuGetActionChain(MEMU_IND_DEF MainMenuInd);
  25. MENU_EVENT_TYPE_DEF MenuGetVisualChain(LANG_TYPE_DEF Language,MEMU_IND_DEF MainMenuInd);
  26. #endif /* __MENU */