-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
GenericsNative.NullableU.cpp
40 lines (32 loc) · 1.16 KB
/
GenericsNative.NullableU.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 NullableU
{
bool hasValue;
uint32_t value;
};
static NullableU NullableUValue = { };
extern "C" DLL_EXPORT NullableU STDMETHODCALLTYPE GetNullableU(bool hasValue, uint32_t value)
{
throw "P/Invoke for Nullable<uint> should be unsupported.";
}
extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetNullableUOut(bool hasValue, uint32_t value, NullableU* pValue)
{
throw "P/Invoke for Nullable<uint> should be unsupported.";
}
extern "C" DLL_EXPORT const NullableU* STDMETHODCALLTYPE GetNullableUPtr(bool hasValue, uint32_t value)
{
throw "P/Invoke for Nullable<uint> should be unsupported.";
}
extern "C" DLL_EXPORT NullableU STDMETHODCALLTYPE AddNullableU(NullableU lhs, NullableU rhs)
{
throw "P/Invoke for Nullable<uint> should be unsupported.";
}
extern "C" DLL_EXPORT NullableU STDMETHODCALLTYPE AddNullableUs(const NullableU* pValues, uint32_t count)
{
throw "P/Invoke for Nullable<uint> should be unsupported.";
}