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

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. #include "symbian_pref.h"
  36. #include "hxtypes.h"
  37. #include "hxassert.h"
  38. HX_RESULT CSymbianPref::read_pref(const char* pPrefKey, IHXBuffer*& pBuffer)
  39. {
  40.     return HXR_FAIL;
  41. }
  42. HX_RESULT CSymbianPref::write_pref(const char* pPrefKey, IHXBuffer* pBuffer)
  43. {
  44.     return HXR_OK;
  45. }
  46.     
  47. /* commit_prefs saves all changes to the prefs to disk (e.g. on Symbian) */ 
  48. HX_RESULT CSymbianPref::commit_prefs()
  49. {
  50.     return HXR_OK;
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. //  call open_pref() to automatically create the correct SYMBIAN specific 
  54. // preference object.    
  55. //
  56. CSymbianPref * CSymbianPref::open_pref(
  57. const char* pCompanyName, 
  58. const char* pProductName, 
  59. int nProdMajorVer, 
  60. int nProdMinorVer)
  61. {
  62.     return new CSymbianPref(pCompanyName, pProductName, 
  63.     nProdMajorVer, nProdMinorVer);
  64. }
  65. /////////////////////////////////////////////////////////////////////////////
  66. //  Constructor NOTE: use open_pref() to create an instance of this class
  67. //
  68. CSymbianPref::CSymbianPref(
  69.     const char* pCompanyName, 
  70.     const char* pProductName, 
  71.     int nProdMajorVer, 
  72.     int nProdMinorVer)
  73. {   
  74.     ;
  75. }
  76. /////////////////////////////////////////////////////////////////////////////
  77. //  class destructor 
  78. CSymbianPref::~CSymbianPref (void)
  79. {
  80.     ;
  81. }
  82. /*  delete_pref deletes the preference specified by Key from the Buffer. */                                                                             
  83. HX_RESULT CSymbianPref::delete_pref(const char* pPrefKey)
  84. {   
  85.     return HXR_OK;
  86. }
  87. /////////////////////////////////////////////////////////////////////////////
  88. //   init opens pref file if found, otherwise it creates it;
  89. //   reads the pref file into an internal buffer.
  90. //
  91. HX_RESULT CSymbianPref::init_pref( 
  92.             const char* pCompanyName, 
  93.             const char* pProductName, 
  94.             int nProdMajorVer, 
  95.             int nProdMinorVer)
  96. {
  97.     return HXR_OK;
  98. }
  99. HX_RESULT CSymbianPref::remove_pref(const char* pPrefKey)
  100. {
  101.     return HXR_OK;
  102. }
  103. HX_RESULT CSymbianPref::remove_indexed_pref(const char* pPrefKey)
  104. {
  105.     return HXR_OK;
  106. }
  107. //
  108. // Access a preferences file subtree by appending a string to the Root
  109. // Key.  
  110. //
  111. HX_RESULT CSymbianPref::BeginSubPref(const char* szSubPref)
  112. {
  113.     return HXR_OK;
  114. }
  115. HX_RESULT CSymbianPref::EndSubPref()
  116. {
  117.     return HXR_OK;
  118. }
  119. //
  120. // Return the value of subkey number nIndex under the current m_RootKeyName.
  121. //
  122. HX_RESULT CSymbianPref::GetPrefKey(UINT32 nIndex, IHXBuffer*& pBuffer)
  123. {
  124.     return HXR_FAIL;
  125. }