Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenieee.h
Go to the documentation of this file.
00001 #ifndef __CRT_INTERNAL_IEEE_H 00002 #define __CRT_INTERNAL_IEEE_H 00003 00004 typedef struct { 00005 unsigned int mantissa:23; 00006 unsigned int exponent:8; 00007 unsigned int sign:1; 00008 } float_s; 00009 00010 typedef struct { 00011 unsigned int mantissal:32; 00012 unsigned int mantissah:20; 00013 unsigned int exponent:11; 00014 unsigned int sign:1; 00015 } double_s; 00016 00017 typedef struct { 00018 unsigned int mantissal:32; 00019 unsigned int mantissah:32; 00020 unsigned int exponent:15; 00021 unsigned int sign:1; 00022 unsigned int empty:16; 00023 } long_double_s; 00024 00025 #endif Generated on Sat May 26 2012 04:35:26 for ReactOS by
1.7.6.1
|