GUI_Exec.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
  8. *
  9. *              礐/GUI is protected by international copyright laws. Knowledge of the
  10. *              source code may not be used to write a similar product. This file may
  11. *              only be used in accordance with a license and should not be redistributed
  12. *              in any way. We appreciate your understanding and fairness.
  13. *
  14. ----------------------------------------------------------------------
  15. File        : GUI_Exec.c
  16. Purpose     : Implementation of GUI_Exec
  17. ---------------------------END-OF-HEADER------------------------------
  18. */
  19. #include "GUI_Protected.H"
  20. /*********************************************************************
  21. *
  22. *       Public code
  23. *
  24. **********************************************************************
  25. */
  26. /*********************************************************************
  27. *
  28. *     GUI_Exec1
  29. */
  30. int GUI_Exec1(void) 
  31. {
  32.   int r = 0;
  33.   /* Execute background jobs */
  34.   if (GUI_pfTimerExec) 
  35.   {
  36.     if ((*GUI_pfTimerExec)()) 
  37.     {
  38.       r = 1;                  /* We have done something */
  39.     }
  40.   }
  41.   #if GUI_WINSUPPORT    /* If 0, WM will not generate any code */
  42.   if (WM_Exec())
  43.     r = 1;
  44.   #endif
  45.   return r;
  46. }
  47. /*********************************************************************
  48. *
  49. *     GUI_Exec
  50. */
  51. int GUI_Exec(void) {
  52.   int r = 0;
  53.   while (GUI_Exec1()) 
  54.   {
  55.     r = 1;                  /* We have done something */
  56.   }
  57.   return r;
  58. }