⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pw_init.c

📁 Very very small GUI. Usefull for small system, without OS or small OS. Event driven, support user m
💻 C
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -