awtk/demos/demo_main.c

48 lines
1.0 KiB
C
Raw Normal View History

2018-02-21 19:36:38 +08:00
/**
2018-03-10 22:01:10 +08:00
* File: demo_main.c
2018-02-21 19:36:38 +08:00
* Author: Li XianJing <xianjimli@hotmail.com>
2018-03-10 22:01:10 +08:00
* Brief: demo main
2018-02-21 19:36:38 +08:00
*
2018-05-08 10:22:32 +08:00
* Copyright (c) 2018 - 2018 Guangzhou ZHIYUAN Electronics Co.,Ltd.
2018-02-21 19:36:38 +08:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2018-02-16 Li XianJing <xianjimli@hotmail.com> created
*
*/
2018-04-27 11:23:09 +08:00
#include "tk.h"
2018-05-09 18:15:24 +08:00
#include "base/mem.h"
2018-04-26 16:09:53 +08:00
#include "resource.h"
#include "base/system_info.h"
2018-02-22 18:07:22 +08:00
ret_t application_init(void);
2018-02-21 19:36:38 +08:00
2018-05-07 17:50:05 +08:00
#ifdef USE_GUI_MAIN
2018-05-14 11:53:05 +08:00
int gui_app_start(int lcd_w, int lcd_h) {
tk_init(lcd_w, lcd_h);
2018-02-24 20:40:44 +08:00
#elif defined(WIN32)
2018-02-21 19:36:38 +08:00
#include <windows.h>
int WINAPI WinMain(HINSTANCE hinstance, HINSTANCE hprevinstance, LPSTR lpcmdline, int ncmdshow) {
2018-05-14 11:53:05 +08:00
tk_init(320, 480);
2018-02-21 19:36:38 +08:00
#else
int main(void) {
2018-05-12 18:28:38 +08:00
tk_init(320, 480);
2018-05-14 11:53:05 +08:00
#endif
2018-02-21 19:36:38 +08:00
resource_init();
application_init();
2018-04-27 11:23:09 +08:00
tk_run();
2018-02-21 19:36:38 +08:00
return 0;
}