Changeset 6815 for trunk/src/win32k/kKrnlLib/include/OS2KIO.h
- Timestamp:
- Sep 26, 2001, 5:52:37 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/include/OS2KIO.h
r6701 r6815 1 /* $Id: OS2KIO.h,v 1. 1 2001-09-14 01:50:14bird Exp $1 /* $Id: OS2KIO.h,v 1.2 2001-09-26 03:52:35 bird Exp $ 2 2 * 3 * OS/2 kernel IO: prototypes, typedefs and macros. 3 * OS/2 kernel I/O: prototypes, typedefs and macros. 4 * 5 * Copyright (c) 1999-2001 knut st. osmundsen (kosmunds@csc.com) 4 6 * 5 7 * Project Odin Software License can be found in LICENSE.TXT … … 27 29 PULONG pulsomething 28 30 ); 31 APIRET KRNLCALL OrgIOSftOpen( 32 PSZ pszFilename, 33 ULONG flOpenFlags, 34 ULONG fsOpenMode, 35 PSFN phFile, 36 PULONG pulsomething 37 ); 29 38 30 39 … … 35 44 */ 36 45 APIRET KRNLCALL IOSftClose( 46 SFN hFile 47 ); 48 APIRET KRNLCALL OrgIOSftClose( 37 49 SFN hFile 38 50 ); … … 46 58 */ 47 59 APIRET KRNLCALL IOSftTransPath( 60 PSZ pszPath 61 ); 62 APIRET KRNLCALL OrgIOSftTransPath( 48 63 PSZ pszPath 49 64 ); … … 61 76 */ 62 77 APIRET KRNLCALL IOSftReadAt( 78 SFN hFile, 79 PULONG pcbActual, 80 PVOID pvBuffer, 81 ULONG flFlags, 82 ULONG ulOffset 83 ); 84 APIRET KRNLCALL OrgIOSftReadAt( 63 85 SFN hFile, 64 86 PULONG pcbActual, … … 86 108 ULONG ulOffset 87 109 ); 110 APIRET KRNLCALL OrgIOSftWriteAt( 111 SFN hFile, 112 PULONG pcbActual, 113 PVOID pvBuffer, 114 ULONG flFlags, 115 ULONG ulOffset 116 ); 88 117 89 118 … … 98 127 PULONG pcbFile 99 128 ); 129 APIRET KRNLCALL OrgSftFileSize( 130 SFN hFile, 131 PULONG pcbFile 132 ); 100 133 101 134 #endif
Note:
See TracChangeset
for help on using the changeset viewer.