-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProperties.ahk
28 lines (24 loc) · 1.03 KB
/
Properties.ahk
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
class Properties
{
static INSTANCE_POINTER := "internal://type-instance"
static INSTANCE_ENUMERATOR := "internal://instance-enumerator"
static TYPE_TYPEINFO := "internal://typeinfo-instance"
static TYPE_NAME := "internal://typeinfo-name"
static TYPE_GUID := "internal://type-guid"
static TYPE_RECORDINFO := "internal://rcinfo-instance"
static TYPE_ENUMERATOR := "internal://enumerator-object"
static TYPE_DEFAULTINTERFACE := "internal://default-iid"
static TYPE_TYPELIBOBJ := "internal://typelib-object"
static ARRAY_ELEMCOUNT := "internal://instance-count"
static ARRAY_MEMBUFFER := "internal://memory-buffer"
static ARRAY_ELEMTYPEOBJ := "internal://type-obj"
static ARRAY_ELEMSIZE := "internal://instance-size"
static ARRAY_INSTANCEOBJ := "internal://instance-array"
static LIB_TYPELIB := "internal://typelib-instance"
static LIB_NAME := "internal://typelib-name"
static LIB_GUID := "internal://typelib-guid"
IsInternalProperty(property)
{
return RegExMatch(property, "^internal://")
}
}