mirror of
https://github.com/HEYAHONG/HCppBox.git
synced 2025-05-09 00:21:37 +08:00
26 lines
587 B
C
26 lines
587 B
C
/***************************************************************
|
|
* Name: hgui.c
|
|
* Purpose: 实现hgui接口
|
|
* Author: HYH (hyhsystem.cn)
|
|
* Created: 2025-03-15
|
|
* Copyright: HYH (hyhsystem.cn)
|
|
* License: MIT
|
|
**************************************************************/
|
|
#include "hgui.h"
|
|
|
|
/*
|
|
* 基础组件
|
|
*/
|
|
#include "hgui/hgui_gui_common.c"
|
|
#include "hgui/hgui_gui_dotfont.c"
|
|
#include "hgui/hgui_gui_driver.c"
|
|
#include "hgui/hgui_gui_event.c"
|
|
#include "hgui/hgui_gui_pixel.c"
|
|
#include "hgui/hgui_gui_xpm.c"
|
|
|
|
/*
|
|
* 场景1
|
|
*/
|
|
#include "hgui/hgui_gui_scene1.c"
|
|
|