Ignore:
Timestamp:
Oct 2, 2000, 6:01:40 AM (25 years ago)
Author:
bird
Message:

Added some limited dump capabilities for PE executables.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/common/kFile.h

    r4129 r4358  
    1 /* $Id: kFile.h,v 1.4 2000-08-31 03:00:13 bird Exp $
     1/* $Id: kFile.h,v 1.5 2000-10-02 04:01:39 bird Exp $
    22 *
    33 * kFile - Simple (for the time being) file class.
     
    2626    HFILE           hFile;              /* Pointer to stdio filehandle */
    2727    BOOL            fReadOnly;          /* True if readonly access, False is readwrite. */
     28    BOOL            fStdDev;            /* True if stdio, stderr or stdin. Filestatus is invalid with this is set.*/
    2829    APIRET          rc;                 /* Last error (return code). */
    2930    FILESTATUS4     filestatus;         /* Filestatus data. */
     
    4243    BOOL            position() throw(int);
    4344
     45    /** @cat constructors */
     46private:
     47    kFile(HFILE hFile, BOOL fReadOnly);
    4448public:
    45     /** @cat constructor */
    4649    kFile(const char *pszFilename, BOOL fReadOnly = TRUE) throw(int);
    4750    ~kFile();
     
    7578    BOOL            setFailOnErrors();
    7679    int             getLastError() const;
     80
     81    /** standard files */
     82    static kFile    StdOut;
     83    static kFile    StdIn;
     84    static kFile    StdErr;
    7785};
    7886
Note: See TracChangeset for help on using the changeset viewer.