kernel32: Add SetFileInformationByHandle stub.
This commit is contained in:
parent
9a448b5d6a
commit
2c04118534
|
@ -1009,6 +1009,11 @@ BOOL WINAPI SetEndOfFile( HANDLE hFile )
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI SetFileInformationByHandle( HANDLE file, FILE_INFO_BY_HANDLE_CLASS class, VOID *info, DWORD size )
|
||||
{
|
||||
FIXME("%p %u %p %u - stub\n", file, class, info, size);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetFilePointer (KERNEL32.@)
|
||||
|
|
|
@ -1126,6 +1126,7 @@
|
|||
@ stdcall SetFileApisToOEM()
|
||||
@ stdcall SetFileAttributesA(str long)
|
||||
@ stdcall SetFileAttributesW(wstr long)
|
||||
@ stdcall SetFileInformationByHandle(long long ptr long)
|
||||
@ stdcall SetFilePointer(long long ptr long)
|
||||
@ stdcall SetFilePointerEx(long int64 ptr long)
|
||||
# @ stub SetFileShortNameA
|
||||
|
|
Loading…
Reference in New Issue