Commit 52814a80 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp: Sync implementations.

parent 5a3ff7cc
......@@ -467,3 +467,16 @@ void init_exception(void*);
void init_locale(void*);
void init_io(void*);
void free_io(void);
/* class complex<float> */
typedef struct {
float real;
float imag;
} complex_float;
/* class complex<double> */
/* class complex<long double> */
typedef struct {
double real;
double imag;
} complex_double;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment