summaryrefslogtreecommitdiffstats
path: root/K2LABI/ABI/ResultParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'K2LABI/ABI/ResultParser.h')
-rw-r--r--K2LABI/ABI/ResultParser.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/K2LABI/ABI/ResultParser.h b/K2LABI/ABI/ResultParser.h
new file mode 100644
index 0000000..8f2b049
--- /dev/null
+++ b/K2LABI/ABI/ResultParser.h
@@ -0,0 +1,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);
+};