kernel32: Add DECLSPEC_HOTPATCH to SetFilePointer.

This commit is contained in:
Austin English 2014-06-15 13:43:54 -07:00 committed by Alexandre Julliard
parent 82392e78b7
commit bdc0099eb4
1 changed files with 1 additions and 1 deletions

View File

@ -1039,7 +1039,7 @@ BOOL WINAPI SetFileInformationByHandle( HANDLE file, FILE_INFO_BY_HANDLE_CLASS c
/***********************************************************************
* SetFilePointer (KERNEL32.@)
*/
DWORD WINAPI SetFilePointer( HANDLE hFile, LONG distance, LONG *highword, DWORD method )
DWORD WINAPI DECLSPEC_HOTPATCH SetFilePointer( HANDLE hFile, LONG distance, LONG *highword, DWORD method )
{
LARGE_INTEGER dist, newpos;