- Timestamp:
- May 3, 2015 12:41:55 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99981
- Location:
- trunk/src/VBox/Main/idl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r55595 r55608 10612 10612 <interface 10613 10613 name="IGuestDnDSource" extends="IDnDSource" 10614 uuid=" 280955c0-de67-4297-8179-6274a82a2fc0"10614 uuid="dedfb5d9-4c1b-edf7-fdf3-c1be6827dc28" 10615 10615 wsmap="managed" 10616 10616 > 10617 10618 10617 <desc> 10619 10618 Implementation of the <link to="IDnDSource" /> object 10620 10619 for source drag'n drop operations on the guest. 10621 10620 </desc> 10621 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 10622 10622 </interface> 10623 10623 … … 10785 10785 wsmap="managed" 10786 10786 > 10787 10788 10787 <desc> 10789 10788 Implementation of the <link to="IDnDTarget" /> object 10790 10789 for target drag'n drop operations on the guest. 10791 10790 </desc> 10791 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 10792 10792 </interface> 10793 10793 … … 12029 12029 <interface 12030 12030 name="IGuestDirectory" extends="IDirectory" 12031 uuid=" af4a8ce0-0725-42b7-8826-46e3c7ba7357"12031 uuid="cc830458-4974-a19c-4dc6-cc98c2269626" 12032 12032 wsmap="managed" 12033 12033 > … … 12036 12036 for directories in the guest. 12037 12037 </desc> 12038 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 12038 12039 </interface> 12039 12040 … … 12244 12245 <interface 12245 12246 name="IGuestFile" extends="IFile" 12246 uuid=" 60661aec-145f-4d11-b80e-8ea151598093"12247 uuid="b68f642c-49db-d699-db5c-bcb01c08e95f" 12247 12248 wsmap="managed" 12248 12249 > … … 12251 12252 for files in the guest. 12252 12253 </desc> 12254 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 12253 12255 </interface> 12254 12256 … … 12365 12367 <interface 12366 12368 name="IGuestFsObjInfo" extends="IFsObjInfo" 12367 uuid=" d5cf678e-3484-4e4a-ac55-329e15462e18"12369 uuid="7cf2d77d-4222-8e33-1065-cab345173300" 12368 12370 wsmap="managed" 12369 12371 > … … 12372 12374 <link to="IFsObjInfo" /> object. 12373 12375 </desc> 12376 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 12374 12377 </interface> 12375 12378 … … 22609 22612 22610 22613 <!-- base class for modification events --> 22611 <interface name="INATNetworkAlterEvent" extends="INATNetworkChangedEvent" 22612 uuid="3f5a0822-163a-43b1-ad16-8d58b0ef6e75" 22613 wsmap="managed" autogen="VBoxEvent" id="OnNATNetworkAlter"/> 22614 <interface 22615 name="INATNetworkAlterEvent" extends="INATNetworkChangedEvent" 22616 uuid="d947adf5-4022-dc80-5535-6fb116815604" 22617 wsmap="managed" autogen="VBoxEvent" id="OnNATNetworkAlter" 22618 > 22619 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 22620 </interface> 22614 22621 22615 22622 <interface name="INATNetworkCreationDeletionEvent" extends="INATNetworkAlterEvent" -
trunk/src/VBox/Main/idl/apiwrap-server.xsl
r55595 r55608 509 509 </xsl:call-template> 510 510 </xsl:variable> 511 512 <!-- interface santiy check, prevents crashes --> 513 <xsl:if test="(count(attribute) + count(method)) = 0"> 514 <xsl:message terminate="yes"> 515 Interface <xsl:value-of select="@name"/> is empty which causes midl generated proxy 516 stubs to crash. Please add a dummy:<xsl:value-of select="$G_sNewLine"/> 517 <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/> 518 </xsl:message> 519 </xsl:if> 511 520 512 521 <xsl:choose>
Note:
See TracChangeset
for help on using the changeset viewer.