forked from carlospolop/ShellcodeCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeclaredStates.cpp
More file actions
30 lines (21 loc) · 722 Bytes
/
DeclaredStates.cpp
File metadata and controls
30 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "DeclaredStates.h"
// Process data for FUNCTION STRING PARAMETER
void DeclaredStates::ProcessStateData_FunctionCallStringArg(string p_sString)
{
FunctionCalls::AddFunctionCallStringParameter(p_sString);
}
// Process data for FUNCTION INT PARAMETER
void DeclaredStates::ProcessStateData_FunctionCallIntArg(string p_sString)
{
FunctionCalls::AddFunctionCallIntParameter(p_sString);
}
// Process data for FUNCTION NAME
void DeclaredStates::ProcessStateData_FunctionName(string p_sString)
{
DeclaredFunctions::AddFunctionName(p_sString);
}
// Process data for FUNCTION DLL NAME
void DeclaredStates::ProcessStateData_FunctionDLLName(string p_sString)
{
DeclaredFunctions::AddFunctionDLLName(p_sString);
}