LIBMAIN.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * LIBMAIN.CPP
  3.  * IKoala Interface DLL Chapter 6
  4.  *
  5.  * Entry point code
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #include <windows.h>
  14. /*
  15.  * LibMain(32)
  16.  *
  17.  * Purpose:
  18.  *  Entry point for Win32 DLLs
  19.  */
  20. BOOL WINAPI LibMain32(HINSTANCE hInstance, ULONG ulReason
  21.     , LPVOID pvReserved)
  22.     {
  23.     if (DLL_PROCESS_DETACH==ulReason)
  24.         {
  25.         return TRUE;
  26.         }
  27.     else
  28.         {
  29.         if (DLL_PROCESS_ATTACH!=ulReason)
  30.             return TRUE;
  31.         }
  32.     return TRUE;
  33.     }