- move CONTEXT stuff from wdm.h to winddk.h / armddk.h
[reactos.git] / reactos / lib / 3rdparty / mingw / CRTinit.c
1 /*
2 * CRTinit.c
3 * This file has no copyright assigned and is placed in the Public Domain.
4 * This file is a part of the mingw-runtime package.
5 * No warranty is given; refer to the file DISCLAIMER within the package.
6 *
7 * A dummy version of _CRT_INIT for MS compatibility. Programs, or more often
8 * dlls, which use the static version of the MSVC run time are supposed to
9 * call _CRT_INIT to initialize the run time library in DllMain. This does
10 * not appear to be necessary when using crtdll or the dll versions of the
11 * MSVC runtime, so the dummy call simply does nothing.
12 *
13 * This object file is included as a standard in the link process as provided
14 * by the appropriate GCC frontend.
15 *
16 * To use this object include the object file in your link command:
17 * gcc -o foo.exe foo.o CRTinit.o
18 *
19 */
20
21 void
22 _CRT_INIT ()
23 {
24 }