Changeset 86069 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Sep 9, 2020 3:03:23 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 140286
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r86068 r86069 24467 24467 <enum 24468 24468 name="VBoxEventType" 24469 uuid=" d5d15e38-808d-11e9-aaac-4bc5d973ca37"24469 uuid="2ab7c196-f232-11ea-a5d2-83b96bc30bcc" 24470 24470 > 24471 24471 … … 24896 24896 </desc> 24897 24897 </const> 24898 <const name="OnCloudProviderRegistered" value="105"> 24899 <desc> 24900 See <link to="ICloudProviderRegisteredEvent">ICloudProviderRegisteredEvent</link>. 24901 </desc> 24902 </const> 24903 <const name="OnCloudProfileRegistered" value="106"> 24898 <const name="OnCloudProviderListChanged" value="105"> 24899 <desc> 24900 See <link to="ICloudProviderListChangedEvent"/>. 24901 </desc> 24902 </const> 24903 <const name="OnCloudProviderRegistered" value="106"> 24904 <desc> 24905 See <link to="ICloudProviderRegisteredEvent"/>. 24906 </desc> 24907 </const> 24908 <const name="OnCloudProviderUninstall" value="107"> 24909 <desc> 24910 See <link to="ICloudProviderUninstallEvent"/>. 24911 </desc> 24912 </const> 24913 <const name="OnCloudProfileRegistered" value="108"> 24904 24914 <desc> 24905 24915 See <link to="ICloudProfileRegisteredEvent"/>. 24906 24916 </desc> 24907 24917 </const> 24908 <const name="OnCloudProfileChanged" value="10 7">24918 <const name="OnCloudProfileChanged" value="109"> 24909 24919 <desc> 24910 24920 See <!-- link to="ICloudProfileChangedEvent"/--> ICloudProfileChangedEvent. … … 24913 24923 <!-- End event marker --> 24914 24924 <!-- @todo rename to 'End' as it is exclusive (we use 'last' to be inclusive). --> 24915 <const name="Last" value="1 08">24925 <const name="Last" value="110"> 24916 24926 <desc> 24917 24927 Must be last event, used for iterations and structures relying on numerical event values. … … 28253 28263 </interface> 28254 28264 28265 <interface name="ICloudProviderListChangedEvent" extends="IEvent" 28266 uuid="a54d9cca-f23f-11ea-9755-efd0f1f792d9" 28267 wsmap="managed" autogen="VBoxEvent" 28268 id="OnCloudProviderListChanged" 28269 > 28270 <desc> 28271 Each individual provider that is installed or uninstalled is 28272 reported as an <link to="ICloudProviderRegisteredEvent"/>. When 28273 the batch is done this event is sent and listerns can get the 28274 new list. 28275 </desc> 28276 <attribute name="registered" type="boolean" readonly="yes"/> 28277 </interface> 28278 28255 28279 <interface name="ICloudProviderRegisteredEvent" extends="IEvent" 28256 uuid=" 3d515696-eb98-11ea-96ac-8b4794b20214"28280 uuid="e28e227a-f231-11ea-9641-9b500c6d5365" 28257 28281 wsmap="managed" autogen="VBoxEvent" 28258 id="OnCloudProviderRegistered" waitable="yes" 28259 > 28282 id="OnCloudProviderRegistered" 28283 > 28284 <desc> 28285 A cloud provider was installed or uninstalled. 28286 See also <link to="ICloudProviderListChangedEvent"/>. 28287 </desc> 28260 28288 <attribute name="id" type="uuid" mod="string" readonly="yes"/> 28261 28289 <attribute name="registered" type="boolean" readonly="yes"/> 28290 </interface> 28291 28292 <interface name="ICloudProviderUninstallEvent" extends="IEvent" 28293 uuid="f01f1066-f231-11ea-8eee-33bb2afb0b6e" 28294 wsmap="managed" autogen="VBoxEvent" 28295 id="OnCloudProviderCanUninstall" waitable="yes" 28296 > 28297 <desc> 28298 A cloud provider is about to be uninstalled. 28299 Unlike <link to="ICloudProviderRegisteredEvent"/> this one is 28300 waitable and is sent <i>before</i> an attempt is made to 28301 uninstall a provider. Listerns should release references to the 28302 provider and related objects if they have any, or the 28303 uninstallation of the provider is going to fail because it's 28304 still in use. 28305 </desc> 28306 <attribute name="id" type="uuid" mod="string" readonly="yes"/> 28262 28307 </interface> 28263 28308
Note:
See TracChangeset
for help on using the changeset viewer.