Changeset 100737 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 30, 2023 9:48:13 AM (18 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r100730 r100737 26922 26922 </desc> 26923 26923 </const> 26924 <const name="OnExtPackUninstalled" value="124"> 26925 <desc> 26926 See <link to="IExtPackUninstalledEvent">IExtPackUninstalledEvent</link>. 26927 </desc> 26928 </const> 26924 26929 <!-- End event marker --> 26925 <const name="End" value="12 4">26930 <const name="End" value="125"> 26926 26931 <desc> 26927 26932 Must be last event, used for iterations and structures relying on numerical event values. … … 27286 27291 </desc> 27287 27292 </attribute> 27288 27293 </interface> 27294 27295 <interface 27296 name="IExtPackUninstalledEvent" extends="IEvent" 27297 uuid="31aab263-95ef-48a4-9ce7-eaf0d3ae150f" 27298 wsmap="managed" autogen="VBoxEvent" id="OnExtPackUninstalled" 27299 > 27300 <desc>Extension pack uninstalled event.</desc> 27301 <attribute name="name" readonly="yes" type="wstring"> 27302 <desc> 27303 Name of the extension pack. 27304 </desc> 27305 </attribute> 27289 27306 </interface> 27290 27307 -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r100730 r100737 229 229 #ifdef VBOX_WITH_EXTPACK 230 230 void i_onExtPackInstalled(const Utf8Str &aExtPackName); 231 void i_onExtPackUninstalled(const Utf8Str &aExtPackName); 231 232 #endif 232 233 -
trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp
r100729 r100737 3287 3287 { 3288 3288 if (!pExtPack) 3289 { 3289 3290 LogRel(("ExtPackManager: Successfully uninstalled extension pack '%s'.\n", a_pstrName->c_str())); 3291 m->pVirtualBox->i_onExtPackInstalled(*a_pstrName); 3292 } 3290 3293 else 3291 3294 hrc = setError(E_FAIL, -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r100730 r100737 3796 3796 ::FireExtPackInstalledEvent(m->pEventSource, aExtPackName); 3797 3797 } 3798 3799 void VirtualBox::i_onExtPackUninstalled(const Utf8Str &aExtPackName) 3800 { 3801 ::FireExtPackUninstalledEvent(m->pEventSource, aExtPackName); 3802 } 3798 3803 #endif 3799 3804
Note:
See TracChangeset
for help on using the changeset viewer.