blob: 8f2b049ee1a722c287161fda86126ada04626c0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
typedef struct ParamDef_t
{
void* m_pData;
size_t m_nLength;
} ParamDef;
class CResultParser
{
public:
static BYTE* ToByteArray(ParamDef* pParams, int nParamCount, int& nResultLength);
};
|