From 01292bb58794e36e77fe0f1cc308031a34b2a606 Mon Sep 17 00:00:00 2001 From: "qiuyiuestc@gmail.com" Date: Fri, 29 Jul 2011 15:54:34 +0000 Subject: [PATCH] delete application.c in tetris module git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1656 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- .../module/rtgui_app/tetris/application.c | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 examples/module/rtgui_app/tetris/application.c diff --git a/examples/module/rtgui_app/tetris/application.c b/examples/module/rtgui_app/tetris/application.c deleted file mode 100644 index d845346eb3..0000000000 --- a/examples/module/rtgui_app/tetris/application.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * File : app.c - * This file is part of RT-Thread RTOS - * COPYRIGHT (C) 2006, RT-Thread Development Team - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://openlab.rt-thread.com/license/LICENSE - * - * Change Logs: - * Date Author Notes - * 2010-08-28 Yi.Qiu the first version - */ - -#include -#include -#include -#include -#include -#include "tetris.h" - -int rt_application_init(void) -{ - rt_thread_t tid; - - tid = rt_thread_create("tetris", tetris_ui_entry, RT_NULL, 2048, 20, 5); - if (tid != RT_NULL) rt_thread_startup(tid); - return 0; -} -