Changeset 2827 for trunk/src/win32k/include/OS2KIO.h
- Timestamp:
- Feb 19, 2000, 9:40:31 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/OS2KIO.h
r2501 r2827 1 /* $Id: OS2KIO.h,v 1. 3 2000-01-22 18:20:58bird Exp $1 /* $Id: OS2KIO.h,v 1.4 2000-02-19 08:40:30 bird Exp $ 2 2 * 3 3 * OS/2 kernel IO: prototypes, typedefs and macros. … … 13 13 /** 14 14 * Opens a given file. 15 * @returns NO_ERROR on success. otheron error.15 * @returns NO_ERROR on success. OS/2 error code on error. 16 16 * @param pszFilename Pointer to filename. 17 17 * @param flOpenFlags Open flags. (similar to DosOpen) … … 31 31 /** 32 32 * Closes the specified file. 33 * @returns NO_ERROR on success. otheron error.33 * @returns NO_ERROR on success. OS/2 error code on error. 34 34 * @param hFile File handle - System File Number. 35 35 */ … … 41 41 /** 42 42 * Probably this function will expand a relative path to a full path. 43 * @returns NO_ERROR on success. other on error. (?)43 * @returns NO_ERROR on success. OS/2 error code on error. 44 44 * @param pszPath Pointer to path to expand. Contains the full path upon return. (?) 45 45 * This buffer should probably be of CCHMAXPATH length. … … 52 52 /** 53 53 * Read at a given offset in the a file. 54 * @returns NO_ERROR on success. otheron error.54 * @returns NO_ERROR on success. OS/2 error code on error. 55 55 * @param hFile File handle - System File Number. 56 56 * @param pcbActual Pointer to variable which upon input holds the number … … 71 71 /** 72 72 * Write at a given offset in the a file. 73 * @returns NO_ERROR on success. otheron error.73 * @returns NO_ERROR on success. OS/2 error code on error. 74 74 * @param hFile File handle - System File Number. 75 75 * @param pcbActual Pointer to variable which upon input holds the number … … 87 87 ); 88 88 89 90 /** 91 * Gets the filesize. 92 * @returns NO_ERROR on success; OS/2 error code on error. 93 * @param hFile File handle - System File Number. 94 * @param pcbFile Pointer to ULONG which will hold the file size upon return. 95 */ 96 APIRET KRNLCALL SftFileSize( 97 SFN hFile, 98 PULONG pcbFile 99 ); 100 89 101 #endif
Note:
See TracChangeset
for help on using the changeset viewer.