-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
GenericsNative.NullableD.cpp
40 lines (32 loc) · 1.16 KB
/
GenericsNative.NullableD.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#include <stdio.h>
#include <stdint.h>
#include <xplatform.h>
#include <platformdefines.h>
struct NullableD
{
bool hasValue;
double value;
};
static NullableD NullableDValue = { };
extern "C" DLL_EXPORT NullableD STDMETHODCALLTYPE GetNullableD(bool hasValue, double value)
{
throw "P/Invoke for Nullable<double> should be unsupported.";
}
extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetNullableDOut(bool hasValue, double value, NullableD* pValue)
{
throw "P/Invoke for Nullable<double> should be unsupported.";
}
extern "C" DLL_EXPORT const NullableD* STDMETHODCALLTYPE GetNullableDPtr(bool hasValue, double value)
{
throw "P/Invoke for Nullable<double> should be unsupported.";
}
extern "C" DLL_EXPORT NullableD STDMETHODCALLTYPE AddNullableD(NullableD lhs, NullableD rhs)
{
throw "P/Invoke for Nullable<double> should be unsupported.";
}
extern "C" DLL_EXPORT NullableD STDMETHODCALLTYPE AddNullableDs(const NullableD* pValues, uint32_t count)
{
throw "P/Invoke for Nullable<double> should be unsupported.";
}