DevHlp_OpenFile is used by base device drivers to open a file for read access during initalization.
Calling Sequence in Assembler
LES DI, FileOpen ; Point to FILEIOINFO structure MOV DL, DevHlp_OpenFile CALL [Device_Help]
ES DI points to a FILEIOINFO structure defined as follows
FILEIOINFO struc length dw 8 ; length of imbedded fle system operation structure ; FOPEN struc name dd ? ; 16 16 pointer to ASCIZ pathname fsize dd ? ; returned size of file FOPEN ends ; FILEIOINFO ends
Results in Assembler
C Clear if file is opened. AX = zero.
C Set if error. AX = Error code. Possible errors
24 ERROR_BAD_LENGTH
Calling Sequence in C
#include "dhcalls.h" USHORT APIENTRY DevHelp_OpenFile (PFILEIOINFO pFileOpen);
USHORT APIENTRY DevHlp_OpenFile
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
Drive and path information is ignored. The system searches for the file in the root, \OS2 and \OS2\BOOT directories of the boot drive/device.
Using this interface, one file only may be opened at a time. No handle is assigned. Subsequent read and close requests assume the file is the most recent opened using DevHlp_OpenFile.