STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
WinMain.c
Go to the documentation of this file.
1 /*********************************************************************
2 * Portions COPYRIGHT 2014 STMicroelectronics *
3 * Portions SEGGER Microcontroller GmbH & Co. KG *
4 * Solutions for real time microcontroller applications *
5 **********************************************************************
6 * *
7 * (c) 1996 - 2014 SEGGER Microcontroller GmbH & Co. KG *
8 * *
9 * Internet: www.segger.com Support: support@segger.com *
10 * *
11 **********************************************************************
12 
13 ** emWin V5.26 - Graphical user interface for embedded applications **
14 All Intellectual Property rights in the Software belongs to SEGGER.
15 emWin is protected by international copyright laws. Knowledge of the
16 source code may not be used to write a similar product. This file may
17 only be used in accordance with the following terms:
18 
19 The software has been licensed to STMicroelectronics International
20 N.V. a Dutch company with a Swiss branch and its headquarters in Plan-
21 les-Ouates, Geneva, 39 Chemin du Champ des Filles, Switzerland for the
22 purposes of creating libraries for ARM Cortex-M-based 32-bit microcon_
23 troller products commercialized by Licensee only, sublicensed and dis_
24 tributed under the terms and conditions of the End User License Agree_
25 ment supplied by STMicroelectronics International N.V.
26 Full source code is available at: www.segger.com
27 
28 ----------------------------------------------------------------------
29 File : WinMain.c
30 ---------------------------END-OF-HEADER------------------------------
31 */
50 #include <windows.h>
51 
52 #include "GUI_SIM_Win32.h"
53 
54 /*********************************************************************
55 *
56 * Public data
57 *
58 **********************************************************************
59 */
60 
61 /*********************************************************************
62 *
63 * Public code
64 *
65 **********************************************************************
66 */
67 /*********************************************************************
68 *
69 * WinMain
70 */
71 int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
72  return SIM_GUI_App(hInstance, hPrevInstance, lpCmdLine, nCmdShow);
73 }
74 
75 /*************************** End of file ****************************/
int SIM_GUI_App(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
Definition: WinMain.c:71