Changeset 62774 in vbox for trunk/src/VBox/Main/src-helper-apps
- Timestamp:
- Jul 31, 2016 5:44:26 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109361
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-helper-apps/VBoxExtPackHelperApp.cpp
r62679 r62774 48 48 #ifdef RT_OS_WINDOWS 49 49 # define _WIN32_WINNT 0x0501 50 # include <iprt/win/windows.h> /* ShellExecuteEx, ++ */ 50 51 # include <Objbase.h> /* CoInitializeEx */ 51 # include <iprt/win/windows.h> /* ShellExecuteEx, ++ */52 52 # ifdef DEBUG 53 53 # include <Sddl.h> … … 296 296 #else 297 297 /** @todo TrustedInstaller? */ 298 RT_NOREF1(pszDir); 298 299 #endif 299 300 … … 339 340 static RTEXITCODE ValidateUnpackedExtPack(const char *pszDir, const char *pszTarball, const char *pszExtPackName) 340 341 { 342 RT_NOREF2(pszTarball, pszExtPackName); 341 343 RTMsgInfo("Validating unpacked extension pack..."); 342 344 … … 490 492 const char *pszTarball) 491 493 { 494 RT_NOREF1(pszTarball); 492 495 RTMsgInfo("Unpacking extension pack into '%s'...", pszDirDst); 493 496 … … 653 656 const char *pszName, const char *pszMangledName, bool fReplace) 654 657 { 658 RT_NOREF1(pszCertDir); 659 655 660 /* 656 661 * Do some basic validation of the tarball file. … … 1233 1238 int iCmd, const char *pszDisplayInfoHack) 1234 1239 { 1240 RT_NOREF1(cMyArgs); 1235 1241 RTEXITCODE rcExit = RTEXITCODE_FAILURE; 1236 1242 #ifdef RT_OS_WINDOWS … … 1320 1326 if (GetExitCodeProcess(Info.hProcess, &dwExitCode)) 1321 1327 { 1322 if (dwExitCode >= 0 && dwExitCode< 128)1328 if (dwExitCode < 128) 1323 1329 rcExit = (RTEXITCODE)dwExitCode; 1324 1330 else
Note:
See TracChangeset
for help on using the changeset viewer.