pw_init.c

来自「Very very small GUI. Usefull for small s」· C语言 代码 · 共 39 行

C
39
字号
#include <i_pwin.h>#include "guidebug.h"/* -------------------------------------------------------------------------- *//** *  Inits internal structures. *  @internal */ void IPw_InitInternals(void){    IPW_TRACE_ENTER(IN1);    IPw_RegionInit();    IPw_BitmapInit();    IPW_TRACE_EXIT(IN1);}/** *  Calls the pico windows application init function. *  @param dpy display of application *  @return true if the initialization was successfull *  @internal */ Pw_Bool IPw_InitComponents(Pw_Display* dpy){    Pw_Bool ret;//	GUI_DEBUG_LOG("IPw_InitComponents");
//    IPW_TRACE_ENTER(IN1);//    IPW_CHECK_PTR(dpy);        ret = dpy->dd->init_components(dpy);//    IPW_TRACE_EXIT_V(IN1, d, ret);	return(ret);}/*---------------------------------------------------------------------------// end of pw_init.c //--------------------------------------------------------------------------- */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?