Commit 7cd7851c authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add stub for SetFileValidData.

parent 0ac336ff
......@@ -1001,6 +1001,16 @@ error:
}
/***********************************************************************
* SetFileValidData (KERNEL32.@)
*/
BOOL WINAPI SetFileValidData( HANDLE hFile, LONGLONG ValidDataLength )
{
FIXME("stub: %p, %s\n", hFile, wine_dbgstr_longlong(ValidDataLength));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* GetFileTime (KERNEL32.@)
*/
BOOL WINAPI GetFileTime( HANDLE hFile, FILETIME *lpCreationTime,
......
......@@ -1030,7 +1030,7 @@
# @ stub SetFileShortNameA
# @ stub SetFileShortNameW
@ stdcall SetFileTime(long ptr ptr ptr)
# @ stub SetFileValidData
@ stdcall SetFileValidData(ptr double)
# @ stub SetFirmwareEnvironmentVariableA
# @ stub SetFirmwareEnvironmentVariableW
@ stdcall SetHandleContext(long long)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment