mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 02:15:43 +00:00
This really needs to go in a branch. It needs heavy testing and can't coincide with the current shell32 due to PSDK interface changes
svn path=/branches/shell32_new-bringup/; revision=51893
This commit is contained in:
parent
4596e5e59b
commit
4019caae75
23116 changed files with 0 additions and 1109022 deletions
25
lib/sdk/crt/include/internal/ieee.h
Normal file
25
lib/sdk/crt/include/internal/ieee.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef __CRT_INTERNAL_IEEE_H
|
||||
#define __CRT_INTERNAL_IEEE_H
|
||||
|
||||
typedef struct {
|
||||
unsigned int mantissa:23;
|
||||
unsigned int exponent:8;
|
||||
unsigned int sign:1;
|
||||
} float_s;
|
||||
|
||||
typedef struct {
|
||||
unsigned int mantissal:32;
|
||||
unsigned int mantissah:20;
|
||||
unsigned int exponent:11;
|
||||
unsigned int sign:1;
|
||||
} double_s;
|
||||
|
||||
typedef struct {
|
||||
unsigned int mantissal:32;
|
||||
unsigned int mantissah:32;
|
||||
unsigned int exponent:15;
|
||||
unsigned int sign:1;
|
||||
unsigned int empty:16;
|
||||
} long_double_s;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue