/** * 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_Ttypedefstruct_C_double_complex{double_Val[2];}_C_double_complex;typedefstruct_C_float_complex{float_Val[2];}_C_float_complex;#endiftypedef_C_double_complex_Dcomplex;typedef_C_float_complex_Fcomplex;#endif /* _COMPLEX_H_DEFINED */