mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
18 lines
394 B
C
18 lines
394 B
C
#include "tkc/rect.h"
|
|
#include "base/bitmap.h"
|
|
#include "base/events.h"
|
|
#include "base/widget.h"
|
|
|
|
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
void bitmap_dump(bitmap_t* b);
|
|
void bitmap_check(bitmap_t* b, rect_t* r, rgba_t e);
|
|
|
|
ret_t widget_log_events(void* ctx, event_t* e);
|
|
void assert_str_eq(const wchar_t* wstr, const char* utf8);
|
|
|
|
ret_t widget_dispatch_click(widget_t* widget);
|
|
|
|
#endif /*COMMON_H*/
|