Skip to content

Commit

Permalink
Update console interface
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Dec 24, 2010
1 parent 1f07ba6 commit a3d803c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/virtualbox/com/interface/4.0.x/console.rb
Expand Up @@ -15,7 +15,9 @@ class Console < AbstractInterface
property :usb_devices, [:USBDevice], :readonly => true
property :remote_usb_devices, [:HostUSBDevice], :readonly => true
property :shared_folders, [:SharedFolder], :readonly => true
property :remote_display_info, :RemoteDisplayInfo, :readonly => true
property :vrde_server_info, :VRDEServerInfo, :readonly => true
property :event_source, :EventSource, :readonly => true
property :attached_pci_devices, [:PciDeviceAttachment], :readonly => true

function :power_up, :Progress, []
function :power_up_paused, :Progress, []
Expand All @@ -29,22 +31,20 @@ class Console < AbstractInterface
function :get_guest_entered_acpi_mode, T_BOOL, []
function :save_state, :Progress, []
function :adopt_saved_state, nil, [WSTRING]
function :forget_saved_state, nil, [T_BOOL]
function :discard_saved_state, nil, [T_BOOL]
function :get_device_activity, :DeviceActivity, [:DeviceType]
function :attach_usb_device, nil, [WSTRING]
function :detach_usb_device, :USBDevice, [WSTRING]
function :find_usb_device_by_address, :USBDevice, [WSTRING]
function :find_usb_device_by_id, :USBDevice, [WSTRING]
function :create_shared_folder, nil, [WSTRING, WSTRING, T_BOOL]
function :create_shared_folder, nil, [WSTRING, WSTRING, T_BOOL, T_BOOL]
function :remove_shared_folder, nil, [WSTRING]
function :take_snapshot, :Progress, [WSTRING, WSTRING]
function :delete_snapshot, :Progress, [WSTRING]
function :restore_snapshot, :Progress, [:Snapshot]
function :teleport, :Progress, [WSTRING, T_UINT32, WSTRING, T_UINT32]
function :register_callback, nil, [:ConsoleCallback]
function :unregister_callback, nil, [:ConsoleCallback]
end
end
end
end
end
end

0 comments on commit a3d803c

Please sign in to comment.