mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
646 B
21 lines
646 B
/***
|
|
*wcrtexew.c - Startup code for a wide character Windows EXE built /MD
|
|
*
|
|
* Copyright (c) 1985-1994, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* defines _wWinMainCRTStartup, the C Run-Time Library start-up code
|
|
* for a wide character Windows (GUI) application linked with MSVCRT.LIB.
|
|
* This module includes wcrtexe.c, which in turn includes crtexe.c,
|
|
* which contains the common code.
|
|
*
|
|
*Revision History:
|
|
* ??-??-?? ??? Module created.
|
|
* 09-01-94 SKS Module commented.
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#ifdef CRTDLL
|
|
#define _WINMAIN_
|
|
#include "wcrtexe.c"
|
|
#endif /* CRTDLL */
|