-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.h
More file actions
39 lines (33 loc) · 948 Bytes
/
Data.h
File metadata and controls
39 lines (33 loc) · 948 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
31
32
33
34
35
36
37
38
39
class rRundata;
typedef rRundata * LPRRDATA;
// --------------------------------
// RUNNING OBJECT DATA STRUCTURE
// --------------------------------
// If you want to store anything between actions/conditions/expressions
// you should store it here
typedef struct tagRDATA
{
#include "MagicRDATA.h"
int FValue; //Last fixed value
tchar * LastError;
vector<int> FixedVector;
tagRDATA() : FValue(0), LastError(_T("No error.")) //Constructor
{
//vars initialized above in the initializer list
}
//functions
~tagRDATA(){} //Destructor
} RUNDATA;
typedef RUNDATA * LPRDATA;
// --------------------------------
// EDITION OF OBJECT DATA STRUCTURE
// --------------------------------
// These values let you store data in your extension that will be saved in the MFA
// You should use these with properties
typedef struct tagEDATA_V1
{
extHeader eHeader;
// short swidth;
// short sheight;
} EDITDATA;
typedef EDITDATA * LPEDATA;