extrac32: Extract by default when required files are specified.

This commit is contained in:
Sergey Guralnik 2013-03-30 07:22:41 +02:00 committed by Alexandre Julliard
parent 8c5deb5649
commit 085c506832
1 changed files with 3 additions and 1 deletions

View File

@ -149,6 +149,9 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho
if (!GetFullPathNameW(argv[i], MAX_PATH, path, NULL))
return 0;
}
else if (!cmd)
/* Use extraction by default if names of required files presents */
cmd = i < argc ? 'E' : 'D';
if (!path[0])
GetCurrentDirectoryW(MAX_PATH, path);
@ -166,7 +169,6 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho
/* Extract CAB archive */
extract(cabfile, path);
break;
case 0:
case 'D':
/* Display CAB archive */
WINE_FIXME("/D not implemented\n");