kernel32: Add stub for CreateHardLink.
This commit is contained in:
parent
b4a77bcd53
commit
fee6b384e1
|
@ -224,8 +224,8 @@
|
|||
@ stdcall CreateFileMappingA(long ptr long long long str)
|
||||
@ stdcall CreateFileMappingW(long ptr long long long wstr)
|
||||
@ stdcall CreateFileW(wstr long long ptr long long long)
|
||||
# @ stub CreateHardLinkA
|
||||
# @ stub CreateHardLinkW
|
||||
@ stdcall CreateHardLinkA(str str ptr)
|
||||
@ stdcall CreateHardLinkW(wstr wstr ptr)
|
||||
@ stdcall CreateIoCompletionPort(long long long long)
|
||||
@ stdcall CreateJobObjectA(ptr str)
|
||||
@ stdcall CreateJobObjectW(ptr wstr)
|
||||
|
|
|
@ -1193,6 +1193,32 @@ BOOL WINAPI MoveFileA( LPCSTR source, LPCSTR dest )
|
|||
}
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* CreateHardLinkW (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI CreateHardLinkW(LPCWSTR lpFileName, LPCWSTR lpExistingFileName,
|
||||
LPSECURITY_ATTRIBUTES lpSecurityAttributes)
|
||||
{
|
||||
FIXME("(%s, %s, %p): stub\n", debugstr_w(lpFileName),
|
||||
debugstr_w(lpExistingFileName), lpSecurityAttributes);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* CreateHardLinkA (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI CreateHardLinkA(LPCSTR lpFileName, LPCSTR lpExistingFileName,
|
||||
LPSECURITY_ATTRIBUTES lpSecurityAttributes)
|
||||
{
|
||||
FIXME("(%s, %s, %p): stub\n", debugstr_a(lpFileName),
|
||||
debugstr_a(lpExistingFileName), lpSecurityAttributes);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CreateDirectoryW (KERNEL32.@)
|
||||
* RETURNS:
|
||||
|
|
Loading…
Reference in New Issue