Commit 085c5068 authored by Sergey Guralnik's avatar Sergey Guralnik Committed by Alexandre Julliard

extrac32: Extract by default when required files are specified.

parent 8c5deb56
...@@ -149,6 +149,9 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho ...@@ -149,6 +149,9 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho
if (!GetFullPathNameW(argv[i], MAX_PATH, path, NULL)) if (!GetFullPathNameW(argv[i], MAX_PATH, path, NULL))
return 0; return 0;
} }
else if (!cmd)
/* Use extraction by default if names of required files presents */
cmd = i < argc ? 'E' : 'D';
if (!path[0]) if (!path[0])
GetCurrentDirectoryW(MAX_PATH, path); GetCurrentDirectoryW(MAX_PATH, path);
...@@ -166,7 +169,6 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho ...@@ -166,7 +169,6 @@ int PASCAL wWinMain(HINSTANCE hInstance, HINSTANCE prev, LPWSTR cmdline, int sho
/* Extract CAB archive */ /* Extract CAB archive */
extract(cabfile, path); extract(cabfile, path);
break; break;
case 0:
case 'D': case 'D':
/* Display CAB archive */ /* Display CAB archive */
WINE_FIXME("/D not implemented\n"); WINE_FIXME("/D not implemented\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment