mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.0 KiB
53 lines
1.0 KiB
#include <stdinc.h>
|
|
|
|
BOOL
|
|
W32::CopyFileW(
|
|
PCWSTR lpExistingFileName,
|
|
PCWSTR lpNewFileName,
|
|
BOOL fFailIfExists,
|
|
DWORD &rdwWin32Error,
|
|
ULONG cELEV,
|
|
va_list ap
|
|
)
|
|
{
|
|
rdwWin32Error = ERROR_SUCCESS;
|
|
BOOL fSuccess = ::CopyFileW(lpExistingFileName, lpNewFileName, fFailIfExists);
|
|
|
|
if ((!fSuccess) && (cELEV != 0))
|
|
{
|
|
if (::IsLastErrorInList(cELEV, ap, rdwWin32Error))
|
|
fSuccess = TRUE;
|
|
}
|
|
|
|
return fSuccess;
|
|
}
|
|
|
|
BOOL
|
|
W32::CopyFileW(
|
|
PCWSTR lpExistingFileName,
|
|
PCWSTR lpNewFileName,
|
|
BOOL fFailIfExists,
|
|
DWORD &rdwWin32Error,
|
|
ULONG cELEV,
|
|
...
|
|
)
|
|
{
|
|
va_list ap;
|
|
BOOL fResult;
|
|
va_start(ap, cELEV);
|
|
fResult = W32::CopyFileW(lpExistingFileName, lpNewFileName, fFailIfExists, rdwWin32Error, cELEV, ap);
|
|
va_end(ap);
|
|
return fResult;
|
|
}
|
|
|
|
BOOL
|
|
W32::CopyFileW(
|
|
PCWSTR lpExistingFileName,
|
|
PCWSTR lpNewFileName,
|
|
BOOL fFailIfExists
|
|
)
|
|
{
|
|
DWORD x;
|
|
return W32::CopyFileW(lpExistingFileName, lpNewFileName, fFailIfExists, x, 0);
|
|
}
|
|
|