Ignore:
Timestamp:
Nov 30, 1999, 9:42:10 PM (26 years ago)
Author:
sandervl
Message:

JW's update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/crtdll/crtinc.h

    r1884 r1900  
    1 /* $Id: crtinc.h,v 1.9 1999-11-30 14:16:45 sandervl Exp $ */
     1/* $Id: crtinc.h,v 1.10 1999-11-30 20:42:10 sandervl Exp $ */
    22
    33/* Definitions for the CRTDLL library (CRTDLL.DLL)
     
    108108#endif
    109109
     110#if (__IBMCPP__ > 300)
     111#define exception _exception
     112#endif
     113
    110114typedef struct
    111115{
     
    129133        double  y;      /* Imaginary part */
    130134};
    131 
    132135
    133136#ifndef _DISKFREE_T_DEFINED
     
    211214char *          CDECL CRTDLL_getenv( const char *name );
    212215int             CDECL CRTDLL__isnan( double __x );
    213 
     216void *          CDECL CRTDLL__get_osfhandle( int fileno );
    214217
    215218//
     
    221224size_t          _mbclen2(const unsigned int s);
    222225int             _isinf(double __x);
     226void            *filehnd(int fileno);
     227
     228
     229//
     230// Defs for filehnd
     231//
     232typedef struct _fileno_modes_type
     233{
     234        HANDLE hFile;
     235        int mode;
     236        int fd;
     237} fileno_modes_type;
     238
     239fileno_modes_type *fileno_modes = NULL;
     240
     241int maxfno = 5;
     242int minfno = 5;
    223243
    224244
Note: See TracChangeset for help on using the changeset viewer.