Changeset 35273 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 21, 2010 12:52:38 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ExtPackManagerImpl.h
r35184 r35273 70 70 * @{ */ 71 71 STDMETHOD(COMGETTER(FilePath))(BSTR *a_pbstrPath); 72 STDMETHOD(Install)(BOOL a_fReplace );72 STDMETHOD(Install)(BOOL a_fReplace, IN_BSTR a_bstrDisplayInfo, IProgress **a_ppProgress); 73 73 /** @} */ 74 74 … … 211 211 STDMETHOD(Find)(IN_BSTR a_bstrName, IExtPack **a_pExtPack); 212 212 STDMETHOD(OpenExtPackFile)(IN_BSTR a_bstrTarball, IExtPackFile **a_ppExtPackFile); 213 STDMETHOD(Uninstall)(IN_BSTR a_bstrName, BOOL a_fForcedRemoval );213 STDMETHOD(Uninstall)(IN_BSTR a_bstrName, BOOL a_fForcedRemoval, IN_BSTR a_bstrDisplayInfo, IProgress **a_ppProgress); 214 214 STDMETHOD(Cleanup)(void); 215 215 STDMETHOD(QueryAllPlugInsForFrontend)(IN_BSTR a_bstrFrontend, ComSafeArrayOut(BSTR, a_pabstrPlugInModules)); … … 219 219 /** @name Internal interfaces used by other Main classes. 220 220 * @{ */ 221 HRESULT doInstall(ExtPackFile *a_pExtPackFile, bool a_fReplace); 221 HRESULT doInstall(ExtPackFile *a_pExtPackFile, bool a_fReplace, Utf8Str const *a_pstrDisplayInfo, 222 IProgress **a_ppProgress); 222 223 void callAllVirtualBoxReadyHooks(void); 223 224 void callAllConsoleReadyHooks(IConsole *a_pConsole); … … 233 234 234 235 private: 235 HRESULT runSetUidToRootHelper( const char *a_pszCommand, ...);236 HRESULT runSetUidToRootHelper(Utf8Str const *a_pstrDisplayInfo, const char *a_pszCommand, ...); 236 237 ExtPack *findExtPack(const char *a_pszName); 237 238 void removeExtPack(const char *a_pszName);
Note:
See TracChangeset
for help on using the changeset viewer.