48 lines
904 B
C
Executable File
48 lines
904 B
C
Executable File
/*
|
|
* \file dti.c
|
|
* \author Wei Yongming <vincent@minigui.org>
|
|
* \date 1998/12/xx
|
|
*
|
|
\verbatim
|
|
|
|
Copyright (C) 2002-2018 FMSoft
|
|
Copyright (C) 1999-2002 Wei Yongming.
|
|
|
|
All rights reserved by Feynman Software.
|
|
|
|
This file is part of MiniGUI, a compact cross-platform Graphics
|
|
User Interface (GUI) support system for real-time embedded systems.
|
|
|
|
\endverbatim
|
|
*/
|
|
|
|
/*
|
|
* MiniGUI for Linux/uClinux, eCos, uC/OS-II, VxWorks,
|
|
* pSOS, ThreadX, NuCleus, OSE, and Win32.
|
|
*
|
|
*/
|
|
|
|
#include <minigui/common.h>
|
|
|
|
#ifdef _MGRM_THREADS
|
|
|
|
#ifdef __WINBOND_SWLINUX__
|
|
|
|
int user_thread (int (*)(char **), char **, unsigned long);
|
|
int minigui_entry (int argc, const char* argv[]);
|
|
|
|
int start_minigui (char **data)
|
|
{
|
|
return minigui_entry (0, NULL);
|
|
}
|
|
|
|
void Start (void)
|
|
{
|
|
user_thread (start_minigui, (char**)NULL, 0);
|
|
}
|
|
|
|
#endif /* __WINBOND_SWLINUX__ */
|
|
|
|
#endif /* _MGRM_THREADS */
|
|
|