Ignore:
Timestamp:
Sep 26, 2001, 5:52:37 AM (24 years ago)
Author:
bird
Message:

Updated to work for kKrnlLib.DLL and internally in kKrnlLib.

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:14 bird Exp $
     1/* $Id: OS2KIO.h,v 1.2 2001-09-26 03:52:35 bird Exp $
    22 *
    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)
    46 *
    57 * Project Odin Software License can be found in LICENSE.TXT
     
    2729    PULONG pulsomething
    2830    );
     31APIRET KRNLCALL OrgIOSftOpen(
     32    PSZ pszFilename,
     33    ULONG flOpenFlags,
     34    ULONG fsOpenMode,
     35    PSFN phFile,
     36    PULONG pulsomething
     37    );
    2938
    3039
     
    3544 */
    3645APIRET KRNLCALL IOSftClose(
     46    SFN hFile
     47    );
     48APIRET KRNLCALL OrgIOSftClose(
    3749    SFN hFile
    3850    );
     
    4658 */
    4759APIRET KRNLCALL IOSftTransPath(
     60    PSZ pszPath
     61    );
     62APIRET KRNLCALL OrgIOSftTransPath(
    4863    PSZ pszPath
    4964    );
     
    6176 */
    6277APIRET KRNLCALL IOSftReadAt(
     78    SFN hFile,
     79    PULONG pcbActual,
     80    PVOID pvBuffer,
     81    ULONG flFlags,
     82    ULONG ulOffset
     83    );
     84APIRET KRNLCALL OrgIOSftReadAt(
    6385    SFN hFile,
    6486    PULONG pcbActual,
     
    86108    ULONG ulOffset
    87109    );
     110APIRET KRNLCALL OrgIOSftWriteAt(
     111    SFN hFile,
     112    PULONG pcbActual,
     113    PVOID pvBuffer,
     114    ULONG flFlags,
     115    ULONG ulOffset
     116    );
    88117
    89118
     
    98127    PULONG pcbFile
    99128    );
     129APIRET KRNLCALL OrgSftFileSize(
     130    SFN hFile,
     131    PULONG pcbFile
     132    );
    100133
    101134#endif
Note: See TracChangeset for help on using the changeset viewer.