virtualbox-com 0.9.8 → 0.9.9
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -0
- data/lib/virtualbox/com/model/4.2-generated.rb +2721 -0
- data/lib/virtualbox/com/version.rb +1 -1
- data/lib/virtualbox/com/xpcomc-ffi/sig.rb +4 -4
- metadata +3 -2
data/README.md
CHANGED
@@ -11,6 +11,10 @@ unmaintained [virtualbox](https://github.com/mitchellh/virtualbox) gem
|
|
11
11
|
by [Mitchell Hashimoto](https://github.com/mitchellh) from which
|
12
12
|
part of this code belongs.
|
13
13
|
|
14
|
+
If you need a high level API take a look at
|
15
|
+
[ruby-virtualbox](https://github.com/sdalu/ruby-virtualbox) which
|
16
|
+
rely on this gem but provide a more rubyish interface.
|
17
|
+
|
14
18
|
|
15
19
|
## Installation and Requirements
|
16
20
|
|
@@ -0,0 +1,2721 @@
|
|
1
|
+
#
|
2
|
+
# This file has been automatically generated from the VirtualBox.xidl
|
3
|
+
#
|
4
|
+
|
5
|
+
module VirtualBox
|
6
|
+
module COM
|
7
|
+
|
8
|
+
MODEL_VERSION = "4.2"
|
9
|
+
|
10
|
+
module Model
|
11
|
+
|
12
|
+
class NSISupports < AbstractInterface
|
13
|
+
iid "00000000-0000-0000-c000-000000000046"
|
14
|
+
function :QueryInterface, :pointer, [ :pointer ], :hide => true
|
15
|
+
function :AddRef, nil, [], :hide => true
|
16
|
+
function :Release, nil, [], :hide => true
|
17
|
+
end
|
18
|
+
|
19
|
+
class SettingsVersion < AbstractEnum
|
20
|
+
iid "52bd6f5f-1adb-4493-975d-581a9c4b803f"
|
21
|
+
map({
|
22
|
+
:null => 0,
|
23
|
+
:v1_0 => 1,
|
24
|
+
:v1_1 => 2,
|
25
|
+
:v1_2 => 3,
|
26
|
+
:v1_3pre => 4,
|
27
|
+
:v1_3 => 5,
|
28
|
+
:v1_4 => 6,
|
29
|
+
:v1_5 => 7,
|
30
|
+
:v1_6 => 8,
|
31
|
+
:v1_7 => 9,
|
32
|
+
:v1_8 => 10,
|
33
|
+
:v1_9 => 11,
|
34
|
+
:v1_10 => 12,
|
35
|
+
:v1_11 => 13,
|
36
|
+
:v1_12 => 14,
|
37
|
+
:v1_13 => 15,
|
38
|
+
:future => 99999,
|
39
|
+
})
|
40
|
+
setup
|
41
|
+
end
|
42
|
+
|
43
|
+
class AccessMode < AbstractEnum
|
44
|
+
iid "1da0007c-ddf7-4be8-bcac-d84a1558785f"
|
45
|
+
map({
|
46
|
+
:read_only => 1,
|
47
|
+
:read_write => 2,
|
48
|
+
})
|
49
|
+
setup
|
50
|
+
end
|
51
|
+
|
52
|
+
class MachineState < AbstractEnum
|
53
|
+
iid "ec6c6a9e-113d-4ff4-b44f-0b69f21c97fe"
|
54
|
+
map({
|
55
|
+
:null => 0,
|
56
|
+
:powered_off => 1,
|
57
|
+
:saved => 2,
|
58
|
+
:teleported => 3,
|
59
|
+
:aborted => 4,
|
60
|
+
:running => 5,
|
61
|
+
:paused => 6,
|
62
|
+
:stuck => 7,
|
63
|
+
:teleporting => 8,
|
64
|
+
:live_snapshotting => 9,
|
65
|
+
:starting => 10,
|
66
|
+
:stopping => 11,
|
67
|
+
:saving => 12,
|
68
|
+
:restoring => 13,
|
69
|
+
:teleporting_paused_vm => 14,
|
70
|
+
:teleporting_in => 15,
|
71
|
+
:fault_tolerant_syncing => 16,
|
72
|
+
:deleting_snapshot_online => 17,
|
73
|
+
:deleting_snapshot_paused => 18,
|
74
|
+
:restoring_snapshot => 19,
|
75
|
+
:deleting_snapshot => 20,
|
76
|
+
:setting_up => 21,
|
77
|
+
:first_online => 5,
|
78
|
+
:last_online => 18,
|
79
|
+
:first_transient => 8,
|
80
|
+
:last_transient => 21,
|
81
|
+
})
|
82
|
+
setup
|
83
|
+
end
|
84
|
+
|
85
|
+
class SessionState < AbstractEnum
|
86
|
+
iid "cf2700c0-ea4b-47ae-9725-7810114b94d8"
|
87
|
+
map({
|
88
|
+
:null => 0,
|
89
|
+
:unlocked => 1,
|
90
|
+
:locked => 2,
|
91
|
+
:spawning => 3,
|
92
|
+
:unlocking => 4,
|
93
|
+
})
|
94
|
+
setup
|
95
|
+
end
|
96
|
+
|
97
|
+
class CPUPropertyType < AbstractEnum
|
98
|
+
iid "24d356a6-2f45-4abd-b977-1cbe9c4701f5"
|
99
|
+
map({
|
100
|
+
:null => 0,
|
101
|
+
:pae => 1,
|
102
|
+
:synthetic => 2,
|
103
|
+
})
|
104
|
+
setup
|
105
|
+
end
|
106
|
+
|
107
|
+
class HWVirtExPropertyType < AbstractEnum
|
108
|
+
iid "ce81dfdd-d2b8-4a90-bbea-40ee8b7ffcee"
|
109
|
+
map({
|
110
|
+
:null => 0,
|
111
|
+
:enabled => 1,
|
112
|
+
:exclusive => 2,
|
113
|
+
:vpid => 3,
|
114
|
+
:nested_paging => 4,
|
115
|
+
:large_pages => 5,
|
116
|
+
:force => 6,
|
117
|
+
})
|
118
|
+
setup
|
119
|
+
end
|
120
|
+
|
121
|
+
class FaultToleranceState < AbstractEnum
|
122
|
+
iid "5124f7ec-6b67-493c-9dee-ee45a44114e1"
|
123
|
+
map({
|
124
|
+
:inactive => 1,
|
125
|
+
:master => 2,
|
126
|
+
:standby => 3,
|
127
|
+
})
|
128
|
+
setup
|
129
|
+
end
|
130
|
+
|
131
|
+
class LockType < AbstractEnum
|
132
|
+
iid "168a6a8e-12fd-4878-a1f9-38a750a56089"
|
133
|
+
map({
|
134
|
+
:write => 2,
|
135
|
+
:shared => 1,
|
136
|
+
:vm => 3,
|
137
|
+
})
|
138
|
+
setup
|
139
|
+
end
|
140
|
+
|
141
|
+
class SessionType < AbstractEnum
|
142
|
+
iid "A13C02CB-0C2C-421E-8317-AC0E8AAA153A"
|
143
|
+
map({
|
144
|
+
:null => 0,
|
145
|
+
:write_lock => 1,
|
146
|
+
:remote => 2,
|
147
|
+
:shared => 3,
|
148
|
+
})
|
149
|
+
setup
|
150
|
+
end
|
151
|
+
|
152
|
+
class DeviceType < AbstractEnum
|
153
|
+
iid "6d9420f7-0b56-4636-99f9-7346f1b01e57"
|
154
|
+
map({
|
155
|
+
:null => 0,
|
156
|
+
:floppy => 1,
|
157
|
+
:dvd => 2,
|
158
|
+
:hard_disk => 3,
|
159
|
+
:network => 4,
|
160
|
+
:usb => 5,
|
161
|
+
:shared_folder => 6,
|
162
|
+
})
|
163
|
+
setup
|
164
|
+
end
|
165
|
+
|
166
|
+
class DeviceActivity < AbstractEnum
|
167
|
+
iid "6FC8AEAA-130A-4eb5-8954-3F921422D707"
|
168
|
+
map({
|
169
|
+
:null => 0,
|
170
|
+
:idle => 1,
|
171
|
+
:reading => 2,
|
172
|
+
:writing => 3,
|
173
|
+
})
|
174
|
+
setup
|
175
|
+
end
|
176
|
+
|
177
|
+
class ClipboardMode < AbstractEnum
|
178
|
+
iid "33364716-4008-4701-8f14-be0fa3d62950"
|
179
|
+
map({
|
180
|
+
:disabled => 0,
|
181
|
+
:host_to_guest => 1,
|
182
|
+
:guest_to_host => 2,
|
183
|
+
:bidirectional => 3,
|
184
|
+
})
|
185
|
+
setup
|
186
|
+
end
|
187
|
+
|
188
|
+
class DragAndDropMode < AbstractEnum
|
189
|
+
iid "b618ea0e-b6fb-4f8d-97f7-5e237e49b547"
|
190
|
+
map({
|
191
|
+
:disabled => 0,
|
192
|
+
:host_to_guest => 1,
|
193
|
+
:guest_to_host => 2,
|
194
|
+
:bidirectional => 3,
|
195
|
+
})
|
196
|
+
setup
|
197
|
+
end
|
198
|
+
|
199
|
+
class Scope < AbstractEnum
|
200
|
+
iid "7c91096e-499e-4eca-9f9b-9001438d7855"
|
201
|
+
map({
|
202
|
+
:global => 0,
|
203
|
+
:machine => 1,
|
204
|
+
:session => 2,
|
205
|
+
})
|
206
|
+
setup
|
207
|
+
end
|
208
|
+
|
209
|
+
class BIOSBootMenuMode < AbstractEnum
|
210
|
+
iid "ae4fb9f7-29d2-45b4-b2c7-d579603135d5"
|
211
|
+
map({
|
212
|
+
:disabled => 0,
|
213
|
+
:menu_only => 1,
|
214
|
+
:message_and_menu => 2,
|
215
|
+
})
|
216
|
+
setup
|
217
|
+
end
|
218
|
+
|
219
|
+
class ProcessorFeature < AbstractEnum
|
220
|
+
iid "64c38e6b-8bcf-45ad-ac03-9b406287c5bf"
|
221
|
+
map({
|
222
|
+
:hw_virt_ex => 0,
|
223
|
+
:pae => 1,
|
224
|
+
:long_mode => 2,
|
225
|
+
:nested_paging => 3,
|
226
|
+
})
|
227
|
+
setup
|
228
|
+
end
|
229
|
+
|
230
|
+
class FirmwareType < AbstractEnum
|
231
|
+
iid "b903f264-c230-483e-ac74-2b37ce60d371"
|
232
|
+
map({
|
233
|
+
:bios => 1,
|
234
|
+
:efi => 2,
|
235
|
+
:efi32 => 3,
|
236
|
+
:efi64 => 4,
|
237
|
+
:efidual => 5,
|
238
|
+
})
|
239
|
+
setup
|
240
|
+
end
|
241
|
+
|
242
|
+
class PointingHIDType < AbstractEnum
|
243
|
+
iid "e44b2f7b-72ba-44fb-9e53-2186014f0d17"
|
244
|
+
map({
|
245
|
+
:none => 1,
|
246
|
+
:ps2_mouse => 2,
|
247
|
+
:usb_mouse => 3,
|
248
|
+
:usb_tablet => 4,
|
249
|
+
:combo_mouse => 5,
|
250
|
+
})
|
251
|
+
setup
|
252
|
+
end
|
253
|
+
|
254
|
+
class KeyboardHIDType < AbstractEnum
|
255
|
+
iid "383e43d7-5c7c-4ec8-9cb8-eda1bccd6699"
|
256
|
+
map({
|
257
|
+
:none => 1,
|
258
|
+
:ps2_keyboard => 2,
|
259
|
+
:usb_keyboard => 3,
|
260
|
+
:combo_keyboard => 4,
|
261
|
+
})
|
262
|
+
setup
|
263
|
+
end
|
264
|
+
|
265
|
+
class VFSType < AbstractEnum
|
266
|
+
iid "813999ba-b949-48a8-9230-aadc6285e2f2"
|
267
|
+
map({
|
268
|
+
:file => 1,
|
269
|
+
:cloud => 2,
|
270
|
+
:s3 => 3,
|
271
|
+
:web_dav => 4,
|
272
|
+
})
|
273
|
+
setup
|
274
|
+
end
|
275
|
+
|
276
|
+
class VFSFileType < AbstractEnum
|
277
|
+
iid "714333cd-44e2-415f-a245-d378fa9b1242"
|
278
|
+
map({
|
279
|
+
:unknown => 1,
|
280
|
+
:fifo => 2,
|
281
|
+
:dev_char => 3,
|
282
|
+
:directory => 4,
|
283
|
+
:dev_block => 5,
|
284
|
+
:file => 6,
|
285
|
+
:sym_link => 7,
|
286
|
+
:socket => 8,
|
287
|
+
:white_out => 9,
|
288
|
+
})
|
289
|
+
setup
|
290
|
+
end
|
291
|
+
|
292
|
+
class ImportOptions < AbstractEnum
|
293
|
+
iid "0a981523-3b20-4004-8ee3-dfd322202ace"
|
294
|
+
map({
|
295
|
+
:keep_all_macs => 1,
|
296
|
+
:keep_nat_macs => 2,
|
297
|
+
})
|
298
|
+
setup
|
299
|
+
end
|
300
|
+
|
301
|
+
class VirtualSystemDescriptionType < AbstractEnum
|
302
|
+
iid "303c0900-a746-4612-8c67-79003e91f459"
|
303
|
+
map({
|
304
|
+
:ignore => 1,
|
305
|
+
:os => 2,
|
306
|
+
:name => 3,
|
307
|
+
:product => 4,
|
308
|
+
:vendor => 5,
|
309
|
+
:version => 6,
|
310
|
+
:product_url => 7,
|
311
|
+
:vendor_url => 8,
|
312
|
+
:description => 9,
|
313
|
+
:license => 10,
|
314
|
+
:miscellaneous => 11,
|
315
|
+
:cpu => 12,
|
316
|
+
:memory => 13,
|
317
|
+
:hard_disk_controller_ide => 14,
|
318
|
+
:hard_disk_controller_sata => 15,
|
319
|
+
:hard_disk_controller_scsi => 16,
|
320
|
+
:hard_disk_controller_sas => 17,
|
321
|
+
:hard_disk_image => 18,
|
322
|
+
:floppy => 19,
|
323
|
+
:cdrom => 20,
|
324
|
+
:network_adapter => 21,
|
325
|
+
:usb_controller => 22,
|
326
|
+
:sound_card => 23,
|
327
|
+
:settings_file => 24,
|
328
|
+
})
|
329
|
+
setup
|
330
|
+
end
|
331
|
+
|
332
|
+
class VirtualSystemDescriptionValueType < AbstractEnum
|
333
|
+
iid "56d9403f-3425-4118-9919-36f2a9b8c77c"
|
334
|
+
map({
|
335
|
+
:reference => 1,
|
336
|
+
:original => 2,
|
337
|
+
:auto => 3,
|
338
|
+
:extra_config => 4,
|
339
|
+
})
|
340
|
+
setup
|
341
|
+
end
|
342
|
+
|
343
|
+
class CleanupMode < AbstractEnum
|
344
|
+
iid "67897c50-7cca-47a9-83f6-ce8fd8eb5441"
|
345
|
+
map({
|
346
|
+
:unregister_only => 1,
|
347
|
+
:detach_all_return_none => 2,
|
348
|
+
:detach_all_return_hard_disks_only => 3,
|
349
|
+
:full => 4,
|
350
|
+
})
|
351
|
+
setup
|
352
|
+
end
|
353
|
+
|
354
|
+
class CloneMode < AbstractEnum
|
355
|
+
iid "A7A159FE-5096-4B8D-8C3C-D033CB0B35A8"
|
356
|
+
map({
|
357
|
+
:machine_state => 1,
|
358
|
+
:machine_and_child_states => 2,
|
359
|
+
:all_states => 3,
|
360
|
+
})
|
361
|
+
setup
|
362
|
+
end
|
363
|
+
|
364
|
+
class CloneOptions < AbstractEnum
|
365
|
+
iid "22243f8e-96ab-497c-8cf0-f40a566c630b"
|
366
|
+
map({
|
367
|
+
:link => 1,
|
368
|
+
:keep_all_macs => 2,
|
369
|
+
:keep_nat_macs => 3,
|
370
|
+
:keep_disk_names => 4,
|
371
|
+
})
|
372
|
+
setup
|
373
|
+
end
|
374
|
+
|
375
|
+
class AutostopType < AbstractEnum
|
376
|
+
iid "6bb96740-cf34-470d-aab2-2cd48ea2e10e"
|
377
|
+
map({
|
378
|
+
:disabled => 1,
|
379
|
+
:save_state => 2,
|
380
|
+
:power_off => 3,
|
381
|
+
:acpi_shutdown => 4,
|
382
|
+
})
|
383
|
+
setup
|
384
|
+
end
|
385
|
+
|
386
|
+
class HostNetworkInterfaceMediumType < AbstractEnum
|
387
|
+
iid "1aa54aaf-2497-45a2-bfb1-8eb225e93d5b"
|
388
|
+
map({
|
389
|
+
:unknown => 0,
|
390
|
+
:ethernet => 1,
|
391
|
+
:ppp => 2,
|
392
|
+
:slip => 3,
|
393
|
+
})
|
394
|
+
setup
|
395
|
+
end
|
396
|
+
|
397
|
+
class HostNetworkInterfaceStatus < AbstractEnum
|
398
|
+
iid "CC474A69-2710-434B-8D99-C38E5D5A6F41"
|
399
|
+
map({
|
400
|
+
:unknown => 0,
|
401
|
+
:up => 1,
|
402
|
+
:down => 2,
|
403
|
+
})
|
404
|
+
setup
|
405
|
+
end
|
406
|
+
|
407
|
+
class HostNetworkInterfaceType < AbstractEnum
|
408
|
+
iid "67431b00-9946-48a2-bc02-b25c5919f4f3"
|
409
|
+
map({
|
410
|
+
:bridged => 1,
|
411
|
+
:host_only => 2,
|
412
|
+
})
|
413
|
+
setup
|
414
|
+
end
|
415
|
+
|
416
|
+
class AdditionsFacilityType < AbstractEnum
|
417
|
+
iid "98f7f957-89fb-49b6-a3b1-31e3285eb1d8"
|
418
|
+
map({
|
419
|
+
:none => 0,
|
420
|
+
:vbox_guest_driver => 20,
|
421
|
+
:auto_logon => 90,
|
422
|
+
:vbox_service => 100,
|
423
|
+
:vbox_tray_client => 101,
|
424
|
+
:seamless => 1000,
|
425
|
+
:graphics => 1100,
|
426
|
+
:all => 2147483646,
|
427
|
+
})
|
428
|
+
setup
|
429
|
+
end
|
430
|
+
|
431
|
+
class AdditionsFacilityClass < AbstractEnum
|
432
|
+
iid "446451b2-c88d-4e5d-84c9-91bc7f533f5f"
|
433
|
+
map({
|
434
|
+
:none => 0,
|
435
|
+
:driver => 10,
|
436
|
+
:service => 30,
|
437
|
+
:program => 50,
|
438
|
+
:feature => 100,
|
439
|
+
:third_party => 999,
|
440
|
+
:all => 2147483646,
|
441
|
+
})
|
442
|
+
setup
|
443
|
+
end
|
444
|
+
|
445
|
+
class AdditionsFacilityStatus < AbstractEnum
|
446
|
+
iid "ce06f9e1-394e-4fe9-9368-5a88c567dbde"
|
447
|
+
map({
|
448
|
+
:inactive => 0,
|
449
|
+
:paused => 1,
|
450
|
+
:pre_init => 20,
|
451
|
+
:init => 30,
|
452
|
+
:active => 50,
|
453
|
+
:terminating => 100,
|
454
|
+
:terminated => 101,
|
455
|
+
:failed => 800,
|
456
|
+
:unknown => 999,
|
457
|
+
})
|
458
|
+
setup
|
459
|
+
end
|
460
|
+
|
461
|
+
class AdditionsRunLevelType < AbstractEnum
|
462
|
+
iid "a25417ee-a9dd-4f5b-b0dc-377860087754"
|
463
|
+
map({
|
464
|
+
:none => 0,
|
465
|
+
:system => 1,
|
466
|
+
:userland => 2,
|
467
|
+
:desktop => 3,
|
468
|
+
})
|
469
|
+
setup
|
470
|
+
end
|
471
|
+
|
472
|
+
class AdditionsUpdateFlag < AbstractEnum
|
473
|
+
iid "726a818d-18d6-4389-94e8-3e9e6826171a"
|
474
|
+
map({
|
475
|
+
:none => 0,
|
476
|
+
:wait_for_update_start_only => 1,
|
477
|
+
})
|
478
|
+
setup
|
479
|
+
end
|
480
|
+
|
481
|
+
class FileSeekType < AbstractEnum
|
482
|
+
iid "1b73f4f3-3515-4073-a506-76878d9e2541"
|
483
|
+
map({
|
484
|
+
:set => 0,
|
485
|
+
:current => 1,
|
486
|
+
})
|
487
|
+
setup
|
488
|
+
end
|
489
|
+
|
490
|
+
class ProcessInputFlag < AbstractEnum
|
491
|
+
iid "5d38c1dd-2604-4ddf-92e5-0c0cdd3bdbd5"
|
492
|
+
map({
|
493
|
+
:none => 0,
|
494
|
+
:end_of_file => 1,
|
495
|
+
})
|
496
|
+
setup
|
497
|
+
end
|
498
|
+
|
499
|
+
class ProcessOutputFlag < AbstractEnum
|
500
|
+
iid "9979e85a-52bb-40b7-870c-57115e27e0f1"
|
501
|
+
map({
|
502
|
+
:none => 0,
|
503
|
+
:std_err => 1,
|
504
|
+
})
|
505
|
+
setup
|
506
|
+
end
|
507
|
+
|
508
|
+
class ProcessWaitForFlag < AbstractEnum
|
509
|
+
iid "23b550c7-78e1-437e-98f0-65fd9757bcd2"
|
510
|
+
map({
|
511
|
+
:none => 0,
|
512
|
+
:start => 1,
|
513
|
+
:terminate => 2,
|
514
|
+
:std_in => 4,
|
515
|
+
:std_out => 8,
|
516
|
+
:std_err => 16,
|
517
|
+
})
|
518
|
+
setup
|
519
|
+
end
|
520
|
+
|
521
|
+
class ProcessWaitResult < AbstractEnum
|
522
|
+
iid "40719cbe-f192-4fe9-a231-6697b3c8e2b4"
|
523
|
+
map({
|
524
|
+
:none => 0,
|
525
|
+
:start => 1,
|
526
|
+
:terminate => 2,
|
527
|
+
:status => 3,
|
528
|
+
:error => 4,
|
529
|
+
:timeout => 5,
|
530
|
+
:std_in => 6,
|
531
|
+
:std_out => 7,
|
532
|
+
:std_err => 8,
|
533
|
+
:wait_flag_not_supported => 9,
|
534
|
+
})
|
535
|
+
setup
|
536
|
+
end
|
537
|
+
|
538
|
+
class CopyFileFlag < AbstractEnum
|
539
|
+
iid "23f79fdf-738a-493d-b80b-42d607c9b916"
|
540
|
+
map({
|
541
|
+
:none => 0,
|
542
|
+
:recursive => 1,
|
543
|
+
:update => 2,
|
544
|
+
:follow_links => 4,
|
545
|
+
})
|
546
|
+
setup
|
547
|
+
end
|
548
|
+
|
549
|
+
class DirectoryCreateFlag < AbstractEnum
|
550
|
+
iid "bd721b0e-ced5-4f79-b368-249897c32a36"
|
551
|
+
map({
|
552
|
+
:none => 0,
|
553
|
+
:parents => 1,
|
554
|
+
})
|
555
|
+
setup
|
556
|
+
end
|
557
|
+
|
558
|
+
class DirectoryRemoveRecFlag < AbstractEnum
|
559
|
+
iid "455aabf0-7692-48f6-9061-f21579b65769"
|
560
|
+
map({
|
561
|
+
:none => 0,
|
562
|
+
:content_and_dir => 1,
|
563
|
+
:content_only => 2,
|
564
|
+
})
|
565
|
+
setup
|
566
|
+
end
|
567
|
+
|
568
|
+
class PathRenameFlag < AbstractEnum
|
569
|
+
iid "f3baa09f-c758-453d-b91c-c7787d76351d"
|
570
|
+
map({
|
571
|
+
:none => 0,
|
572
|
+
:no_replace => 1,
|
573
|
+
:replace => 2,
|
574
|
+
:no_symlinks => 4,
|
575
|
+
})
|
576
|
+
setup
|
577
|
+
end
|
578
|
+
|
579
|
+
class ProcessCreateFlag < AbstractEnum
|
580
|
+
iid "35192799-bfde-405d-9bea-c735ab9998e4"
|
581
|
+
map({
|
582
|
+
:none => 0,
|
583
|
+
:wait_for_process_start_only => 1,
|
584
|
+
:ignore_orphaned_processes => 2,
|
585
|
+
:hidden => 4,
|
586
|
+
:no_profile => 8,
|
587
|
+
:wait_for_std_out => 16,
|
588
|
+
:wait_for_std_err => 32,
|
589
|
+
:expand_arguments => 64,
|
590
|
+
})
|
591
|
+
setup
|
592
|
+
end
|
593
|
+
|
594
|
+
class ProcessPriority < AbstractEnum
|
595
|
+
iid "ee8cac50-e232-49fe-806b-d1214d9c2e49"
|
596
|
+
map({
|
597
|
+
:invalid => 0,
|
598
|
+
:default => 1,
|
599
|
+
})
|
600
|
+
setup
|
601
|
+
end
|
602
|
+
|
603
|
+
class SymlinkType < AbstractEnum
|
604
|
+
iid "37794668-f8f1-4714-98a5-6f8fa2ed0118"
|
605
|
+
map({
|
606
|
+
:unknown => 0,
|
607
|
+
:directory => 1,
|
608
|
+
:file => 2,
|
609
|
+
})
|
610
|
+
setup
|
611
|
+
end
|
612
|
+
|
613
|
+
class SymlinkReadFlag < AbstractEnum
|
614
|
+
iid "b7fe2b9d-790e-4b25-8adf-1ca33026931f"
|
615
|
+
map({
|
616
|
+
:none => 0,
|
617
|
+
:no_symlinks => 1,
|
618
|
+
})
|
619
|
+
setup
|
620
|
+
end
|
621
|
+
|
622
|
+
class ProcessStatus < AbstractEnum
|
623
|
+
iid "4d52368f-5b48-4bfe-b486-acf89139b52f"
|
624
|
+
map({
|
625
|
+
:undefined => 0,
|
626
|
+
:starting => 10,
|
627
|
+
:started => 100,
|
628
|
+
:paused => 110,
|
629
|
+
:terminating => 480,
|
630
|
+
:terminated_normally => 500,
|
631
|
+
:terminated_signal => 510,
|
632
|
+
:terminated_abnormally => 511,
|
633
|
+
:timed_out_killed => 512,
|
634
|
+
:timed_out_abnormally => 513,
|
635
|
+
:down => 600,
|
636
|
+
:error => 800,
|
637
|
+
})
|
638
|
+
setup
|
639
|
+
end
|
640
|
+
|
641
|
+
class FsObjType < AbstractEnum
|
642
|
+
iid "a1ed437c-b3c3-4ca2-b19c-4239d658d5e8"
|
643
|
+
map({
|
644
|
+
:undefined => 0,
|
645
|
+
:fifo => 1,
|
646
|
+
:dev_char => 10,
|
647
|
+
:dev_block => 11,
|
648
|
+
:directory => 50,
|
649
|
+
:file => 80,
|
650
|
+
:symlink => 100,
|
651
|
+
:socket => 200,
|
652
|
+
:whiteout => 400,
|
653
|
+
})
|
654
|
+
setup
|
655
|
+
end
|
656
|
+
|
657
|
+
class DragAndDropAction < AbstractEnum
|
658
|
+
iid "47f3b162-c107-4fcd-bfa7-54b8135c441e"
|
659
|
+
map({
|
660
|
+
:ignore => 0,
|
661
|
+
:copy => 1,
|
662
|
+
:move => 2,
|
663
|
+
:link => 3,
|
664
|
+
})
|
665
|
+
setup
|
666
|
+
end
|
667
|
+
|
668
|
+
class DirectoryOpenFlag < AbstractEnum
|
669
|
+
iid "5138837a-8fd2-4194-a1b0-08f7bc3949d0"
|
670
|
+
map({
|
671
|
+
:none => 0,
|
672
|
+
:no_symlinks => 1,
|
673
|
+
})
|
674
|
+
setup
|
675
|
+
end
|
676
|
+
|
677
|
+
class MediumState < AbstractEnum
|
678
|
+
iid "ef41e980-e012-43cd-9dea-479d4ef14d13"
|
679
|
+
map({
|
680
|
+
:not_created => 0,
|
681
|
+
:created => 1,
|
682
|
+
:locked_read => 2,
|
683
|
+
:locked_write => 3,
|
684
|
+
:inaccessible => 4,
|
685
|
+
:creating => 5,
|
686
|
+
:deleting => 6,
|
687
|
+
})
|
688
|
+
setup
|
689
|
+
end
|
690
|
+
|
691
|
+
class MediumType < AbstractEnum
|
692
|
+
iid "fe663fb5-c244-4e1b-9d81-c628b417dd04"
|
693
|
+
map({
|
694
|
+
:normal => 0,
|
695
|
+
:immutable => 1,
|
696
|
+
:writethrough => 2,
|
697
|
+
:shareable => 3,
|
698
|
+
:readonly => 4,
|
699
|
+
:multi_attach => 5,
|
700
|
+
})
|
701
|
+
setup
|
702
|
+
end
|
703
|
+
|
704
|
+
class MediumVariant < AbstractEnum
|
705
|
+
iid "80685b6b-e42f-497d-8271-e77bf3c61ada"
|
706
|
+
map({
|
707
|
+
:standard => 0,
|
708
|
+
:vmdk_split2g => 0x01,
|
709
|
+
:vmdk_raw_disk => 0x02,
|
710
|
+
:vmdk_stream_optimized => 0x04,
|
711
|
+
:vmdk_esx => 0x08,
|
712
|
+
:fixed => 0x10000,
|
713
|
+
:diff => 0x20000,
|
714
|
+
:no_create_dir => 0x40000000,
|
715
|
+
})
|
716
|
+
setup
|
717
|
+
end
|
718
|
+
|
719
|
+
class DataType < AbstractEnum
|
720
|
+
iid "d90ea51e-a3f1-4a01-beb1-c1723c0d3ba7"
|
721
|
+
map({
|
722
|
+
:int32 => 0,
|
723
|
+
:int8 => 1,
|
724
|
+
:string => 2,
|
725
|
+
})
|
726
|
+
setup
|
727
|
+
end
|
728
|
+
|
729
|
+
class DataFlags < AbstractEnum
|
730
|
+
iid "86884dcf-1d6b-4f1b-b4bf-f5aa44959d60"
|
731
|
+
map({
|
732
|
+
:none => 0x00,
|
733
|
+
:mandatory => 0x01,
|
734
|
+
:expert => 0x02,
|
735
|
+
:array => 0x04,
|
736
|
+
:flag_mask => 0x07,
|
737
|
+
})
|
738
|
+
setup
|
739
|
+
end
|
740
|
+
|
741
|
+
class MediumFormatCapabilities < AbstractEnum
|
742
|
+
iid "7342ba79-7ce0-4d94-8f86-5ed5a185d9bd"
|
743
|
+
map({
|
744
|
+
:uuid => 0x01,
|
745
|
+
:create_fixed => 0x02,
|
746
|
+
:create_dynamic => 0x04,
|
747
|
+
:create_split2g => 0x08,
|
748
|
+
:differencing => 0x10,
|
749
|
+
:asynchronous => 0x20,
|
750
|
+
:file => 0x40,
|
751
|
+
:properties => 0x80,
|
752
|
+
:tcp_networking => 0x100,
|
753
|
+
:vfs => 0x200,
|
754
|
+
:capability_mask => 0x3FF,
|
755
|
+
})
|
756
|
+
setup
|
757
|
+
end
|
758
|
+
|
759
|
+
class MouseButtonState < AbstractEnum
|
760
|
+
iid "9ee094b8-b28a-4d56-a166-973cb588d7f8"
|
761
|
+
map({
|
762
|
+
:left_button => 0x01,
|
763
|
+
:right_button => 0x02,
|
764
|
+
:middle_button => 0x04,
|
765
|
+
:wheel_up => 0x08,
|
766
|
+
:wheel_down => 0x10,
|
767
|
+
:x_button1 => 0x20,
|
768
|
+
:x_button2 => 0x40,
|
769
|
+
:mouse_state_mask => 0x7F,
|
770
|
+
})
|
771
|
+
setup
|
772
|
+
end
|
773
|
+
|
774
|
+
class FramebufferPixelFormat < AbstractEnum
|
775
|
+
iid "7acfd5ed-29e3-45e3-8136-73c9224f3d2d"
|
776
|
+
map({
|
777
|
+
:opaque => 0,
|
778
|
+
:fourcc_rgb => 0x32424752,
|
779
|
+
})
|
780
|
+
setup
|
781
|
+
end
|
782
|
+
|
783
|
+
class NetworkAttachmentType < AbstractEnum
|
784
|
+
iid "2ac4bc71-6b82-417a-acd1-f7426d2570d6"
|
785
|
+
map({
|
786
|
+
:null => 0,
|
787
|
+
:nat => 1,
|
788
|
+
:bridged => 2,
|
789
|
+
:internal => 3,
|
790
|
+
:host_only => 4,
|
791
|
+
:generic => 5,
|
792
|
+
})
|
793
|
+
setup
|
794
|
+
end
|
795
|
+
|
796
|
+
class NetworkAdapterType < AbstractEnum
|
797
|
+
iid "3c2281e4-d952-4e87-8c7d-24379cb6a81c"
|
798
|
+
map({
|
799
|
+
:null => 0,
|
800
|
+
:am79c970a => 1,
|
801
|
+
:am79c973 => 2,
|
802
|
+
:i82540em => 3,
|
803
|
+
:i82543gc => 4,
|
804
|
+
:i82545em => 5,
|
805
|
+
:virtio => 6,
|
806
|
+
})
|
807
|
+
setup
|
808
|
+
end
|
809
|
+
|
810
|
+
class NetworkAdapterPromiscModePolicy < AbstractEnum
|
811
|
+
iid "c963768a-376f-4c85-8d84-d8ced4b7269e"
|
812
|
+
map({
|
813
|
+
:deny => 1,
|
814
|
+
:allow_network => 2,
|
815
|
+
:allow_all => 3,
|
816
|
+
})
|
817
|
+
setup
|
818
|
+
end
|
819
|
+
|
820
|
+
class PortMode < AbstractEnum
|
821
|
+
iid "533b5fe3-0185-4197-86a7-17e37dd39d76"
|
822
|
+
map({
|
823
|
+
:disconnected => 0,
|
824
|
+
:host_pipe => 1,
|
825
|
+
:host_device => 2,
|
826
|
+
:raw_file => 3,
|
827
|
+
})
|
828
|
+
setup
|
829
|
+
end
|
830
|
+
|
831
|
+
class USBDeviceState < AbstractEnum
|
832
|
+
iid "b99a2e65-67fb-4882-82fd-f3e5e8193ab4"
|
833
|
+
map({
|
834
|
+
:not_supported => 0,
|
835
|
+
:unavailable => 1,
|
836
|
+
:busy => 2,
|
837
|
+
:available => 3,
|
838
|
+
:held => 4,
|
839
|
+
:captured => 5,
|
840
|
+
})
|
841
|
+
setup
|
842
|
+
end
|
843
|
+
|
844
|
+
class USBDeviceFilterAction < AbstractEnum
|
845
|
+
iid "cbc30a49-2f4e-43b5-9da6-121320475933"
|
846
|
+
map({
|
847
|
+
:null => 0,
|
848
|
+
:ignore => 1,
|
849
|
+
:hold => 2,
|
850
|
+
})
|
851
|
+
setup
|
852
|
+
end
|
853
|
+
|
854
|
+
class AudioDriverType < AbstractEnum
|
855
|
+
iid "4bcc3d73-c2fe-40db-b72f-0c2ca9d68496"
|
856
|
+
map({
|
857
|
+
:null => 0,
|
858
|
+
:winmm => 1,
|
859
|
+
:oss => 2,
|
860
|
+
:alsa => 3,
|
861
|
+
:direct_sound => 4,
|
862
|
+
:core_audio => 5,
|
863
|
+
:mmpm => 6,
|
864
|
+
:pulse => 7,
|
865
|
+
:sol_audio => 8,
|
866
|
+
})
|
867
|
+
setup
|
868
|
+
end
|
869
|
+
|
870
|
+
class AudioControllerType < AbstractEnum
|
871
|
+
iid "7afd395c-42c3-444e-8788-3ce80292f36c"
|
872
|
+
map({
|
873
|
+
:ac97 => 0,
|
874
|
+
:sb16 => 1,
|
875
|
+
:hda => 2,
|
876
|
+
})
|
877
|
+
setup
|
878
|
+
end
|
879
|
+
|
880
|
+
class AuthType < AbstractEnum
|
881
|
+
iid "7eef6ef6-98c2-4dc2-ab35-10d2b292028d"
|
882
|
+
map({
|
883
|
+
:null => 0,
|
884
|
+
:external => 1,
|
885
|
+
:guest => 2,
|
886
|
+
})
|
887
|
+
setup
|
888
|
+
end
|
889
|
+
|
890
|
+
class StorageBus < AbstractEnum
|
891
|
+
iid "eee67ab3-668d-4ef5-91e0-7025fe4a0d7a"
|
892
|
+
map({
|
893
|
+
:null => 0,
|
894
|
+
:ide => 1,
|
895
|
+
:sata => 2,
|
896
|
+
:scsi => 3,
|
897
|
+
:floppy => 4,
|
898
|
+
:sas => 5,
|
899
|
+
})
|
900
|
+
setup
|
901
|
+
end
|
902
|
+
|
903
|
+
class StorageControllerType < AbstractEnum
|
904
|
+
iid "8a412b8a-f43e-4456-bd37-b474f0879a58"
|
905
|
+
map({
|
906
|
+
:null => 0,
|
907
|
+
:lsi_logic => 1,
|
908
|
+
:bus_logic => 2,
|
909
|
+
:intel_ahci => 3,
|
910
|
+
:piix3 => 4,
|
911
|
+
:piix4 => 5,
|
912
|
+
:ich6 => 6,
|
913
|
+
:i82078 => 7,
|
914
|
+
:lsi_logic_sas => 8,
|
915
|
+
})
|
916
|
+
setup
|
917
|
+
end
|
918
|
+
|
919
|
+
class ChipsetType < AbstractEnum
|
920
|
+
iid "8b4096a8-a7c3-4d3b-bbb1-05a0a51ec394"
|
921
|
+
map({
|
922
|
+
:null => 0,
|
923
|
+
:piix3 => 1,
|
924
|
+
:ich9 => 2,
|
925
|
+
})
|
926
|
+
setup
|
927
|
+
end
|
928
|
+
|
929
|
+
class NATAliasMode < AbstractEnum
|
930
|
+
iid "67772168-50d9-11df-9669-7fb714ee4fa1"
|
931
|
+
map({
|
932
|
+
:alias_log => 0x1,
|
933
|
+
:alias_proxy_only => 0x02,
|
934
|
+
:alias_use_same_ports => 0x04,
|
935
|
+
})
|
936
|
+
setup
|
937
|
+
end
|
938
|
+
|
939
|
+
class NATProtocol < AbstractEnum
|
940
|
+
iid "e90164be-eb03-11de-94af-fff9b1c1b19f"
|
941
|
+
map({
|
942
|
+
:udp => 0,
|
943
|
+
:tcp => 1,
|
944
|
+
})
|
945
|
+
setup
|
946
|
+
end
|
947
|
+
|
948
|
+
class BandwidthGroupType < AbstractEnum
|
949
|
+
iid "1d92b67d-dc69-4be9-ad4c-93a01e1e0c8e"
|
950
|
+
map({
|
951
|
+
:null => 0,
|
952
|
+
:disk => 1,
|
953
|
+
:network => 2,
|
954
|
+
})
|
955
|
+
setup
|
956
|
+
end
|
957
|
+
|
958
|
+
class VBoxEventType < AbstractEnum
|
959
|
+
iid "0d67e79e-b7b1-4919-aab3-b36866075515"
|
960
|
+
map({
|
961
|
+
:invalid => 0,
|
962
|
+
:any => 1,
|
963
|
+
:vetoable => 2,
|
964
|
+
:machine_event => 3,
|
965
|
+
:snapshot_event => 4,
|
966
|
+
:input_event => 5,
|
967
|
+
:last_wildcard => 31,
|
968
|
+
:on_machine_state_changed => 32,
|
969
|
+
:on_machine_data_changed => 33,
|
970
|
+
:on_extra_data_changed => 34,
|
971
|
+
:on_extra_data_can_change => 35,
|
972
|
+
:on_medium_registered => 36,
|
973
|
+
:on_machine_registered => 37,
|
974
|
+
:on_session_state_changed => 38,
|
975
|
+
:on_snapshot_taken => 39,
|
976
|
+
:on_snapshot_deleted => 40,
|
977
|
+
:on_snapshot_changed => 41,
|
978
|
+
:on_guest_property_changed => 42,
|
979
|
+
:on_mouse_pointer_shape_changed => 43,
|
980
|
+
:on_mouse_capability_changed => 44,
|
981
|
+
:on_keyboard_leds_changed => 45,
|
982
|
+
:on_state_changed => 46,
|
983
|
+
:on_additions_state_changed => 47,
|
984
|
+
:on_network_adapter_changed => 48,
|
985
|
+
:on_serial_port_changed => 49,
|
986
|
+
:on_parallel_port_changed => 50,
|
987
|
+
:on_storage_controller_changed => 51,
|
988
|
+
:on_medium_changed => 52,
|
989
|
+
:on_vrde_server_changed => 53,
|
990
|
+
:on_usb_controller_changed => 54,
|
991
|
+
:on_usb_device_state_changed => 55,
|
992
|
+
:on_shared_folder_changed => 56,
|
993
|
+
:on_runtime_error => 57,
|
994
|
+
:on_can_show_window => 58,
|
995
|
+
:on_show_window => 59,
|
996
|
+
:on_cpu_changed => 60,
|
997
|
+
:on_vrde_server_info_changed => 61,
|
998
|
+
:on_event_source_changed => 62,
|
999
|
+
:on_cpu_execution_cap_changed => 63,
|
1000
|
+
:on_guest_keyboard => 64,
|
1001
|
+
:on_guest_mouse => 65,
|
1002
|
+
:on_nat_redirect => 66,
|
1003
|
+
:on_host_pci_device_plug => 67,
|
1004
|
+
:on_vbox_svc_availability_changed => 68,
|
1005
|
+
:on_bandwidth_group_changed => 69,
|
1006
|
+
:on_guest_monitor_changed => 70,
|
1007
|
+
:on_storage_device_changed => 71,
|
1008
|
+
:on_clipboard_mode_changed => 72,
|
1009
|
+
:on_drag_and_drop_mode_changed => 73,
|
1010
|
+
:last => 74,
|
1011
|
+
})
|
1012
|
+
setup
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class GuestMonitorChangedEventType < AbstractEnum
|
1016
|
+
iid "ef172985-7e36-4297-95be-e46396968d66"
|
1017
|
+
map({
|
1018
|
+
:enabled => 0,
|
1019
|
+
:disabled => 1,
|
1020
|
+
:new_origin => 2,
|
1021
|
+
})
|
1022
|
+
setup
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
class VirtualBoxErrorInfo < AbstractInterface
|
1026
|
+
iid "f91e6e91-49e1-4fd2-b21e-269003350d06"
|
1027
|
+
property :result_code, INT32, :readonly => true
|
1028
|
+
property :interface_i_d, WSTRING, :readonly => true
|
1029
|
+
property :component, WSTRING, :readonly => true
|
1030
|
+
property :text, WSTRING, :readonly => true
|
1031
|
+
property :next, :VirtualBoxErrorInfo, :readonly => true
|
1032
|
+
setup
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class DHCPServer < AbstractInterface
|
1036
|
+
iid "6cfe387c-74fb-4ca7-bff6-973bec8af7a3"
|
1037
|
+
extends :NSISupports
|
1038
|
+
property :enabled, BOOL
|
1039
|
+
property :ip_address, WSTRING, :readonly => true
|
1040
|
+
property :network_mask, WSTRING, :readonly => true
|
1041
|
+
property :network_name, WSTRING, :readonly => true
|
1042
|
+
property :lower_ip, WSTRING, :readonly => true
|
1043
|
+
property :upper_ip, WSTRING, :readonly => true
|
1044
|
+
function :set_configuration, nil, [WSTRING, WSTRING, WSTRING, WSTRING]
|
1045
|
+
function :start, nil, [WSTRING, WSTRING, WSTRING]
|
1046
|
+
function :stop, nil, []
|
1047
|
+
setup
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
class VirtualBox < AbstractInterface
|
1051
|
+
iid "3b2f08eb-b810-4715-bee0-bb06b9880ad2"
|
1052
|
+
extends :NSISupports
|
1053
|
+
property :version, WSTRING, :readonly => true
|
1054
|
+
property :version_normalized, WSTRING, :readonly => true
|
1055
|
+
property :revision, UINT32, :readonly => true
|
1056
|
+
property :package_type, WSTRING, :readonly => true
|
1057
|
+
property :api_version, WSTRING, :readonly => true
|
1058
|
+
property :home_folder, WSTRING, :readonly => true
|
1059
|
+
property :settings_file_path, WSTRING, :readonly => true
|
1060
|
+
property :host, :Host, :readonly => true
|
1061
|
+
property :system_properties, :SystemProperties, :readonly => true
|
1062
|
+
property :machines, [:Machine], :readonly => true
|
1063
|
+
property :machine_groups, [WSTRING], :readonly => true
|
1064
|
+
property :hard_disks, [:Medium], :readonly => true
|
1065
|
+
property :dvd_images, [:Medium], :readonly => true
|
1066
|
+
property :floppy_images, [:Medium], :readonly => true
|
1067
|
+
property :progress_operations, [:Progress], :readonly => true
|
1068
|
+
property :guest_os_types, [:GuestOSType], :readonly => true
|
1069
|
+
property :shared_folders, [:SharedFolder], :readonly => true
|
1070
|
+
property :performance_collector, :PerformanceCollector, :readonly => true
|
1071
|
+
property :dhcp_servers, [:DHCPServer], :readonly => true
|
1072
|
+
property :event_source, :EventSource, :readonly => true
|
1073
|
+
property :extension_pack_manager, :ExtPackManager, :readonly => true
|
1074
|
+
property :internal_networks, [WSTRING], :readonly => true
|
1075
|
+
property :generic_network_drivers, [WSTRING], :readonly => true
|
1076
|
+
function :compose_machine_filename, WSTRING, [WSTRING, WSTRING, WSTRING, WSTRING]
|
1077
|
+
function :create_machine, :Machine, [WSTRING, WSTRING, [WSTRING], WSTRING, WSTRING]
|
1078
|
+
function :open_machine, :Machine, [WSTRING]
|
1079
|
+
function :register_machine, nil, [:Machine]
|
1080
|
+
function :find_machine, :Machine, [WSTRING]
|
1081
|
+
function :get_machines_by_groups, [:Machine], [[WSTRING]]
|
1082
|
+
function :get_machine_states, [:MachineState], [[:Machine]]
|
1083
|
+
function :create_appliance, :Appliance, []
|
1084
|
+
function :create_hard_disk, :Medium, [WSTRING, WSTRING]
|
1085
|
+
function :open_medium, :Medium, [WSTRING, :DeviceType, :AccessMode, BOOL]
|
1086
|
+
function :get_guest_os_type, :GuestOSType, [WSTRING]
|
1087
|
+
function :create_shared_folder, nil, [WSTRING, WSTRING, BOOL, BOOL]
|
1088
|
+
function :remove_shared_folder, nil, [WSTRING]
|
1089
|
+
function :get_extra_data_keys, [WSTRING], []
|
1090
|
+
function :get_extra_data, WSTRING, [WSTRING]
|
1091
|
+
function :set_extra_data, nil, [WSTRING, WSTRING]
|
1092
|
+
function :set_settings_secret, nil, [WSTRING]
|
1093
|
+
function :create_dhcp_server, :DHCPServer, [WSTRING]
|
1094
|
+
function :find_dhcp_server_by_network_name, :DHCPServer, [WSTRING]
|
1095
|
+
function :remove_dhcp_server, nil, [:DHCPServer]
|
1096
|
+
function :check_firmware_present, BOOL, [:FirmwareType, WSTRING, [:out, WSTRING], [:out, WSTRING]]
|
1097
|
+
setup
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
class VFSExplorer < AbstractInterface
|
1101
|
+
iid "003d7f92-d38e-487f-b790-8c5e8631cb2f"
|
1102
|
+
extends :NSISupports
|
1103
|
+
property :path, WSTRING, :readonly => true
|
1104
|
+
property :type, :VFSType, :readonly => true
|
1105
|
+
function :update, :Progress, []
|
1106
|
+
function :cd, :Progress, [WSTRING]
|
1107
|
+
function :cd_up, :Progress, []
|
1108
|
+
function :entry_list, nil, [[:out, [WSTRING]], [:out, [UINT32]], [:out, [UINT32]], [:out, [UINT32]]]
|
1109
|
+
function :exists, [WSTRING], [[WSTRING]]
|
1110
|
+
function :remove, :Progress, [[WSTRING]]
|
1111
|
+
setup
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class Appliance < AbstractInterface
|
1115
|
+
iid "3059cf9e-25c7-4f0b-9fa5-3c42e441670b"
|
1116
|
+
extends :NSISupports
|
1117
|
+
property :path, WSTRING, :readonly => true
|
1118
|
+
property :disks, [WSTRING], :readonly => true
|
1119
|
+
property :virtual_system_descriptions, [:VirtualSystemDescription], :readonly => true
|
1120
|
+
property :machines, [WSTRING], :readonly => true
|
1121
|
+
function :read, :Progress, [WSTRING]
|
1122
|
+
function :interpret, nil, []
|
1123
|
+
function :import_machines, :Progress, [[:mportOptions]]
|
1124
|
+
function :create_vfs_explorer, :VFSExplorer, [WSTRING]
|
1125
|
+
function :write, :Progress, [WSTRING, BOOL, WSTRING]
|
1126
|
+
function :get_warnings, [WSTRING], []
|
1127
|
+
setup
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class VirtualSystemDescription < AbstractInterface
|
1131
|
+
iid "d7525e6c-531a-4c51-8e04-41235083a3d8"
|
1132
|
+
extends :NSISupports
|
1133
|
+
property :count, UINT32, :readonly => true
|
1134
|
+
function :get_description, nil, [[:out, [:VirtualSystemDescriptionType]], [:out, [WSTRING]], [:out, [WSTRING]], [:out, [WSTRING]], [:out, [WSTRING]]]
|
1135
|
+
function :get_description_by_type, nil, [:VirtualSystemDescriptionType, [:out, [:VirtualSystemDescriptionType]], [:out, [WSTRING]], [:out, [WSTRING]], [:out, [WSTRING]], [:out, [WSTRING]]]
|
1136
|
+
function :get_values_by_type, [WSTRING], [:VirtualSystemDescriptionType, :VirtualSystemDescriptionValueType]
|
1137
|
+
function :set_final_values, nil, [[BOOL], [WSTRING], [WSTRING]]
|
1138
|
+
function :add_description, nil, [:VirtualSystemDescriptionType, WSTRING, WSTRING]
|
1139
|
+
setup
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class InternalMachineControl < AbstractInterface
|
1143
|
+
iid "dca36a92-703c-4649-98a4-f40c1ef0c336"
|
1144
|
+
extends :NSISupports
|
1145
|
+
function :set_remove_saved_state_file, nil, [BOOL]
|
1146
|
+
function :update_state, nil, [:MachineState]
|
1147
|
+
function :get_ipcid, WSTRING, []
|
1148
|
+
function :begin_power_up, nil, [:Progress]
|
1149
|
+
function :end_power_up, nil, [INT32]
|
1150
|
+
function :begin_powering_down, nil, [[:out, :Progress]]
|
1151
|
+
function :end_powering_down, nil, [INT32, WSTRING]
|
1152
|
+
function :run_usb_device_filters, nil, [:USBDevice, [:out, BOOL], [:out, UINT32]]
|
1153
|
+
function :capture_usb_device, nil, [WSTRING]
|
1154
|
+
function :detach_usb_device, nil, [WSTRING, BOOL]
|
1155
|
+
function :auto_capture_usb_devices, nil, []
|
1156
|
+
function :detach_all_usb_devices, nil, [BOOL]
|
1157
|
+
function :on_session_end, :Progress, [:Session]
|
1158
|
+
function :begin_saving_state, nil, [[:out, :Progress], [:out, WSTRING]]
|
1159
|
+
function :end_saving_state, nil, [INT32, WSTRING]
|
1160
|
+
function :adopt_saved_state, nil, [WSTRING]
|
1161
|
+
function :begin_taking_snapshot, nil, [:Console, WSTRING, WSTRING, :Progress, BOOL, [:out, WSTRING]]
|
1162
|
+
function :end_taking_snapshot, nil, [BOOL]
|
1163
|
+
function :delete_snapshot, :Progress, [:Console, WSTRING, WSTRING, BOOL, [:out, :MachineState]]
|
1164
|
+
function :finish_online_merge_medium, nil, [:MediumAttachment, :Medium, :Medium, BOOL, :Medium, [:Medium]]
|
1165
|
+
function :restore_snapshot, :Progress, [:Console, :Snapshot, [:out, :MachineState]]
|
1166
|
+
function :pull_guest_properties, nil, [[:out, [WSTRING]], [:out, [WSTRING]], [:out, [INT64]], [:out, [WSTRING]]]
|
1167
|
+
function :push_guest_property, nil, [WSTRING, WSTRING, INT64, WSTRING]
|
1168
|
+
function :lock_media, nil, []
|
1169
|
+
function :unlock_media, nil, []
|
1170
|
+
function :eject_medium, :MediumAttachment, [:MediumAttachment]
|
1171
|
+
function :report_vm_statistics, nil, [UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32, UINT32]
|
1172
|
+
setup
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
class BIOSSettings < AbstractInterface
|
1176
|
+
iid "38b54279-dc35-4f5e-a431-835b867c6b5e"
|
1177
|
+
extends :NSISupports
|
1178
|
+
property :logo_fade_in, BOOL
|
1179
|
+
property :logo_fade_out, BOOL
|
1180
|
+
property :logo_display_time, UINT32
|
1181
|
+
property :logo_image_path, WSTRING
|
1182
|
+
property :boot_menu_mode, :BIOSBootMenuMode
|
1183
|
+
property :acpi_enabled, BOOL
|
1184
|
+
property :io_apic_enabled, BOOL
|
1185
|
+
property :time_offset, INT64
|
1186
|
+
property :pxe_debug_enabled, BOOL
|
1187
|
+
setup
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class PCIAddress < AbstractInterface
|
1191
|
+
iid "D88B324F-DB19-4D3B-A1A9-BF5B127199A8"
|
1192
|
+
extends :NSISupports
|
1193
|
+
property :bus, INT16
|
1194
|
+
property :device, INT16
|
1195
|
+
property :dev_function, INT16
|
1196
|
+
function :as_long, INT32, []
|
1197
|
+
function :from_long, nil, [INT32]
|
1198
|
+
setup
|
1199
|
+
end
|
1200
|
+
|
1201
|
+
class PCIDeviceAttachment < AbstractInterface
|
1202
|
+
iid "91f33d6f-e621-4f70-a77e-15f0e3c714d5"
|
1203
|
+
extends :NSISupports
|
1204
|
+
property :name, WSTRING, :readonly => true
|
1205
|
+
property :is_physical_device, BOOL, :readonly => true
|
1206
|
+
property :host_address, INT32, :readonly => true
|
1207
|
+
property :guest_address, INT32, :readonly => true
|
1208
|
+
setup
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
class Machine < AbstractInterface
|
1212
|
+
iid "22781af3-1c96-4126-9edf-67a020e0e858"
|
1213
|
+
extends :NSISupports
|
1214
|
+
property :parent, :VirtualBox, :readonly => true
|
1215
|
+
property :accessible, BOOL, :readonly => true
|
1216
|
+
property :access_error, :VirtualBoxErrorInfo, :readonly => true
|
1217
|
+
property :name, WSTRING
|
1218
|
+
property :description, WSTRING
|
1219
|
+
property :id, WSTRING, :readonly => true
|
1220
|
+
property :groups, [WSTRING]
|
1221
|
+
property :os_type_id, WSTRING
|
1222
|
+
property :hardware_version, WSTRING
|
1223
|
+
property :hardware_uuid, WSTRING
|
1224
|
+
property :cpu_count, UINT32
|
1225
|
+
property :cpu_hot_plug_enabled, BOOL
|
1226
|
+
property :cpu_execution_cap, UINT32
|
1227
|
+
property :memory_size, UINT32
|
1228
|
+
property :memory_balloon_size, UINT32
|
1229
|
+
property :page_fusion_enabled, BOOL
|
1230
|
+
property :vram_size, UINT32
|
1231
|
+
property :accelerate_3d_enabled, BOOL
|
1232
|
+
property :accelerate_2d_video_enabled, BOOL
|
1233
|
+
property :monitor_count, UINT32
|
1234
|
+
property :video_capture_enabled, BOOL
|
1235
|
+
property :video_capture_file, WSTRING
|
1236
|
+
property :video_capture_width, UINT32
|
1237
|
+
property :video_capture_height, UINT32
|
1238
|
+
property :bios_settings, :BIOSSettings, :readonly => true
|
1239
|
+
property :firmware_type, :FirmwareType
|
1240
|
+
property :pointing_hid_type, :PointingHIDType
|
1241
|
+
property :keyboard_hid_type, :KeyboardHIDType
|
1242
|
+
property :hpet_enabled, BOOL
|
1243
|
+
property :chipset_type, :ChipsetType
|
1244
|
+
property :snapshot_folder, WSTRING
|
1245
|
+
property :vrde_server, :VRDEServer, :readonly => true
|
1246
|
+
property :emulated_usb_webcamera_enabled, BOOL
|
1247
|
+
property :emulated_usb_card_reader_enabled, BOOL
|
1248
|
+
property :medium_attachments, [:MediumAttachment], :readonly => true
|
1249
|
+
property :usb_controller, :USBController, :readonly => true
|
1250
|
+
property :audio_adapter, :AudioAdapter, :readonly => true
|
1251
|
+
property :storage_controllers, [:StorageController], :readonly => true
|
1252
|
+
property :settings_file_path, WSTRING, :readonly => true
|
1253
|
+
property :settings_modified, BOOL, :readonly => true
|
1254
|
+
property :session_state, :SessionState, :readonly => true
|
1255
|
+
property :session_type, WSTRING, :readonly => true
|
1256
|
+
property :session_pid, UINT32, :readonly => true
|
1257
|
+
property :state, :MachineState, :readonly => true
|
1258
|
+
property :last_state_change, INT64, :readonly => true
|
1259
|
+
property :state_file_path, WSTRING, :readonly => true
|
1260
|
+
property :log_folder, WSTRING, :readonly => true
|
1261
|
+
property :current_snapshot, :Snapshot, :readonly => true
|
1262
|
+
property :snapshot_count, UINT32, :readonly => true
|
1263
|
+
property :current_state_modified, BOOL, :readonly => true
|
1264
|
+
property :shared_folders, [:SharedFolder], :readonly => true
|
1265
|
+
property :clipboard_mode, :ClipboardMode
|
1266
|
+
property :drag_and_drop_mode, :DragAndDropMode
|
1267
|
+
property :guest_property_notification_patterns, WSTRING
|
1268
|
+
property :teleporter_enabled, BOOL
|
1269
|
+
property :teleporter_port, UINT32
|
1270
|
+
property :teleporter_address, WSTRING
|
1271
|
+
property :teleporter_password, WSTRING
|
1272
|
+
property :fault_tolerance_state, :FaultToleranceState
|
1273
|
+
property :fault_tolerance_port, UINT32
|
1274
|
+
property :fault_tolerance_address, WSTRING
|
1275
|
+
property :fault_tolerance_password, WSTRING
|
1276
|
+
property :fault_tolerance_sync_interval, UINT32
|
1277
|
+
property :rtc_use_utc, BOOL
|
1278
|
+
property :io_cache_enabled, BOOL
|
1279
|
+
property :io_cache_size, UINT32
|
1280
|
+
property :pci_device_assignments, [:PCIDeviceAttachment], :readonly => true
|
1281
|
+
property :bandwidth_control, :BandwidthControl, :readonly => true
|
1282
|
+
property :tracing_enabled, BOOL
|
1283
|
+
property :tracing_config, WSTRING
|
1284
|
+
property :allow_tracing_to_access_vm, BOOL
|
1285
|
+
property :autostart_enabled, BOOL
|
1286
|
+
property :autostart_delay, UINT32
|
1287
|
+
property :autostop_type, :AutostopType
|
1288
|
+
function :lock_machine, nil, [:Session, :LockType]
|
1289
|
+
function :launch_vm_process, :Progress, [:Session, WSTRING, WSTRING]
|
1290
|
+
function :set_boot_order, nil, [UINT32, :DeviceType]
|
1291
|
+
function :get_boot_order, :DeviceType, [UINT32]
|
1292
|
+
function :attach_device, nil, [WSTRING, INT32, INT32, :DeviceType, :Medium]
|
1293
|
+
function :attach_device_without_medium, nil, [WSTRING, INT32, INT32, :DeviceType]
|
1294
|
+
function :detach_device, nil, [WSTRING, INT32, INT32]
|
1295
|
+
function :passthrough_device, nil, [WSTRING, INT32, INT32, BOOL]
|
1296
|
+
function :temporary_eject_device, nil, [WSTRING, INT32, INT32, BOOL]
|
1297
|
+
function :non_rotational_device, nil, [WSTRING, INT32, INT32, BOOL]
|
1298
|
+
function :set_auto_discard_for_device, nil, [WSTRING, INT32, INT32, BOOL]
|
1299
|
+
function :set_bandwidth_group_for_device, nil, [WSTRING, INT32, INT32, :BandwidthGroup]
|
1300
|
+
function :set_no_bandwidth_group_for_device, nil, [WSTRING, INT32, INT32]
|
1301
|
+
function :unmount_medium, nil, [WSTRING, INT32, INT32, BOOL]
|
1302
|
+
function :mount_medium, nil, [WSTRING, INT32, INT32, :Medium, BOOL]
|
1303
|
+
function :get_medium, :Medium, [WSTRING, INT32, INT32]
|
1304
|
+
function :get_medium_attachments_of_controller, [:MediumAttachment], [WSTRING]
|
1305
|
+
function :get_medium_attachment, :MediumAttachment, [WSTRING, INT32, INT32]
|
1306
|
+
function :attach_host_pci_device, nil, [INT32, INT32, BOOL]
|
1307
|
+
function :detach_host_pci_device, nil, [INT32]
|
1308
|
+
function :get_network_adapter, :NetworkAdapter, [UINT32]
|
1309
|
+
function :add_storage_controller, :StorageController, [WSTRING, :StorageBus]
|
1310
|
+
function :get_storage_controller_by_name, :StorageController, [WSTRING]
|
1311
|
+
function :get_storage_controller_by_instance, :StorageController, [UINT32]
|
1312
|
+
function :remove_storage_controller, nil, [WSTRING]
|
1313
|
+
function :set_storage_controller_bootable, nil, [WSTRING, BOOL]
|
1314
|
+
function :get_serial_port, :SerialPort, [UINT32]
|
1315
|
+
function :get_parallel_port, :ParallelPort, [UINT32]
|
1316
|
+
function :get_extra_data_keys, [WSTRING], []
|
1317
|
+
function :get_extra_data, WSTRING, [WSTRING]
|
1318
|
+
function :set_extra_data, nil, [WSTRING, WSTRING]
|
1319
|
+
function :get_cpu_property, BOOL, [:CPUPropertyType]
|
1320
|
+
function :set_cpu_property, nil, [:CPUPropertyType, BOOL]
|
1321
|
+
function :get_cpuid_leaf, nil, [UINT32, [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32]]
|
1322
|
+
function :set_cpuid_leaf, nil, [UINT32, UINT32, UINT32, UINT32, UINT32]
|
1323
|
+
function :remove_cpuid_leaf, nil, [UINT32]
|
1324
|
+
function :remove_all_cpuid_leaves, nil, []
|
1325
|
+
function :get_hw_virt_ex_property, BOOL, [:HWVirtExPropertyType]
|
1326
|
+
function :set_hw_virt_ex_property, nil, [:HWVirtExPropertyType, BOOL]
|
1327
|
+
function :save_settings, nil, []
|
1328
|
+
function :discard_settings, nil, []
|
1329
|
+
function :unregister, [:Medium], [:CleanupMode]
|
1330
|
+
function :delete, :Progress, [[:Medium]]
|
1331
|
+
function :export, :VirtualSystemDescription, [:Appliance, WSTRING]
|
1332
|
+
function :find_snapshot, :Snapshot, [WSTRING]
|
1333
|
+
function :create_shared_folder, nil, [WSTRING, WSTRING, BOOL, BOOL]
|
1334
|
+
function :remove_shared_folder, nil, [WSTRING]
|
1335
|
+
function :can_show_console_window, BOOL, []
|
1336
|
+
function :show_console_window, INT64, []
|
1337
|
+
function :get_guest_property, nil, [WSTRING, [:out, WSTRING], [:out, INT64], [:out, WSTRING]]
|
1338
|
+
function :get_guest_property_value, WSTRING, [WSTRING]
|
1339
|
+
function :get_guest_property_timestamp, INT64, [WSTRING]
|
1340
|
+
function :set_guest_property, nil, [WSTRING, WSTRING, WSTRING]
|
1341
|
+
function :set_guest_property_value, nil, [WSTRING, WSTRING]
|
1342
|
+
function :delete_guest_property, nil, [WSTRING]
|
1343
|
+
function :enumerate_guest_properties, nil, [WSTRING, [:out, [WSTRING]], [:out, [WSTRING]], [:out, [INT64]], [:out, [WSTRING]]]
|
1344
|
+
function :query_saved_guest_screen_info, nil, [UINT32, [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, BOOL]]
|
1345
|
+
function :query_saved_thumbnail_size, nil, [UINT32, [:out, UINT32], [:out, UINT32], [:out, UINT32]]
|
1346
|
+
function :read_saved_thumbnail_to_array, [OCTET], [UINT32, BOOL, [:out, UINT32], [:out, UINT32]]
|
1347
|
+
function :read_saved_thumbnail_png_to_array, [OCTET], [UINT32, [:out, UINT32], [:out, UINT32]]
|
1348
|
+
function :query_saved_screenshot_png_size, nil, [UINT32, [:out, UINT32], [:out, UINT32], [:out, UINT32]]
|
1349
|
+
function :read_saved_screenshot_png_to_array, [OCTET], [UINT32, [:out, UINT32], [:out, UINT32]]
|
1350
|
+
function :hot_plug_cpu, nil, [UINT32]
|
1351
|
+
function :hot_unplug_cpu, nil, [UINT32]
|
1352
|
+
function :get_cpu_status, BOOL, [UINT32]
|
1353
|
+
function :query_log_filename, WSTRING, [UINT32]
|
1354
|
+
function :read_log, [OCTET], [UINT32, INT64, INT64]
|
1355
|
+
function :clone_to, :Progress, [:Machine, :CloneMode, [:CloneOptions]]
|
1356
|
+
setup
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
class VRDEServerInfo < AbstractInterface
|
1360
|
+
iid "714434a1-58c3-4aab-9049-7652c5df113b"
|
1361
|
+
extends :NSISupports
|
1362
|
+
property :active, BOOL, :readonly => true
|
1363
|
+
property :port, INT32, :readonly => true
|
1364
|
+
property :number_of_clients, UINT32, :readonly => true
|
1365
|
+
property :begin_time, INT64, :readonly => true
|
1366
|
+
property :end_time, INT64, :readonly => true
|
1367
|
+
property :bytes_sent, INT64, :readonly => true
|
1368
|
+
property :bytes_sent_total, INT64, :readonly => true
|
1369
|
+
property :bytes_received, INT64, :readonly => true
|
1370
|
+
property :bytes_received_total, INT64, :readonly => true
|
1371
|
+
property :user, WSTRING, :readonly => true
|
1372
|
+
property :domain, WSTRING, :readonly => true
|
1373
|
+
property :client_name, WSTRING, :readonly => true
|
1374
|
+
property :client_ip, WSTRING, :readonly => true
|
1375
|
+
property :client_version, UINT32, :readonly => true
|
1376
|
+
property :encryption_style, UINT32, :readonly => true
|
1377
|
+
setup
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
class Console < AbstractInterface
|
1381
|
+
iid "db7ab4ca-2a3f-4183-9243-c1208da92392"
|
1382
|
+
extends :NSISupports
|
1383
|
+
property :machine, :Machine, :readonly => true
|
1384
|
+
property :state, :MachineState, :readonly => true
|
1385
|
+
property :guest, :Guest, :readonly => true
|
1386
|
+
property :keyboard, :Keyboard, :readonly => true
|
1387
|
+
property :mouse, :Mouse, :readonly => true
|
1388
|
+
property :display, :Display, :readonly => true
|
1389
|
+
property :debugger, :MachineDebugger, :readonly => true
|
1390
|
+
property :usb_devices, [:USBDevice], :readonly => true
|
1391
|
+
property :remote_usb_devices, [:HostUSBDevice], :readonly => true
|
1392
|
+
property :shared_folders, [:SharedFolder], :readonly => true
|
1393
|
+
property :vrde_server_info, :VRDEServerInfo, :readonly => true
|
1394
|
+
property :event_source, :EventSource, :readonly => true
|
1395
|
+
property :attached_pci_devices, [:PCIDeviceAttachment], :readonly => true
|
1396
|
+
property :use_host_clipboard, BOOL
|
1397
|
+
function :power_up, :Progress, []
|
1398
|
+
function :power_up_paused, :Progress, []
|
1399
|
+
function :power_down, :Progress, []
|
1400
|
+
function :reset, nil, []
|
1401
|
+
function :pause, nil, []
|
1402
|
+
function :resume, nil, []
|
1403
|
+
function :power_button, nil, []
|
1404
|
+
function :sleep_button, nil, []
|
1405
|
+
function :get_power_button_handled, BOOL, []
|
1406
|
+
function :get_guest_entered_acpi_mode, BOOL, []
|
1407
|
+
function :save_state, :Progress, []
|
1408
|
+
function :adopt_saved_state, nil, [WSTRING]
|
1409
|
+
function :discard_saved_state, nil, [BOOL]
|
1410
|
+
function :get_device_activity, :DeviceActivity, [:DeviceType]
|
1411
|
+
function :attach_usb_device, nil, [WSTRING]
|
1412
|
+
function :detach_usb_device, :USBDevice, [WSTRING]
|
1413
|
+
function :find_usb_device_by_address, :USBDevice, [WSTRING]
|
1414
|
+
function :find_usb_device_by_id, :USBDevice, [WSTRING]
|
1415
|
+
function :create_shared_folder, nil, [WSTRING, WSTRING, BOOL, BOOL]
|
1416
|
+
function :remove_shared_folder, nil, [WSTRING]
|
1417
|
+
function :take_snapshot, :Progress, [WSTRING, WSTRING]
|
1418
|
+
function :delete_snapshot, :Progress, [WSTRING]
|
1419
|
+
function :delete_snapshot_and_all_children, :Progress, [WSTRING]
|
1420
|
+
function :delete_snapshot_range, :Progress, [WSTRING, WSTRING]
|
1421
|
+
function :restore_snapshot, :Progress, [:Snapshot]
|
1422
|
+
function :teleport, :Progress, [WSTRING, UINT32, WSTRING, UINT32]
|
1423
|
+
setup
|
1424
|
+
end
|
1425
|
+
|
1426
|
+
class HostNetworkInterface < AbstractInterface
|
1427
|
+
iid "87a4153d-6889-4dd6-9654-2e9ff0ae8dec"
|
1428
|
+
extends :NSISupports
|
1429
|
+
property :name, WSTRING, :readonly => true
|
1430
|
+
property :id, WSTRING, :readonly => true
|
1431
|
+
property :network_name, WSTRING, :readonly => true
|
1432
|
+
property :dhcp_enabled, BOOL, :readonly => true
|
1433
|
+
property :ip_address, WSTRING, :readonly => true
|
1434
|
+
property :network_mask, WSTRING, :readonly => true
|
1435
|
+
property :ipv6_supported, BOOL, :readonly => true
|
1436
|
+
property :ipv6_address, WSTRING, :readonly => true
|
1437
|
+
property :ipv6_network_mask_prefix_length, UINT32, :readonly => true
|
1438
|
+
property :hardware_address, WSTRING, :readonly => true
|
1439
|
+
property :medium_type, :HostNetworkInterfaceMediumType, :readonly => true
|
1440
|
+
property :status, :HostNetworkInterfaceStatus, :readonly => true
|
1441
|
+
property :interface_type, :HostNetworkInterfaceType, :readonly => true
|
1442
|
+
function :enable_static_ip_config, nil, [WSTRING, WSTRING]
|
1443
|
+
function :enable_static_ip_config_v6, nil, [WSTRING, UINT32]
|
1444
|
+
function :enable_dynamic_ip_config, nil, []
|
1445
|
+
function :dhcp_rediscover, nil, []
|
1446
|
+
setup
|
1447
|
+
end
|
1448
|
+
|
1449
|
+
class Host < AbstractInterface
|
1450
|
+
iid "30678943-32df-4830-b413-931b25ac86a0"
|
1451
|
+
extends :NSISupports
|
1452
|
+
property :dvd_drives, [:Medium], :readonly => true
|
1453
|
+
property :floppy_drives, [:Medium], :readonly => true
|
1454
|
+
property :usb_devices, [:HostUSBDevice], :readonly => true
|
1455
|
+
property :usb_device_filters, [:HostUSBDeviceFilter], :readonly => true
|
1456
|
+
property :network_interfaces, [:HostNetworkInterface], :readonly => true
|
1457
|
+
property :processor_count, UINT32, :readonly => true
|
1458
|
+
property :processor_online_count, UINT32, :readonly => true
|
1459
|
+
property :processor_core_count, UINT32, :readonly => true
|
1460
|
+
property :memory_size, UINT32, :readonly => true
|
1461
|
+
property :memory_available, UINT32, :readonly => true
|
1462
|
+
property :operating_system, WSTRING, :readonly => true
|
1463
|
+
property :os_version, WSTRING, :readonly => true
|
1464
|
+
property :utc_time, INT64, :readonly => true
|
1465
|
+
property :acceleration3d_available, BOOL, :readonly => true
|
1466
|
+
function :get_processor_speed, UINT32, [UINT32]
|
1467
|
+
function :get_processor_feature, BOOL, [:ProcessorFeature]
|
1468
|
+
function :get_processor_description, WSTRING, [UINT32]
|
1469
|
+
function :get_processor_cpuid_leaf, nil, [UINT32, UINT32, UINT32, [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32]]
|
1470
|
+
function :create_host_only_network_interface, :Progress, [[:out, :HostNetworkInterface]]
|
1471
|
+
function :remove_host_only_network_interface, :Progress, [WSTRING]
|
1472
|
+
function :create_usb_device_filter, :HostUSBDeviceFilter, [WSTRING]
|
1473
|
+
function :insert_usb_device_filter, nil, [UINT32, :HostUSBDeviceFilter]
|
1474
|
+
function :remove_usb_device_filter, nil, [UINT32]
|
1475
|
+
function :find_host_dvd_drive, :Medium, [WSTRING]
|
1476
|
+
function :find_host_floppy_drive, :Medium, [WSTRING]
|
1477
|
+
function :find_host_network_interface_by_name, :HostNetworkInterface, [WSTRING]
|
1478
|
+
function :find_host_network_interface_by_id, :HostNetworkInterface, [WSTRING]
|
1479
|
+
function :find_host_network_interfaces_of_type, [:HostNetworkInterface], [:HostNetworkInterfaceType]
|
1480
|
+
function :find_usb_device_by_id, :HostUSBDevice, [WSTRING]
|
1481
|
+
function :find_usb_device_by_address, :HostUSBDevice, [WSTRING]
|
1482
|
+
function :generate_mac_address, WSTRING, []
|
1483
|
+
setup
|
1484
|
+
end
|
1485
|
+
|
1486
|
+
class SystemProperties < AbstractInterface
|
1487
|
+
iid "1d7aca29-97f0-4287-9874-a60ec4f80ea6"
|
1488
|
+
extends :NSISupports
|
1489
|
+
property :min_guest_ram, UINT32, :readonly => true
|
1490
|
+
property :max_guest_ram, UINT32, :readonly => true
|
1491
|
+
property :min_guest_vram, UINT32, :readonly => true
|
1492
|
+
property :max_guest_vram, UINT32, :readonly => true
|
1493
|
+
property :min_guest_cpu_count, UINT32, :readonly => true
|
1494
|
+
property :max_guest_cpu_count, UINT32, :readonly => true
|
1495
|
+
property :max_guest_monitors, UINT32, :readonly => true
|
1496
|
+
property :info_vd_size, INT64, :readonly => true
|
1497
|
+
property :serial_port_count, UINT32, :readonly => true
|
1498
|
+
property :parallel_port_count, UINT32, :readonly => true
|
1499
|
+
property :max_boot_position, UINT32, :readonly => true
|
1500
|
+
property :default_machine_folder, WSTRING
|
1501
|
+
property :medium_formats, [:MediumFormat], :readonly => true
|
1502
|
+
property :default_hard_disk_format, WSTRING
|
1503
|
+
property :free_disk_space_warning, INT64
|
1504
|
+
property :free_disk_space_percent_warning, UINT32
|
1505
|
+
property :free_disk_space_error, INT64
|
1506
|
+
property :free_disk_space_percent_error, UINT32
|
1507
|
+
property :vrde_auth_library, WSTRING
|
1508
|
+
property :web_service_auth_library, WSTRING
|
1509
|
+
property :default_vrde_ext_pack, WSTRING
|
1510
|
+
property :log_history_count, UINT32
|
1511
|
+
property :default_audio_driver, :AudioDriverType, :readonly => true
|
1512
|
+
property :autostart_database_path, WSTRING
|
1513
|
+
property :default_additions_iso, WSTRING
|
1514
|
+
function :get_max_network_adapters, UINT32, [:ChipsetType]
|
1515
|
+
function :get_max_network_adapters_of_type, UINT32, [:ChipsetType, :NetworkAttachmentType]
|
1516
|
+
function :get_max_devices_per_port_for_storage_bus, UINT32, [:StorageBus]
|
1517
|
+
function :get_min_port_count_for_storage_bus, UINT32, [:StorageBus]
|
1518
|
+
function :get_max_port_count_for_storage_bus, UINT32, [:StorageBus]
|
1519
|
+
function :get_max_instances_of_storage_bus, UINT32, [:ChipsetType, :StorageBus]
|
1520
|
+
function :get_device_types_for_storage_bus, [:DeviceType], [:StorageBus]
|
1521
|
+
function :get_default_io_cache_setting_for_storage_controller, BOOL, [:StorageControllerType]
|
1522
|
+
setup
|
1523
|
+
end
|
1524
|
+
|
1525
|
+
class GuestOSType < AbstractInterface
|
1526
|
+
iid "6d968f9a-858b-4c50-bf17-241f069e94c2"
|
1527
|
+
extends :NSISupports
|
1528
|
+
property :family_id, WSTRING, :readonly => true
|
1529
|
+
property :family_description, WSTRING, :readonly => true
|
1530
|
+
property :id, WSTRING, :readonly => true
|
1531
|
+
property :description, WSTRING, :readonly => true
|
1532
|
+
property :is64_bit, BOOL, :readonly => true
|
1533
|
+
property :recommended_io_apic, BOOL, :readonly => true
|
1534
|
+
property :recommended_virt_ex, BOOL, :readonly => true
|
1535
|
+
property :recommended_ram, UINT32, :readonly => true
|
1536
|
+
property :recommended_vram, UINT32, :readonly => true
|
1537
|
+
property :recommended2d_video_acceleration, BOOL, :readonly => true
|
1538
|
+
property :recommended3d_acceleration, BOOL, :readonly => true
|
1539
|
+
property :recommended_hdd, INT64, :readonly => true
|
1540
|
+
property :adapter_type, :NetworkAdapterType, :readonly => true
|
1541
|
+
property :recommended_pae, BOOL, :readonly => true
|
1542
|
+
property :recommended_dvd_storage_controller, :StorageControllerType, :readonly => true
|
1543
|
+
property :recommended_dvd_storage_bus, :StorageBus, :readonly => true
|
1544
|
+
property :recommended_hd_storage_controller, :StorageControllerType, :readonly => true
|
1545
|
+
property :recommended_hd_storage_bus, :StorageBus, :readonly => true
|
1546
|
+
property :recommended_firmware, :FirmwareType, :readonly => true
|
1547
|
+
property :recommended_usb_hid, BOOL, :readonly => true
|
1548
|
+
property :recommended_hpet, BOOL, :readonly => true
|
1549
|
+
property :recommended_usb_tablet, BOOL, :readonly => true
|
1550
|
+
property :recommended_rtc_use_utc, BOOL, :readonly => true
|
1551
|
+
property :recommended_chipset, :ChipsetType, :readonly => true
|
1552
|
+
property :recommended_audio_controller, :AudioControllerType, :readonly => true
|
1553
|
+
property :recommended_floppy, BOOL, :readonly => true
|
1554
|
+
property :recommended_usb, BOOL, :readonly => true
|
1555
|
+
setup
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
class AdditionsFacility < AbstractInterface
|
1559
|
+
iid "54992946-6af1-4e49-98ec-58b558b7291e"
|
1560
|
+
extends :NSISupports
|
1561
|
+
property :class_type, :AdditionsFacilityClass, :readonly => true
|
1562
|
+
property :last_updated, INT64, :readonly => true
|
1563
|
+
property :name, WSTRING, :readonly => true
|
1564
|
+
property :status, :AdditionsFacilityStatus, :readonly => true
|
1565
|
+
property :type, :AdditionsFacilityType, :readonly => true
|
1566
|
+
setup
|
1567
|
+
end
|
1568
|
+
|
1569
|
+
class GuestSession < AbstractInterface
|
1570
|
+
iid "57eb82a8-822b-42c1-9d1c-5c54bc3d3250"
|
1571
|
+
extends :NSISupports
|
1572
|
+
property :user, WSTRING, :readonly => true
|
1573
|
+
property :domain, WSTRING, :readonly => true
|
1574
|
+
property :name, WSTRING, :readonly => true
|
1575
|
+
property :id, UINT32, :readonly => true
|
1576
|
+
property :timeout, UINT32, :readonly => true
|
1577
|
+
property :environment, [WSTRING]
|
1578
|
+
property :processes, [:GuestProcess], :readonly => true
|
1579
|
+
property :directories, [:GuestDirectory], :readonly => true
|
1580
|
+
property :files, [:GuestFile], :readonly => true
|
1581
|
+
function :close, nil, []
|
1582
|
+
function :copy_from, :Progress, [WSTRING, WSTRING, [:CopyFileFlag]]
|
1583
|
+
function :copy_to, :Progress, [WSTRING, WSTRING, [:CopyFileFlag]]
|
1584
|
+
function :directory_create, nil, [WSTRING, UINT32, [:DirectoryCreateFlag]]
|
1585
|
+
function :directory_create_temp, WSTRING, [WSTRING, UINT32, WSTRING, BOOL]
|
1586
|
+
function :directory_exists, BOOL, [WSTRING]
|
1587
|
+
function :directory_open, :GuestDirectory, [WSTRING, WSTRING, [:DirectoryOpenFlag]]
|
1588
|
+
function :directory_query_info, :GuestFsObjInfo, [WSTRING]
|
1589
|
+
function :directory_remove, nil, [WSTRING]
|
1590
|
+
function :directory_remove_recursive, :Progress, [WSTRING, [:DirectoryRemoveRecFlag]]
|
1591
|
+
function :directory_rename, nil, [WSTRING, WSTRING, [:PathRenameFlag]]
|
1592
|
+
function :directory_set_acl, nil, [WSTRING, WSTRING]
|
1593
|
+
function :environment_clear, nil, []
|
1594
|
+
function :environment_get, WSTRING, [WSTRING]
|
1595
|
+
function :environment_set, nil, [WSTRING, WSTRING]
|
1596
|
+
function :environment_unset, nil, [WSTRING]
|
1597
|
+
function :file_create_temp, :GuestFile, [WSTRING, UINT32, WSTRING, BOOL]
|
1598
|
+
function :file_exists, BOOL, [WSTRING]
|
1599
|
+
function :file_remove, nil, [WSTRING]
|
1600
|
+
function :file_open, :GuestFile, [WSTRING, WSTRING, WSTRING, UINT32, INT64]
|
1601
|
+
function :file_query_info, :GuestFsObjInfo, [WSTRING]
|
1602
|
+
function :file_query_size, INT64, [WSTRING]
|
1603
|
+
function :file_rename, nil, [WSTRING, WSTRING, [:PathRenameFlag]]
|
1604
|
+
function :file_set_acl, nil, [WSTRING, WSTRING]
|
1605
|
+
function :process_create, :GuestProcess, [WSTRING, [WSTRING], [WSTRING], [:ProcessCreateFlag], UINT32]
|
1606
|
+
function :process_create_ex, :GuestProcess, [WSTRING, [WSTRING], [WSTRING], [:ProcessCreateFlag], UINT32, :ProcessPriority, [INT32]]
|
1607
|
+
function :process_get, :GuestProcess, [UINT32]
|
1608
|
+
function :symlink_create, nil, [WSTRING, WSTRING, :SymlinkType]
|
1609
|
+
function :symlink_exists, BOOL, [WSTRING]
|
1610
|
+
function :symlink_read, WSTRING, [WSTRING, [:SymlinkReadFlag]]
|
1611
|
+
function :symlink_remove_directory, nil, [WSTRING]
|
1612
|
+
function :symlink_remove_file, nil, [WSTRING]
|
1613
|
+
setup
|
1614
|
+
end
|
1615
|
+
|
1616
|
+
class Process < AbstractInterface
|
1617
|
+
iid "08864d56-96ab-418b-adbc-5a679532aeb0"
|
1618
|
+
extends :NSISupports
|
1619
|
+
property :pid, UINT32, :readonly => true
|
1620
|
+
property :status, :ProcessStatus, :readonly => true
|
1621
|
+
property :exit_code, INT32, :readonly => true
|
1622
|
+
property :environment, [WSTRING], :readonly => true
|
1623
|
+
property :arguments, [WSTRING], :readonly => true
|
1624
|
+
property :executable_path, WSTRING, :readonly => true
|
1625
|
+
property :name, WSTRING, :readonly => true
|
1626
|
+
function :wait_for, :ProcessWaitResult, [UINT32, UINT32]
|
1627
|
+
function :wait_for_array, :ProcessWaitResult, [[:ProcessWaitForFlag], UINT32]
|
1628
|
+
function :read, [OCTET], [UINT32, UINT32, UINT32]
|
1629
|
+
function :write, UINT32, [UINT32, UINT32, [OCTET], UINT32]
|
1630
|
+
function :write_array, UINT32, [UINT32, [:ProcessInputFlag], [OCTET], UINT32]
|
1631
|
+
function :terminate, nil, []
|
1632
|
+
setup
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
class GuestProcess < AbstractInterface
|
1636
|
+
iid "dfa39a36-5d43-4840-a025-67ea956b3111"
|
1637
|
+
extends :Process
|
1638
|
+
setup
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
class Directory < AbstractInterface
|
1642
|
+
iid "1b70dd03-26d7-483a-8877-89bbb0f87b70"
|
1643
|
+
extends :NSISupports
|
1644
|
+
property :directory_name, WSTRING, :readonly => true
|
1645
|
+
property :filter, WSTRING, :readonly => true
|
1646
|
+
function :close, nil, []
|
1647
|
+
function :read, :FsObjInfo, []
|
1648
|
+
setup
|
1649
|
+
end
|
1650
|
+
|
1651
|
+
class GuestDirectory < AbstractInterface
|
1652
|
+
iid "af4a8ce0-0725-42b7-8826-46e3c7ba7357"
|
1653
|
+
extends :Directory
|
1654
|
+
setup
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class File < AbstractInterface
|
1658
|
+
iid "b702a560-6139-4a8e-a892-bbf14b97bf97"
|
1659
|
+
extends :NSISupports
|
1660
|
+
property :creation_mode, UINT32, :readonly => true
|
1661
|
+
property :disposition, UINT32, :readonly => true
|
1662
|
+
property :file_name, WSTRING, :readonly => true
|
1663
|
+
property :initial_size, INT64, :readonly => true
|
1664
|
+
property :open_mode, UINT32, :readonly => true
|
1665
|
+
property :offset, INT64, :readonly => true
|
1666
|
+
function :close, nil, []
|
1667
|
+
function :query_info, :FsObjInfo, []
|
1668
|
+
function :read, [OCTET], [UINT32, UINT32]
|
1669
|
+
function :read_at, [OCTET], [INT64, UINT32, UINT32]
|
1670
|
+
function :seek, nil, [INT64, :FileSeekType]
|
1671
|
+
function :set_acl, nil, [WSTRING]
|
1672
|
+
function :write, UINT32, [[OCTET], UINT32]
|
1673
|
+
function :write_at, UINT32, [INT64, [OCTET], UINT32]
|
1674
|
+
setup
|
1675
|
+
end
|
1676
|
+
|
1677
|
+
class GuestFile < AbstractInterface
|
1678
|
+
iid "60661aec-145f-4d11-b80e-8ea151598093"
|
1679
|
+
extends :File
|
1680
|
+
setup
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
class FsObjInfo < AbstractInterface
|
1684
|
+
iid "4047ba30-7006-4966-ae86-94164e5e20eb"
|
1685
|
+
extends :NSISupports
|
1686
|
+
property :access_time, INT64, :readonly => true
|
1687
|
+
property :allocated_size, INT64, :readonly => true
|
1688
|
+
property :birth_time, INT64, :readonly => true
|
1689
|
+
property :change_time, INT64, :readonly => true
|
1690
|
+
property :device_number, UINT32, :readonly => true
|
1691
|
+
property :file_attributes, WSTRING, :readonly => true
|
1692
|
+
property :generation_id, UINT32, :readonly => true
|
1693
|
+
property :gid, UINT32, :readonly => true
|
1694
|
+
property :group_name, WSTRING, :readonly => true
|
1695
|
+
property :hard_links, UINT32, :readonly => true
|
1696
|
+
property :modification_time, INT64, :readonly => true
|
1697
|
+
property :name, WSTRING, :readonly => true
|
1698
|
+
property :node_id, INT64, :readonly => true
|
1699
|
+
property :node_id_device, UINT32, :readonly => true
|
1700
|
+
property :object_size, INT64, :readonly => true
|
1701
|
+
property :type, :FsObjType, :readonly => true
|
1702
|
+
property :uid, UINT32, :readonly => true
|
1703
|
+
property :user_flags, UINT32, :readonly => true
|
1704
|
+
property :user_name, WSTRING, :readonly => true
|
1705
|
+
setup
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
class GuestFsObjInfo < AbstractInterface
|
1709
|
+
iid "d5cf678e-3484-4e4a-ac55-329e15462e18"
|
1710
|
+
extends :FsObjInfo
|
1711
|
+
setup
|
1712
|
+
end
|
1713
|
+
|
1714
|
+
class Guest < AbstractInterface
|
1715
|
+
iid "19c32350-0618-4ede-b0c3-2b4311bf0d9b"
|
1716
|
+
extends :NSISupports
|
1717
|
+
property :os_type_id, WSTRING, :readonly => true
|
1718
|
+
property :additions_run_level, :AdditionsRunLevelType, :readonly => true
|
1719
|
+
property :additions_version, WSTRING, :readonly => true
|
1720
|
+
property :additions_revision, UINT32, :readonly => true
|
1721
|
+
property :facilities, [:AdditionsFacility], :readonly => true
|
1722
|
+
property :sessions, [:GuestSession], :readonly => true
|
1723
|
+
property :memory_balloon_size, UINT32
|
1724
|
+
property :statistics_update_interval, UINT32
|
1725
|
+
function :internal_get_statistics, nil, [[:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32]]
|
1726
|
+
function :get_facility_status, :AdditionsFacilityStatus, [:AdditionsFacilityType, [:out, INT64]]
|
1727
|
+
function :get_additions_status, BOOL, [:AdditionsRunLevelType]
|
1728
|
+
function :set_credentials, nil, [WSTRING, WSTRING, WSTRING, BOOL]
|
1729
|
+
function :drag_hg_enter, :DragAndDropAction, [UINT32, UINT32, UINT32, :DragAndDropAction, [:DragAndDropAction], [WSTRING]]
|
1730
|
+
function :drag_hg_move, :DragAndDropAction, [UINT32, UINT32, UINT32, :DragAndDropAction, [:DragAndDropAction], [WSTRING]]
|
1731
|
+
function :drag_hg_leave, nil, [UINT32]
|
1732
|
+
function :drag_hg_drop, :DragAndDropAction, [UINT32, UINT32, UINT32, :DragAndDropAction, [:DragAndDropAction], [WSTRING], [:out, WSTRING]]
|
1733
|
+
function :drag_hg_put_data, :Progress, [UINT32, WSTRING, [OCTET]]
|
1734
|
+
function :drag_gh_pending, :DragAndDropAction, [UINT32, [:out, [WSTRING]], [:out, [:DragAndDropAction]]]
|
1735
|
+
function :drag_gh_dropped, :Progress, [WSTRING, :DragAndDropAction]
|
1736
|
+
function :drag_gh_get_data, [OCTET], []
|
1737
|
+
function :create_session, :GuestSession, [WSTRING, WSTRING, WSTRING, WSTRING]
|
1738
|
+
function :find_session, [:GuestSession], [WSTRING]
|
1739
|
+
function :update_guest_additions, :Progress, [WSTRING, [:AdditionsUpdateFlag]]
|
1740
|
+
setup
|
1741
|
+
end
|
1742
|
+
|
1743
|
+
class Progress < AbstractInterface
|
1744
|
+
iid "c20238e4-3221-4d3f-8891-81ce92d9f913"
|
1745
|
+
extends :NSISupports
|
1746
|
+
property :id, WSTRING, :readonly => true
|
1747
|
+
property :description, WSTRING, :readonly => true
|
1748
|
+
property :initiator, :NSISupports, :readonly => true
|
1749
|
+
property :cancelable, BOOL, :readonly => true
|
1750
|
+
property :percent, UINT32, :readonly => true
|
1751
|
+
property :time_remaining, INT32, :readonly => true
|
1752
|
+
property :completed, BOOL, :readonly => true
|
1753
|
+
property :canceled, BOOL, :readonly => true
|
1754
|
+
property :result_code, INT32, :readonly => true
|
1755
|
+
property :error_info, :VirtualBoxErrorInfo, :readonly => true
|
1756
|
+
property :operation_count, UINT32, :readonly => true
|
1757
|
+
property :operation, UINT32, :readonly => true
|
1758
|
+
property :operation_description, WSTRING, :readonly => true
|
1759
|
+
property :operation_percent, UINT32, :readonly => true
|
1760
|
+
property :operation_weight, UINT32, :readonly => true
|
1761
|
+
property :timeout, UINT32
|
1762
|
+
function :set_current_operation_progress, nil, [UINT32]
|
1763
|
+
function :set_next_operation, nil, [WSTRING, UINT32]
|
1764
|
+
function :wait_for_completion, nil, [INT32]
|
1765
|
+
function :wait_for_operation_completion, nil, [UINT32, INT32]
|
1766
|
+
function :wait_for_async_progress_completion, nil, [:Progress]
|
1767
|
+
function :cancel, nil, []
|
1768
|
+
setup
|
1769
|
+
end
|
1770
|
+
|
1771
|
+
class Snapshot < AbstractInterface
|
1772
|
+
iid "0472823b-c6e7-472a-8e9f-d732e86b8463"
|
1773
|
+
extends :NSISupports
|
1774
|
+
property :id, WSTRING, :readonly => true
|
1775
|
+
property :name, WSTRING
|
1776
|
+
property :description, WSTRING
|
1777
|
+
property :time_stamp, INT64, :readonly => true
|
1778
|
+
property :online, BOOL, :readonly => true
|
1779
|
+
property :machine, :Machine, :readonly => true
|
1780
|
+
property :parent, :Snapshot, :readonly => true
|
1781
|
+
property :children, [:Snapshot], :readonly => true
|
1782
|
+
function :get_children_count, UINT32, []
|
1783
|
+
setup
|
1784
|
+
end
|
1785
|
+
|
1786
|
+
class MediumAttachment < AbstractInterface
|
1787
|
+
iid "5ee464d6-0613-4331-b154-7ce12170ef9f"
|
1788
|
+
extends :NSISupports
|
1789
|
+
property :medium, :Medium, :readonly => true
|
1790
|
+
property :controller, WSTRING, :readonly => true
|
1791
|
+
property :port, INT32, :readonly => true
|
1792
|
+
property :device, INT32, :readonly => true
|
1793
|
+
property :type, :DeviceType, :readonly => true
|
1794
|
+
property :passthrough, BOOL, :readonly => true
|
1795
|
+
property :temporary_eject, BOOL, :readonly => true
|
1796
|
+
property :is_ejected, BOOL, :readonly => true
|
1797
|
+
property :non_rotational, BOOL, :readonly => true
|
1798
|
+
property :discard, BOOL, :readonly => true
|
1799
|
+
property :bandwidth_group, :BandwidthGroup, :readonly => true
|
1800
|
+
setup
|
1801
|
+
end
|
1802
|
+
|
1803
|
+
class Medium < AbstractInterface
|
1804
|
+
iid "29989373-b111-4654-8493-2e1176cba890"
|
1805
|
+
extends :NSISupports
|
1806
|
+
property :id, WSTRING, :readonly => true
|
1807
|
+
property :description, WSTRING
|
1808
|
+
property :state, :MediumState, :readonly => true
|
1809
|
+
property :variant, UINT32, :readonly => true
|
1810
|
+
property :location, WSTRING
|
1811
|
+
property :name, WSTRING, :readonly => true
|
1812
|
+
property :device_type, :DeviceType, :readonly => true
|
1813
|
+
property :host_drive, BOOL, :readonly => true
|
1814
|
+
property :size, INT64, :readonly => true
|
1815
|
+
property :format, WSTRING, :readonly => true
|
1816
|
+
property :medium_format, :MediumFormat, :readonly => true
|
1817
|
+
property :type, :MediumType
|
1818
|
+
property :allowed_types, [:MediumType], :readonly => true
|
1819
|
+
property :parent, :Medium, :readonly => true
|
1820
|
+
property :children, [:Medium], :readonly => true
|
1821
|
+
property :base, :Medium, :readonly => true
|
1822
|
+
property :read_only, BOOL, :readonly => true
|
1823
|
+
property :logical_size, INT64, :readonly => true
|
1824
|
+
property :auto_reset, BOOL
|
1825
|
+
property :last_access_error, WSTRING, :readonly => true
|
1826
|
+
property :machine_ids, [WSTRING], :readonly => true
|
1827
|
+
function :set_ids, nil, [BOOL, WSTRING, BOOL, WSTRING]
|
1828
|
+
function :refresh_state, :MediumState, []
|
1829
|
+
function :get_snapshot_ids, [WSTRING], [WSTRING]
|
1830
|
+
function :lock_read, :MediumState, []
|
1831
|
+
function :unlock_read, :MediumState, []
|
1832
|
+
function :lock_write, :MediumState, []
|
1833
|
+
function :unlock_write, :MediumState, []
|
1834
|
+
function :close, nil, []
|
1835
|
+
function :get_property, WSTRING, [WSTRING]
|
1836
|
+
function :set_property, nil, [WSTRING, WSTRING]
|
1837
|
+
function :get_properties, [WSTRING], [WSTRING, [:out, [WSTRING]]]
|
1838
|
+
function :set_properties, nil, [[WSTRING], [WSTRING]]
|
1839
|
+
function :create_base_storage, :Progress, [INT64, UINT32]
|
1840
|
+
function :delete_storage, :Progress, []
|
1841
|
+
function :create_diff_storage, :Progress, [:Medium, UINT32]
|
1842
|
+
function :merge_to, :Progress, [:Medium]
|
1843
|
+
function :clone_to, :Progress, [:Medium, UINT32, :Medium]
|
1844
|
+
function :clone_to_base, :Progress, [:Medium, UINT32]
|
1845
|
+
function :compact, :Progress, []
|
1846
|
+
function :resize, :Progress, [INT64]
|
1847
|
+
function :reset, :Progress, []
|
1848
|
+
setup
|
1849
|
+
end
|
1850
|
+
|
1851
|
+
class MediumFormat < AbstractInterface
|
1852
|
+
iid "9bd5b655-ea47-4637-99f3-aad0948be35b"
|
1853
|
+
extends :NSISupports
|
1854
|
+
property :id, WSTRING, :readonly => true
|
1855
|
+
property :name, WSTRING, :readonly => true
|
1856
|
+
property :capabilities, UINT32, :readonly => true
|
1857
|
+
function :describe_file_extensions, nil, [[:out, [WSTRING]], [:out, [:DeviceType]]]
|
1858
|
+
function :describe_properties, nil, [[:out, [WSTRING]], [:out, [WSTRING]], [:out, [:DataType]], [:out, [UINT32]], [:out, [WSTRING]]]
|
1859
|
+
setup
|
1860
|
+
end
|
1861
|
+
|
1862
|
+
class Keyboard < AbstractInterface
|
1863
|
+
iid "f6916ec5-a881-4237-898f-7de58cf88672"
|
1864
|
+
extends :NSISupports
|
1865
|
+
property :event_source, :EventSource, :readonly => true
|
1866
|
+
function :put_scancode, nil, [INT32]
|
1867
|
+
function :put_scancodes, UINT32, [[INT32]]
|
1868
|
+
function :put_cad, nil, []
|
1869
|
+
setup
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
class Mouse < AbstractInterface
|
1873
|
+
iid "05044a52-7811-4f00-ae3a-0ab7ff707b10"
|
1874
|
+
extends :NSISupports
|
1875
|
+
property :absolute_supported, BOOL, :readonly => true
|
1876
|
+
property :relative_supported, BOOL, :readonly => true
|
1877
|
+
property :needs_host_cursor, BOOL, :readonly => true
|
1878
|
+
property :event_source, :EventSource, :readonly => true
|
1879
|
+
function :put_mouse_event, nil, [INT32, INT32, INT32, INT32, INT32]
|
1880
|
+
function :put_mouse_event_absolute, nil, [INT32, INT32, INT32, INT32, INT32]
|
1881
|
+
setup
|
1882
|
+
end
|
1883
|
+
|
1884
|
+
class Framebuffer < AbstractInterface
|
1885
|
+
iid "b7ed347a-5765-40a0-ae1c-f543eb4ddeaf"
|
1886
|
+
extends :NSISupports
|
1887
|
+
property :address, OCTET, :readonly => true
|
1888
|
+
property :width, UINT32, :readonly => true
|
1889
|
+
property :height, UINT32, :readonly => true
|
1890
|
+
property :bits_per_pixel, UINT32, :readonly => true
|
1891
|
+
property :bytes_per_line, UINT32, :readonly => true
|
1892
|
+
property :pixel_format, UINT32, :readonly => true
|
1893
|
+
property :uses_guest_vram, BOOL, :readonly => true
|
1894
|
+
property :height_reduction, UINT32, :readonly => true
|
1895
|
+
property :overlay, :FramebufferOverlay, :readonly => true
|
1896
|
+
property :win_id, INT64, :readonly => true
|
1897
|
+
function :lock, nil, []
|
1898
|
+
function :unlock, nil, []
|
1899
|
+
function :notify_update, nil, [UINT32, UINT32, UINT32, UINT32]
|
1900
|
+
function :request_resize, BOOL, [UINT32, UINT32, :pointer, UINT32, UINT32, UINT32, UINT32]
|
1901
|
+
function :video_mode_supported, BOOL, [UINT32, UINT32, UINT32]
|
1902
|
+
function :get_visible_region, UINT32, [:pointer, UINT32]
|
1903
|
+
function :set_visible_region, nil, [:pointer, UINT32]
|
1904
|
+
function :process_v_hw_a_command, nil, [:pointer]
|
1905
|
+
setup
|
1906
|
+
end
|
1907
|
+
|
1908
|
+
class FramebufferOverlay < AbstractInterface
|
1909
|
+
iid "0bcc1c7e-e415-47d2-bfdb-e4c705fb0f47"
|
1910
|
+
extends :Framebuffer
|
1911
|
+
property :x, UINT32, :readonly => true
|
1912
|
+
property :y, UINT32, :readonly => true
|
1913
|
+
property :visible, BOOL, :readonly => true
|
1914
|
+
property :alpha, UINT32, :readonly => true
|
1915
|
+
function :move, nil, [UINT32, UINT32]
|
1916
|
+
setup
|
1917
|
+
end
|
1918
|
+
|
1919
|
+
class Display < AbstractInterface
|
1920
|
+
iid "b83ee395-8679-40ca-8d60-1a0cbe724930"
|
1921
|
+
extends :NSISupports
|
1922
|
+
function :get_screen_resolution, nil, [UINT32, [:out, UINT32], [:out, UINT32], [:out, UINT32]]
|
1923
|
+
function :set_framebuffer, nil, [UINT32, :Framebuffer]
|
1924
|
+
function :get_framebuffer, nil, [UINT32, [:out, :Framebuffer], [:out, INT32], [:out, INT32]]
|
1925
|
+
function :set_video_mode_hint, nil, [UINT32, BOOL, BOOL, INT32, INT32, UINT32, UINT32, UINT32]
|
1926
|
+
function :set_seamless_mode, nil, [BOOL]
|
1927
|
+
function :take_screenshot, nil, [UINT32, :pointer, UINT32, UINT32]
|
1928
|
+
function :take_screenshot_to_array, [OCTET], [UINT32, UINT32, UINT32]
|
1929
|
+
function :take_screenshot_png_to_array, [OCTET], [UINT32, UINT32, UINT32]
|
1930
|
+
function :draw_to_screen, nil, [UINT32, :pointer, UINT32, UINT32, UINT32, UINT32]
|
1931
|
+
function :invalidate_and_update, nil, []
|
1932
|
+
function :resize_completed, nil, [UINT32]
|
1933
|
+
function :complete_v_hw_a_command, nil, [:pointer]
|
1934
|
+
function :viewport_changed, nil, [UINT32, UINT32, UINT32, UINT32, UINT32]
|
1935
|
+
setup
|
1936
|
+
end
|
1937
|
+
|
1938
|
+
class NetworkAdapter < AbstractInterface
|
1939
|
+
iid "efa0f965-63c7-4c60-afdf-b1cc9943b9c0"
|
1940
|
+
extends :NSISupports
|
1941
|
+
property :adapter_type, :NetworkAdapterType
|
1942
|
+
property :slot, UINT32, :readonly => true
|
1943
|
+
property :enabled, BOOL
|
1944
|
+
property :mac_address, WSTRING
|
1945
|
+
property :attachment_type, :NetworkAttachmentType
|
1946
|
+
property :bridged_interface, WSTRING
|
1947
|
+
property :host_only_interface, WSTRING
|
1948
|
+
property :internal_network, WSTRING
|
1949
|
+
property :nat_network, WSTRING
|
1950
|
+
property :generic_driver, WSTRING
|
1951
|
+
property :cable_connected, BOOL
|
1952
|
+
property :line_speed, UINT32
|
1953
|
+
property :promisc_mode_policy, :NetworkAdapterPromiscModePolicy
|
1954
|
+
property :trace_enabled, BOOL
|
1955
|
+
property :trace_file, WSTRING
|
1956
|
+
property :nat_engine, :NATEngine, :readonly => true
|
1957
|
+
property :boot_priority, UINT32
|
1958
|
+
property :bandwidth_group, :BandwidthGroup
|
1959
|
+
function :get_property, WSTRING, [WSTRING]
|
1960
|
+
function :set_property, nil, [WSTRING, WSTRING]
|
1961
|
+
function :get_properties, [WSTRING], [WSTRING, [:out, [WSTRING]]]
|
1962
|
+
setup
|
1963
|
+
end
|
1964
|
+
|
1965
|
+
class SerialPort < AbstractInterface
|
1966
|
+
iid "937f6970-5103-4745-b78e-d28dcf1479a8"
|
1967
|
+
extends :NSISupports
|
1968
|
+
property :slot, UINT32, :readonly => true
|
1969
|
+
property :enabled, BOOL
|
1970
|
+
property :io_base, UINT32
|
1971
|
+
property :irq, UINT32
|
1972
|
+
property :host_mode, :PortMode
|
1973
|
+
property :server, BOOL
|
1974
|
+
property :path, WSTRING
|
1975
|
+
setup
|
1976
|
+
end
|
1977
|
+
|
1978
|
+
class ParallelPort < AbstractInterface
|
1979
|
+
iid "0c925f06-dd10-4b77-8de8-294d738c3214"
|
1980
|
+
extends :NSISupports
|
1981
|
+
property :slot, UINT32, :readonly => true
|
1982
|
+
property :enabled, BOOL
|
1983
|
+
property :io_base, UINT32
|
1984
|
+
property :irq, UINT32
|
1985
|
+
property :path, WSTRING
|
1986
|
+
setup
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
class MachineDebugger < AbstractInterface
|
1990
|
+
iid "a9abbb7c-d678-43b2-bed2-19ec0e32303d"
|
1991
|
+
extends :NSISupports
|
1992
|
+
property :single_step, BOOL
|
1993
|
+
property :recompile_user, BOOL
|
1994
|
+
property :recompile_supervisor, BOOL
|
1995
|
+
property :patm_enabled, BOOL
|
1996
|
+
property :csam_enabled, BOOL
|
1997
|
+
property :log_enabled, BOOL
|
1998
|
+
property :log_dbg_flags, WSTRING, :readonly => true
|
1999
|
+
property :log_dbg_groups, WSTRING, :readonly => true
|
2000
|
+
property :log_dbg_destinations, WSTRING, :readonly => true
|
2001
|
+
property :log_rel_flags, WSTRING, :readonly => true
|
2002
|
+
property :log_rel_groups, WSTRING, :readonly => true
|
2003
|
+
property :log_rel_destinations, WSTRING, :readonly => true
|
2004
|
+
property :hw_virt_ex_enabled, BOOL, :readonly => true
|
2005
|
+
property :hw_virt_ex_nested_paging_enabled, BOOL, :readonly => true
|
2006
|
+
property :hw_virt_ex_vpid_enabled, BOOL, :readonly => true
|
2007
|
+
property :os_name, WSTRING, :readonly => true
|
2008
|
+
property :os_version, WSTRING, :readonly => true
|
2009
|
+
property :pae_enabled, BOOL, :readonly => true
|
2010
|
+
property :virtual_time_rate, UINT32
|
2011
|
+
property :vm, INT64, :readonly => true
|
2012
|
+
function :dump_guest_core, nil, [WSTRING, WSTRING]
|
2013
|
+
function :dump_host_process_core, nil, [WSTRING, WSTRING]
|
2014
|
+
function :info, WSTRING, [WSTRING, WSTRING]
|
2015
|
+
function :inject_n_m_i, nil, []
|
2016
|
+
function :modify_log_groups, nil, [WSTRING]
|
2017
|
+
function :modify_log_flags, nil, [WSTRING]
|
2018
|
+
function :modify_log_destinations, nil, [WSTRING]
|
2019
|
+
function :read_physical_memory, [OCTET], [INT64, UINT32]
|
2020
|
+
function :write_physical_memory, nil, [INT64, UINT32, [OCTET]]
|
2021
|
+
function :read_virtual_memory, [OCTET], [UINT32, INT64, UINT32]
|
2022
|
+
function :write_virtual_memory, nil, [UINT32, INT64, UINT32, [OCTET]]
|
2023
|
+
function :detect_os, WSTRING, []
|
2024
|
+
function :get_register, WSTRING, [UINT32, WSTRING]
|
2025
|
+
function :get_registers, nil, [UINT32, [:out, [WSTRING]], [:out, [WSTRING]]]
|
2026
|
+
function :set_register, nil, [UINT32, WSTRING, WSTRING]
|
2027
|
+
function :set_registers, nil, [UINT32, [WSTRING], [WSTRING]]
|
2028
|
+
function :dump_guest_stack, WSTRING, [UINT32]
|
2029
|
+
function :reset_stats, nil, [WSTRING]
|
2030
|
+
function :dump_stats, nil, [WSTRING]
|
2031
|
+
function :get_stats, nil, [WSTRING, BOOL, [:out, WSTRING]]
|
2032
|
+
setup
|
2033
|
+
end
|
2034
|
+
|
2035
|
+
class USBController < AbstractInterface
|
2036
|
+
iid "01e6f13a-0580-452f-a40f-74e32a5e4921"
|
2037
|
+
extends :NSISupports
|
2038
|
+
property :enabled, BOOL
|
2039
|
+
property :enabled_e_h_c_i, BOOL
|
2040
|
+
property :proxy_available, BOOL, :readonly => true
|
2041
|
+
property :usb_standard, UINT16, :readonly => true
|
2042
|
+
property :device_filters, [:USBDeviceFilter], :readonly => true
|
2043
|
+
function :create_device_filter, :USBDeviceFilter, [WSTRING]
|
2044
|
+
function :insert_device_filter, nil, [UINT32, :USBDeviceFilter]
|
2045
|
+
function :remove_device_filter, :USBDeviceFilter, [UINT32]
|
2046
|
+
setup
|
2047
|
+
end
|
2048
|
+
|
2049
|
+
class USBDevice < AbstractInterface
|
2050
|
+
iid "f8967b0b-4483-400f-92b5-8b675d98a85b"
|
2051
|
+
extends :NSISupports
|
2052
|
+
property :id, WSTRING, :readonly => true
|
2053
|
+
property :vendor_id, UINT16, :readonly => true
|
2054
|
+
property :product_id, UINT16, :readonly => true
|
2055
|
+
property :revision, UINT16, :readonly => true
|
2056
|
+
property :manufacturer, WSTRING, :readonly => true
|
2057
|
+
property :product, WSTRING, :readonly => true
|
2058
|
+
property :serial_number, WSTRING, :readonly => true
|
2059
|
+
property :address, WSTRING, :readonly => true
|
2060
|
+
property :port, UINT16, :readonly => true
|
2061
|
+
property :version, UINT16, :readonly => true
|
2062
|
+
property :port_version, UINT16, :readonly => true
|
2063
|
+
property :remote, BOOL, :readonly => true
|
2064
|
+
setup
|
2065
|
+
end
|
2066
|
+
|
2067
|
+
class USBDeviceFilter < AbstractInterface
|
2068
|
+
iid "d6831fb4-1a94-4c2c-96ef-8d0d6192066d"
|
2069
|
+
extends :NSISupports
|
2070
|
+
property :name, WSTRING
|
2071
|
+
property :active, BOOL
|
2072
|
+
property :vendor_id, WSTRING
|
2073
|
+
property :product_id, WSTRING
|
2074
|
+
property :revision, WSTRING
|
2075
|
+
property :manufacturer, WSTRING
|
2076
|
+
property :product, WSTRING
|
2077
|
+
property :serial_number, WSTRING
|
2078
|
+
property :port, WSTRING
|
2079
|
+
property :remote, WSTRING
|
2080
|
+
property :masked_interfaces, UINT32
|
2081
|
+
setup
|
2082
|
+
end
|
2083
|
+
|
2084
|
+
class HostUSBDevice < AbstractInterface
|
2085
|
+
iid "173b4b44-d268-4334-a00d-b6521c9a740a"
|
2086
|
+
extends :USBDevice
|
2087
|
+
property :state, :USBDeviceState, :readonly => true
|
2088
|
+
setup
|
2089
|
+
end
|
2090
|
+
|
2091
|
+
class HostUSBDeviceFilter < AbstractInterface
|
2092
|
+
iid "4cc70246-d74a-400f-8222-3900489c0374"
|
2093
|
+
extends :USBDeviceFilter
|
2094
|
+
property :action, :USBDeviceFilterAction
|
2095
|
+
setup
|
2096
|
+
end
|
2097
|
+
|
2098
|
+
class AudioAdapter < AbstractInterface
|
2099
|
+
iid "921873db-5f3f-4b69-91f9-7be9e535a2cb"
|
2100
|
+
extends :NSISupports
|
2101
|
+
property :enabled, BOOL
|
2102
|
+
property :audio_controller, :AudioControllerType
|
2103
|
+
property :audio_driver, :AudioDriverType
|
2104
|
+
setup
|
2105
|
+
end
|
2106
|
+
|
2107
|
+
class VRDEServer < AbstractInterface
|
2108
|
+
iid "d38de40a-c2c1-4e95-b5a4-167b05f5694c"
|
2109
|
+
extends :NSISupports
|
2110
|
+
property :enabled, BOOL
|
2111
|
+
property :auth_type, :AuthType
|
2112
|
+
property :auth_timeout, UINT32
|
2113
|
+
property :allow_multi_connection, BOOL
|
2114
|
+
property :reuse_single_connection, BOOL
|
2115
|
+
property :vrde_ext_pack, WSTRING
|
2116
|
+
property :auth_library, WSTRING
|
2117
|
+
property :vrde_properties, [WSTRING], :readonly => true
|
2118
|
+
function :set_vrde_property, nil, [WSTRING, WSTRING]
|
2119
|
+
function :get_vrde_property, WSTRING, [WSTRING]
|
2120
|
+
setup
|
2121
|
+
end
|
2122
|
+
|
2123
|
+
class SharedFolder < AbstractInterface
|
2124
|
+
iid "8388da11-b559-4574-a5b7-2bd7acd5cef8"
|
2125
|
+
extends :NSISupports
|
2126
|
+
property :name, WSTRING, :readonly => true
|
2127
|
+
property :host_path, WSTRING, :readonly => true
|
2128
|
+
property :accessible, BOOL, :readonly => true
|
2129
|
+
property :writable, BOOL, :readonly => true
|
2130
|
+
property :auto_mount, BOOL, :readonly => true
|
2131
|
+
property :last_access_error, WSTRING, :readonly => true
|
2132
|
+
setup
|
2133
|
+
end
|
2134
|
+
|
2135
|
+
class InternalSessionControl < AbstractInterface
|
2136
|
+
iid "3e83963a-1c3b-400d-8c5f-f2d077b0a597"
|
2137
|
+
extends :NSISupports
|
2138
|
+
function :get_pid, UINT32, []
|
2139
|
+
function :get_remote_console, :Console, []
|
2140
|
+
function :assign_machine, nil, [:Machine, :LockType]
|
2141
|
+
function :assign_remote_machine, nil, [:Machine, :Console]
|
2142
|
+
function :update_machine_state, nil, [:MachineState]
|
2143
|
+
function :uninitialize, nil, []
|
2144
|
+
function :on_network_adapter_change, nil, [:NetworkAdapter, BOOL]
|
2145
|
+
function :on_serial_port_change, nil, [:SerialPort]
|
2146
|
+
function :on_parallel_port_change, nil, [:ParallelPort]
|
2147
|
+
function :on_storage_controller_change, nil, []
|
2148
|
+
function :on_medium_change, nil, [:MediumAttachment, BOOL]
|
2149
|
+
function :on_storage_device_change, nil, [:MediumAttachment, BOOL]
|
2150
|
+
function :on_clipboard_mode_change, nil, [:ClipboardMode]
|
2151
|
+
function :on_drag_and_drop_mode_change, nil, [:DragAndDropMode]
|
2152
|
+
function :on_cpu_change, nil, [UINT32, BOOL]
|
2153
|
+
function :on_cpu_execution_cap_change, nil, [UINT32]
|
2154
|
+
function :on_vrde_server_change, nil, [BOOL]
|
2155
|
+
function :on_usb_controller_change, nil, []
|
2156
|
+
function :on_shared_folder_change, nil, [BOOL]
|
2157
|
+
function :on_usb_device_attach, nil, [:USBDevice, :VirtualBoxErrorInfo, UINT32]
|
2158
|
+
function :on_usb_device_detach, nil, [WSTRING, :VirtualBoxErrorInfo]
|
2159
|
+
function :on_show_window, nil, [BOOL, [:out, BOOL], [:out, INT64]]
|
2160
|
+
function :on_bandwidth_group_change, nil, [:BandwidthGroup]
|
2161
|
+
function :access_guest_property, nil, [WSTRING, WSTRING, WSTRING, BOOL, [:out, WSTRING], [:out, INT64], [:out, WSTRING]]
|
2162
|
+
function :enumerate_guest_properties, nil, [WSTRING, [:out, [WSTRING]], [:out, [WSTRING]], [:out, [INT64]], [:out, [WSTRING]]]
|
2163
|
+
function :online_merge_medium, nil, [:MediumAttachment, UINT32, UINT32, :Medium, :Medium, BOOL, :Medium, [:Medium], :Progress]
|
2164
|
+
function :enable_vm_m_statistics, nil, [BOOL]
|
2165
|
+
setup
|
2166
|
+
end
|
2167
|
+
|
2168
|
+
class Session < AbstractInterface
|
2169
|
+
iid "12F4DCDB-12B2-4EC1-B7CD-DDD9F6C5BF4D"
|
2170
|
+
extends :NSISupports
|
2171
|
+
property :state, :SessionState, :readonly => true
|
2172
|
+
property :type, :SessionType, :readonly => true
|
2173
|
+
property :machine, :Machine, :readonly => true
|
2174
|
+
property :console, :Console, :readonly => true
|
2175
|
+
function :unlock_machine, nil, []
|
2176
|
+
setup
|
2177
|
+
end
|
2178
|
+
|
2179
|
+
class StorageController < AbstractInterface
|
2180
|
+
iid "a1556333-09b6-46d9-bfb7-fc239b7fbe1e"
|
2181
|
+
extends :NSISupports
|
2182
|
+
property :name, WSTRING, :readonly => true
|
2183
|
+
property :max_devices_per_port_count, UINT32, :readonly => true
|
2184
|
+
property :min_port_count, UINT32, :readonly => true
|
2185
|
+
property :max_port_count, UINT32, :readonly => true
|
2186
|
+
property :instance, UINT32
|
2187
|
+
property :port_count, UINT32
|
2188
|
+
property :bus, :StorageBus, :readonly => true
|
2189
|
+
property :controller_type, :StorageControllerType
|
2190
|
+
property :use_host_io_cache, BOOL
|
2191
|
+
property :bootable, BOOL, :readonly => true
|
2192
|
+
setup
|
2193
|
+
end
|
2194
|
+
|
2195
|
+
class PerformanceMetric < AbstractInterface
|
2196
|
+
iid "2a1a60ae-9345-4019-ad53-d34ba41cbfe9"
|
2197
|
+
extends :NSISupports
|
2198
|
+
property :metric_name, WSTRING, :readonly => true
|
2199
|
+
property :object, :NSISupports, :readonly => true
|
2200
|
+
property :description, WSTRING, :readonly => true
|
2201
|
+
property :period, UINT32, :readonly => true
|
2202
|
+
property :count, UINT32, :readonly => true
|
2203
|
+
property :unit, WSTRING, :readonly => true
|
2204
|
+
property :minimum_value, INT32, :readonly => true
|
2205
|
+
property :maximum_value, INT32, :readonly => true
|
2206
|
+
setup
|
2207
|
+
end
|
2208
|
+
|
2209
|
+
class PerformanceCollector < AbstractInterface
|
2210
|
+
iid "e22e1acb-ac4a-43bb-a31c-17321659b0c6"
|
2211
|
+
extends :NSISupports
|
2212
|
+
property :metric_names, [WSTRING], :readonly => true
|
2213
|
+
function :get_metrics, [:PerformanceMetric], [[WSTRING], [:NSISupports]]
|
2214
|
+
function :setup_metrics, [:PerformanceMetric], [[WSTRING], [:NSISupports], UINT32, UINT32]
|
2215
|
+
function :enable_metrics, [:PerformanceMetric], [[WSTRING], [:NSISupports]]
|
2216
|
+
function :disable_metrics, [:PerformanceMetric], [[WSTRING], [:NSISupports]]
|
2217
|
+
function :query_metrics_data, [INT32], [[WSTRING], [:NSISupports], [:out, [WSTRING]], [:out, [:NSISupports]], [:out, [WSTRING]], [:out, [UINT32]], [:out, [UINT32]], [:out, [UINT32]], [:out, [UINT32]]]
|
2218
|
+
setup
|
2219
|
+
end
|
2220
|
+
|
2221
|
+
class NATEngine < AbstractInterface
|
2222
|
+
iid "26451b99-3b2d-4dcb-8e4b-d63654218175"
|
2223
|
+
extends :NSISupports
|
2224
|
+
property :network, WSTRING
|
2225
|
+
property :host_ip, WSTRING
|
2226
|
+
property :tftp_prefix, WSTRING
|
2227
|
+
property :tftp_boot_file, WSTRING
|
2228
|
+
property :tftp_next_server, WSTRING
|
2229
|
+
property :alias_mode, UINT32
|
2230
|
+
property :dns_pass_domain, BOOL
|
2231
|
+
property :dns_proxy, BOOL
|
2232
|
+
property :dns_use_host_resolver, BOOL
|
2233
|
+
property :redirects, [WSTRING], :readonly => true
|
2234
|
+
function :set_network_settings, nil, [UINT32, UINT32, UINT32, UINT32, UINT32]
|
2235
|
+
function :get_network_settings, nil, [[:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32], [:out, UINT32]]
|
2236
|
+
function :add_redirect, nil, [WSTRING, :NATProtocol, WSTRING, UINT16, WSTRING, UINT16]
|
2237
|
+
function :remove_redirect, nil, [WSTRING]
|
2238
|
+
setup
|
2239
|
+
end
|
2240
|
+
|
2241
|
+
class ExtPackPlugIn < AbstractInterface
|
2242
|
+
iid "58000040-e718-4746-bbce-4b86d96da461"
|
2243
|
+
extends :NSISupports
|
2244
|
+
property :name, WSTRING, :readonly => true
|
2245
|
+
property :description, WSTRING, :readonly => true
|
2246
|
+
property :frontend, WSTRING, :readonly => true
|
2247
|
+
property :module_path, WSTRING, :readonly => true
|
2248
|
+
setup
|
2249
|
+
end
|
2250
|
+
|
2251
|
+
class ExtPackBase < AbstractInterface
|
2252
|
+
iid "f79b75d8-2890-4f34-ffff-ffffa144e82c"
|
2253
|
+
extends :NSISupports
|
2254
|
+
property :name, WSTRING, :readonly => true
|
2255
|
+
property :description, WSTRING, :readonly => true
|
2256
|
+
property :version, WSTRING, :readonly => true
|
2257
|
+
property :revision, UINT32, :readonly => true
|
2258
|
+
property :edition, WSTRING, :readonly => true
|
2259
|
+
property :vrde_module, WSTRING, :readonly => true
|
2260
|
+
property :plug_ins, [:ExtPackPlugIn], :readonly => true
|
2261
|
+
property :usable, BOOL, :readonly => true
|
2262
|
+
property :why_unusable, WSTRING, :readonly => true
|
2263
|
+
property :show_license, BOOL, :readonly => true
|
2264
|
+
property :license, WSTRING, :readonly => true
|
2265
|
+
function :query_license, WSTRING, [WSTRING, WSTRING, WSTRING]
|
2266
|
+
setup
|
2267
|
+
end
|
2268
|
+
|
2269
|
+
class ExtPack < AbstractInterface
|
2270
|
+
iid "431685da-3618-4ebc-b038-833ba829b4b2"
|
2271
|
+
extends :ExtPackBase
|
2272
|
+
function :query_object, :NSISupports, [WSTRING]
|
2273
|
+
setup
|
2274
|
+
end
|
2275
|
+
|
2276
|
+
class ExtPackFile < AbstractInterface
|
2277
|
+
iid "b6b49f55-efcc-4f08-b486-56e8d8afb10b"
|
2278
|
+
extends :ExtPackBase
|
2279
|
+
property :file_path, WSTRING, :readonly => true
|
2280
|
+
function :install, :Progress, [BOOL, WSTRING]
|
2281
|
+
setup
|
2282
|
+
end
|
2283
|
+
|
2284
|
+
class ExtPackManager < AbstractInterface
|
2285
|
+
iid "3295e6ce-b051-47b2-9514-2c588bfe7554"
|
2286
|
+
extends :NSISupports
|
2287
|
+
property :installed_ext_packs, [:ExtPack], :readonly => true
|
2288
|
+
function :find, :ExtPack, [WSTRING]
|
2289
|
+
function :open_ext_pack_file, :ExtPackFile, [WSTRING]
|
2290
|
+
function :uninstall, :Progress, [WSTRING, BOOL, WSTRING]
|
2291
|
+
function :cleanup, nil, []
|
2292
|
+
function :query_all_plug_ins_for_frontend, [WSTRING], [WSTRING]
|
2293
|
+
function :is_ext_pack_usable, BOOL, [WSTRING]
|
2294
|
+
setup
|
2295
|
+
end
|
2296
|
+
|
2297
|
+
class BandwidthGroup < AbstractInterface
|
2298
|
+
iid "badea2d7-0261-4146-89f0-6a57cc34833d"
|
2299
|
+
extends :NSISupports
|
2300
|
+
property :name, WSTRING, :readonly => true
|
2301
|
+
property :type, :BandwidthGroupType, :readonly => true
|
2302
|
+
property :reference, UINT32, :readonly => true
|
2303
|
+
property :max_bytes_per_sec, INT64
|
2304
|
+
setup
|
2305
|
+
end
|
2306
|
+
|
2307
|
+
class BandwidthControl < AbstractInterface
|
2308
|
+
iid "e2eb3930-d2f4-4f87-be17-0707e30f019f"
|
2309
|
+
extends :NSISupports
|
2310
|
+
property :num_groups, UINT32, :readonly => true
|
2311
|
+
function :create_bandwidth_group, nil, [WSTRING, :BandwidthGroupType, INT64]
|
2312
|
+
function :delete_bandwidth_group, nil, [WSTRING]
|
2313
|
+
function :get_bandwidth_group, :BandwidthGroup, [WSTRING]
|
2314
|
+
function :get_all_bandwidth_groups, [:BandwidthGroup], []
|
2315
|
+
setup
|
2316
|
+
end
|
2317
|
+
|
2318
|
+
class VirtualBoxClient < AbstractInterface
|
2319
|
+
iid "5fe0bd48-1181-40d1-991f-3b02f269a823"
|
2320
|
+
extends :NSISupports
|
2321
|
+
property :virtual_box, :VirtualBox, :readonly => true
|
2322
|
+
property :session, :Session, :readonly => true
|
2323
|
+
property :event_source, :EventSource, :readonly => true
|
2324
|
+
setup
|
2325
|
+
end
|
2326
|
+
|
2327
|
+
class EventSource < AbstractInterface
|
2328
|
+
iid "9b6e1aee-35f3-4f4d-b5bb-ed0ecefd8538"
|
2329
|
+
extends :NSISupports
|
2330
|
+
function :create_listener, :EventListener, []
|
2331
|
+
function :create_aggregator, :EventSource, [[:EventSource]]
|
2332
|
+
function :register_listener, nil, [:EventListener, [:VBoxEventType], BOOL]
|
2333
|
+
function :unregister_listener, nil, [:EventListener]
|
2334
|
+
function :fire_event, BOOL, [:Event, INT32]
|
2335
|
+
function :get_event, :Event, [:EventListener, INT32]
|
2336
|
+
function :event_processed, nil, [:EventListener, :Event]
|
2337
|
+
setup
|
2338
|
+
end
|
2339
|
+
|
2340
|
+
class EventListener < AbstractInterface
|
2341
|
+
iid "67099191-32e7-4f6c-85ee-422304c71b90"
|
2342
|
+
extends :NSISupports
|
2343
|
+
function :handle_event, nil, [:Event]
|
2344
|
+
setup
|
2345
|
+
end
|
2346
|
+
|
2347
|
+
class Event < AbstractInterface
|
2348
|
+
iid "0ca2adba-8f30-401b-a8cd-fe31dbe839c0"
|
2349
|
+
extends :NSISupports
|
2350
|
+
property :type, :VBoxEventType, :readonly => true
|
2351
|
+
property :source, :EventSource, :readonly => true
|
2352
|
+
property :waitable, BOOL, :readonly => true
|
2353
|
+
function :set_processed, nil, []
|
2354
|
+
function :wait_processed, BOOL, [INT32]
|
2355
|
+
setup
|
2356
|
+
end
|
2357
|
+
|
2358
|
+
class ReusableEvent < AbstractInterface
|
2359
|
+
iid "69bfb134-80f6-4266-8e20-16371f68fa25"
|
2360
|
+
extends :Event
|
2361
|
+
property :generation, UINT32, :readonly => true
|
2362
|
+
function :reuse, nil, []
|
2363
|
+
setup
|
2364
|
+
end
|
2365
|
+
|
2366
|
+
class MachineEvent < AbstractInterface
|
2367
|
+
iid "92ed7b1a-0d96-40ed-ae46-a564d484325e"
|
2368
|
+
extends :Event
|
2369
|
+
property :machine_id, WSTRING, :readonly => true
|
2370
|
+
setup
|
2371
|
+
end
|
2372
|
+
|
2373
|
+
class MachineStateChangedEvent < AbstractInterface
|
2374
|
+
iid "5748F794-48DF-438D-85EB-98FFD70D18C9"
|
2375
|
+
extends :MachineEvent
|
2376
|
+
property :state, :MachineState, :readonly => true
|
2377
|
+
setup
|
2378
|
+
end
|
2379
|
+
|
2380
|
+
class MachineDataChangedEvent < AbstractInterface
|
2381
|
+
iid "abe94809-2e88-4436-83d7-50f3e64d0503"
|
2382
|
+
extends :MachineEvent
|
2383
|
+
property :temporary, BOOL, :readonly => true
|
2384
|
+
setup
|
2385
|
+
end
|
2386
|
+
|
2387
|
+
class MediumRegisteredEvent < AbstractInterface
|
2388
|
+
iid "53fac49a-b7f1-4a5a-a4ef-a11dd9c2a458"
|
2389
|
+
extends :Event
|
2390
|
+
property :medium_id, WSTRING, :readonly => true
|
2391
|
+
property :medium_type, :DeviceType, :readonly => true
|
2392
|
+
property :registered, BOOL, :readonly => true
|
2393
|
+
setup
|
2394
|
+
end
|
2395
|
+
|
2396
|
+
class MachineRegisteredEvent < AbstractInterface
|
2397
|
+
iid "c354a762-3ff2-4f2e-8f09-07382ee25088"
|
2398
|
+
extends :MachineEvent
|
2399
|
+
property :registered, BOOL, :readonly => true
|
2400
|
+
setup
|
2401
|
+
end
|
2402
|
+
|
2403
|
+
class SessionStateChangedEvent < AbstractInterface
|
2404
|
+
iid "714a3eef-799a-4489-86cd-fe8e45b2ff8e"
|
2405
|
+
extends :MachineEvent
|
2406
|
+
property :state, :SessionState, :readonly => true
|
2407
|
+
setup
|
2408
|
+
end
|
2409
|
+
|
2410
|
+
class GuestPropertyChangedEvent < AbstractInterface
|
2411
|
+
iid "3f63597a-26f1-4edb-8dd2-6bddd0912368"
|
2412
|
+
extends :MachineEvent
|
2413
|
+
property :name, WSTRING, :readonly => true
|
2414
|
+
property :value, WSTRING, :readonly => true
|
2415
|
+
property :flags, WSTRING, :readonly => true
|
2416
|
+
setup
|
2417
|
+
end
|
2418
|
+
|
2419
|
+
class SnapshotEvent < AbstractInterface
|
2420
|
+
iid "21637b0e-34b8-42d3-acfb-7e96daf77c22"
|
2421
|
+
extends :MachineEvent
|
2422
|
+
property :snapshot_id, WSTRING, :readonly => true
|
2423
|
+
setup
|
2424
|
+
end
|
2425
|
+
|
2426
|
+
class SnapshotTakenEvent < AbstractInterface
|
2427
|
+
iid "d27c0b3d-6038-422c-b45e-6d4a0503d9f1"
|
2428
|
+
extends :SnapshotEvent
|
2429
|
+
setup
|
2430
|
+
end
|
2431
|
+
|
2432
|
+
class SnapshotDeletedEvent < AbstractInterface
|
2433
|
+
iid "c48f3401-4a9e-43f4-b7a7-54bd285e22f4"
|
2434
|
+
extends :SnapshotEvent
|
2435
|
+
setup
|
2436
|
+
end
|
2437
|
+
|
2438
|
+
class SnapshotChangedEvent < AbstractInterface
|
2439
|
+
iid "07541941-8079-447a-a33e-47a69c7980db"
|
2440
|
+
extends :SnapshotEvent
|
2441
|
+
setup
|
2442
|
+
end
|
2443
|
+
|
2444
|
+
class MousePointerShapeChangedEvent < AbstractInterface
|
2445
|
+
iid "a6dcf6e8-416b-4181-8c4a-45ec95177aef"
|
2446
|
+
extends :Event
|
2447
|
+
property :visible, BOOL, :readonly => true
|
2448
|
+
property :alpha, BOOL, :readonly => true
|
2449
|
+
property :xhot, UINT32, :readonly => true
|
2450
|
+
property :yhot, UINT32, :readonly => true
|
2451
|
+
property :width, UINT32, :readonly => true
|
2452
|
+
property :height, UINT32, :readonly => true
|
2453
|
+
property :shape, [OCTET], :readonly => true
|
2454
|
+
setup
|
2455
|
+
end
|
2456
|
+
|
2457
|
+
class MouseCapabilityChangedEvent < AbstractInterface
|
2458
|
+
iid "d633ad48-820c-4207-b46c-6bd3596640d5"
|
2459
|
+
extends :Event
|
2460
|
+
property :supports_absolute, BOOL, :readonly => true
|
2461
|
+
property :supports_relative, BOOL, :readonly => true
|
2462
|
+
property :needs_host_cursor, BOOL, :readonly => true
|
2463
|
+
setup
|
2464
|
+
end
|
2465
|
+
|
2466
|
+
class KeyboardLedsChangedEvent < AbstractInterface
|
2467
|
+
iid "6DDEF35E-4737-457B-99FC-BC52C851A44F"
|
2468
|
+
extends :Event
|
2469
|
+
property :num_lock, BOOL, :readonly => true
|
2470
|
+
property :caps_lock, BOOL, :readonly => true
|
2471
|
+
property :scroll_lock, BOOL, :readonly => true
|
2472
|
+
setup
|
2473
|
+
end
|
2474
|
+
|
2475
|
+
class StateChangedEvent < AbstractInterface
|
2476
|
+
iid "4376693C-CF37-453B-9289-3B0F521CAF27"
|
2477
|
+
extends :Event
|
2478
|
+
property :state, :MachineState, :readonly => true
|
2479
|
+
setup
|
2480
|
+
end
|
2481
|
+
|
2482
|
+
class AdditionsStateChangedEvent < AbstractInterface
|
2483
|
+
iid "D70F7915-DA7C-44C8-A7AC-9F173490446A"
|
2484
|
+
extends :Event
|
2485
|
+
setup
|
2486
|
+
end
|
2487
|
+
|
2488
|
+
class NetworkAdapterChangedEvent < AbstractInterface
|
2489
|
+
iid "08889892-1EC6-4883-801D-77F56CFD0103"
|
2490
|
+
extends :Event
|
2491
|
+
property :network_adapter, :NetworkAdapter, :readonly => true
|
2492
|
+
setup
|
2493
|
+
end
|
2494
|
+
|
2495
|
+
class SerialPortChangedEvent < AbstractInterface
|
2496
|
+
iid "3BA329DC-659C-488B-835C-4ECA7AE71C6C"
|
2497
|
+
extends :Event
|
2498
|
+
property :serial_port, :SerialPort, :readonly => true
|
2499
|
+
setup
|
2500
|
+
end
|
2501
|
+
|
2502
|
+
class ParallelPortChangedEvent < AbstractInterface
|
2503
|
+
iid "813C99FC-9849-4F47-813E-24A75DC85615"
|
2504
|
+
extends :Event
|
2505
|
+
property :parallel_port, :ParallelPort, :readonly => true
|
2506
|
+
setup
|
2507
|
+
end
|
2508
|
+
|
2509
|
+
class StorageControllerChangedEvent < AbstractInterface
|
2510
|
+
iid "715212BF-DA59-426E-8230-3831FAA52C56"
|
2511
|
+
extends :Event
|
2512
|
+
setup
|
2513
|
+
end
|
2514
|
+
|
2515
|
+
class MediumChangedEvent < AbstractInterface
|
2516
|
+
iid "0FE2DA40-5637-472A-9736-72019EABD7DE"
|
2517
|
+
extends :Event
|
2518
|
+
property :medium_attachment, :MediumAttachment, :readonly => true
|
2519
|
+
setup
|
2520
|
+
end
|
2521
|
+
|
2522
|
+
class ClipboardModeChangedEvent < AbstractInterface
|
2523
|
+
iid "cac21692-7997-4595-a731-3a509db604e5"
|
2524
|
+
extends :Event
|
2525
|
+
property :clipboard_mode, :ClipboardMode, :readonly => true
|
2526
|
+
setup
|
2527
|
+
end
|
2528
|
+
|
2529
|
+
class DragAndDropModeChangedEvent < AbstractInterface
|
2530
|
+
iid "e90b8850-ac8e-4dff-8059-4100ae2c3c3d"
|
2531
|
+
extends :Event
|
2532
|
+
property :drag_and_drop_mode, :DragAndDropMode, :readonly => true
|
2533
|
+
setup
|
2534
|
+
end
|
2535
|
+
|
2536
|
+
class CPUChangedEvent < AbstractInterface
|
2537
|
+
iid "4da2dec7-71b2-4817-9a64-4ed12c17388e"
|
2538
|
+
extends :Event
|
2539
|
+
property :cpu, UINT32, :readonly => true
|
2540
|
+
property :add, BOOL, :readonly => true
|
2541
|
+
setup
|
2542
|
+
end
|
2543
|
+
|
2544
|
+
class CPUExecutionCapChangedEvent < AbstractInterface
|
2545
|
+
iid "dfa7e4f5-b4a4-44ce-85a8-127ac5eb59dc"
|
2546
|
+
extends :Event
|
2547
|
+
property :execution_cap, UINT32, :readonly => true
|
2548
|
+
setup
|
2549
|
+
end
|
2550
|
+
|
2551
|
+
class GuestKeyboardEvent < AbstractInterface
|
2552
|
+
iid "88394258-7006-40d4-b339-472ee3801844"
|
2553
|
+
extends :Event
|
2554
|
+
property :scancodes, [INT32], :readonly => true
|
2555
|
+
setup
|
2556
|
+
end
|
2557
|
+
|
2558
|
+
class GuestMouseEvent < AbstractInterface
|
2559
|
+
iid "1f85d35c-c524-40ff-8e98-307000df0992"
|
2560
|
+
extends :ReusableEvent
|
2561
|
+
property :absolute, BOOL, :readonly => true
|
2562
|
+
property :x, INT32, :readonly => true
|
2563
|
+
property :y, INT32, :readonly => true
|
2564
|
+
property :z, INT32, :readonly => true
|
2565
|
+
property :w, INT32, :readonly => true
|
2566
|
+
property :buttons, INT32, :readonly => true
|
2567
|
+
setup
|
2568
|
+
end
|
2569
|
+
|
2570
|
+
class VRDEServerChangedEvent < AbstractInterface
|
2571
|
+
iid "a06fd66a-3188-4c8c-8756-1395e8cb691c"
|
2572
|
+
extends :Event
|
2573
|
+
setup
|
2574
|
+
end
|
2575
|
+
|
2576
|
+
class VRDEServerInfoChangedEvent < AbstractInterface
|
2577
|
+
iid "dd6a1080-e1b7-4339-a549-f0878115596e"
|
2578
|
+
extends :Event
|
2579
|
+
setup
|
2580
|
+
end
|
2581
|
+
|
2582
|
+
class USBControllerChangedEvent < AbstractInterface
|
2583
|
+
iid "93BADC0C-61D9-4940-A084-E6BB29AF3D83"
|
2584
|
+
extends :Event
|
2585
|
+
setup
|
2586
|
+
end
|
2587
|
+
|
2588
|
+
class USBDeviceStateChangedEvent < AbstractInterface
|
2589
|
+
iid "806da61b-6679-422a-b629-51b06b0c6d93"
|
2590
|
+
extends :Event
|
2591
|
+
property :device, :USBDevice, :readonly => true
|
2592
|
+
property :attached, BOOL, :readonly => true
|
2593
|
+
property :error, :VirtualBoxErrorInfo, :readonly => true
|
2594
|
+
setup
|
2595
|
+
end
|
2596
|
+
|
2597
|
+
class SharedFolderChangedEvent < AbstractInterface
|
2598
|
+
iid "B66349B5-3534-4239-B2DE-8E1535D94C0B"
|
2599
|
+
extends :Event
|
2600
|
+
property :scope, :Scope, :readonly => true
|
2601
|
+
setup
|
2602
|
+
end
|
2603
|
+
|
2604
|
+
class RuntimeErrorEvent < AbstractInterface
|
2605
|
+
iid "883DD18B-0721-4CDE-867C-1A82ABAF914C"
|
2606
|
+
extends :Event
|
2607
|
+
property :fatal, BOOL, :readonly => true
|
2608
|
+
property :id, WSTRING, :readonly => true
|
2609
|
+
property :message, WSTRING, :readonly => true
|
2610
|
+
setup
|
2611
|
+
end
|
2612
|
+
|
2613
|
+
class EventSourceChangedEvent < AbstractInterface
|
2614
|
+
iid "e7932cb8-f6d4-4ab6-9cbf-558eb8959a6a"
|
2615
|
+
extends :Event
|
2616
|
+
property :listener, :EventListener, :readonly => true
|
2617
|
+
property :add, BOOL, :readonly => true
|
2618
|
+
setup
|
2619
|
+
end
|
2620
|
+
|
2621
|
+
class ExtraDataChangedEvent < AbstractInterface
|
2622
|
+
iid "024F00CE-6E0B-492A-A8D0-968472A94DC7"
|
2623
|
+
extends :Event
|
2624
|
+
property :machine_id, WSTRING, :readonly => true
|
2625
|
+
property :key, WSTRING, :readonly => true
|
2626
|
+
property :value, WSTRING, :readonly => true
|
2627
|
+
setup
|
2628
|
+
end
|
2629
|
+
|
2630
|
+
class VetoEvent < AbstractInterface
|
2631
|
+
iid "9a1a4130-69fe-472f-ac10-c6fa25d75007"
|
2632
|
+
extends :Event
|
2633
|
+
function :add_veto, nil, [WSTRING]
|
2634
|
+
function :is_vetoed, BOOL, []
|
2635
|
+
function :get_vetos, [WSTRING], []
|
2636
|
+
setup
|
2637
|
+
end
|
2638
|
+
|
2639
|
+
class ExtraDataCanChangeEvent < AbstractInterface
|
2640
|
+
iid "245d88bd-800a-40f8-87a6-170d02249a55"
|
2641
|
+
extends :VetoEvent
|
2642
|
+
property :machine_id, WSTRING, :readonly => true
|
2643
|
+
property :key, WSTRING, :readonly => true
|
2644
|
+
property :value, WSTRING, :readonly => true
|
2645
|
+
setup
|
2646
|
+
end
|
2647
|
+
|
2648
|
+
class CanShowWindowEvent < AbstractInterface
|
2649
|
+
iid "adf292b0-92c9-4a77-9d35-e058b39fe0b9"
|
2650
|
+
extends :VetoEvent
|
2651
|
+
setup
|
2652
|
+
end
|
2653
|
+
|
2654
|
+
class ShowWindowEvent < AbstractInterface
|
2655
|
+
iid "B0A0904D-2F05-4D28-855F-488F96BAD2B2"
|
2656
|
+
extends :Event
|
2657
|
+
property :win_id, INT64
|
2658
|
+
setup
|
2659
|
+
end
|
2660
|
+
|
2661
|
+
class NATRedirectEvent < AbstractInterface
|
2662
|
+
iid "24eef068-c380-4510-bc7c-19314a7352f1"
|
2663
|
+
extends :MachineEvent
|
2664
|
+
property :slot, UINT32, :readonly => true
|
2665
|
+
property :remove, BOOL, :readonly => true
|
2666
|
+
property :name, WSTRING, :readonly => true
|
2667
|
+
property :proto, :NATProtocol, :readonly => true
|
2668
|
+
property :host_ip, WSTRING, :readonly => true
|
2669
|
+
property :host_port, INT32, :readonly => true
|
2670
|
+
property :guest_ip, WSTRING, :readonly => true
|
2671
|
+
property :guest_port, INT32, :readonly => true
|
2672
|
+
setup
|
2673
|
+
end
|
2674
|
+
|
2675
|
+
class HostPCIDevicePlugEvent < AbstractInterface
|
2676
|
+
iid "a0bad6df-d612-47d3-89d4-db3992533948"
|
2677
|
+
extends :MachineEvent
|
2678
|
+
property :plugged, BOOL, :readonly => true
|
2679
|
+
property :success, BOOL, :readonly => true
|
2680
|
+
property :attachment, :PCIDeviceAttachment, :readonly => true
|
2681
|
+
property :message, WSTRING, :readonly => true
|
2682
|
+
setup
|
2683
|
+
end
|
2684
|
+
|
2685
|
+
class VBoxSVCAvailabilityChangedEvent < AbstractInterface
|
2686
|
+
iid "97c78fcd-d4fc-485f-8613-5af88bfcfcdc"
|
2687
|
+
extends :Event
|
2688
|
+
property :available, BOOL, :readonly => true
|
2689
|
+
setup
|
2690
|
+
end
|
2691
|
+
|
2692
|
+
class BandwidthGroupChangedEvent < AbstractInterface
|
2693
|
+
iid "334df94a-7556-4cbc-8c04-043096b02d82"
|
2694
|
+
extends :Event
|
2695
|
+
property :bandwidth_group, :BandwidthGroup, :readonly => true
|
2696
|
+
setup
|
2697
|
+
end
|
2698
|
+
|
2699
|
+
class GuestMonitorChangedEvent < AbstractInterface
|
2700
|
+
iid "0f7b8a22-c71f-4a36-8e5f-a77d01d76090"
|
2701
|
+
extends :Event
|
2702
|
+
property :change_type, :GuestMonitorChangedEventType, :readonly => true
|
2703
|
+
property :screen_id, UINT32, :readonly => true
|
2704
|
+
property :origin_x, UINT32, :readonly => true
|
2705
|
+
property :origin_y, UINT32, :readonly => true
|
2706
|
+
property :width, UINT32, :readonly => true
|
2707
|
+
property :height, UINT32, :readonly => true
|
2708
|
+
setup
|
2709
|
+
end
|
2710
|
+
|
2711
|
+
class StorageDeviceChangedEvent < AbstractInterface
|
2712
|
+
iid "8a5c2dce-e341-49d4-afce-c95979f7d70c"
|
2713
|
+
extends :Event
|
2714
|
+
property :storage_device, :MediumAttachment, :readonly => true
|
2715
|
+
property :removed, BOOL, :readonly => true
|
2716
|
+
setup
|
2717
|
+
end
|
2718
|
+
|
2719
|
+
end
|
2720
|
+
end
|
2721
|
+
end
|