DevHlp_CloseFile is used by base device drivers to close a file previously opened using DevHlp_OpenFile.
Calling Sequence in Assembler
LES DI, FileClose MOV DL, DevHlp_CloseFile CALL [Device_Help]
ES DI points to a FILEIOINFO structure defined as follows
FILEIOINFO struc length dw 2 ; length of imbedded fle system operation structure ; must contain value 2 for CloseFile FCLOSE struc reserved dw ? ; reserved FCLOSE ends ; FILEIOINFO ends
Results in Assembler
C Clear if the file is closed. AX = zero..
C Set if error. AX = Error Code. Possible errors
Calling Sequence in C
#include "dhcalls.h"
USHORT APIENTRY DevHlp_CloseFile
typedef struct FOPEN { PSZ FileName; /* (input) pointer to file name */ ULONG FileSize; /* (output) size of file returned by FileOPen */ } FILEOPEN; typedef struct FCLOSE { USHORT reserved /* reserved */ } FILECLOSE; typedef struct FREAD { PBYTE Buffer; /* (input) pointer to input buffer */ ULONG ReadSize; /* (input) number of bytes to read fromfile */ } FILEREAD; typedef struct FREADAT { PBYTE Buffer; /* (input) pointer to input buffer */ ULONG ReadSize; /* (input) number of bytes to read from file */ ULONG StartPosition /* (input) starting file position relative to the beginning of the file */ } FILEREADAT; typedef union FILEIOOP { struct FOPEN FileOpen; struct FCLOSE FileClose; struct FREAD FileRead; struct FREADAT FileReadAt; } FILEIOOP; typedef struc _DDFileIo { USHORT Length; /* (input) length of imbedded structure */ FILEIOOP Data; /* (input) imbedded file system operation structure */ } FILEIOINFO, FAR * PFILEIOINFO
Results in C
24 ERROR_BAD_LENGTH
Remarks
Using this interface, one file only may be opened at a time. No handle is assigned by open. The file closed is assumed to be the most recent opened using DevHlp_OpenFile.