This commit is contained in:
Igor Pavlov
2011-04-18 00:00:00 +00:00
committed by Kornel Lesiński
parent 35596517f2
commit 83f8ddcc5b
31 changed files with 298 additions and 120 deletions

View File

@@ -1,3 +1,3 @@
#include "../../MyVersionInfo.rc"
#include "../../../../C/7zVersion.rc"
MY_VERSION_INFO_APP("7-Zip Standalone Console", "7zr")
MY_VERSION_INFO_APP("7-Zip Reduced Standalone Console", "7zr")

View File

@@ -1,5 +1,5 @@
#include "../../MyVersionInfo.rc"
#include "../../../../C/7zVersion.rc"
MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr")
MY_VERSION_INFO_DLL("7z Extracting Reduced Standalone Plugin", "7zxr")
101 ICON "../../Archive/Icons/7z.ico"

View File

@@ -1,5 +1,5 @@
#include "../../MyVersionInfo.rc"
#include "../../../../C/7zVersion.rc"
MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr")
MY_VERSION_INFO_DLL("7z Reduced Standalone Plugin", "7zr")
101 ICON "../../Archive/Icons/7z.ico"

View File

@@ -20,6 +20,7 @@
#include "../../UI/Common/Extract.h"
#include "../../UI/Common/ExitCode.h"
#include "../../UI/Explorer/MyMessages.h"
#include "../../UI/FileManager/MyWindowsNew.h"
#include "../../UI/GUI/ExtractGUI.h"
#include "../../UI/GUI/ExtractRes.h"
@@ -38,6 +39,11 @@ void ErrorMessageForHRESULT(HRESULT res)
int APIENTRY WinMain2()
{
// OleInitialize is required for ProgressBar in TaskBar.
#ifndef UNDER_CE
OleInitialize(NULL);
#endif
UString password;
bool assumeYes = false;
bool outputFolderDefined = false;