Ignore:
Timestamp:
Feb 19, 2000, 9:40:31 AM (26 years ago)
Author:
bird
Message:

g_tkExecPgm is overloaded, so we may change paramerters for a process later.

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:58 bird Exp $
     1/* $Id: OS2KIO.h,v 1.4 2000-02-19 08:40:30 bird Exp $
    22 *
    33 * OS/2 kernel IO: prototypes, typedefs and macros.
     
    1313/**
    1414 * Opens a given file.
    15  * @returns  NO_ERROR on success. other on error.
     15 * @returns  NO_ERROR on success. OS/2 error code on error.
    1616 * @param    pszFilename   Pointer to filename.
    1717 * @param    flOpenFlags   Open flags. (similar to DosOpen)
     
    3131/**
    3232 * Closes the specified file.
    33  * @returns  NO_ERROR on success. other on error.
     33 * @returns  NO_ERROR on success. OS/2 error code on error.
    3434 * @param    hFile      File handle - System File Number.
    3535 */
     
    4141/**
    4242 * 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.
    4444 * @param    pszPath  Pointer to path to expand. Contains the full path upon return. (?)
    4545 *                    This buffer should probably be of CCHMAXPATH length.
     
    5252/**
    5353 * Read at a given offset in the a file.
    54  * @returns  NO_ERROR on success. other on error.
     54 * @returns  NO_ERROR on success. OS/2 error code on error.
    5555 * @param    hFile      File handle - System File Number.
    5656 * @param    pcbActual  Pointer to variable which upon input holds the number
     
    7171/**
    7272 * Write at a given offset in the a file.
    73  * @returns  NO_ERROR on success. other on error.
     73 * @returns  NO_ERROR on success. OS/2 error code on error.
    7474 * @param    hFile      File handle - System File Number.
    7575 * @param    pcbActual  Pointer to variable which upon input holds the number
     
    8787    );
    8888
     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 */
     96APIRET KRNLCALL SftFileSize(
     97    SFN hFile,
     98    PULONG pcbFile
     99    );
     100
    89101#endif
Note: See TracChangeset for help on using the changeset viewer.