-
Notifications
You must be signed in to change notification settings - Fork 1
/
Common.h
32 lines (26 loc) · 802 Bytes
/
Common.h
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
// Include guard
#ifndef COMMON_H
#define COMMON_H
// Suppress the deprecated warnings for VC2005
#define _CRT_SECURE_NO_WARNINGS
// General includes
#include "TemplateInc.h"
// Specific to this extension
#include "Resource.h"
#include "FlagsPrefs.h"
#include "Information.h"
#include "Data.h"
// rTemplate include
#include "rTemplate.h"
// Globals and prototypes
extern HINSTANCE hInstLib;
extern short * conditionsInfos;
extern short * actionsInfos;
extern short * expressionsInfos;
extern long (WINAPI ** ConditionJumps)(LPRDATA rdPtr, long param1, long param2);
extern short (WINAPI ** ActionJumps)(LPRDATA rdPtr, long param1, long param2);
extern long (WINAPI ** ExpressionJumps)(LPRDATA rdPtr, long param);
extern PropData Properties[];
extern WORD DebugTree[];
// End include guard
#endif