usrUglInit.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* usrUglInit.c - Universal Graphic Library initialization */
  2. /* Copyright 2000 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,05dec00,jlb  Removed init for simulators, now built into vxWorks BSP
  7. 01b,25oct00,rbp  Added X11 hook.
  8. 01a,04may00,jlb  written.
  9. */
  10. /*
  11. DESCRIPTION
  12. This file is used to configure and initialize the VxWorks ugl support.
  13. NOMANUAL
  14. */
  15. /* include */
  16. /*******************************************************************************
  17. *
  18. * usrUglInit - system-dependent UGL initialization
  19. *
  20. * This routine initializes the UGL stack.
  21. *
  22. * RETURNS: OK, or ERROR if there is a problem in initializing UGL.
  23. *
  24. * NOMANUAL
  25. */
  26. STATUS usrUglInit ()
  27.     {
  28.     return (OK);
  29.     }
  30. /*******************************************************************************
  31. *
  32. * usrUglExit - system-dependent UGL deinitialization
  33. *
  34. * This routine deinitializes the UGL stack.
  35. *
  36. * RETURNS: OK, or ERROR if there is a problem in deinitializing UGL.
  37. *
  38. * NOMANUAL
  39. */
  40. STATUS usrUglExit ()
  41.     {
  42.     return (OK);
  43.     }