home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / src / mingw-runtime-19991107 / mingw / CRTinit.c < prev    next >
Encoding:
Text File  |  1999-07-30  |  981 b   |  33 lines

  1. /*
  2.  * CRTinit.c
  3.  *
  4.  * A dummy version of _CRT_INIT for MS compatibility. Programs, or more often
  5.  * dlls, which use the static version of the MSVC run time are supposed to
  6.  * call _CRT_INIT to initialize the run time library in DllMain. This does
  7.  * not appear to be necessary when using crtdll or the dll versions of the
  8.  * MSVC runtime, so the dummy call simply does nothing.
  9.  *
  10.  * Contributors:
  11.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  12.  *
  13.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  14.  *
  15.  *  This source code is offered for use in the public domain. You may
  16.  *  use, modify or distribute it freely.
  17.  *
  18.  *  This code is distributed in the hope that it will be useful but
  19.  *  WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
  20.  *  DISCLAMED. This includes but is not limited to warrenties of
  21.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  22.  *
  23.  * $Revision: 1.1 $
  24.  * $Author: khan $
  25.  * $Date: 1998/09/03 16:31:16 $
  26.  *
  27.  */
  28.  
  29. void
  30. _CRT_INIT ()
  31. {
  32. }
  33.