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

Symbian

开发平台:

Visual C++

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