Commit ea34c87c authored by Jason Edmeades's avatar Jason Edmeades Committed by Alexandre Julliard

xcopy.exe: Convert from main to wmain.

parent a1639ebf
......@@ -3,7 +3,7 @@ TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = xcopy.exe
APPMODE = -mconsole
APPMODE = -mconsole -municode
IMPORTS = shell32 user32 msvcrt kernel32
EXTRADEFS = -DUNICODE
EXTRAINCL = -I$(TOPSRCDIR)/include/msvcrt
......
......@@ -93,7 +93,7 @@ static WCHAR copyTo[MAX_PATH];
Processes the args, and drives the actual copying
========================================================================= */
int main (int argc, char *argv[])
int wmain (int argc, WCHAR *argvW[])
{
int rc = 0;
WCHAR suppliedsource[MAX_PATH] = {0}; /* As supplied on the cmd line */
......@@ -104,7 +104,6 @@ int main (int argc, char *argv[])
WCHAR destinationspec[MAX_PATH] = {0}; /* Filespec of destination */
WCHAR copyCmd[MAXSTRING]; /* COPYCMD env var */
DWORD flags = 0; /* Option flags */
LPWSTR *argvW = NULL;
const WCHAR PROMPTSTR1[] = {'/', 'Y', 0};
const WCHAR PROMPTSTR2[] = {'/', 'y', 0};
const WCHAR COPYCMD[] = {'C', 'O', 'P', 'Y', 'C', 'M', 'D', 0};
......@@ -114,9 +113,6 @@ int main (int argc, char *argv[])
* Parse the command line
*/
/* overwrite the command line */
argvW = CommandLineToArgvW( GetCommandLineW(), &argc );
/* Confirm at least one parameter */
if (argc < 2) {
XCOPY_wprintf(XCOPY_LoadMessage(STRING_INVPARMS));
......
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