usruglinit.c
来自「IXP425的BSP代码」· C语言 代码 · 共 56 行
C
56 行
/* usrUglInit.c - Universal Graphic Library initialization *//* Copyright 2000 Wind River Systems, Inc. *//*modification history--------------------01c,05dec00,jlb Removed init for simulators, now built into vxWorks BSP01b,25oct00,rbp Added X11 hook.01a,04may00,jlb written.*//*DESCRIPTIONThis file is used to configure and initialize the VxWorks ugl support.NOMANUAL*//* include *//********************************************************************************* usrUglInit - system-dependent UGL initialization** This routine initializes the UGL stack.** RETURNS: OK, or ERROR if there is a problem in initializing UGL.** NOMANUAL*/STATUS usrUglInit () { return (OK); }/********************************************************************************* usrUglExit - system-dependent UGL deinitialization** This routine deinitializes the UGL stack.** RETURNS: OK, or ERROR if there is a problem in deinitializing UGL.** NOMANUAL*/STATUS usrUglExit () { return (OK); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?