Scroll to navigation

GetFileSizeEx(3w) Wine API GetFileSizeEx(3w)

NAME

GetFileSizeEx (KERNEL32.@)

SYNOPSIS

BOOL GetFileSizeEx
(
HANDLE hFile,
PLARGE_INTEGER lpFileSize
)
 

DESCRIPTION

Retrieve the size of a file.
 

PARAMS

hFile [In] File to retrieve size of.
lpFileSIze [Out] On return, the size of the file.
 

RETURNS

Success: TRUE.
Failure: FALSE, check GetLastError(3w).
 

IMPLEMENTATION

Declared in "winbase.h".
Implemented in "dlls/kernel32/file.c".
Debug channel "file".
Oct 2012 Wine API