ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

ieee.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.