[PSDK] Update mmreg.h and rpcndr.h. CORE-13762
[reactos.git] / sdk / include / crt / emmintrin.h
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
6
7 #pragma once
8 #ifndef _INCLUDED_EMM
9 #define _INCLUDED_EMM
10
11 #include <crtdefs.h>
12 #include <xmmintrin.h>
13
14 typedef struct _DECLSPEC_INTRIN_TYPE _CRT_ALIGN(16) __m128d
15 {
16 double m128d_f64[2];
17 } __m128d;
18
19 extern __m128d _mm_load_sd(double const*);
20
21 extern int _mm_cvtsd_si32(__m128d);
22
23
24 #endif /* _INCLUDED_EMM */