mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 21:04:06 +00:00
494a789407
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
27 lines
509 B
C
27 lines
509 B
C
/**
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
|
* This file is part of the Wine project.
|
|
*/
|
|
|
|
#ifndef _COMPLEX_H_DEFINED
|
|
#define _COMPLEX_H_DEFINED
|
|
|
|
#include <corecrt.h>
|
|
|
|
#ifndef _C_COMPLEX_T
|
|
#define _C_COMPLEX_T
|
|
typedef struct _C_double_complex
|
|
{
|
|
double _Val[2];
|
|
} _C_double_complex;
|
|
|
|
typedef struct _C_float_complex
|
|
{
|
|
float _Val[2];
|
|
} _C_float_complex;
|
|
#endif
|
|
|
|
typedef _C_double_complex _Dcomplex;
|
|
typedef _C_float_complex _Fcomplex;
|
|
|
|
#endif /* _COMPLEX_H_DEFINED */
|