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

Symbian

开发平台:

Visual C++

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