mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
added stub for PrivCopyFileExW. This is needed by XP's ulib.dll, which XP's regedit.exe imports
svn path=/trunk/; revision=18147
This commit is contained in:
parent
1a4f353cad
commit
9da2411dea
2 changed files with 20 additions and 1 deletions
|
@ -385,4 +385,23 @@ CopyFileW (
|
|||
bFailIfExists);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
PrivCopyFileExW (
|
||||
LPCWSTR lpExistingFileName,
|
||||
LPCWSTR lpNewFileName,
|
||||
LPPROGRESS_ROUTINE lpProgressRoutine,
|
||||
LPVOID lpData,
|
||||
BOOL *pbCancel,
|
||||
DWORD dwCopyFlags
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -677,7 +677,7 @@ OutputDebugStringW@4
|
|||
PeekConsoleInputA@16
|
||||
PeekConsoleInputW@16
|
||||
PeekNamedPipe@24
|
||||
;PrivCopyFileExW
|
||||
PrivCopyFileExW@24
|
||||
;PrivMoveFileIdentityW
|
||||
PostQueuedCompletionStatus@16
|
||||
PrepareTape@12
|
||||
|
|
Loading…
Reference in a new issue