dllmain.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual C++

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