forked from NytroRST/ShellcodeCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCallFunctionsStates.h
More file actions
27 lines (19 loc) · 595 Bytes
/
CallFunctionsStates.h
File metadata and controls
27 lines (19 loc) · 595 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
#ifndef CALLFUNCTIONSSTATES_H
#define CALLFUNCTIONSSTATES_H
#include "DeclaredStates.h"
#include "FunctionCalls.h"
// Declared functions states
class CallFunctionsStates
{
public:
// Call functions states
static DeclaredStates::State CF_FunctionCall;
static DeclaredStates::State CF_GetFirstParam;
static DeclaredStates::State CF_ReadStrInQuotes;
static DeclaredStates::State CF_GotStrInQuotes;
static DeclaredStates::State CF_GetNextArg;
static DeclaredStates::State CF_GetNumber;
static DeclaredStates::State CF_GotAllArgs;
static void CreateCallFunctionsStates();
};
#endif