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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0 and Exhibits. 
  3.  * REALNETWORKS CONFIDENTIAL--NOT FOR DISTRIBUTION IN SOURCE CODE FORM 
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. 
  5.  * All Rights Reserved. 
  6.  * 
  7.  * The contents of this file, and the files included with this file, are 
  8.  * subject to the current version of the RealNetworks Community Source 
  9.  * License Version 1.0 (the "RCSL"), including Attachments A though H, 
  10.  * all available at http://www.helixcommunity.org/content/rcsl. 
  11.  * You may also obtain the license terms directly from RealNetworks. 
  12.  * You may not use this file except in compliance with the RCSL and 
  13.  * its Attachments. There are no redistribution rights for the source 
  14.  * code of this file. Please see the applicable RCSL for the rights, 
  15.  * obligations and limitations governing use of the contents of the file. 
  16.  * 
  17.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  18.  * developer of the Original Code and owns the copyrights in the portions 
  19.  * it created. 
  20.  * 
  21.  * This file, and the files included with this file, is distributed and made 
  22.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  23.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  24.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  25.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  26.  * 
  27.  * Technology Compatibility Kit Test Suite(s) Location: 
  28.  * https://rarvcode-tck.helixcommunity.org 
  29.  * 
  30.  * Contributor(s): 
  31.  * 
  32.  * ***** END LICENSE BLOCK ***** */ 
  33. #include "hxtypes.h"
  34. #include "hxwintyp.h"
  35. #include "hxresult.h"
  36. #include "hxcom.h"
  37. #include "hxevent.h"
  38. #include "hxcomm.h"
  39. #include "ihxpckts.h"
  40. #include "hxcore.h"
  41. #include "hxrendr.h"
  42. #include "hxhyper.h"
  43. #include "hxplugn.h"
  44. #include "hxasm.h"
  45. #include "hxupgrd.h"
  46. #include "hxengin.h"
  47. #include "hxprefs.h"
  48. #include "hxerror.h"
  49. #include "hxwin.h"
  50. #include "hxvsurf.h"
  51. #include "hxvctrl.h"
  52. #include "hxsite2.h"
  53. #include "hxthread.h"
  54. #include "hxmon.h"
  55. #include "hxformt.h"
  56. #include "hlxclib/stdio.h"
  57. #include "mp4video.h"
  58. #include "mp4vdfmt.h"
  59. #include "dllpath.h"
  60. #include "hxheap.h"
  61. /****************************************************************************
  62.  * 
  63.  *  Function:
  64.  * 
  65.  * HXCreateInstance()
  66.  * 
  67.  *  Purpose:
  68.  * 
  69.  * Function implemented by all plugin DLL's to create an instance of 
  70.  * any of the objects supported by the DLL. This method is similar to 
  71.  * Window's CoCreateInstance() in its purpose, except that it only 
  72.  * creates objects from this plugin DLL.
  73.  *
  74.  * NOTE: Aggregation is never used. Therefore and outer unknown is
  75.  * not passed to this function, and you do not need to code for this
  76.  * situation.
  77.  * 
  78.  */
  79. STDAPI ENTRYPOINT(HXCreateInstance)
  80. (   
  81.     IUnknown**  /*OUT*/ ppIUnknown  
  82. )   
  83. {   
  84.     return CMP4VideoRenderer::HXCreateInstance(ppIUnknown);
  85. }   
  86. /****************************************************************************
  87.  * 
  88.  *  Function:
  89.  * 
  90.  * CanUnload()
  91.  * 
  92.  *  Purpose:
  93.  * 
  94.  * Function implemented by all plugin DLL's if it returns HXR_OK 
  95.  * then the pluginhandler can unload the DLL
  96.  *
  97.  */
  98. STDAPI ENTRYPOINT(CanUnload)(void)
  99. {
  100.     return CMP4VideoRenderer::CanUnload();
  101. }
  102. STDAPI ENTRYPOINT(CanUnload2)(void)
  103. {
  104.     return CMP4VideoRenderer::CanUnload2();
  105. }