forked from cheat-engine/cheat-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPIhooktemplatesettingsfrm.lfm
174 lines (174 loc) · 4.21 KB
/
APIhooktemplatesettingsfrm.lfm
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
object frmAPIhookTemplateSettings: TfrmAPIhookTemplateSettings
Left = 759
Height = 187
Top = 287
Width = 334
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Api hook template'
ClientHeight = 187
ClientWidth = 334
OnCreate = FormCreate
OnShow = FormShow
PopupMode = pmAuto
Position = poScreenCenter
LCLVersion = '1.6.0.4'
object Label1: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
Left = 8
Height = 15
Top = 0
Width = 107
BorderSpacing.Left = 8
Caption = 'Original api address:'
ParentColor = False
end
object Label2: TLabel
AnchorSideLeft.Control = Edit1
AnchorSideTop.Control = Edit1
AnchorSideTop.Side = asrBottom
Left = 8
Height = 15
Top = 38
Width = 89
Caption = 'New api address:'
ParentColor = False
end
object Label3: TLabel
AnchorSideLeft.Control = Label1
AnchorSideTop.Control = Edit2
AnchorSideTop.Side = asrBottom
Left = 8
Height = 15
Top = 80
Width = 251
BorderSpacing.Top = 4
BorderSpacing.Right = 4
Caption = 'Address where to store the new original api call:'
ParentColor = False
end
object Label4: TLabel
AnchorSideLeft.Control = Label1
AnchorSideTop.Control = Label3
AnchorSideTop.Side = asrBottom
Left = 8
Height = 15
Top = 95
Width = 275
BorderSpacing.Right = 4
Caption = '(optional, in case your dll uses a variable for the call)'
ParentColor = False
end
object Label6: TLabel
Left = 136
Height = 1
Top = 16
Width = 1
ParentColor = False
end
object Label5: TLabel
AnchorSideTop.Control = Button1
AnchorSideTop.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 8
Height = 15
Top = 163
Width = 277
BorderSpacing.Top = 2
BorderSpacing.Right = 4
BorderSpacing.Bottom = 2
Caption = 'Note: The addresses can also be exportnames of dll''s'
ParentColor = False
WordWrap = True
end
object Edit1: TEdit
AnchorSideLeft.Control = Label1
AnchorSideTop.Control = Label1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 8
Height = 23
Top = 15
Width = 318
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Right = 8
TabOrder = 0
end
object Edit2: TEdit
AnchorSideLeft.Control = Label2
AnchorSideTop.Control = Label2
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 8
Height = 23
Top = 53
Width = 318
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Right = 8
TabOrder = 1
end
object Edit3: TEdit
AnchorSideLeft.Control = Label4
AnchorSideTop.Control = Label4
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Edit1
AnchorSideRight.Side = asrBottom
Left = 8
Height = 23
Top = 110
Width = 318
Anchors = [akTop, akLeft, akRight]
TabOrder = 2
end
object Button1: TButton
AnchorSideTop.Control = Edit3
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Panel1
Left = 87
Height = 25
Top = 136
Width = 75
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 3
Caption = 'OK'
Constraints.MinWidth = 75
Default = True
ModalResult = 1
TabOrder = 3
end
object Button2: TButton
AnchorSideLeft.Control = Panel1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Edit3
AnchorSideTop.Side = asrBottom
Left = 172
Height = 25
Top = 136
Width = 75
AutoSize = True
BorderSpacing.Top = 3
Cancel = True
Caption = 'Cancel'
Constraints.MinWidth = 75
ModalResult = 2
TabOrder = 4
end
object Panel1: TPanel
AnchorSideLeft.Control = Owner
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = Edit3
AnchorSideTop.Side = asrBottom
Left = 162
Height = 11
Top = 133
Width = 10
BevelOuter = bvNone
TabOrder = 5
end
end