GetFileInformationByHandle function kernel32
Retrieves file information for the specified file.
BOOL GetFileInformationByHandle(
HANDLE hFile,
LPBY_HANDLE_FILE_INFORMATION lpFileInformation
);
Implementation
int GetFileInformationByHandle(
int hFile,
Pointer<BY_HANDLE_FILE_INFORMATION> lpFileInformation,
) => _GetFileInformationByHandle(hFile, lpFileInformation);