Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
vidplin.h
Package: 142_61_thumb_advanced.rar [view]
Upload User: dangjiwu
Upload Date: 2013-07-19
Package Size: 42019k
Code Size: 2k
Category:
Symbian
Development Platform:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- //
- // vidplin.h
- //
- // Copyright (C) 1995,1996,1997 Progressive Networks, Inc.
- // All rights reserved.
- //
- // http://www.real.com/devzone
- //
- // This program contains proprietary
- // information of Progressive Networks, Inc, and is licensed
- // subject to restrictions on use and distribution.
- //
- // Video PluginFactory
- //
- //
- class VideoPluginFactory : public IHXPluginFactory
- {
- public:
- VideoPluginFactory();
- STDMETHOD(QueryInterface) (THIS_
- REFIID riid,
- void** ppvObj) ;
- STDMETHOD_(ULONG32,AddRef) (THIS);
- STDMETHOD_(ULONG32,Release) (THIS);
- STDMETHOD_(UINT16, GetNumPlugins) (THIS);
- STDMETHOD(GetPlugin)(THIS_
- UINT16 uIndex,
- IUnknown** pPlugin);
- LONG32 m_lRefCount;
- UINT16 m_usNumOfPlugins;
- static HX_RESULT (STDAPICALLTYPE *const m_fpEntryArray[])(IUnknown**);
- static HX_RESULT (STDAPICALLTYPE *const m_fpExitArray[])();
- static HX_RESULT (STDAPICALLTYPE *const m_fpUnloadArray[])();
- static HX_RESULT (STDAPICALLTYPE *const m_fpUnloadArray2[])();
- };
- /****************************************************************************
- *
- * Function:
- *
- * HXCreateInstance()
- *
- * Purpose:
- *
- * Function implemented by all plugin DLL's to create an instance of
- * any of the objects supported by the DLL. This method is similar to
- * Window's CoCreateInstance() in its purpose, except that it only
- * creates objects from this plugin DLL.
- *
- * NOTE: Aggregation is never used. Therefore and outer unknown is
- * not passed to this function, and you do not need to code for this
- * situation.
- *
- */
- STDAPI HXCreateInstance(IUnknown** /*OUT*/ ppIUnknown);
- /****************************************************************************
- *
- * Function:
- *
- * HXShutdown()
- *
- * Purpose:
- *
- * Function implemented by all plugin DLL's to free any *global*
- * resources. This method is called just before the DLL is unloaded.
- *
- */
- STDAPI HXShutdown();