Changeset 81684 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 5, 2019 7:13:06 PM (5 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r81667 r81684 2355 2355 <interface 2356 2356 name="IDHCPGlobalConfig" extends="IDHCPConfig" 2357 uuid=" 5d7bb1ea-27ed-4e01-3859-4302dd55f796"2357 uuid="46735de7-f4c4-4020-a185-0d2881bcfa8b" 2358 2358 wsmap="managed" 2359 2359 reservedMethods="4" reservedAttributes="4" … … 2363 2363 </desc> 2364 2364 2365 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/>2366 2365 </interface> 2367 2366 … … 10317 10316 Represents one of host's video capture devices, for example a webcam. 10318 10317 </desc> 10318 10319 10319 <attribute name="name" type="wstring" readonly="yes"> 10320 10320 <desc>User friendly name.</desc> … … 10326 10326 10327 10327 <attribute name="alias" type="wstring" readonly="yes"> 10328 <desc>An alias which can be used for IConsole::webcamAttach</desc> 10329 </attribute> 10328 <desc>An alias which can be used for <link to="IConsole::webcamAttach"/></desc> 10329 </attribute> 10330 10331 </interface> 10332 10333 <interface 10334 name="IHostUpdate" extends="$unknown" 10335 uuid="6fa2671b-0547-448e-bc7c-94e9e173bf57" 10336 wsmap="managed" 10337 reservedMethods="12" reservedAttributes="24" 10338 > 10339 10340 <desc> 10341 Represents the state of the update checking logic (a singleton returned 10342 by <link to="IHost::update" /> attribute). 10343 </desc> 10330 10344 10331 10345 </interface> … … 10333 10347 <interface 10334 10348 name="IHost" extends="$unknown" 10335 uuid=" dbe11e5f-7f10-46e7-94c4-1e95bf4b6627"10349 uuid="16ced992-5fdc-4aba-aff5-6a39bbd7c38b" 10336 10350 wsmap="managed" 10337 10351 reservedMethods="6" reservedAttributes="12" … … 10830 10844 </param> 10831 10845 </method> 10846 10847 <attribute name="update" type="IHostUpdate" readonly="yes"> 10848 <desc>List of floppy drives available on the host.</desc> 10849 </attribute> 10832 10850 10833 10851 </interface> … … 18485 18503 <const name="VHWA" value="0x02"> 18486 18504 <desc> 18487 Supports VHWA interface. If set, then IFramebuffer::processVHWACommand can be called. 18505 Supports VHWA interface. If set, then 18506 <link to="IFramebuffer::processVHWACommand"/> can be called. 18488 18507 </desc> 18489 18508 </const> … … 18491 18510 <const name="VisibleRegion" value="0x04"> 18492 18511 <desc> 18493 Supports visible region. If set, then IFramebuffer::setVisibleRegion can be called. 18512 Supports visible region. If set, then 18513 <link to="IFramebuffer::setVisibleRegion"/> can be called. 18494 18514 </desc> 18495 18515 </const> … … 18835 18855 > 18836 18856 <desc> 18837 How IDisplay::setScreenLayoutmethod should work.18857 How <link to="IDisplay::setScreenLayout"/> method should work. 18838 18858 </desc> 18839 18859 -
trunk/src/VBox/Main/idl/apiwrap-server.xsl
r80869 r81684 519 519 </xsl:variable> 520 520 521 <!-- interface san tiy check, prevents crashes -->522 <xsl:if test="(count(attribute) + count(method) ) = 0">521 <!-- interface sanity check, prevents crashes --> 522 <xsl:if test="(count(attribute) + count(method) + sum(@reservedMethods[number()= number()]) + sum(@reservedAttributes[number()= number()])) = 0"> 523 523 <xsl:message terminate="yes"> 524 524 Interface <xsl:value-of select="@name"/> is empty which causes midl generated proxy -
trunk/src/VBox/Main/include/HostImpl.h
r81305 r81684 116 116 HRESULT getAcceleration3DAvailable(BOOL *aAcceleration3DAvailable); 117 117 HRESULT getVideoInputDevices(std::vector<ComPtr<IHostVideoInputDevice> > &aVideoInputDevices); 118 HRESULT getUpdate(ComPtr<IHostUpdate> &aUpdate); 118 119 119 120 // wrapped IHost methods -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r81682 r81684 1934 1934 #endif 1935 1935 } 1936 1937 1938 HRESULT Host::getUpdate(ComPtr<IHostUpdate> &aUpdate) 1939 { 1940 RT_NOREF(aUpdate); 1941 ReturnComNotImplemented(); 1942 } 1943 1936 1944 1937 1945 // public methods only for internal purposes
Note:
See TracChangeset
for help on using the changeset viewer.