dllmain.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. ///////////////
  36. /////////////////////////////////////////////////////////////////////////////
  37. //  DLLMAIN.CPP
  38. //
  39. //  Copyright (C) 1994,1995,1996,1997,1998 Progressive Networks.
  40. //  All rights reserved.
  41. //
  42. //
  43. //
  44. //
  45. #include <windows.h>
  46. #include "hxheap.h"
  47. #ifdef _DEBUG
  48. #undef HX_THIS_FILE
  49. static char HX_THIS_FILE[] = __FILE__;
  50. #endif
  51. HINSTANCE g_hInstance = NULL;
  52. /////////////////////////////////////////////////////////////////////////////
  53. //
  54. //  Function:
  55. //
  56. // InitInstance()
  57. //
  58. //  Purpose:
  59. //
  60. // Performs any per-DLL initialization. Called in 16bit or 32bit case.
  61. //
  62. BOOL InitInstance(HINSTANCE hDLL)
  63. {
  64.     g_hInstance = hDLL;
  65.     return TRUE;
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. //
  69. //  Function:
  70. //
  71. // ExitInstance()
  72. //
  73. //  Purpose:
  74. //
  75. // Performs any per-DLL cleanup. Called in 16bit or 32bit case.
  76. //
  77. int ExitInstance() 
  78. {
  79.     return 0;
  80. }
  81. #ifdef _WIN32
  82. /////////////////////////////////////////////////////////////////////////////
  83. //
  84. //  Function:
  85. //
  86. // DllMain()
  87. //
  88. //  Purpose:
  89. //
  90. // Standard 32bit DLL entry point. Handles initialization and cleanup
  91. // of DLL instances. Only called in 32bit case.
  92. //
  93. extern "C" BOOL WINAPI DllMain (HINSTANCE hDLL, DWORD dwReason, LPVOID lpReserved)
  94. {
  95.     switch (dwReason)
  96.     {
  97. case DLL_PROCESS_ATTACH:
  98. {
  99.     //
  100.     // DLL is attaching to the address space of the current process.
  101.     //
  102.     InitInstance(hDLL);
  103. }
  104. break;
  105. case DLL_THREAD_ATTACH:
  106. {
  107.     //
  108.     // A new thread is being created in the current process.
  109.     //
  110. }
  111. break;
  112. case DLL_THREAD_DETACH:
  113. {
  114.     //
  115.     // A thread is exiting cleanly.
  116.     //
  117. }
  118. break;
  119. case DLL_PROCESS_DETACH:
  120. {
  121.     //
  122.     // The calling process is detaching the DLL from its address space.
  123.     //
  124.     ExitInstance();
  125. }
  126. break;
  127.     }
  128.     return TRUE;
  129. }
  130. #else
  131.        
  132. /////////////////////////////////////////////////////////////////////////////
  133. //
  134. //  Function:
  135. //
  136. //   LibMain()
  137. //
  138. //  Purpose:
  139. //
  140. // Standard 16bit DLL entry point. Handles initialization of DLL 
  141. // instances. Only called in 16bit case.
  142. //
  143. extern "C" HANDLE WINAPI LibMain(HANDLE hInstance, WORD wDataSeg, WORD cbHeapSize, LPSTR lpCmdLine)
  144. {
  145.     if (InitInstance((HINSTANCE)hInstance))
  146.     {
  147. if (0!=cbHeapSize)
  148. {
  149.     UnlockData(0);
  150. }
  151.     }
  152.     return hInstance;
  153. }
  154. /////////////////////////////////////////////////////////////////////////////
  155. //
  156. //  Function:
  157. //
  158. //   _WEP()
  159. //
  160. //  Purpose:
  161. //
  162. // Standard 16bit DLL entry point. Handles clean up of DLL 
  163. // instances. Only called in 16bit case.
  164. //
  165. extern "C" int WINAPI _WEP (int bSystemExit);
  166. #pragma alloc_text(FIXEDSEG, _WEP)
  167. extern "C" int WINAPI _WEP (int bSystemExit)
  168. {
  169.     ExitInstance();
  170.     return(1);
  171. }
  172. #endif