mirror of
https://github.com/silverf0x/RpcView
synced 2026-06-08 17:26:38 +00:00
36 lines
957 B
C++
36 lines
957 B
C++
#ifndef _INTERNAL_COMPLEX_TYPES_STRINGS_H_
|
|
#define _INTERNAL_COMPLEX_TYPES_STRINGS_H_
|
|
|
|
#include <sstream>
|
|
#include "internalRpcDecompTypeDefs.h"
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
BOOL __fastcall processConformantString(
|
|
_In_ VOID* pContext,
|
|
_In_ RVA_T pType,
|
|
_In_ const FC_TYPE fcType,
|
|
_Inout_ ParamDesc& ParamDesc,
|
|
_Inout_ std::ostringstream& oss);
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
BOOL __fastcall processNonConformantString(
|
|
_In_ VOID* pContext,
|
|
_In_ RVA_T pType,
|
|
_In_ const FC_TYPE fcType,
|
|
_Inout_ ParamDesc& ParamDesc,
|
|
_Inout_ std::ostringstream& oss);
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
BOOL __fastcall processStructureString(
|
|
_In_ VOID* pContext,
|
|
_In_ RVA_T pType,
|
|
_In_ const FC_TYPE fcType,
|
|
_Inout_ ParamDesc& ParamDesc,
|
|
_Inout_ std::ostringstream& oss);
|
|
|
|
|
|
|
|
#endif//_INTERNAL_COMPLEX_TYPES_STRINGS_H_
|