-
Notifications
You must be signed in to change notification settings - Fork 0
/
Information.h
57 lines (43 loc) · 1.66 KB
/
Information.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// rSDK demonstration release - www.aquadasoft.com
// Jamie McLaughlin and Jean Villy Edberg
// Send any queries or bug reports to [email protected]
// --------------------
// Object information
// --------------------
// Basic object details
#define ObjectName "Value-Add Object"
#define ObjectAuthor "Gareth Ben Martin of Dynamic Arcade"
#define ObjectCopyright "Copyright © 2008-2010 Dynamic Arcade"
#define ObjectComment "Unlimited Alterable Values for all objects"
#define ObjectURL "http://www.dynamicarcade.co.uk"
#define ObjectHelp "Help\\ValueAdd\\ValueAdd.html"
// If you register your object with Clickteam, change this to the ID you were given
#define ObjectRegID REGID_PRIVATE
// Change N,O,N,E to 4 unique characters (MMF currently still uses this to keep track)
#define IDENTIFIER MAKEID(D,A,V,A)
// Version 1.09.0
#define VERSION 190
#define SAVEDATAVERSION_MINSUPPORTED 1
#define SAVEDATAVERSION_STRINGSADDED 2
#define SAVEDATAVERSION 2
// --------------------
// Version information
// --------------------
// PRODUCT_VERSION_TGF or PRODUCT_VERSION_DEVELOPER
#define ForVersion PRODUCT_VERSION_STANDARD
// Set this to the latest MMF build out when you build the object
#define MinimumBuild 244
// --------------------
// Beta information
// --------------------
// #define BETA
// #define POPUP_ON_DROP
// #define POPUP_ON_EXE
// #define POPUP_ON_BUILD
// #define POPUP_MESSAGE "This is a beta extension- use with caution!"
// --------------------
// Handling priority
// --------------------
// If this extension will handle windows messages, specify the priority
// of the handling procedure, 0 = low and 255 = very high
#define WINDOWPROC_PRIORITY 100