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

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. #include "hxwinver.h" // for HXWinVer()
  36. #include <windows.h>
  37. #include "hxmullan.h" // for Multipl-Language Support API
  38. #include "hxheap.h"
  39. #ifdef _DEBUG
  40. #undef HX_THIS_FILE
  41. static const char HX_THIS_FILE[] = __FILE__;
  42. #endif
  43. #include "hxperf.h"
  44. HX_ENABLE_CHECKPOINTS_FOR_MODULE( "rmacore", "RmaCore.log" );
  45. #ifdef _WIN16
  46. struct RTSPError
  47. {
  48.     const char* pErrNo;
  49.     const char* pErrMsg;
  50. };
  51. #include "resource.h"
  52. HGLOBAL hFilter1 = NULL;
  53. HGLOBAL hFilter2 = NULL;
  54. HGLOBAL hFilter4 = NULL;
  55. HGLOBAL hFilter8 = NULL;
  56. HGLOBAL hFilter11 = NULL;
  57. HGLOBAL hFilter16 = NULL;
  58. HGLOBAL hFilter32 = NULL;
  59. HGLOBAL hAlpha = NULL;
  60. HGLOBAL hADelta = NULL;
  61. HGLOBAL hRTSPErrors = NULL;
  62. HGLOBAL hUpTable = NULL;
  63. HGLOBAL hDownTable = NULL;
  64. HGLOBAL hFilterSizeTable = NULL;
  65. HGLOBAL hPerPlex = NULL;
  66. HGLOBAL hMimeBase = NULL;
  67. HGLOBAL hMessedUp = NULL;
  68. float* filter1 = NULL;
  69. float* filter2 = NULL;
  70. float* filter4 = NULL;
  71. float* filter8 = NULL;
  72. float* filter11 = NULL;
  73. float* filter16 = NULL;
  74. float* filter32 = NULL;
  75. INT32* alpha = NULL;
  76. INT32*  adelta = NULL;
  77. RTSPError* RTSPErrorTable = NULL;
  78. long* upTable = NULL;
  79. long*  downTable = NULL;
  80. long* filterSizeTable = NULL;
  81. char* zPerPlexChars = NULL;
  82. char*   zMIMEBase64Chars = NULL;
  83. char* zMessedUpBase64Chars = NULL;
  84. #endif /* _WIN16 */
  85. #ifndef _WINCE
  86. HINSTANCE g_hInstance = NULL;
  87. #else
  88. HMODULE g_hInstance = NULL;
  89. #endif
  90. /////////////////////////////////////////////////////////////////////////////
  91. //
  92. //  Function:
  93. //
  94. // InitInstance()
  95. //
  96. //  Purpose:
  97. //
  98. // Performs any per-DLL initialization. Called in 16bit or 32bit case.
  99. //
  100. #ifndef _WINCE
  101. BOOL InitInstance(HINSTANCE hDLL)
  102. #else
  103. BOOL InitInstance(HMODULE hDLL)
  104. #endif
  105. {
  106.     g_hInstance = hDLL;
  107. #ifdef _WIN16
  108.     HRSRC   hResource = NULL;
  109.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTER1), "Binary");
  110.     hFilter1 = LoadResource(g_hInstance, hResource);
  111.     filter1 = (float*)LockResource(hFilter1);
  112.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTER2), "Binary");
  113.     hFilter2 = LoadResource(g_hInstance, hResource);
  114.     filter2 = (float*)LockResource(hFilter2);
  115.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTER4), "Binary");
  116.     hFilter4 = LoadResource(g_hInstance, hResource);
  117.     filter4 = (float*)LockResource(hFilter4);
  118.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTER8), "Binary");
  119.     hFilter8 = LoadResource(g_hInstance, hResource);
  120.     filter8 = (float*)LockResource(hFilter8);
  121.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTER11), "Binary");
  122.     hFilter11 = LoadResource(g_hInstance, hResource);
  123.     filter11 = (float*)LockResource(hFilter11);
  124.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTER16), "Binary");
  125.     hFilter16 = LoadResource(g_hInstance, hResource);
  126.     filter16 = (float*)LockResource(hFilter16);
  127.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTER32), "Binary");
  128.     hFilter32 = LoadResource(g_hInstance, hResource);
  129.     filter32 = (float*)LockResource(hFilter32);
  130.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYALPHA), "Binary");
  131.     hAlpha = LoadResource(g_hInstance, hResource);
  132.     alpha = (INT32*)LockResource(hAlpha);
  133.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYADELTA), "Binary");
  134.     hADelta = LoadResource(g_hInstance, hResource);
  135.     adelta = (INT32*)LockResource(hADelta);
  136.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYRTSPERRORS), "Binary");
  137.     hRTSPErrors = LoadResource(g_hInstance, hResource);
  138.     RTSPErrorTable = (RTSPError*)LockResource(hRTSPErrors);
  139.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYUPTABLE), "Binary");
  140.     hUpTable = LoadResource(g_hInstance, hResource);
  141.     upTable = (LONG*)LockResource(hUpTable);
  142.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYDOWNTABLE), "Binary");
  143.     hDownTable = LoadResource(g_hInstance, hResource);
  144.     downTable = (LONG*)LockResource(hDownTable);
  145.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYFILTERSIZETABLE), "Binary");
  146.     hFilterSizeTable = LoadResource(g_hInstance, hResource);
  147.     filterSizeTable = (LONG*)LockResource(hFilterSizeTable);
  148.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYPERPLEX), "Binary");
  149.     hPerPlex = LoadResource(g_hInstance, hResource);
  150.     zPerPlexChars = (char*)LockResource(hPerPlex);
  151.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYMIMEBASE), "Binary");
  152.     hMimeBase = LoadResource(g_hInstance, hResource);
  153.     zMIMEBase64Chars = (char*)LockResource(hMimeBase);
  154.     hResource = FindResource(g_hInstance, MAKEINTRESOURCE(MYMESSEDUP), "Binary");
  155.     hMessedUp = LoadResource(g_hInstance, hResource);
  156.     zMessedUpBase64Chars = (char*)LockResource(hMessedUp);
  157. #endif /* _WIN16 */
  158.     // Call Multi-Language support functions to allow 
  159.     // them to be init'd as well!
  160. #ifndef _WINCE
  161.     HXSetupMulLang(g_hInstance, (HXGetWinVer(NULL) == HX_PLATFORM_WIN16));
  162. #endif
  163.     return TRUE;
  164. }
  165. /////////////////////////////////////////////////////////////////////////////
  166. //
  167. //  Function:
  168. //
  169. // ExitInstance()
  170. //
  171. //  Purpose:
  172. //
  173. // Performs any per-DLL cleanup. Called in 16bit or 32bit case.
  174. //
  175. int ExitInstance() 
  176. {
  177. #ifdef _WIN16
  178.     UnlockResource(hFilter1);
  179.     FreeResource(hFilter1);
  180.     UnlockResource(hFilter2);
  181.     FreeResource(hFilter2);
  182.     UnlockResource(hFilter4);
  183.     FreeResource(hFilter4);
  184.     UnlockResource(hFilter8);
  185.     FreeResource(hFilter8);
  186.     UnlockResource(hFilter11);
  187.     FreeResource(hFilter11);
  188.     UnlockResource(hFilter16);
  189.     FreeResource(hFilter16);
  190.     UnlockResource(hFilter32);
  191.     FreeResource(hFilter32);
  192.     UnlockResource(hAlpha);
  193.     FreeResource(hAlpha);
  194.     UnlockResource(hADelta);
  195.     FreeResource(hADelta);
  196.     UnlockResource(hRTSPErrors);
  197.     FreeResource(hRTSPErrors);
  198.     UnlockResource(hUpTable);
  199.     FreeResource(hUpTable);
  200.     UnlockResource(hDownTable);
  201.     FreeResource(hDownTable);
  202.     UnlockResource(hFilterSizeTable);
  203.     FreeResource(hFilterSizeTable);
  204.     UnlockResource(hPerPlex);
  205.     FreeResource(hPerPlex);
  206.     UnlockResource(hMimeBase);
  207.     FreeResource(hMimeBase);
  208.     UnlockResource(hMessedUp);
  209.     FreeResource(hMessedUp);
  210. #endif /* _WIN16 */
  211.     // Cleanup Multi-Language Support
  212. #ifndef _WINCE
  213.     HXCleanupMulLang();
  214. #endif
  215.     return 0;
  216. }
  217. #ifdef _WIN32
  218. #if !defined(_STATICALLY_LINKED)
  219. /////////////////////////////////////////////////////////////////////////////
  220. //
  221. //  Function:
  222. //
  223. // DllMain()
  224. //
  225. //  Purpose:
  226. //
  227. // Standard 32bit DLL entry point. Handles initialization and cleanup
  228. // of DLL instances. Only called in 32bit case.
  229. //
  230. #ifndef _WINCE
  231. extern "C" BOOL WINAPI DllMain (HINSTANCE hDLL, DWORD dwReason, LPVOID lpReserved)
  232. #else
  233. BOOL WINAPI DllMain (HANDLE hDLL, DWORD dwReason, LPVOID lpReserved)
  234. #endif
  235. {
  236.     switch (dwReason)
  237.     {
  238. case DLL_PROCESS_ATTACH:
  239. {
  240.     //
  241.     // DLL is attaching to the address space of the current process.
  242.     //
  243. #ifndef _WINCE
  244.     InitInstance(hDLL);
  245. #else
  246.     InitInstance((HMODULE)hDLL);
  247. #endif
  248. }
  249. break;
  250. case DLL_THREAD_ATTACH:
  251. {
  252.     //
  253.     // A new thread is being created in the current process.
  254.     //
  255. }
  256. break;
  257. case DLL_THREAD_DETACH:
  258. {
  259.     //
  260.     // A thread is exiting cleanly.
  261.     //
  262. }
  263. break;
  264. case DLL_PROCESS_DETACH:
  265. {
  266.     //
  267.     // The calling process is detaching the DLL from its address space.
  268.     //
  269.     ExitInstance();
  270. }
  271. break;
  272.     }
  273.     return TRUE;
  274. }
  275. #endif /* #if !defined(_STATICALLY_LINKED) */
  276. #else
  277.        
  278. /////////////////////////////////////////////////////////////////////////////
  279. //
  280. //  Function:
  281. //
  282. //   LibMain()
  283. //
  284. //  Purpose:
  285. //
  286. // Standard 16bit DLL entry point. Handles initialization of DLL 
  287. // instances. Only called in 16bit case.
  288. //
  289. extern "C" HANDLE WINAPI LibMain(HANDLE hInstance, WORD wDataSeg, WORD cbHeapSize, LPSTR lpCmdLine)
  290. {
  291.     if (InitInstance((HINSTANCE)hInstance))
  292.     {
  293. if (0!=cbHeapSize)
  294. {
  295.     UnlockData(0);
  296. }
  297.     }
  298.     return hInstance;
  299. }
  300. /////////////////////////////////////////////////////////////////////////////
  301. //
  302. //  Function:
  303. //
  304. //   _WEP()
  305. //
  306. //  Purpose:
  307. //
  308. // Standard 16bit DLL entry point. Handles clean up of DLL 
  309. // instances. Only called in 16bit case.
  310. //
  311. extern "C" int WINAPI _WEP (int bSystemExit);
  312. #pragma alloc_text(FIXEDSEG, _WEP)
  313. extern "C" int WINAPI _WEP (int bSystemExit)
  314. {
  315.     ExitInstance();
  316.     return(1);
  317. }
  318. #endif