-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.h
More file actions
32 lines (24 loc) · 710 Bytes
/
Data.h
File metadata and controls
32 lines (24 loc) · 710 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
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"
} 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;