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

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 _IHXXRES_H_
  36. #define _IHXXRES_H_
  37. // Includes for this file...
  38. #include "hxcom.h"
  39. #include "hxtypes.h"
  40. #include "hxplugncompat.h"
  41. //
  42. // CONSTANTS
  43. //
  44. //
  45. // Used to keep track of the end of the resource.  Useful for debugging as well.
  46. //
  47. #define   kEndOfResourceMarker 0x52454e44  //'REND'
  48. //
  49. // Standard resource types.
  50. //
  51. enum 
  52. {
  53. HX_RT_CURSOR = 1,
  54. HX_RT_BITMAP,
  55. HX_RT_ICON,
  56. HX_RT_MENU,
  57. HX_RT_DIALOG,
  58. HX_RT_STRING,
  59. HX_RT_FONTDIR,
  60. HX_RT_FONT,
  61. HX_RT_ACCELERATOR,
  62. HX_RT_RCDATA,
  63. HX_RT_MESSAGETABLE,
  64. HX_RT_GROUPCURSOR=12,
  65. HX_RT_GROUPICON=14,
  66. HX_RT_VERSION=16
  67. };
  68. //
  69. // CLASSES
  70. //
  71. // Forward declarations of some interfaces defined or used here-in.
  72. typedef _INTERFACE IUnknown IUnknown;
  73. typedef _INTERFACE  IHXXResource IHXXResource;
  74. /****************************************************************************
  75.  * 
  76.  *  Function:
  77.  * 
  78.  * HXCreateInstance
  79.  * 
  80.  *  Purpose:
  81.  * 
  82.  * Create the instance of the resource manager.
  83.  */
  84. STDAPI HXCreateInstance(IUnknown** /*OUT*/ ppManager);
  85. #undef     INTERFACE
  86. #define     INTERFACE IHXXResFile;
  87. DEFINE_GUID(IID_IHXXResFile,  0x00000A00, 0xb4c8, 0x11d0, 0x99, 0x95, 0x0, 0xa0, 0x24, 0x8d, 0xa5, 0xf0);
  88. DECLARE_INTERFACE_(IHXXResFile, IUnknown)
  89. {
  90. // IUnknown methods...
  91. STDMETHOD(QueryInterface) (THIS_ REFIID riid, void **ppvObj) PURE;
  92. STDMETHOD_(ULONG32, AddRef) (THIS) PURE;
  93. STDMETHOD_(ULONG32, Release) (THIS) PURE;
  94. //
  95. // IHXXRes methods
  96. //
  97. STDMETHOD_(HX_RESULT,Open)  (THIS_ const char* path) PURE;
  98. STDMETHOD_(HX_RESULT,Close) (THIS) PURE;
  99. STDMETHOD_(HX_RESULT,SetLanguage)  (THIS_ ULONG32 id) PURE;
  100. STDMETHOD_(HX_RESULT,GetResource) (THIS_ ULONG32 type, 
  101. ULONG32 ID, 
  102. IHXXResource** resource) PURE;
  103. //
  104. // Special High level functions for checking if this is a resource.
  105. //
  106. STDMETHOD_(IHXXResource*,GetString) (THIS_ ULONG32 ID) PURE;
  107. STDMETHOD_(IHXXResource*,GetBitmap) (THIS_ ULONG32 ID) PURE;
  108. STDMETHOD_(IHXXResource*,GetDialog) (THIS_ ULONG32 ID) PURE;
  109. STDMETHOD_(IHXXResource*,GetVersionInfo) (THIS) PURE;
  110. //
  111. //      Iteration functions
  112. //
  113. STDMETHOD(GetFirstResourceLanguage) (REF(ULONG32)) PURE;
  114. STDMETHOD(GetNextResourceLanguage) (REF(ULONG32)) PURE;
  115. // Short name support
  116. STDMETHOD_(BOOL, IncludesShortName) (THIS_ const char* pShortName) PURE;
  117. STDMETHOD_(HX_RESULT,FlushCache)  (THIS) PURE;
  118. STDMETHOD_(HX_RESULT,SetCacheLimit) (THIS_ ULONG32 MaxCachedData) PURE;
  119.      // if the resource file actually resides as a resource, pass in the file ref of the resource fork.
  120.      // Macintosh only
  121. STDMETHOD(UseResourceFile) (THIS_
  122.   INT16   /*IN*/  nResourceFileRef) PURE;
  123. };
  124. #undef     INTERFACE
  125. #define     INTERFACE IHXXResource;
  126. DEFINE_GUID(IID_IHXXResource,  0x00000A01, 0xb4c8, 0x11d0, 0x99, 0x95, 0x0, 0xa0, 0x24, 0x8d, 0xa5, 0xf0);
  127. DECLARE_INTERFACE_(IHXXResource, IUnknown)
  128. {
  129. public:
  130. STDMETHOD(QueryInterface) (THIS_ REFIID riid, void **ppvObj) PURE;
  131. STDMETHOD_(ULONG32, AddRef) (THIS) PURE;
  132. STDMETHOD_(ULONG32, Release) (THIS) PURE;
  133. //
  134. // Functions for determining information from a loaded resource.
  135. //
  136. STDMETHOD_(ULONG32,ID) (THIS) PURE;
  137. //
  138. // Returns the type of the resource.
  139. //
  140. STDMETHOD_(ULONG32,Type) (THIS) PURE; 
  141. //
  142. // Returns the length of the resource data.
  143. //
  144. STDMETHOD_(ULONG32,Length) (THIS) PURE;
  145. //
  146. // Return the Language of the resource.
  147. //
  148. STDMETHOD_(ULONG32,Language) (THIS) PURE;
  149. //
  150. // Returns an interface to the file that this resource was loaded from.
  151. //
  152. STDMETHOD_(IHXXResFile*,ResFile) (THIS) PURE;
  153. //
  154. // Data accessors
  155. //
  156. STDMETHOD_(void* ,ResourceData) (THIS) PURE;
  157. };
  158. #endif // _IHXXRES_H_