Changeset 46823 in vbox
- Timestamp:
- Jun 27, 2013 9:37:07 AM (11 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
-
include/ExtPackManagerImpl.h (modified) (3 diffs)
-
src-all/ExtPackManagerImpl.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ExtPackManagerImpl.h
r44529 r46823 23 23 #include <iprt/fs.h> 24 24 25 #if !defined(VBOX_COM_INPROC) 25 26 /** 26 27 * An extension pack file. … … 85 86 friend class ExtPackManager; 86 87 }; 88 #endif 87 89 88 90 … … 215 217 /** @name Internal interfaces used by other Main classes. 216 218 * @{ */ 219 #if !defined(VBOX_COM_INPROC) 217 220 static DECLCALLBACK(int) doInstallThreadProc(RTTHREAD hThread, void *pvJob); 218 221 HRESULT doInstall(ExtPackFile *a_pExtPackFile, bool a_fReplace, Utf8Str const *a_pstrDisplayInfo); 219 222 static DECLCALLBACK(int) doUninstallThreadProc(RTTHREAD hThread, void *pvJob); 220 223 HRESULT doUninstall(const Utf8Str *a_pstrName, bool a_fForcedRemoval, const Utf8Str *a_pstrDisplayInfo); 224 #endif 221 225 void callAllVirtualBoxReadyHooks(void); 222 226 void callAllConsoleReadyHooks(IConsole *a_pConsole); -
trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp
r46820 r46823 2039 2039 } 2040 2040 2041 #if !defined(VBOX_COM_INPROC)2042 2041 STDMETHODIMP ExtPackManager::OpenExtPackFile(IN_BSTR a_bstrTarballAndDigest, IExtPackFile **a_ppExtPackFile) 2043 2042 { … … 2046 2045 AssertReturn(m->enmContext == VBOXEXTPACKCTX_PER_USER_DAEMON, E_UNEXPECTED); 2047 2046 2047 #if !defined(VBOX_COM_INPROC) 2048 2048 /* The API can optionally take a ::SHA-256=<hex-digest> attribute at the 2049 2049 end of the file name. This is just a temporary measure for … … 2069 2069 2070 2070 return hrc; 2071 #else 2072 return E_NOTIMPL; 2073 #endif 2071 2074 } 2072 2075 … … 2079 2082 Assert(m->enmContext == VBOXEXTPACKCTX_PER_USER_DAEMON); 2080 2083 2084 #if !defined(VBOX_COM_INPROC) 2081 2085 AutoCaller autoCaller(this); 2082 2086 HRESULT hrc = autoCaller.rc(); … … 2127 2131 2128 2132 return hrc; 2129 } 2133 #else 2134 return E_NOTIMPL; 2130 2135 #endif 2136 } 2131 2137 2132 2138 STDMETHODIMP ExtPackManager::Cleanup(void)
Note:
See TracChangeset
for help on using the changeset viewer.

