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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 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 RealNetworks Community Source License 
  8.  * Version 1.0 (the "License"). You may not use this file except in 
  9.  * compliance with the License executed by both you and RealNetworks.  You 
  10.  * may obtain a copy of the License at  
  11.  * http://www.helixcommunity.org/content/rcsl.  You may also obtain a 
  12.  * copy of the License by contacting RealNetworks directly.  Please see the 
  13.  * License for the rights, obligations and limitations governing use of the 
  14.  * contents of the file. 
  15.  *  
  16.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  17.  * developer of the Original Code and owns the copyrights in the portions 
  18.  * it created. 
  19.  *  
  20.  * This file, and the files included with this file, is distributed and made 
  21.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  22.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  23.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  24.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.  
  25.  * 
  26.  * Technology Compatibility Kit Test Suite(s) Location: 
  27.  *    http://www.helixcommunity.org/content/tck 
  28.  * 
  29.  * Contributor(s): 
  30.  *  
  31.  * ***** END LICENSE BLOCK ***** */ 
  32. #ifndef _HXCFG_H_
  33. #define _HXCFG_H_
  34. typedef _INTERFACE  IHXBuffer IHXBuffer;
  35. /****************************************************************************
  36.  * 
  37.  *  Interface:
  38.  *
  39.  * IHXConfigFile
  40.  *
  41.  *  Purpose:
  42.  *
  43.  *  IID_IHXConfigFile:
  44.  *
  45.  * {00001c00-0901-11d1-8B06-00A024406D59}
  46.  *
  47.  */
  48. DEFINE_GUID(IID_IHXConfigFile, 0x00001c00, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  49. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  50. #undef INTERFACE
  51. #define INTERFACE IHXConfigFile
  52. DECLARE_INTERFACE_(IHXConfigFile, IUnknown)
  53. {
  54.     /*
  55.      * IUnknown methods
  56.      */
  57.     STDMETHOD(QueryInterface)           (THIS_
  58.  REFIID riid,
  59.  void** ppvObj) PURE;
  60.     STDMETHOD_(ULONG32,AddRef)          (THIS) PURE;
  61.     STDMETHOD_(ULONG32,Release)         (THIS) PURE;
  62.     /*
  63.      * IHXConfigFile methods
  64.      */
  65.     /************************************************************************
  66.      * Method:
  67.      *     IHXConfigFile::LoadFrom
  68.      * Purpose:
  69.      *
  70.      *     LoadFrom tells the server to load the config file specified,
  71.      *     and sets that file as the default for future Reloads and Saves
  72.      */
  73.     STDMETHOD(LoadFrom)                 (THIS_
  74.  IHXBuffer* filename) PURE;
  75.     /************************************************************************
  76.      * Method:
  77.      *     IHXConfigFile::Reload
  78.      * Purpose:
  79.      *
  80.      *     Reload causes the current default config file to be reloaded.
  81.      */
  82.     STDMETHOD(Reload)                   (THIS) PURE;
  83.     /************************************************************************
  84.      * Method:
  85.      *     IHXConfigFile::Save
  86.      * Purpose:
  87.      *
  88.      *     Save causes the current configuration to be written to the
  89.      *     current default file.
  90.      */
  91.     STDMETHOD(Save)                     (THIS) PURE;
  92.     /************************************************************************
  93.      * Method:
  94.      *     IHXConfigFile::SaveAs
  95.      * Purpose:
  96.      *
  97.      *     SaveAs writes the configuration to the named file, and sets that
  98.      *     file as the default.
  99.      */
  100.     STDMETHOD(SaveAs)                   (THIS_
  101.  IHXBuffer* pFilename) PURE;
  102.     /************************************************************************
  103.      * Method:
  104.      *     IHXConfigFile::GetFilename
  105.      * Purpose:
  106.      *
  107.      *     GetFilename returns the current default file
  108.      */
  109.     STDMETHOD(GetFilename)              (THIS_
  110.  REF(IHXBuffer*) pFilename) PURE;
  111.     /************************************************************************
  112.      * Method:
  113.      *     IHXConfigFile::SetFilename
  114.      * Purpose:
  115.      *
  116.      *     SetFilename sets the current default file, but does not read it
  117.      *     or change its contents.
  118.      */
  119.     STDMETHOD(SetFilename)              (THIS_
  120.  IHXBuffer* pFilename) PURE;
  121. };
  122. /****************************************************************************
  123.  * 
  124.  *  Interface:
  125.  *
  126.  * IHXRegConfig
  127.  *
  128.  *  Purpose:
  129.  *
  130.  *  IID_IHXRegConfig:
  131.  *
  132.  * {00001c01-0901-11d1-8B06-00A024406D59}
  133.  *
  134.  */
  135. DEFINE_GUID(IID_IHXRegConfig, 0x00001c01, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  136. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  137. #undef INTERFACE
  138. #define INTERFACE IHXRegConfig
  139. DECLARE_INTERFACE_(IHXRegConfig, IUnknown)
  140. {
  141.     /*
  142.      * IUnknown methods
  143.      */
  144.     STDMETHOD(QueryInterface)           (THIS_
  145.  REFIID riid,
  146.  void** ppvObj) PURE;
  147.     STDMETHOD_(ULONG32,AddRef)          (THIS) PURE;
  148.     STDMETHOD_(ULONG32,Release)         (THIS) PURE;
  149.     /************************************************************************
  150.      * Method:
  151.      *     IHXRegConfig::WriteKey
  152.      * Purpose:
  153.      *
  154.      *     Write out the registry from the passed in keyname to the 
  155.      *  currently active permanent config storage area (ex. config file,
  156.      *  registry).
  157.      */
  158.     STDMETHOD(WriteKey)              (THIS_
  159. const char* pKeyName) PURE;
  160. };
  161. #endif /* _HXCFG_H_ */