ReactOS 0.4.16-dev-2122-g1628f5e
complex.h
Go to the documentation of this file.
1
6#ifndef _COMPLEX_H_DEFINED
7#define _COMPLEX_H_DEFINED
8
9#include <corecrt.h>
10
11#ifndef _C_COMPLEX_T
12#define _C_COMPLEX_T
13typedef struct _C_double_complex
14{
15 double _Val[2];
17
18typedef struct _C_float_complex
19{
20 float _Val[2];
22#endif
23
26
27#endif /* _COMPLEX_H_DEFINED */
_C_float_complex _Fcomplex
Definition: complex.h:25
struct _C_double_complex _C_double_complex
_C_double_complex _Dcomplex
Definition: complex.h:24
struct _C_float_complex _C_float_complex
double _Val[2]
Definition: complex.h:15
float _Val[2]
Definition: complex.h:20