Data Structures |
| struct | EXCLUDELIST |
Defines |
| #define | MAX_WRITECONSOLE_SIZE 65535 |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (xcopy) |
| static int | XCOPY_ParseCommandLine (WCHAR *suppliedsource, WCHAR *supplieddestination, DWORD *flags) |
| static int | XCOPY_ProcessSourceParm (WCHAR *suppliedsource, WCHAR *stem, WCHAR *spec, DWORD flags) |
| static int | XCOPY_ProcessDestParm (WCHAR *supplieddestination, WCHAR *stem, WCHAR *spec, WCHAR *srcspec, DWORD flags) |
| static int | XCOPY_DoCopy (WCHAR *srcstem, WCHAR *srcspec, WCHAR *deststem, WCHAR *destspec, DWORD flags) |
| static BOOL | XCOPY_CreateDirectory (const WCHAR *path) |
| static BOOL | XCOPY_ProcessExcludeList (WCHAR *parms) |
| static BOOL | XCOPY_ProcessExcludeFile (WCHAR *filename, WCHAR *endOfName) |
| static WCHAR * | XCOPY_LoadMessage (UINT id) |
| static void | XCOPY_FailMessage (DWORD err) |
| static int | XCOPY_wprintf (const WCHAR *format,...) |
| int | wmain (int argc, WCHAR *argvW[]) |
| static BOOL | is_whitespace (WCHAR c) |
| static WCHAR * | skip_whitespace (WCHAR *p) |
| static int | find_end_of_word (const WCHAR *word, WCHAR **end) |
| static void | strip_quotes (WCHAR *word, WCHAR **end) |
Variables |
| static ULONG | filesCopied = 0 |
| static EXCLUDELIST * | excludeList = NULL |
| static FILETIME | dateRange |
| static const WCHAR | wchr_slash [] = {'\\', 0} |
| static const WCHAR | wchr_star [] = {'*', 0} |
| static const WCHAR | wchr_dot [] = {'.', 0} |
| static const WCHAR | wchr_dotdot [] = {'.', '.', 0} |
| static WCHAR | copyFrom [MAX_PATH] |
| static WCHAR | copyTo [MAX_PATH] |