mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-28 10:40:26 +08:00
c1f7aa1ca7
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2442 bbd45198-f89e-11dd-88c7-29a3b14d5316
12 lines
315 B
C
12 lines
315 B
C
#ifndef __APPS_LIST_H__
|
|
#define __APPS_LIST_H__
|
|
|
|
#include <rtgui/event.h>
|
|
#include <rtgui/rtgui_object.h>
|
|
#include <rtgui/widgets/panel.h>
|
|
|
|
rt_bool_t apps_list_event_handler(struct rtgui_object* object, struct rtgui_event* event);
|
|
struct rtgui_panel* apps_list_create(struct rtgui_panel* panel);
|
|
|
|
#endif
|