forked from focus-creative-games/il2cpp_plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindowsRuntime.cpp
More file actions
121 lines (103 loc) · 3.77 KB
/
WindowsRuntime.cpp
File metadata and controls
121 lines (103 loc) · 3.77 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include "il2cpp-config.h"
#include "il2cpp-vm-support.h"
#include "os/WindowsRuntime.h"
#if IL2CPP_USE_GENERIC_WINDOWSRUNTIME
namespace il2cpp
{
namespace os
{
il2cpp_hresult_t WindowsRuntime::GetActivationFactory(Il2CppHString className, Il2CppIActivationFactory** activationFactory)
{
NO_UNUSED_WARNING(className);
NO_UNUSED_WARNING(activationFactory);
IL2CPP_ASSERT(className != NULL);
IL2CPP_ASSERT(activationFactory != NULL);
return IL2CPP_REGDB_E_CLASSNOTREG;
}
il2cpp_hresult_t WindowsRuntime::CreateHStringReference(const utils::StringView<Il2CppNativeChar>& str, Il2CppHStringHeader* header, Il2CppHString* hstring)
{
NO_UNUSED_WARNING(str);
NO_UNUSED_WARNING(header);
NO_UNUSED_WARNING(hstring);
IL2CPP_ASSERT(header != NULL);
IL2CPP_ASSERT(hstring != NULL);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
il2cpp_hresult_t WindowsRuntime::CreateHString(const utils::StringView<Il2CppChar>& str, Il2CppHString* hstring)
{
NO_UNUSED_WARNING(str);
NO_UNUSED_WARNING(hstring);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
#if !IL2CPP_TARGET_WINDOWS // Il2CppChar and Il2CppNativeChar are the same on Windows
il2cpp_hresult_t WindowsRuntime::CreateHString(const utils::StringView<Il2CppNativeChar>& str, Il2CppHString* hstring)
{
NO_UNUSED_WARNING(str);
NO_UNUSED_WARNING(hstring);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
#endif
il2cpp_hresult_t WindowsRuntime::DuplicateHString(Il2CppHString hstring, Il2CppHString* duplicated)
{
NO_UNUSED_WARNING(hstring);
NO_UNUSED_WARNING(duplicated);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
il2cpp_hresult_t WindowsRuntime::DeleteHString(Il2CppHString hstring)
{
NO_UNUSED_WARNING(hstring);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
const Il2CppChar* WindowsRuntime::GetHStringBuffer(Il2CppHString hstring, uint32_t* length)
{
NO_UNUSED_WARNING(hstring);
NO_UNUSED_WARNING(length);
IL2CPP_VM_RAISE_COM_EXCEPTION(IL2CPP_COR_E_PLATFORMNOTSUPPORTED, false);
return NULL;
}
const Il2CppNativeChar* WindowsRuntime::GetNativeHStringBuffer(Il2CppHString hstring, uint32_t* length)
{
NO_UNUSED_WARNING(hstring);
NO_UNUSED_WARNING(length);
IL2CPP_VM_RAISE_COM_EXCEPTION(IL2CPP_COR_E_PLATFORMNOTSUPPORTED, false);
return NULL;
}
Il2CppString* WindowsRuntime::HStringToManagedString(Il2CppHString hstring)
{
NO_UNUSED_WARNING(hstring);
IL2CPP_VM_RAISE_COM_EXCEPTION(IL2CPP_COR_E_PLATFORMNOTSUPPORTED, false);
return NULL;
}
il2cpp_hresult_t WindowsRuntime::PreallocateHStringBuffer(uint32_t length, Il2CppNativeChar** mutableBuffer, void** bufferHandle)
{
NO_UNUSED_WARNING(length);
NO_UNUSED_WARNING(mutableBuffer);
NO_UNUSED_WARNING(bufferHandle);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
il2cpp_hresult_t WindowsRuntime::PromoteHStringBuffer(void* bufferHandle, Il2CppHString* hstring)
{
NO_UNUSED_WARNING(bufferHandle);
NO_UNUSED_WARNING(hstring);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
il2cpp_hresult_t WindowsRuntime::DeleteHStringBuffer(void* bufferHandle)
{
NO_UNUSED_WARNING(bufferHandle);
return IL2CPP_COR_E_PLATFORMNOTSUPPORTED;
}
Il2CppIRestrictedErrorInfo* WindowsRuntime::GetRestrictedErrorInfo()
{
return NULL;
}
void WindowsRuntime::OriginateLanguageException(Il2CppException* ex, Il2CppString* exceptionString)
{
NO_UNUSED_WARNING(ex);
NO_UNUSED_WARNING(exceptionString);
}
void WindowsRuntime::EnableErrorReporting()
{
}
}
}
#endif