Article ID: 11988
Article Last Modified on 10/30/2003
Return Type API or Function Category -------------------------------------------- HFILE OpenFile Windows API HFILE _lopen/_lcreat Windows API int _open/_creat CRT FILE * fopen CRTThese return types (HFILE, int, and FILE *) are not compatible, so they can not be used in a function which is expecting the other type. The HFILEs are handles to operating system files (MS-DOS file handles), the ints are CRT file handles, and the FILE *s are pointers to structures which represent a CRT stream.
_lclose
_llseek
_lread
_lwrite
_close
_lseek
_read
_write
fclose
fseek
fread
fwrite
Additional query words: 3.00 3.10
Keywords: kb16bitonly KB11988