Changeset 1900 for trunk/src/crtdll/crtinc.h
- Timestamp:
- Nov 30, 1999, 9:42:10 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/crtdll/crtinc.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crtdll/crtinc.h
r1884 r1900 1 /* $Id: crtinc.h,v 1. 9 1999-11-30 14:16:45sandervl Exp $ */1 /* $Id: crtinc.h,v 1.10 1999-11-30 20:42:10 sandervl Exp $ */ 2 2 3 3 /* Definitions for the CRTDLL library (CRTDLL.DLL) … … 108 108 #endif 109 109 110 #if (__IBMCPP__ > 300) 111 #define exception _exception 112 #endif 113 110 114 typedef struct 111 115 { … … 129 133 double y; /* Imaginary part */ 130 134 }; 131 132 135 133 136 #ifndef _DISKFREE_T_DEFINED … … 211 214 char * CDECL CRTDLL_getenv( const char *name ); 212 215 int CDECL CRTDLL__isnan( double __x ); 213 216 void * CDECL CRTDLL__get_osfhandle( int fileno ); 214 217 215 218 // … … 221 224 size_t _mbclen2(const unsigned int s); 222 225 int _isinf(double __x); 226 void *filehnd(int fileno); 227 228 229 // 230 // Defs for filehnd 231 // 232 typedef struct _fileno_modes_type 233 { 234 HANDLE hFile; 235 int mode; 236 int fd; 237 } fileno_modes_type; 238 239 fileno_modes_type *fileno_modes = NULL; 240 241 int maxfno = 5; 242 int minfno = 5; 223 243 224 244
Note:
See TracChangeset
for help on using the changeset viewer.
