hxloader.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. #if !defined( _HXLOADER_H )
  36. #define _HXLOADER_H
  37. #if !defined( _WIN32 )
  38. #if !defined( _HXTYPES )
  39. #include "hxtypes.h"
  40. #endif // !defined( _HXTYPES )
  41. /*
  42.  * Private extensions to HXTYPES
  43.  * These could be included in HXTYPES, but I'm not sure how the rest of the
  44.  * team likes them.
  45.  */
  46. typedef UCHAR *PUCHAR;
  47. typedef UINT16 *PUINT16;
  48. typedef ULONG32 *PULONG32;
  49. typedef const char*  PCSTR;
  50. extern "C"
  51. {
  52. /*
  53.  * PARAMSIG - Param signatures are formed by a string of tokens from the
  54.  * enum below.  The first token in the string corresponds to the function 
  55.  * return value.  All the rest of the tokens correspond directly to the
  56.  * function parameters as listed left to right in the function declaration.
  57.  *
  58.  * The parameter signature is terminated by a 'END_PARAM' token.
  59.  *
  60.  * Note that the for now we assume the PASCAL calling convention as it makes
  61.  * things simplest.  We can't support the generality of the 'C' calling
  62.  * convention anyway (variable number of args).
  63.  *
  64.  * The simplest function: void Foo( void );
  65.  * Would be defined by: { VOID_RET, END_PARAM };
  66.  *
  67.  * Another example: UINT16 Bar( UINT16, ULONG32, char * );
  68.  * Would be defined by: { UINT16_PARAM, UINT16_PARAM, ULONG32_PARAM, FPTR_PARAM }
  69.  *
  70.  * Note that these token streams are read at runtime, and assembled into the correct
  71.  * assembler code to do the paramter conversions.
  72.  *
  73.  */
  74.  
  75. typedef enum paramSIG
  76. {
  77. END_PARAM = 0, // Last or NULL parameter
  78. CHAR8_PARAM, // Signed char param (sign extended)
  79. UCHAR8_PARAM, // Unsigned char param (clear upper bits)
  80. INT16_PARAM, // Signed 16 bit int (sign extended)
  81. UINT16_PARAM, // Unsigned 16 bit int (clear upper bits)
  82. LONG32_PARAM, // Signed 32 bit int (direct copy)
  83. ULONG32_PARAM, // Unsigned 32 bit int (direct copy)
  84. FLOAT_PARAM, // IEEE single prec. float (32 bit - ???)
  85. DOUBLE_PARAM, // IEEE double prec. float (64 bit - ???)
  86. FPTR_PARAM, // 16:16 far pointer (Mapped to correct address space)
  87. VOID_RET, // Void return type
  88. PARAMSIG_BOGUSVAL // Never use this guy
  89. } PARAMSIG, *PPARAMSIG;
  90. // disable warning on: zero-sized array in struct/union
  91. #pragma warning( disable : 4200 )
  92. typedef struct thunkSIG
  93. {
  94. char *pcProcName; // Function name
  95. PARAMSIG atParams[]; // This is a null terminated array of PARAMSIGs.
  96. } THUNKSIG;
  97. // Restore warnings
  98. #pragma warning( default : 4200 )
  99. /*
  100.  * Returns a ULONG32 that is either an hModule, or
  101.  * a pointer to a CPEModule object that encapsulates
  102.  * the loaded module.
  103.  */
  104. ULONG32 __export FAR PASCAL RALoadLibrary( LPCSTR lpLibName, THUNKSIG **pSignatures, ULONG32 dwFlags );
  105. /*
  106.  * Takes a dwWord that is either an hModule,
  107.  * or a pointer to a CPEModule object that encapsulates
  108.  * the loaded module.
  109.  */
  110. BOOL __export FAR PASCAL RAFreeLibrary( ULONG32 dwhLib );
  111. /*
  112.  * Takes a dwWord that is either an hModule,
  113.  * or a  pointer to a CPEModule object that encapsulates
  114.  * the loaded module.
  115.  */
  116. FARPROC __export FAR PASCAL RAGetProcAddress( ULONG32 dwhLib, LPCSTR lpProcName );
  117. /*
  118.  * Takes a dwWord that is either an hModule,
  119.  * or a pointer to a CPEModule object that encapsulates
  120.  * the loaded module.
  121.  */
  122. ULONG32 __export FAR PASCAL RAGetModuleFileName( ULONG32 dwhModule, LPSTR lpFilenameBuff, ULONG32 dwBuffSize );
  123. /*
  124.  * Takes the name of an executable (16 or 32 bit) and returns a block of memory containing
  125.  * the file version info.  This works for 16 or 32 bit executables.
  126.  *
  127.  * NOTE: The caller will need to free the block with RAVerDeleteFileVersionInfo().
  128.  */
  129. LPCSTR __export FAR PASCAL RAVerLockFileVersionInfo( LPCSTR lpszFileName, ULONG32 *lpSizeOut, ULONG32 dwFlags );
  130. /*
  131.  * Takes an extracted file resource and returns selected information from it.
  132.  * This operates w/ the same semantics as ::VerQueryValue().
  133.  */
  134. BOOL __export FAR PASCAL RAVerQueryValue( LPCSTR lpvBlock, LPCSTR lpszSubBlock, void FAR* FAR* lplpBuffer, ULONG32 *lpdwCount );
  135. /*
  136.  * Frees version info for a 16 or 32 bit stamped executable, that was extracted with
  137.  * RAVerLockFileVersionInfo().
  138.  *
  139.  * NOTE: This method is intended to be used with RAVerLockFileVersionInfo().
  140.  */
  141. void __export FAR PASCAL RAVerDeleteFileVersionInfo( LPCSTR lpvVersionInfo );
  142. }
  143. #else // This is the 32 bit else clause for a #if !defined( _WIN32 ) prepro directive
  144. // The above functions don't exist for 32 bit.  So we just call the original
  145. // WinAPI functions when building 32 bit
  146. #define RALoadLibrary( lpLibName, pSignatures, dwFlags ) 
  147. ((ULONG32)LoadLibrary( lpLibName ))
  148. #define RAFreeLibrary( dwhLibInst ) 
  149. (FreeLibrary( (HINSTANCE)dwhLibInst ))
  150. #define RAGetProcAddress( dwhDecoder, lpstrFunctionName )
  151. ((FARPROC)GetProcAddress( (HINSTANCE)dwhDecoder, lpstrFunctionName ))
  152. #define RAVerQueryValue( lpvBlock, lpszSubBlock, lplpBuffer, lpdwCount ) 
  153. (VerQueryValue((const LPVOID)lpvBlock, lpszSubBlock, lplpBuffer, (UINT FAR *)lpdwCount ))
  154. #endif // #if !defined( _WIN32 )
  155. #endif // #if !defined( _HXLOADER_H )