gdi32: Use ntgdi names for PtVisible and RectVisible.
[wine.git] / include / msvcrt / complex.h
blob2d7009c470c1c61b496a97af23264bb3c90fc57f
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the Wine project.
4 */
6 #ifndef _COMPLEX_H_DEFINED
7 #define _COMPLEX_H_DEFINED
9 #include <corecrt.h>
11 #ifndef _C_COMPLEX_T
12 #define _C_COMPLEX_T
13 typedef struct _C_double_complex
15 double _Val[2];
16 } _C_double_complex;
18 typedef struct _C_float_complex
20 float _Val[2];
21 } _C_float_complex;
22 #endif
24 typedef _C_double_complex _Dcomplex;
25 typedef _C_float_complex _Fcomplex;
27 #endif /* _COMPLEX_H_DEFINED */