ihxident.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

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. #ifndef _IHXIDENT_H
  36. #define _IHXIDENT_H
  37. typedef void* HXxWindowID;
  38. // RealPlayer features
  39. #define RPF_PLAYERPLUS 0x00000001 // is it a plus player?
  40. #define RPF_REALPLAYER 0x00000002 // is it the RealPlayer?
  41. #define RPF_EMBEDPLAYER 0x00000004 // is it an embedded player?
  42. // {AE7EB8A0-32DC-11d2-8AC0-00C04FEE3A97}
  43. DEFINE_GUID(IID_IHXProductIdentity, 
  44. 0xae7eb8a0, 0x32dc, 0x11d2, 0x8a, 0xc0, 0x0, 0xc0, 0x4f, 0xee, 0x3a, 0x97);
  45. DECLARE_INTERFACE_(IHXProductIdentity, IUnknown)
  46. {
  47.     // IUnknown methods
  48.     STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj) PURE;
  49.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  50.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  51.     //********************************************************************
  52.     // Method: IHXProductIdentity::GetMajorVersion
  53.     // Purpose: return the major version of the product
  54.     //********************************************************************
  55.     STDMETHOD_(UINT32,GetMajorVersion) (THIS) PURE;
  56.     //********************************************************************
  57.     // Method: IHXProductIdentity::GetMinorVersion
  58.     // Purpose: return the minor version of the product
  59.     //********************************************************************
  60.     STDMETHOD_(UINT32,GetMinorVersion) (THIS) PURE;
  61.     //********************************************************************
  62.     // Method: IHXProductIdentity::GetReleaseNumber
  63.     // Purpose: return the release number of the product
  64.     //********************************************************************
  65.     STDMETHOD_(UINT32,GetReleaseNumber) (THIS) PURE;
  66.     //********************************************************************
  67.     // Method: IHXProductIdentity::GetBuildNumber
  68.     // Purpose: return the build number of the product
  69.     //********************************************************************
  70.     STDMETHOD_(UINT32,GetBuildNumber) (THIS) PURE;
  71.     //********************************************************************
  72.     // Method: IHXProductIdentity::GetLanguageId
  73.     // Purpose: return the language id of this product
  74.     //********************************************************************
  75.     STDMETHOD_(UINT32,GetLanguageId) (THIS) PURE;
  76.     //********************************************************************
  77.     // Method: IHXProductIdentity::GetProductName
  78.     // Purpose: return the name of this product
  79.     //********************************************************************
  80.     STDMETHOD(GetProductName) (THIS_ char* pName, UINT16 len) PURE;
  81.     //********************************************************************
  82.     // Method: IHXProductIdentity::GetLanguageString
  83.     // Purpose: return the language string of this product
  84.     //********************************************************************
  85.     STDMETHOD(GetLanguageString) (THIS_ char* pLanguage, UINT16 len) PURE;
  86.     //********************************************************************
  87.     // Method: IHXProductIdentity::GetVersionString
  88.     // Purpose: return the version string of this product
  89.     //********************************************************************
  90.     STDMETHOD(GetVersionString) (THIS_ char* pVersion, UINT16 len) PURE;
  91.     //********************************************************************
  92.     // Method: IHXProductIdentity::GetDistributionCode
  93.     // Purpose: return the distribution code string of this product
  94.     //********************************************************************
  95.     STDMETHOD(GetDistributionCode) (THIS_ char* pDistCode, UINT16 len) PURE;
  96. };
  97. // {AE7EB8A0-32DC-11d2-7AC0-00C04FEE3A98}
  98. DEFINE_GUID(IID_IHXProductIdentity2,
  99. 0xae7eb8a0, 0x32dc, 0x11d2, 0x7a, 0xc0, 0x0, 0xc0, 0x4f, 0xee, 0x3a, 0x98);
  100. DECLARE_INTERFACE_(IHXProductIdentity2, IHXProductIdentity)
  101. {
  102.     //********************************************************************
  103.     // Method: IHXProductIdentity2::GetPath
  104.     // Purpose: return the full path to the product's main executable
  105.     //********************************************************************
  106.     STDMETHOD(GetPath) (THIS_ char* pPath, UINT16 len) PURE;
  107.     //********************************************************************
  108.     // Method: IHXProductIdentity2::GetActiveWindow
  109.     // Purpose: get active window of the client
  110.     //********************************************************************
  111.     STDMETHOD(GetActiveWindow) (THIS_ REF(HXxWindowID) window) PURE;
  112.     //********************************************************************
  113.     // Method: IHXProductIdentity2::GetProductTitle
  114.     // Purpose: return the title of this product
  115.     //********************************************************************
  116.     STDMETHOD(GetProductTitle) (THIS_ char* pTitle, UINT16 len) PURE;
  117.     //********************************************************************
  118.     // Method: IHXProductIdentity2::HasFeatures
  119.     // Purpose: The possible values for ulFeatures are listed at the top of 
  120.     // this file.  These values can be combined with the | operator
  121.     // if desired to ask for multiple features in one call.  TRUE
  122.     // is returned only if ALL the requested features are supported.
  123.     //********************************************************************
  124.     STDMETHOD_(BOOL,HasFeatures) (THIS_ UINT32 ulFeatures) PURE;
  125.     //********************************************************************
  126.     // Method: IHXProductIdentity2::GetGUID
  127.     // Purpose: return the GUID of product's user
  128.     //********************************************************************
  129.     STDMETHOD(GetGUID) (THIS_ char* pGUID, UINT16 len) PURE;
  130. };
  131. // {716D4362-26E0-4beb-92FA-E83EECF5822E}
  132. DEFINE_GUID(CLSID_TheProduct, 
  133. 0x716d4362, 0x26e0, 0x4beb, 0x92, 0xfa, 0xe8, 0x3e, 0xec, 0xf5, 0x82, 0x2e);
  134. #endif