Group: File Management - Library: kernel32
A procedure for setting file times
HFILE _lopen(
LPCSTR lpPathName, // address of name of file to open
int iReadWrite // file access mode
);
DECLARE INTEGER _lopen IN kernel32;
STRING lpFileName, INTEGER iReadWrite
lpPathName Points to a null-terminated string that names the file to open. The string must consist of characters from the Windows ANSI character set.
iReadWrite Specifies the modes in which to open the file.
If the function succeeds, the return value is a file handle. If the function fails, the return value is HFILE_ERROR
This function is provided for compatibility with 16-bit versions of Windows. Win32-based applications should use the CreateFile function.