emudll.c
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 1k
Category:

Windows Develop

Development Platform:

Visual C++

  1. /* File: D:WACKERemuemudll.c (Created: 08-Dec-1993)
  2.  *
  3.  * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4.  * All rights reserved
  5.  *
  6.  * $Revision: 1 $
  7.  * $Date: 10/05/98 12:28p $
  8.  */
  9. #include <windows.h>
  10. BOOL WINAPI EmuEntry(HINSTANCE hInstDll, DWORD fdwReason, LPVOID lpReserved);
  11. BOOL WINAPI _CRT_INIT(HINSTANCE hInstDll, DWORD fdwReason, LPVOID lpReserved);
  12. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  13.  * FUNCTION:
  14.  * EmuEntry
  15.  *
  16.  * DESCRIPTION:
  17.  * Currently, just initializes the C-Runtime library but may be used
  18.  * for other things later.
  19.  *
  20.  * ARGUMENTS:
  21.  * hInstDll - Instance of this DLL
  22.  * fdwReason - Why this entry point is called
  23.  * lpReserved - reserved
  24.  *
  25.  * RETURNS:
  26.  * BOOL
  27.  *
  28.  */
  29. BOOL WINAPI EmuEntry(HINSTANCE hInstDll, DWORD fdwReason, LPVOID lpReserved)
  30. {
  31. return _CRT_INIT(hInstDll, fdwReason, lpReserved);
  32. }