blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
adb0fdb3f41bf77558eef7385902a83ad3aee2c8
399b5e377fdd741fe6e7b845b70491b9ce2cccfd
/LLVM_src/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/arrow.pass.cpp
5f7d6582b6f0743e2fc38d148593172e21da2f55
[ "NCSA", "LLVM-exception", "MIT", "Apache-2.0" ]
permissive
zslwyuan/LLVM-9-for-Light-HLS
6ebdd03769c6b55e5eec923cb89e4a8efc7dc9ab
ec6973122a0e65d963356e0fb2bff7488150087c
refs/heads/master
2021-06-30T20:12:46.289053
2020-12-07T07:52:19
2020-12-07T07:52:19
203,967,206
1
3
null
2019-10-29T14:45:36
2019-08-23T09:25:42
C++
UTF-8
C++
false
false
726
cpp
//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // <memory> // shared_ptr // T* operator->() const; #include <memory> #include <utility> #include <cassert> int main() { const std::shared_ptr<std::pair<int, int> > p(new std::pair<int, int>(3, 4)); assert(p->first == 3); assert(p->second == 4); p->first = 5; p->second = 6; assert(p->first == 5); assert(p->second == 6); }
[ "tliang@connect.ust.hk" ]
tliang@connect.ust.hk
e22e756f8365a653a563a127c572525b35598682
79e8bf0d1ac740f2cec6b798453b3e7881ccece7
/Triangle.cpp
66ecb92abf92858fc480262f201de47ec0dbf90a
[]
no_license
abcdmyz/leetcode
7b15dd8f15dcdf8151bdc7843bd6ade170074e4a
c3fb91313273622ea2b29453b338e08b135b4237
refs/heads/master
2021-01-19T08:21:03.646819
2014-07-28T06:54:31
2014-07-28T06:54:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,135
cpp
class Solution { public: int minimumTotal(vector<vector<int> > &triangle) { // Start typing your C/C++ solution below // DO NOT write int main() function if ( triangle.size()==0 ) return 0; int r1[200]; int r2[200]; r1[0]=triangle[0][0]; for ( int i=1; i<triangle.size(); i++ ) { r2[0] = r1[0]+triangle[i][0]; r2[i] = r1[i-1]+triangle[i][i]; for ( int j=1; j<triangle[i].size()-1; j++ ) { if ( r1[j-1]+triangle[i][j] < r1[j]+triangle[i][j] ) r2[j] = r1[j-1]+triangle[i][j]; else r2[j] = r1[j]+triangle[i][j]; } for ( int j=0; j<i+1; j++ ) r1[j]=r2[j]; } int min = r1[0]; for ( int i=0; i<triangle.size(); i++ ) { if ( r1[i]<min ) min = r1[i]; } return min; } };
[ "abcdmyz@gmail.com" ]
abcdmyz@gmail.com
0c4ad6c64ed0c2a0fcd936870b74cf52c63240c2
6ecdb46e2e562ebfa476ad5cede63d5783f5d00e
/contests/20140907/d.cpp
fb0da3d2ec05e15d8a070a863848d3b570ce7a5d
[]
no_license
archer811/ACM
8ec1d337db65bab3249285b54a102accb677a3b2
9c69acd400d6a461d09679fada3605b199cabcb8
refs/heads/master
2016-09-06T03:45:28.799640
2014-11-09T11:54:04
2014-11-09T11:54:04
26,379,647
1
0
null
null
null
null
UTF-8
C++
false
false
2,752
cpp
#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<queue> #include<stack> #include<algorithm> #include<set> #include<ctime> #include<map> using namespace std; #define ll long long const int maxn = 100010; const int maxm = 400015; int head[maxn],tot; struct Edge { int to,next; } edge[maxm]; void add(int u,int v) { edge[tot].to=v; edge[tot].next=head[u]; head[u]=tot++; } int n,m,k; int is[maxn],a[maxn]; int fa[maxn]; int find(int x) { if(x==fa[x])return x; return fa[x]=find(fa[x]); } void uion(int x,int y) { int a = find(x),b = find(y); if(a==b)return; fa[b]=a; } int judge(int x,int y) { int a = find(x),b = find(y); if(a!=b)return 0; return 1; } int main() { int i,j,t,x,y; scanf("%d",&t); while(t--) { memset(head,-1,sizeof(head)); tot=0; scanf("%d%d%d",&n,&m,&k); memset(is,0,sizeof(is)); for(i=1; i<=k; i++) { scanf("%d",&x); is[x]=1; } for(i=0; i<m; i++) { scanf("%d%d",&x,&y); add(x,y); add(y,x); } int L; scanf("%d",&L); for(i=1; i<=L; i++) { scanf("%d",&a[i]); } if(L<k) { puts("No"); continue; } for(i=1; i<=n; i++) fa[i]=i; for(i=1; i<=n; i++) { if(is[i]==0) { for(j=head[i]; j!=-1; j=edge[j].next) { int v = edge[j].to; if(is[v]==0) uion(v,i); } } } int flag=0; for(i=1; i<=L; i++) { if(i==1) { int tmp = a[i]; is[tmp]=0; for(j=head[tmp]; j!=-1; j=edge[j].next) { int v = edge[j].to; if(is[v]==0) uion(v,tmp); } } else { is[a[i]]=0; int tmp = a[i]; for(j=head[tmp]; j!=-1; j=edge[j].next) { int v = edge[j].to; if(is[v]==0) uion(v,tmp); } if(judge(a[i-1],a[i])==0) { flag=1;break; } } if(flag)break; } x = find(1); for(i=2;i<=n;i++) { if(find(i)!=x) { flag=1;break; } } if(flag==0)puts("Yes"); else puts("No"); } return 0; }
[ "2280483505@qq.com" ]
2280483505@qq.com
7c012536657e7877f86d4db6c93b3a59702afcf8
2b210288fb83c773c7a2afa4d874d35f6a000699
/chromium-webcl/src/ui/gl/gl_bindings.h
e7bd8086dc4c5d57340a0bdfcc9719660110f40e
[ "BSD-3-Clause" ]
permissive
mychangle123/Chromium-WebCL
3462ff60a6ef3144729763167be6308921e4195d
2b25f42a0a239127ed39a159c377be58b3102b17
HEAD
2016-09-16T10:47:58.247722
2013-10-31T05:48:50
2013-10-31T05:48:50
14,553,669
1
2
null
null
null
null
UTF-8
C++
false
false
8,762
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GL_GL_BINDINGS_H_ #define UI_GL_GL_BINDINGS_H_ // Includes the platform independent and platform dependent GL headers. // Only include this in cc files. It pulls in system headers, including // the X11 headers on linux, which define all kinds of macros that are // liable to cause conflicts. #include <GL/gl.h> #include <GL/glext.h> #include <EGL/egl.h> #include <EGL/eglext.h> #include "base/logging.h" #include "build/build_config.h" #include "ui/gl/gl_export.h" // The standard OpenGL native extension headers are also included. #if defined(OS_WIN) #include <GL/wglext.h> #elif defined(OS_MACOSX) #include <OpenGL/OpenGL.h> #elif defined(USE_X11) #include <GL/glx.h> #include <GL/glxext.h> // Undefine some macros defined by X headers. This is why this file should only // be included in .cc files. #undef Bool #undef None #undef Status #endif // GLES2 defines not part of Desktop GL // Shader Precision-Specified Types #define GL_LOW_FLOAT 0x8DF0 #define GL_MEDIUM_FLOAT 0x8DF1 #define GL_HIGH_FLOAT 0x8DF2 #define GL_LOW_INT 0x8DF3 #define GL_MEDIUM_INT 0x8DF4 #define GL_HIGH_INT 0x8DF5 #define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A #define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B #define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD #define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB #define GL_MAX_VARYING_VECTORS 0x8DFC #define GL_SHADER_BINARY_FORMATS 0x8DF8 #define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 #define GL_SHADER_COMPILER 0x8DFA #define GL_RGB565 0x8D62 #define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B #define GL_RGB8_OES 0x8051 #define GL_RGBA8_OES 0x8058 #define GL_HALF_FLOAT_OES 0x8D61 // GL_OES_EGL_image_external #define GL_TEXTURE_EXTERNAL_OES 0x8D65 #define GL_SAMPLER_EXTERNAL_OES 0x8D66 #define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 #define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 // GL_ANGLE_translated_shader_source #define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 // GL_CHROMIUM_flipy #define GL_UNPACK_FLIP_Y_CHROMIUM 0x9240 #define GL_UNPACK_PREMULTIPLY_ALPHA_CHROMIUM 0x9241 #define GL_UNPACK_UNPREMULTIPLY_ALPHA_CHROMIUM 0x9242 #define GL_UNPACK_COLORSPACE_CONVERSION_CHROMIUM 0x9243 // GL_CHROMIUM_gpu_memory_manager #define GL_TEXTURE_POOL_CHROMIUM 0x6000 #define GL_TEXTURE_POOL_MANAGED_CHROMIUM 0x6001 #define GL_TEXTURE_POOL_UNMANAGED_CHROMIUM 0x6002 // GL_ANGLE_pack_reverse_row_order #define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 // GL_ANGLE_texture_usage #define GL_TEXTURE_USAGE_ANGLE 0x93A2 #define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 // GL_EXT_texture_storage #define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F #define GL_ALPHA8_EXT 0x803C #define GL_LUMINANCE8_EXT 0x8040 #define GL_LUMINANCE8_ALPHA8_EXT 0x8045 #define GL_RGBA32F_EXT 0x8814 #define GL_RGB32F_EXT 0x8815 #define GL_ALPHA32F_EXT 0x8816 #define GL_LUMINANCE32F_EXT 0x8818 #define GL_LUMINANCE_ALPHA32F_EXT 0x8819 #define GL_RGBA16F_EXT 0x881A #define GL_RGB16F_EXT 0x881B #define GL_ALPHA16F_EXT 0x881C #define GL_LUMINANCE16F_EXT 0x881E #define GL_LUMINANCE_ALPHA16F_EXT 0x881F #define GL_BGRA8_EXT 0x93A1 // GL_ANGLE_instanced_arrays #define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE // GL_EXT_occlusion_query_boolean #define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F #define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A #define GL_CURRENT_QUERY_EXT 0x8865 #define GL_QUERY_RESULT_EXT 0x8866 #define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 // GL_CHROMIUM_command_buffer_query #define GL_COMMANDS_ISSUED_CHROMIUM 0x84F2 /* GL_CHROMIUM_get_error_query */ #define GL_GET_ERROR_QUERY_CHROMIUM 0x84F3 /* GL_CHROMIUM_command_buffer_latency_query */ #define GL_LATENCY_QUERY_CHROMIUM 0x84F4 /* GL_CHROMIUM_async_pixel_transfers */ #define GL_ASYNC_PIXEL_TRANSFERS_COMPLETED_CHROMIUM 0x84F5 // GL_OES_texure_3D #define GL_SAMPLER_3D_OES 0x8B5F // GL_OES_depth24 #define GL_DEPTH_COMPONENT24_OES 0x81A6 // GL_OES_depth32 #define GL_DEPTH_COMPONENT32_OES 0x81A7 // GL_OES_packed_depth_stencil #ifndef GL_DEPTH24_STENCIL8_OES #define GL_DEPTH24_STENCIL8_OES 0x88F0 #endif #ifndef GL_DEPTH24_STENCIL8 #define GL_DEPTH24_STENCIL8 0x88F0 #endif // GL_OES_compressed_ETC1_RGB8_texture #define GL_ETC1_RGB8_OES 0x8D64 // GL_OES_vertex_array_object #define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 // GL_CHROMIUM_pixel_transfer_buffer_object #define GL_PIXEL_UNPACK_TRANSFER_BUFFER_CHROMIUM 0x78EC #define GL_PIXEL_PACK_TRANSFER_BUFFER_CHROMIUM 0x78ED #define GL_PIXEL_PACK_TRANSFER_BUFFER_BINDING_CHROMIUM 0x78EE #define GL_PIXEL_UNPACK_TRANSFER_BUFFER_BINDING_CHROMIUM 0x78EF /* GL_EXT_discard_framebuffer */ #ifndef GL_EXT_discard_framebuffer #define GL_COLOR_EXT 0x1800 #define GL_DEPTH_EXT 0x1801 #define GL_STENCIL_EXT 0x1802 #endif // GL_ARB_get_program_binary #define PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 // GL_OES_get_program_binary #define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 #define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE #define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF #define GL_GLEXT_PROTOTYPES 1 #if defined(OS_WIN) #define GL_BINDING_CALL WINAPI #else #define GL_BINDING_CALL #endif #define GL_SERVICE_LOG(args) DLOG(INFO) << args; #if defined(NDEBUG) #define GL_SERVICE_LOG_CODE_BLOCK(code) #else #define GL_SERVICE_LOG_CODE_BLOCK(code) code #endif // Forward declare OSMesa types. typedef struct osmesa_context *OSMesaContext; typedef void (*OSMESAproc)(); // Forward declare EGL types. typedef uint64 EGLuint64CHROMIUM; #ifndef EGL_ANDROID_image_native_buffer #define EGL_ANDROID_image_native_buffer 1 #define EGL_NATIVE_BUFFER_ANDROID 0x3140 #endif #include "gl_bindings_autogen_gl.h" #include "gl_bindings_autogen_osmesa.h" #if defined(OS_WIN) #include "gl_bindings_autogen_egl.h" #include "gl_bindings_autogen_wgl.h" #elif defined(USE_X11) #include "gl_bindings_autogen_egl.h" #include "gl_bindings_autogen_glx.h" #elif defined(OS_ANDROID) #include "gl_bindings_autogen_egl.h" #endif namespace gfx { GL_EXPORT extern GLApi* g_current_gl_context; GL_EXPORT extern OSMESAApi* g_current_osmesa_context; GL_EXPORT extern DriverGL g_driver_gl; GL_EXPORT extern DriverOSMESA g_driver_osmesa; #if defined(OS_WIN) GL_EXPORT extern EGLApi* g_current_egl_context; GL_EXPORT extern WGLApi* g_current_wgl_context; GL_EXPORT extern DriverEGL g_driver_egl; GL_EXPORT extern DriverWGL g_driver_wgl; #elif defined(USE_X11) GL_EXPORT extern EGLApi* g_current_egl_context; GL_EXPORT extern GLXApi* g_current_glx_context; GL_EXPORT extern DriverEGL g_driver_egl; GL_EXPORT extern DriverGLX g_driver_glx; #elif defined(OS_ANDROID) GL_EXPORT extern EGLApi* g_current_egl_context; GL_EXPORT extern DriverEGL g_driver_egl; #endif // Find an entry point to the mock GL implementation. void* GL_BINDING_CALL GetMockGLProcAddress(const char* name); } // namespace gfx #endif // UI_GL_GL_BINDINGS_H_
[ "ZhangPeiXuan.CN@Gmail.COM" ]
ZhangPeiXuan.CN@Gmail.COM
9802afea928ba951becce5ef98519b6a77b4e2b3
bb0316ad3f3fb3cf472205e6f8e9cc637a0fb896
/IPlateDetector.h
e1285037f73b04f60317c6151070b288c3979add
[]
no_license
futurianh1k/parkncharge_edge
fcc1d506a7a9288bb9e7276619328092437d8d8e
fd015fb40717e199de2ac2a7e8a407db0b4227d3
refs/heads/master
2022-03-14T22:07:17.453506
2019-12-13T05:11:18
2019-12-13T05:11:18
191,352,439
0
0
null
null
null
null
UTF-8
C++
false
false
879
h
// File: IPlateDetector.h // Author: Seongdo Kim // Contact: sdland85@gmail.com // // Copyright (c) 2017, Seongdo Kim <sdland85@gmail.com> // All rights reserved. // The copyright to the computer program(s) herein is // the property of Seongdo Kim. The program(s) may be // used and/or copied only with the written permission // of Seongdo Kim or in accordance with the terms and // conditions stipulated in the agreement/contract under // which the program(s) have been supplied. // // Written by Seongdo Kim <sdland85@gmail.com>, June, 2017 #pragma once #include "CascadeClassifier.h" namespace seevider { class IPlateDetector { std::unique_ptr<IGenericDetector> pDetector; public: IPlateDetector(std::unique_ptr<IGenericDetector> generic_detector); ~IPlateDetector(); virtual int detect(const cv::Mat &image, std::vector<cv::Rect> &locs); private: }; }
[ "today1186@naver.com" ]
today1186@naver.com
c2b3beb352a8a1ce16b593e118ff13d7e29fc7d6
bed42346f79e7585f5ca93da4f5223131064d21b
/source/Test14.cpp
14bbfb806db023bde41bc91664b43e78ba4eea9e
[]
no_license
ReinUsesLisp/gfxtests
d1e1734f4223a3cc061c896c8f91b62c9823ed12
f7a641460babb8c0599b76de62e298c7811e52c8
refs/heads/master
2023-01-01T23:51:03.134375
2020-10-26T00:41:38
2020-10-26T00:42:18
307,223,704
0
0
null
null
null
null
UTF-8
C++
false
false
6,873
cpp
#include "SampleFramework/CDescriptorSet.h" #include "SampleFramework/CShader.h" #include "SampleFramework/CApplication.h" #include "SampleFramework/CMemPool.h" #include <array> #include <optional> namespace { class Test final : public CApplication { static constexpr unsigned NumFramebuffers = 2; static constexpr uint32_t FramebufferWidth = 1280; static constexpr uint32_t FramebufferHeight = 720; static constexpr unsigned StaticCmdSize = 0x1000; dk::UniqueDevice device; dk::UniqueQueue queue; std::optional<CMemPool> pool_images; std::optional<CMemPool> pool_code; std::optional<CMemPool> pool_data; CShader vertexShader; CShader fragmentShader; dk::UniqueCmdBuf cmdbuf; CMemPool::Handle framebuffers_mem[NumFramebuffers]; dk::Image framebuffers[NumFramebuffers]; DkCmdList framebuffer_cmdlists[NumFramebuffers]; dk::UniqueSwapchain swapchain; CDescriptorSet<16> imageDescriptorSet; CDescriptorSet<16> samplerDescriptorSet; DkCmdList render_cmdlist; public: Test() { device = dk::DeviceMaker{}.create(); queue = dk::QueueMaker{device}.setFlags(DkQueueFlags_Graphics).create(); pool_images.emplace(device, DkMemBlockFlags_CpuUncached | DkMemBlockFlags_GpuCached | DkMemBlockFlags_Image, 16*1024*1024); pool_data.emplace(device, DkMemBlockFlags_CpuUncached | DkMemBlockFlags_GpuCached, 1*1024*1024); pool_code.emplace(device, DkMemBlockFlags_CpuUncached | DkMemBlockFlags_GpuCached | DkMemBlockFlags_Code, 128*1024); cmdbuf = dk::CmdBufMaker{device}.create(); CMemPool::Handle cmdmem = pool_data->allocate(StaticCmdSize); cmdbuf.addMemory(cmdmem.getMemBlock(), cmdmem.getOffset(), cmdmem.getSize()); createFramebufferResources(); } ~Test() { // Destroy the framebuffer resources destroyFramebufferResources(); } void createFramebufferResources() { dk::ImageLayout layout_framebuffer; dk::ImageLayoutMaker{device} .setFlags(DkImageFlags_UsageRender | DkImageFlags_UsagePresent | DkImageFlags_HwCompression) .setFormat(DkImageFormat_RGBA8_Unorm) .setDimensions(FramebufferWidth, FramebufferHeight) .initialize(layout_framebuffer); dk::ImageLayout layout_test; dk::ImageLayoutMaker{device} .setFlags(DkImageFlags_HwCompression) .setFormat(DkImageFormat_RGBA8_Unorm) .setDimensions(512, 512, 16) .setType(DkImageType_2DArray) .initialize(layout_test); auto test_allocation = pool_images->allocate(layout_test.getSize(), layout_test.getAlignment()); auto test_block = test_allocation.getMemBlock(); auto mem = static_cast<u8*>(test_block.getCpuAddr()); for (int layer = 0; layer < 16; ++layer) { for (int y = 0; y < 512; ++y) { for (int x = 0; x < 512; ++x) { int off = (layer * 512*512 + y*512 + x) * 4; memset(mem + off, 0, 4); mem[off + (layer % 3)] = 255; } } } dk::Image test_image; test_image.initialize(layout_test, test_block, test_allocation.getOffset()); std::array<dk::ImageDescriptor, 1> descriptors; descriptors[0].initialize( dk::ImageView{test_image} .setType(DkImageType_2DArray) .setLayers(11, 3) ); imageDescriptorSet.allocate(*pool_data); samplerDescriptorSet.allocate(*pool_data); vertexShader.load(*pool_code, "romfs:/shaders/full_tri_vsh.dksh"); fragmentShader.load(*pool_code, "romfs:/shaders/sample_fsh.dksh"); dk::Sampler sampler; sampler.setFilter(DkFilter_Linear, DkFilter_Linear); sampler.setWrapMode(DkWrapMode_ClampToEdge, DkWrapMode_ClampToEdge, DkWrapMode_ClampToEdge); dk::SamplerDescriptor samplerDescriptor; samplerDescriptor.initialize(sampler); std::array<DkImage const*, NumFramebuffers> fb_array; uint64_t fb_size = layout_framebuffer.getSize(); uint32_t fb_align = layout_framebuffer.getAlignment(); for (unsigned i = 0; i < NumFramebuffers; i ++) { samplerDescriptorSet.update(cmdbuf, 0, samplerDescriptor); for (size_t i = 0; i < descriptors.size(); ++i) { imageDescriptorSet.update(cmdbuf, i, descriptors[i]); } imageDescriptorSet.bindForImages(cmdbuf); samplerDescriptorSet.bindForSamplers(cmdbuf); framebuffers_mem[i] = pool_images->allocate(fb_size, fb_align); framebuffers[i].initialize(layout_framebuffer, framebuffers_mem[i].getMemBlock(), framebuffers_mem[i].getOffset()); dk::ImageView colorTarget{ framebuffers[i] }; cmdbuf.bindRenderTargets(&colorTarget); framebuffer_cmdlists[i] = cmdbuf.finishList(); fb_array[i] = &framebuffers[i]; } swapchain = dk::SwapchainMaker{device, nwindowGetDefault(), fb_array}.create(); recordStaticCommands(); } void destroyFramebufferResources() { if (!swapchain) return; queue.waitIdle(); cmdbuf.clear(); swapchain.destroy(); for (unsigned i = 0; i < NumFramebuffers; i ++) framebuffers_mem[i].destroy(); } void recordStaticCommands() { dk::RasterizerState rasterizerState; dk::ColorState colorState; dk::ColorWriteState colorWriteState; dk::DepthStencilState depthStencilState; cmdbuf.setScissors(0, { { 0, 0, FramebufferWidth, FramebufferHeight } }); cmdbuf.clearColor(0, DkColorMask_RGBA, 0.0f, 0.25f, 0.0f, 1.0f); cmdbuf.bindShaders(DkStageFlag_GraphicsMask, { vertexShader, fragmentShader }); cmdbuf.bindRasterizerState(rasterizerState); cmdbuf.bindColorState(colorState); cmdbuf.bindColorWriteState(colorWriteState); cmdbuf.bindDepthStencilState(depthStencilState); cmdbuf.setViewports(0, {{ 32, 32, 256, 256 }}); cmdbuf.bindTextures(DkStage_Fragment, 0, dkMakeTextureHandle(0, 0)); cmdbuf.draw(DkPrimitive_Triangles, 3, 1, 0, 0); render_cmdlist = cmdbuf.finishList(); } void render() { int slot = queue.acquireImage(swapchain); queue.submitCommands(framebuffer_cmdlists[slot]); queue.submitCommands(render_cmdlist); queue.presentImage(swapchain, slot); } bool onFrame(u64 ns) override { hidScanInput(); if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) { return false; } render(); return true; } }; } // Anonymous namespace void Test14() { Test app; app.run(); }
[ "reinuseslisp@airmail.cc" ]
reinuseslisp@airmail.cc
bc8659e2189f05465f80f0e6cc6996cf622d0516
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/ui/display/display.cc
1b1d8e99167b690b1356d9a47c521342b7f69f1d
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
6,474
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/display/display.h" #include <algorithm> #include "base/command_line.h" #include "base/logging.h" #include "base/strings/string_number_conversions.h" #include "base/strings/stringprintf.h" #include "build/build_config.h" #include "ui/display/display_switches.h" #include "ui/gfx/geometry/insets.h" #include "ui/gfx/geometry/point_conversions.h" #include "ui/gfx/geometry/point_f.h" #include "ui/gfx/geometry/size_conversions.h" namespace display { namespace { // This variable tracks whether the forced device scale factor switch needs to // be read from the command line, i.e. if it is set to -1 then the command line // is checked. int g_has_forced_device_scale_factor = -1; // This variable caches the forced device scale factor value which is read off // the command line. If the cache is invalidated by setting this variable to // -1.0, we read the forced device scale factor again. float g_forced_device_scale_factor = -1.0; bool HasForceDeviceScaleFactorImpl() { return base::CommandLine::ForCurrentProcess()->HasSwitch( switches::kForceDeviceScaleFactor); } float GetForcedDeviceScaleFactorImpl() { double scale_in_double = 1.0; if (HasForceDeviceScaleFactorImpl()) { std::string value = base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( switches::kForceDeviceScaleFactor); if (!base::StringToDouble(value, &scale_in_double)) { LOG(ERROR) << "Failed to parse the default device scale factor:" << value; scale_in_double = 1.0; } } return static_cast<float>(scale_in_double); } int64_t internal_display_id_ = -1; } // namespace // static float Display::GetForcedDeviceScaleFactor() { if (g_forced_device_scale_factor < 0) g_forced_device_scale_factor = GetForcedDeviceScaleFactorImpl(); return g_forced_device_scale_factor; } // static bool Display::HasForceDeviceScaleFactor() { if (g_has_forced_device_scale_factor == -1) g_has_forced_device_scale_factor = HasForceDeviceScaleFactorImpl(); return !!g_has_forced_device_scale_factor; } // static void Display::ResetForceDeviceScaleFactorForTesting() { g_has_forced_device_scale_factor = -1; g_forced_device_scale_factor = -1.0; } Display::Display() : id_(kInvalidDisplayID), device_scale_factor_(GetForcedDeviceScaleFactor()), rotation_(ROTATE_0), touch_support_(TOUCH_SUPPORT_UNKNOWN) {} Display::Display(const Display& other) = default; Display::Display(int64_t id) : id_(id), device_scale_factor_(GetForcedDeviceScaleFactor()), rotation_(ROTATE_0), touch_support_(TOUCH_SUPPORT_UNKNOWN) {} Display::Display(int64_t id, const gfx::Rect& bounds) : id_(id), bounds_(bounds), work_area_(bounds), device_scale_factor_(GetForcedDeviceScaleFactor()), rotation_(ROTATE_0), touch_support_(TOUCH_SUPPORT_UNKNOWN) { RAW_PMLOG_INFO("Browser", "XDG_RUNTIME_DIR: %s", getenv("XDG_RUNTIME_DIR")); #if defined(USE_AURA) SetScaleAndBounds(device_scale_factor_, bounds); #endif } Display::~Display() {} int Display::RotationAsDegree() const { switch (rotation_) { case ROTATE_0: return 0; case ROTATE_90: return 90; case ROTATE_180: return 180; case ROTATE_270: return 270; } NOTREACHED(); return 0; } void Display::SetRotationAsDegree(int rotation) { switch (rotation) { case 0: rotation_ = ROTATE_0; break; case 90: rotation_ = ROTATE_90; break; case 180: rotation_ = ROTATE_180; break; case 270: rotation_ = ROTATE_270; break; default: // We should not reach that but we will just ignore the call if we do. NOTREACHED(); } } gfx::Insets Display::GetWorkAreaInsets() const { return gfx::Insets(work_area_.y() - bounds_.y(), work_area_.x() - bounds_.x(), bounds_.bottom() - work_area_.bottom(), bounds_.right() - work_area_.right()); } void Display::SetScaleAndBounds(float device_scale_factor, const gfx::Rect& bounds_in_pixel) { gfx::Insets insets = bounds_.InsetsFrom(work_area_); if (!HasForceDeviceScaleFactor()) { #if defined(OS_MACOSX) // Unless an explicit scale factor was provided for testing, ensure the // scale is integral. device_scale_factor = static_cast<int>(device_scale_factor); #endif device_scale_factor_ = device_scale_factor; } device_scale_factor_ = std::max(1.0f, device_scale_factor_); bounds_ = gfx::Rect(gfx::ScaleToFlooredPoint(bounds_in_pixel.origin(), 1.0f / device_scale_factor_), gfx::ScaleToFlooredSize(bounds_in_pixel.size(), 1.0f / device_scale_factor_)); UpdateWorkAreaFromInsets(insets); } void Display::SetSize(const gfx::Size& size_in_pixel) { gfx::Point origin = bounds_.origin(); #if defined(USE_AURA) origin = gfx::ScaleToFlooredPoint(origin, device_scale_factor_); #endif SetScaleAndBounds(device_scale_factor_, gfx::Rect(origin, size_in_pixel)); } void Display::UpdateWorkAreaFromInsets(const gfx::Insets& insets) { work_area_ = bounds_; work_area_.Inset(insets); } gfx::Size Display::GetSizeInPixel() const { return gfx::ScaleToFlooredSize(size(), device_scale_factor_); } std::string Display::ToString() const { return base::StringPrintf( "Display[%lld] bounds=%s, workarea=%s, scale=%f, %s", static_cast<long long int>(id_), bounds_.ToString().c_str(), work_area_.ToString().c_str(), device_scale_factor_, IsInternal() ? "internal" : "external"); } bool Display::IsInternal() const { return is_valid() && (id_ == internal_display_id_); } // static int64_t Display::InternalDisplayId() { DCHECK_NE(kInvalidDisplayID, internal_display_id_); return internal_display_id_; } // static void Display::SetInternalDisplayId(int64_t internal_display_id) { internal_display_id_ = internal_display_id; } // static bool Display::IsInternalDisplayId(int64_t display_id) { DCHECK_NE(kInvalidDisplayID, display_id); return HasInternalDisplay() && internal_display_id_ == display_id; } // static bool Display::HasInternalDisplay() { return internal_display_id_ != kInvalidDisplayID; } } // namespace display
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
6b83cfc20a1cbc6092236d1bc5cbe6dcbe2406ed
737cc20f83064009c0406675d1d4ee9b2092a80b
/wxMemMonitorLib/UI/PropertyItemAdapter.cpp
231fafe25e588957efbd8847c9d2aa5276805aab
[ "MIT" ]
permissive
jjuiddong/KarlSims
7e32e077da376deb1c0f270eb7855d84bfa6f7f1
e05108eb7d2e68bfe0a90a7550eba727424081b6
refs/heads/master
2020-04-29T03:49:14.572321
2016-10-13T03:30:46
2016-10-13T03:30:46
14,440,791
5
2
null
null
null
null
UHC
C++
false
false
4,243
cpp
#include "stdafx.h" #include "PropertyItemAdapter.h" #include "../dia/DiaWrapper.h" #include <wx/propgrid/property.h> #include <wx/propgrid/advprops.h> #include "../Control/Global.h" using namespace memmonitor; using namespace visualizer; CPropertyItemAdapter::CPropertyItemAdapter() : m_pProperty(NULL) { } CPropertyItemAdapter::CPropertyItemAdapter( std::string label, PROPERTY_TYPE type, DWORD ptr, std::string strVal ) : m_pProperty(NULL) // ptr = 0, strVal = "" { switch (type) { case PROPERTY_STRING: m_pProperty = new wxStringProperty(label, wxPG_LABEL, strVal ); m_Value = strVal; break; case PROPTYPE_CATEGORY: m_pProperty = new wxPropertyCategory(label, wxPG_LABEL ); break; case PROPTYPE_ENUM: m_pProperty = new wxEnumProperty(label, wxPG_LABEL ); break; case PROPTYPE_POINTER: m_pProperty = new wxIntProperty( label, wxPG_LABEL, (int)ptr); m_Value = format("0x%x", ptr); break; } m_ValueName = label; } CPropertyItemAdapter::CPropertyItemAdapter(wxPGProperty *pProperty) : m_pProperty(pProperty) { } CPropertyItemAdapter::CPropertyItemAdapter( const std::string &valueName, const visualizer::SSymbolInfo &symbol, _variant_t value ) { CreateProperty(valueName, symbol, value ); } CPropertyItemAdapter::~CPropertyItemAdapter() { } //------------------------------------------------------------------------ // //------------------------------------------------------------------------ bool CPropertyItemAdapter::CreateProperty( const std::string &valueName, const visualizer::SSymbolInfo &symbol, _variant_t value ) { // static 변수는 프로세스끼리 공유할 수없으므로 0으로 출력한다. bool IsNotPrint = false; LocationType locType; dia::GetSymbolLocation(symbol.pSym, &locType); if (LocIsStatic == locType) { value = 0; IsNotPrint = true; } wxPGProperty *pProp = NULL; switch (value.vt) { case VT_I1: case VT_I2: case VT_I4: case VT_INT: pProp = new wxIntProperty( valueName, wxPG_LABEL, value); break; case VT_UI1: case VT_UI2: case VT_UI4: case VT_UINT: pProp = new wxUIntProperty( valueName, wxPG_LABEL, value); break; case VT_R4: case VT_R8: pProp = new wxFloatProperty( valueName, wxPG_LABEL, value ); break; case VT_BOOL: pProp = new wxBoolProperty( valueName, wxPG_LABEL, value ); break; default: break; } RETV(!pProp, false); if (IsNotPrint) pProp->Enable(false); m_ValueName = valueName; m_ValueType = dia::GetSymbolTypeName(symbol.pSym); if (m_ValueType == "NoType") m_ValueType = ""; m_Value = pProp->GetValueAsString(); m_pProperty = pProp; return true; } //------------------------------------------------------------------------ // SetValue with _variant_t value //------------------------------------------------------------------------ void CPropertyItemAdapter::SetVariant(const _variant_t &var) { RET(!m_pProperty); wxVariant wxVar = memmonitor::Variant2wxVariant(var); // bool 형일 때, enum 형태의 값으로 바꿔주어야 한다. if (var.vt == VT_BOOL) wxVar = wxVariant((int)(var.bVal? true : false)); // bool 값은 widgets에서는 0/1 값이어야 한다. if (m_pProperty->GetChoices().GetCount()) // enum value { if (m_pProperty->GetChoices().GetCount() > (u_int)var) m_pProperty->SetValue( wxVar ); } else { m_pProperty->SetValue( wxVar ); } } //------------------------------------------------------------------------ // wrapper functions //------------------------------------------------------------------------ void CPropertyItemAdapter::SetExpanded(bool expand) { RET(!m_pProperty); m_pProperty->SetExpanded(expand); } void CPropertyItemAdapter::SetModifiedStatus(bool modify) { RET(!m_pProperty); m_pProperty->SetModifiedStatus(modify); } void CPropertyItemAdapter::Enable(bool enable) { RET(!m_pProperty); m_pProperty->Enable(enable); } void CPropertyItemAdapter::AddChoice(const std::string &name, const int value ) // value = wxPG_INVALID_VALUE { RET(!m_pProperty); m_pProperty->AddChoice(name, value); } void CPropertyItemAdapter::SetValue(const wxVariant &var) { RET(!m_pProperty); m_pProperty->SetValue(var); } bool CPropertyItemAdapter::IsEnabled() { RETV(!m_pProperty, false); return m_pProperty->IsEnabled(); }
[ "jjuiddong@hanmail.net" ]
jjuiddong@hanmail.net
048437604f7a57aa558a276448f693e1d8552c0e
3e7700b975f855153d7cfd87c1c2b21810232ee9
/LuminolEngine/include/graphics/Texture.h
5c26ab93627c2c7112ab81436b70e4fbc4951e9f
[]
no_license
sayanel/FunWithFlagsSimulator
7b975efffcecd046be45de9fc27f3c19cc3e16fd
69f392dce4ff1436f14e34fba03eb510f9794cf1
refs/heads/master
2021-01-10T04:08:53.546086
2016-03-21T12:39:48
2016-03-21T12:39:48
53,671,160
0
0
null
null
null
null
UTF-8
C++
false
false
4,254
h
// // Created by mehdi on 12/02/16. // #ifndef LUMINOLGL_TEXTURE_H #define LUMINOLGL_TEXTURE_H #include <GL/glew.h> #include <string> #include <cstdlib> #include "stb_image.h" namespace Graphics { /** * Util struct when generating GL texture. */ struct TexParams{ //For glTexImage2D GLenum internalFormat; /** GL_RGB, GL_RGBA8, GL_DEPTH_COMPONENT24, ... */ GLenum format; /** Specifies the format of the pixel data. GL_RED, GL_RG, GL_RGB, GL_BGR, ... */ GLenum type; /** Specifies the data type of the pixel data. GL_UNSIGNED_BYTE, GL_BYTE, GL_INT, GL_FLOAT, ... */ //For glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S/T, mode) GLenum wrapMode; /** GL_CLAMP_TO_EDGE, GL_REPEAT, ... */ //For glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN/MAX_FILTER, mode) GLenum filterMode; /** GL_LINEAR, GL_NEAREST, ... */ bool mipmap; TexParams(GLenum internalForm=GL_RGB, GLenum form=GL_RGB, GLenum typ=GL_UNSIGNED_BYTE, GLenum wrap=GL_REPEAT, GLenum filter=0, bool mipm = true) : // TexParams(GLenum internalForm=GL_RGBA32F, GLenum form=GL_RGB, GLenum typ=GL_FLOAT, GLenum wrap=GL_CLAMP_TO_EDGE, GLenum filter=GL_LINEAR, bool mipm = true) : internalFormat(internalForm), format(form), type(typ), wrapMode(wrap), filterMode(filter), mipmap(mipm){} static TexParams depthFBO(){ return TexParams(GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT, GL_FLOAT, GL_CLAMP_TO_EDGE, GL_LINEAR, false); } static TexParams depthShadowFBO(){ TexParams t = depthFBO(); t.wrapMode = GL_CLAMP_TO_BORDER; return t; } static TexParams rgbaFBO(){ // return TexParams(GL_RGBA8, GL_RGBA, GL_UNSIGNED_BYTE, GL_CLAMP_TO_EDGE, GL_NEAREST, false); return TexParams(GL_RGBA32F, GL_RGBA, GL_FLOAT, GL_CLAMP_TO_EDGE, GL_LINEAR, false); } static TexParams normalEncodedFBO(){ // return TexParams(GL_RGB, GL_RGB, GL_FLOAT, GL_CLAMP_TO_EDGE, GL_NEAREST, false); return TexParams(GL_RGBA32F, GL_RGBA, GL_FLOAT, GL_CLAMP_TO_EDGE, GL_NEAREST, false); } static TexParams brightColorFBO(){ return TexParams(GL_RGBA32F, GL_RGBA, GL_FLOAT, GL_CLAMP_TO_EDGE, GL_LINEAR, false); } }; enum TextureType{ DEFAULT, FRAMEBUFFER_DEPTH, FRAMEBUFFER_RGBA, FRAMEBUFFER_NORMAL_ENCODED, FRAMEBUFFER_BRIGHTCOLOR, FROM_FILE }; class Texture { private: GLuint _texId = 0; unsigned char * _data = nullptr; int _width = 0; int _height = 0; int _bitDepth = 0; TextureType _type; TexParams _texParams; std::string _path = ""; void setTextureParameters(TextureType type); /** Update texParams according type and call genGlTex */ void genGlTex(); /** Generate GL texture based on _texParams. FBO are handled by _params: see TexParams::depth|rgba */ void loadImage(const std::string &filePath); /** Load a given image. Update _data, _bitDepth, _width, _height **/ public: Texture(const Texture& texture); Texture(Texture&& texture); Texture(const std::string& path="", TextureType type=DEFAULT) ; /** Default*/ Texture(const std::string& path, TexParams texParams) ; /** Texture File with custom texParams */ Texture(int width, int height, TextureType fboType); /** Fbo constructor */ Texture(int width, int height, TexParams texParams); /** Custom fbo constructor*/ ~Texture(); void bind(); /** Just call glBindTexture() */ void bind(GLenum textureBindingIndex); /** set glActiveTexture to textureBindingIndex before calling glBindTexture() */ void unbind(); GLuint& glId(); GLuint glId() const; int width(); int height(); }; } #endif //LUMINOLGL_TEXTURE_H
[ "maximilien.glineur@hotmail.fr" ]
maximilien.glineur@hotmail.fr
3d828be86890fc187309ffdd29cfa8ba4c85418f
f7925dbad8886dfb00f2347a7ff91542707ee7ef
/5.10/main.cpp
33073492f6bfcf1bf3c3b0089106cd55ab44cda6
[]
no_license
wxh158849067wxh/wang_xiaohan
b1970f7d32cb3c993b5779b87ffebd5ea1e9ef23
df6f76ca5daba485e9c7ce45156cb38bb295e79b
refs/heads/master
2020-04-02T10:36:34.923719
2019-05-28T08:04:34
2019-05-28T08:04:34
154,346,867
0
0
null
null
null
null
UTF-8
C++
false
false
240
cpp
#include <iostream> using namespace std; int main() { int factorial = 1; cout << "x\tx!\n"; for ( int i = 1; i <= 5; i++ ) { factorial *= i; cout << i << '\t' << factorial << '\n'; } cout << endl; }
[ "158849067@qq.com" ]
158849067@qq.com
cc5d9b85d64874af4b4fd275b7034c215d655ec9
b152e18c85d5af9316e2601341c2da1266d2c679
/goto statement.cpp
97cbf9b3c6b9e991c63401c50cc6df754c2e52f6
[]
no_license
Rabbi01521/Example-cpp
af7a184c16dd25db783cf1013f403645cbd43f64
fdb517f4c1140d80f00fcfe0662d6f6392ddc83d
refs/heads/master
2023-07-17T12:42:55.945426
2021-09-06T15:15:11
2021-09-06T15:15:11
403,668,196
0
0
null
null
null
null
UTF-8
C++
false
false
179
cpp
#include <iostream> using namespace std; int main () { int n; cin>>n; mylabel: cout << n << ", "; n--; if (n>0) goto mylabel; cout << "liftoff!\n"; return 0; }
[ "ishan0563@gmail.com" ]
ishan0563@gmail.com
ff3bdbc856f45a99cba5bed4008c12130d8451de
2f750496915e3d50c66d3d310ccfd83489dafa69
/mypr/include/mypreprocess.h
fed49d75b0d146b646f65bdee09095a330f46710
[]
no_license
ausk/mypr
76cd6f8e10733d82d1e7c49f7e953b8a3483195e
bc22fc030063064d627ff3028d415e02e7ec7dcc
refs/heads/master
2021-01-12T02:15:09.970363
2017-07-14T09:04:24
2017-07-14T09:04:24
78,492,628
0
0
null
null
null
null
UTF-8
C++
false
false
273
h
/* * 2017.01.06 13:40:56 CST */ #ifndef _MY_PREPROCESS_HPP #define _MY_PREPROCESS_HPP #include <opencv2/opencv.hpp> namespace mypr { namespace preprocess { cv::Mat maskFace(cv::Mat &img, double scale); } cv::Mat blurImage(cv::Mat&img); } #endif //_MY_PREPROCESS_HPP
[ "jincsu@126.com" ]
jincsu@126.com
b82495be704ebc66f4873bbb2e1e5d576127e595
c8c85850beee91f71cfd2905f5de82ce3c52f34b
/lib/common/xregProgOptUtils.h
9c8ea6ca54e2285f2941c82ed45e40b60ed6ba1c
[ "MIT" ]
permissive
oneorthomedical/xreg
1477c045cafbcbe97d417e22bf54273a4b629272
c06440d7995f8a441420e311bb7b6524452843d3
refs/heads/master
2023-08-25T14:43:14.555069
2021-09-20T04:18:01
2021-09-20T04:18:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,790
h
/* * MIT License * * Copyright (c) 2020 Robert Grupp * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /** * @file * @brief Utilities for parsing command line arguments. **/ #ifndef XREGPROGOPTUTILS_H_ #define XREGPROGOPTUTILS_H_ #include <string> #include <iostream> #include <map> #include <vector> #include <algorithm> #include <boost/compute/command_queue.hpp> #include "xregOpenCLSys.h" #include "xregExceptionUtils.h" #include "xregSizedTypeUtils.h" namespace xreg { class ProgOpts { public: using size_type = std::size_t; static const std::string kNO_LONG_FLAG; // set to empty string, defined in .cpp static const char kNO_SHORT_FLAG = '\0'; using int32 = sized_types::int32; using uint32 = sized_types::uint32; using int64 = sized_types::int64; using uint64 = sized_types::uint64; using BoolList = std::vector<bool>; using CharList = std::vector<char>; using DoubleList = std::vector<double>; using Int32List = std::vector<int32>; using UInt32List = std::vector<uint32>; using Int64List = std::vector<int64>; using UInt64List = std::vector<uint64>; using StringList = std::vector<std::string>; enum StoreAction { kSTORE_TRUE = 0, kSTORE_FALSE, kSTORE_STRING, kSTORE_DOUBLE, kSTORE_CHAR, kSTORE_INT32, kSTORE_UINT32, kSTORE_INT64, kSTORE_UINT64 }; class Exception : public StringMessageException { }; class StoreLogicException : public Exception { public: StoreLogicException(const StoreAction existing_action, const StoreAction cur_action); StoreLogicException() { } virtual ~StoreLogicException() throw() { } }; class DuplicateArgumentException : public Exception { }; class UnrecognizedFlagException : public Exception { public: UnrecognizedFlagException(const char* flag) { set_msg("Unrecognized flag: %s", flag); } virtual ~UnrecognizedFlagException() throw() { } }; class TooManyDefaultValsException : public Exception { public: TooManyDefaultValsException(const char* long_flag, const char short_flag, const char* dest, const size_type max_vals) { set_msg("Too many values input as default for flags (%s,%c), dest (%s), max vals (%lu)", (long_flag != kNO_LONG_FLAG) ? long_flag : "", (short_flag != kNO_SHORT_FLAG) ? short_flag : ' ', dest, max_vals); } virtual ~TooManyDefaultValsException() throw() { } }; class NotEnoughArgsException : public Exception { }; class ValueNotSetException : public Exception { public: ValueNotSetException(const char* opt_name) { set_msg("Destination value not set: %s", opt_name); } virtual ~ValueNotSetException() throw() { } }; class InvalidConversionException : public Exception { public: InvalidConversionException(const char* msg) { set_msg(msg); } virtual ~InvalidConversionException() throw() { } }; // For now do not change this to use boost/std::variant. // This change would result in too much refactoring and may increase compile times. struct ArgVal { union ArgPrimValue { bool b; double d; char c; int32 i32; uint32 ui32; int64 i64; uint64 ui64; } prim_vals; std::string str_val; bool is_str; ArgVal() { } ArgVal(const bool x); ArgVal(const double x); ArgVal(const char x); ArgVal(const int32 x); ArgVal(const uint32 x); ArgVal(const int64 x); ArgVal(const uint64 x); ArgVal(const std::string& x); ArgVal(const char* x); ArgVal& operator=(const bool x); ArgVal& operator=(const double x); ArgVal& operator=(const char x); ArgVal& operator=(const int32 x); ArgVal& operator=(const uint32 x); ArgVal& operator=(const int64 x); ArgVal& operator=(const uint64 x); ArgVal& operator=(const std::string& x); ArgVal& operator=(const char* x); void set_default(const bool x); void set_default(const double x); void set_default(const char x); void set_default(const int32 x); void set_default(const uint32 x); void set_default(const int64 x); void set_default(const uint64 x); void set_default(const std::string& x); void set_default(const char* x); operator bool() const; operator double() const; operator char() const; operator int32() const; operator uint32() const; operator int64() const; operator uint64() const; operator std::string() const; operator const char*() const; bool as_bool() const; double as_double() const; char as_char() const; int32 as_int32() const; uint32 as_uint32() const; int64 as_int64() const; uint64 as_uint64() const; std::string as_string() const; }; using ArgValList = std::vector<ArgVal>; struct Arg { std::string long_flag; ///< empty string indicates not used. char short_flag; ///< null character (0 or '\0') indicates not used bool required; ///< Required to be specified by the user size_type num_vals; ///< The number of values following the argument std::string dest; bool set_default; ArgValList default_vals; size_type cur_default_val_index; std::string help_str; StoreAction action; Arg(); Arg& nvals(const size_type nv); Arg& operator<<(const bool x); Arg& operator<<(const double x); Arg& operator<<(const char x); Arg& operator<<(const int32 x); Arg& operator<<(const uint32 x); Arg& operator<<(const int64 x); Arg& operator<<(const uint64 x); Arg& operator<<(const std::string& x); Arg& operator<<(const char* x); }; using ArgList = std::vector<Arg>; using DestStoreActionMap = std::map<std::string,StoreAction>; using FlagArgMap = std::map<std::string,Arg*>; ProgOpts(); ProgOpts(const ProgOpts&) = delete; ProgOpts& operator=(const ProgOpts&) = delete; void set_help(const std::string& help_str); void set_help_epilogue(const std::string& help_str); void print_help(std::ostream& out) const; Arg& add(const Arg& arg); Arg& add(const std::string& long_flag, const char short_flag, const StoreAction action, const std::string& dest, const std::string& help_str = ""); void parse(int argc, char* argv[]); void set_min_num_pos_args(const size_type n); const StringList& pos_args() const; bool has(const std::string& opt_name) const; /** * @brief Retrieves a command line option value. * * Retrieves the first value stored, or in most cases the only value stored. * @param opt_name The name of the option variable to retrieve. * @return An ArgVal representation of the variable; typically this is * implicitly cast to a type specified by the user. **/ const ArgVal& get_val(const std::string& opt_name) const; /** * @brief Retrieves a set of command line option boolean values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, BoolList* vals); /** * @brief Retrieves a set of command line option character values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, CharList* vals); /** * @brief Retrieves a set of command line option double values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, DoubleList* vals); /** * @brief Retrieves a set of command line option int32 values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, Int32List* vals); /** * @brief Retrieves a set of command line option uint32 values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, UInt32List* vals); /** * @brief Retrieves a set of command line option int64 values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, Int64List* vals); /** * @brief Retrieves a set of command line option uint64 values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, UInt64List* vals); /** * @brief Retrieves a set of command line option string values. * @param opt_name The name of the option variable to retrieve. * @param vals The list of values to set. **/ void get_vals(const std::string& opt_name, StringList* vals); /** * @brief Retrieves a set of command line option values. * * @param opt_name The name of the option variable to retrieve * @param out_it An output iterator used to store the variable values * as types of ArgVal. **/ template <class OutItr> void get_vals(const std::string& opt_name, OutItr out_it) const { auto it = arg_value_map_.find(opt_name); if (it == arg_value_map_.end()) { throw ValueNotSetException(opt_name.c_str()); } std::copy(it->second.vals.begin(), it->second.vals.end(), out_it); } /** * @brief Retrieves a command line option value. * * Retrieves the first value stored, or in most cases the only value stored. * @param opt_name The name of the option variable to retrieve. * @return An ArgVal representation of the variable; typically this is * implicitly cast to a type specified by the user. * @see get_val **/ const ArgVal& get(const std::string& opt_name) const; /** * @brief Indicates if a flag's value was set via the default logic. * * @param opt_name The name of the option/flag to query * @return true when this flag's value was set via the default logic; false otherwise **/ bool val_defaulted(const std::string& opt_name) const; /** * @brief Sets the arguments usage string to print. * * The usage string is the portion of the usage string printed after: * "Usage: <program name> [options]" and is usally used to describe the * use of positional arguments. * @param The portion of the usage string to set **/ void set_arg_usage(const std::string& arg_usage_str); /** * @brief Prints the full usage string to an output stream. * * This prints out a full usage string of the following format: * "Usage: <program name> [options] [<argument usage>]" * @param out The stream to write to **/ void print_usage(std::ostream& out); bool help_set() const; void set_help_flags(const std::string& help_long, const char help_short); void set_add_verbose_flag(const bool add_verbose_flag); void set_verbose_flags(const std::string& verbose_long, const char verbose_short); std::ostream& vout(); void set_allow_unrecognized_flags(const bool allow); const std::string& compile_date() const; void set_compile_date(const std::string& s); const std::string& version_num_str() const; void set_version_num_str(const std::string& s); void set_print_help_ocl_str(const bool print_ocl); void add_ocl_select_flag(); void add_backend_flags(); void add_tbb_max_num_threads_flag(); boost::compute::device selected_ocl(); std::tuple<boost::compute::context,boost::compute::command_queue> selected_ocl_ctx_queue(); /// \brief Checks to see if a variable/argument with a specific destination /// string has been added. bool dest_exists(const std::string& dest_str) const; private: struct ParsedValue { StoreAction action; bool defaulted; ArgValList vals; }; using DestValueMap = std::map<std::string, ParsedValue>; static std::string Readable(const StoreAction a, const ArgVal& val); static std::string Readable(const StoreAction a, const ArgValList& vals); void build_flag_arg_map(FlagArgMap* long_flag_arg_map, FlagArgMap* short_flag_arg_map); void set_defaults(); void find_help(const size_type num_args, char* argv[]); void get_flag_str(const std::string& arg_str, std::string* long_flag, std::string* short_flag) const; bool allow_unrec_flags_as_args_ = false; ArgList args_; DestValueMap arg_value_map_; std::string help_str_; std::string help_epi_str_; bool print_help_backend_str_ = false; bool print_help_ocl_str_ = false; size_type min_num_pos_args_ = 0; StringList pos_args_; std::string arg_usage_str_; std::string prog_name_; bool help_was_set_ = false; // indicates that the user passed the help flag std::string help_long_flag_ = "help"; char help_short_flag_ = 'h'; bool add_verbose_flag_ = true; std::string verbose_long_flag_ = "verbose"; char verbose_short_flag_ = 'v'; std::string compile_date_; std::string version_num_str_; OpenCLNameDevMap opencl_id_str_to_dev_map_; // creating a default instance of boost::compute::device // should not throw an exception, it will initialize the // device ID to null. boost::compute::device selected_ocl_dev_; bool selected_ocl_ctx_queue_set_ = false; boost::compute::context selected_ocl_ctx_; boost::compute::command_queue selected_ocl_queue_; bool tbb_max_num_threads_opt_added_ = false; }; } // xreg #define xregPROG_OPTS_SET_COMPILE_DATE(po) po.set_compile_date(__DATE__ " " __TIME__) #endif
[ "robert.grupp@gmail.com" ]
robert.grupp@gmail.com
1e7671919e7b489712692127e783ea4e923c9586
536656cd89e4fa3a92b5dcab28657d60d1d244bd
/chrome/browser/ui/views/location_bar/selected_keyword_view_interactive_uitest.cc
664792114e6e6245c55cfb884e8860540198ac6f
[ "BSD-3-Clause" ]
permissive
ECS-251-W2020/chromium
79caebf50443f297557d9510620bf8d44a68399a
ac814e85cb870a6b569e184c7a60a70ff3cb19f9
refs/heads/master
2022-08-19T17:42:46.887573
2020-03-18T06:08:44
2020-03-18T06:08:44
248,141,336
7
8
BSD-3-Clause
2022-07-06T20:32:48
2020-03-18T04:52:18
null
UTF-8
C++
false
false
2,345
cc
// Copyright (c) 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/views/location_bar/selected_keyword_view.h" #include "chrome/browser/extensions/extension_browsertest.h" #include "chrome/browser/ui/browser_commands.h" #include "chrome/browser/ui/views/frame/browser_view.h" #include "chrome/browser/ui/views/location_bar/location_bar_view.h" #include "chrome/browser/ui/views/location_bar/selected_keyword_view.h" #include "chrome/browser/ui/views/toolbar/toolbar_view.h" #include "chrome/test/base/interactive_test_utils.h" namespace { void InputKeys(Browser* browser, const std::vector<ui::KeyboardCode>& keys) { for (auto key : keys) { ASSERT_TRUE(ui_test_utils::SendKeyPressSync(browser, key, false, false, false, false)); } } class SelectedKeywordViewTest : public extensions::ExtensionBrowserTest { public: SelectedKeywordViewTest() = default; ~SelectedKeywordViewTest() override = default; private: DISALLOW_COPY_AND_ASSIGN(SelectedKeywordViewTest); }; // Tests that an extension's short name is registered as the value of the // extension's omnibox keyword. When the extension's omnibox keyword is // activated, then the selected keyword label in the omnibox should be the // extension's short name. IN_PROC_BROWSER_TEST_F(SelectedKeywordViewTest, TestSelectedKeywordViewIsExtensionShortname) { const extensions::Extension* extension = InstallExtension(test_data_dir_.AppendASCII("omnibox"), 1); ASSERT_TRUE(extension); chrome::FocusLocationBar(browser()); ASSERT_TRUE(ui_test_utils::IsViewFocused(browser(), VIEW_ID_OMNIBOX)); // Activate the extension's omnibox keyword. InputKeys(browser(), {ui::VKEY_K, ui::VKEY_E, ui::VKEY_Y, ui::VKEY_SPACE}); BrowserView* browser_view = BrowserView::GetBrowserViewForBrowser(browser()); SelectedKeywordView* selected_keyword_view = browser_view->toolbar()->location_bar()->selected_keyword_view(); ASSERT_TRUE(selected_keyword_view); // Verify that the label in the omnibox is the extension's shortname. EXPECT_EQ(extension->short_name(), base::UTF16ToUTF8(selected_keyword_view->label()->GetText())); } } // namespace
[ "pcding@ucdavis.edu" ]
pcding@ucdavis.edu
dc741748004162f9352074963117a5e77df1297f
1b3ba6720e74199b54c33a146e36145640781be3
/Software/QuickUsbDiagQT/CQuickUsb.cpp
357372d8903a9402a614723f561c355ea7c2cbca
[ "MIT" ]
permissive
BitwiseSystems/QuickUSB
094e27663f24ecdbca3f34349bcd03fd39526a9b
0b26af3340a662580122aa71e33f9636992129ca
refs/heads/master
2022-01-14T12:29:06.052344
2022-01-04T14:34:49
2022-01-04T14:34:49
246,888,640
4
9
null
2022-01-04T14:34:50
2020-03-12T17:04:34
Python
UTF-8
C++
false
false
23,298
cpp
/*============================================================================= Title : CQuickUSB.cpp Description : QuickUSB Class Notes : None History : Copyright (c) 2012 Bitwise Systems. All rights reserved. This software contains confidential information and trade secrets of Bitwise Systems and is protected by United States and international copyright laws. Use, disclosure, or reproduction is prohibited without the prior express written permission of Bitwise Systems, except as agreed in the QuickUSB Plug-In Module license agreement. Use, duplication or disclosure by the U.S. Government is subject to restrictions as provided in DFARS 227.7202-1(a) and 227.7202-3(a) (1998), and FAR 12.212, as applicable. Bitwise Systems, 6489 Calle Real, Suite E, Goleta, CA 93117. Bitwise Systems 6489 Calle Real, Suite E Santa Barbara, CA 93117 Voice: (805) 683-6469 Fax : (805) 683-4833 Web : www.bitwisesys.com email: support@bitwisesys.com =============================================================================*/ #include "CQuickUsb.h" //////////////////////////////////// // Constructors and Deconstructor // //////////////////////////////////// CQuickUsb::CQuickUsb() : m_globalOpen(0), m_localOpen(0), m_hDevice(0), m_lastError(QUICKUSB_ERROR_NO_ERROR) { } CQuickUsb::CQuickUsb(PCQCHAR devName) : m_globalOpen(0), m_localOpen(0), m_hDevice(0), m_devName(0), m_lastError(QUICKUSB_ERROR_NO_ERROR) { #if defined(_WIN32) size_t size = strlen(devName) + 1; m_devName = new QCHAR[size]; strcpy_s(m_devName, size, devName); #else int size = strlen(devName) + 1; m_devName = new QCHAR[size]; strcpy(m_devName, devName); #endif } CQuickUsb::~CQuickUsb() { if (m_devName) { delete [] m_devName; } } //////////////// // Properties // //////////////// QBOOL CQuickUsb::IsOpened() { return (m_globalOpen != 0) || (m_localOpen != 0); } PQCHAR CQuickUsb::GetName() { return m_devName; } void CQuickUsb::SetName(PCQCHAR name) { if (m_devName) { delete [] m_devName; } #if defined(_WIN32) size_t size = strlen(name) + 1; m_devName = new QCHAR[size]; strcpy_s(m_devName, size, name); #else int size = strlen(name) + 1; m_devName = new QCHAR[size]; strcpy(m_devName, name); #endif } ////////////// // Base API // ////////////// QRETURN CQuickUsb::FindModules(PQCHAR nameList, QULONG length) { if (QuickUsbFindModules(nameList, length) == 0) { return false; } return true; } QRETURN CQuickUsb::Open() { if (QuickUsbOpen(&m_hDevice, m_devName) == 0) { QuickUsbGetLastError(&m_lastError); return false; } // If this is not a local open, it must be a global open if (m_localOpen == 0) { ++m_globalOpen; } return true; } QRETURN CQuickUsb::OpenEx(PQCHAR deviceName, QWORD flags) { if (QuickUsbOpenEx(&m_hDevice, m_devName, flags) == 0) { QuickUsbGetLastError(&m_lastError); return false; } // If this is not a local open, it must be a global open if (m_localOpen == 0) { ++m_globalOpen; } return true; } QRETURN CQuickUsb::Close() { if (QuickUsbClose(m_hDevice) == 0) { QuickUsbGetLastError(&m_lastError); return false; } // If this is not a local open, it must be a global open if (m_localOpen == 0) { --m_globalOpen; } return true; } QRETURN CQuickUsb::GetStringDescriptor(QBYTE index, PQCHAR buffer, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbGetStringDescriptor(m_hDevice, index, buffer, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::SetTimeout(QULONG timeOut) { if (!OpenPolitely()) { return false; } if (QuickUsbSetTimeout(m_hDevice, timeOut) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::GetDriverVersion(PQWORD MajorDriverVersion, PQWORD MinorDriverVersion, PQWORD BuildDriverVersion) { if (QuickUsbGetDriverVersion(MajorDriverVersion, MinorDriverVersion, BuildDriverVersion) == 0) { return false; } return true; } QRETURN CQuickUsb::GetDllVersion(PQWORD MajorDllVersion, PQWORD MinorDllVersion, PQWORD BuildDllVersion) { if (QuickUsbGetDllVersion(MajorDllVersion, MinorDllVersion, BuildDllVersion) == 0) { return false; } return true; } QRETURN CQuickUsb::GetFirmwareVersion(PQWORD MajorFirmwareVersion, PQWORD MinorFirmwareVersion, PQWORD BuildFirmwareVersion) { if (!OpenPolitely()) { return false; } if (QuickUsbGetFirmwareVersion(m_hDevice, MajorFirmwareVersion, MinorFirmwareVersion, BuildFirmwareVersion) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QULONG CQuickUsb::GetLastError() { QULONG lastError; QuickUsbGetLastError(&lastError); return lastError; } QULONG CQuickUsb::LastError() { return m_lastError; } ////////////////// // Settings API // ////////////////// QRETURN CQuickUsb::ReadSetting(QWORD address, PQWORD value) { if (!OpenPolitely()) { return false; } if (QuickUsbReadSetting(m_hDevice, address, value) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteSetting(QWORD address, QWORD value) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteSetting(m_hDevice, address, value) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::ReadDefault(QWORD address, PQWORD data) { if (!OpenPolitely()) { return false; } if (QuickUsbReadDefault(m_hDevice, address, data) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteDefault(QWORD address, QWORD data) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteDefault(m_hDevice, address, data) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } //////////////////////////// // FPGA Configuration API // //////////////////////////// QRETURN CQuickUsb::StartFpgaConfiguration() { if (!OpenPolitely()) { return false; } if (QuickUsbStartFpgaConfiguration(m_hDevice) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteFpgaData(PQBYTE fpgadata, QULONG datalength) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteFpgaData(m_hDevice, fpgadata, datalength) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::IsFpgaConfigured(PQWORD isConfigured) { if (!OpenPolitely()) { return false; } if (QuickUsbIsFpgaConfigured(m_hDevice, isConfigured) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::ConfigureFpga(PCQCHAR filePath) { if (!OpenPolitely()) { return false; } if (QuickUsbConfigureFpga(m_hDevice, filePath) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } ////////////// // HSPP API // ////////////// QRETURN CQuickUsb::ReadCommand(QWORD address, PQBYTE data, PQWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbReadCommand(m_hDevice, address, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteCommand(QWORD address, PQBYTE data, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteCommand(m_hDevice, address, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::ReadData(PQBYTE data, PQULONG length) { if (!OpenPolitely()) { return false; } if (QuickUsbReadData(m_hDevice, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteData(PQBYTE data, QULONG length) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteData(m_hDevice, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteDataAsync(PQBYTE data, QULONG length, PQBYTE transaction) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteDataAsync(m_hDevice, data, length, transaction) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // Don't politely close module now that we're performing async requests return true; } QRETURN CQuickUsb::ReadDataAsync(PQBYTE data, PQULONG length, PQBYTE transaction) { if (!OpenPolitely()) { return false; } if (QuickUsbReadDataAsync(m_hDevice, data, length, transaction) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // Don't politely close module now that we're performing async requests return true; } QRETURN CQuickUsb::AsyncWait(PQULONG bytecount, QBYTE transaction, QBYTE immediate) { // Don't politely open as we must already be open for this call if (QuickUsbAsyncWait(m_hDevice, bytecount, transaction, immediate) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // We don't know when it's safe to close, so just don't politely close return true; } ////////////// // GPIO API // ////////////// QRETURN CQuickUsb::ReadPortDir(QWORD address, PQBYTE data) { if (!OpenPolitely()) { return false; } if (QuickUsbReadPortDir(m_hDevice, address, data) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WritePortDir(QWORD address, QBYTE data) { if (!OpenPolitely()) { return false; } if (QuickUsbWritePortDir(m_hDevice, address, data) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::ReadPort(QWORD address, PQBYTE data, PQWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbReadPort(m_hDevice, address, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WritePort(QWORD address, PQBYTE data, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbWritePort(m_hDevice, address, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } /////////////// // RS232 API // /////////////// QRETURN CQuickUsb::SetRS232BaudRate(QULONG baudRate) { if (!OpenPolitely()) { return false; } if (QuickUsbSetRS232BaudRate(m_hDevice, baudRate) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::GetNumRS232(QBYTE portNum, PQWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbGetNumRS232(m_hDevice, portNum, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::FlushRS232(QBYTE portNum) { if (!OpenPolitely()) { return false; } if (QuickUsbFlushRS232(m_hDevice, portNum) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::ReadRS232(QBYTE portNum, PQBYTE data, PQWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbReadRS232(m_hDevice, portNum, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteRS232(QBYTE portNum, PQBYTE data, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteRS232(m_hDevice, portNum, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } ///////////// // SPI API // ///////////// QRETURN CQuickUsb::ReadSpi(QBYTE portNum, PQBYTE data, PQWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbReadSpi(m_hDevice, portNum, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteSpi(QBYTE portNum, PQBYTE data, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteSpi(m_hDevice, portNum, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteReadSpi(QBYTE portNum, PQBYTE data, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteReadSpi(m_hDevice, portNum, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } ///////////// // I2C API // ///////////// QRETURN CQuickUsb::ReadI2C(QWORD address, PQBYTE data, PQWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbReadI2C(m_hDevice, address, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteI2C(QWORD address, PQBYTE data, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteI2C(m_hDevice, address, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::CachedWriteI2C(QWORD address, PQBYTE data, QWORD length) { if (!OpenPolitely()) { return false; } if (QuickUsbCachedWriteI2C(m_hDevice, address, data, length) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } ///////////////// // Storage API // ///////////////// QRETURN CQuickUsb::ReadStorage(QWORD address, PQBYTE data, QWORD bytes) { if (!OpenPolitely()) { return false; } if (QuickUsbReadStorage(m_hDevice, address, data, bytes) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::WriteStorage(QWORD address, PQBYTE data, QWORD bytes) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteStorage(m_hDevice, address, data, bytes) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } //////////////////////////////////// // Asynchronous Bulk Transfer API // //////////////////////////////////// QRETURN CQuickUsb::ReadBulkDataAsync(PQBYTE buffer, QULONG bytes, PQBULKSTREAM bulkStream, PQBULKSTREAM_COMPLETION_ROUTINE cRoutine, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbReadBulkDataAsync(m_hDevice, buffer, bytes, bulkStream, cRoutine, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // Don't politely close module now that we're performing async requests return true; } QRETURN CQuickUsb::WriteBulkDataAsync(PQBYTE buffer, QULONG bytes, PQBULKSTREAM bulkStream, PQBULKSTREAM_COMPLETION_ROUTINE cRoutine, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteBulkDataAsync(m_hDevice, buffer, bytes, bulkStream, cRoutine, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // Don't politely close module now that we're performing async requests return true; } QRETURN CQuickUsb::BulkWait(PQBULKSTREAM bulkStream, QBYTE immediate) { // Don't politely open as we must already be open for this call if (QuickUsbBulkWait(m_hDevice, bulkStream, immediate) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // We're done performing the async request so we can politely close the module again ClosePolitely(); return true; } /////////////////// // Streaming API // /////////////////// QRETURN CQuickUsb::ReadBulkDataStartStream(PQBYTE buffers[], QULONG numBuffers, QULONG bufferSize, PQBULKSTREAM_COMPLETION_ROUTINE cRoutine, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbReadBulkDataStartStream(m_hDevice, buffers, numBuffers, bufferSize, cRoutine, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // Don't politely close module now that we're streaming return true; } QRETURN CQuickUsb::WriteBulkDataStartStream(PQBYTE buffers[], QULONG numBuffers, QULONG bufferSize, PQBULKSTREAM_COMPLETION_ROUTINE cRoutine, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteBulkDataStartStream(m_hDevice, buffers, numBuffers, bufferSize, cRoutine, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // Don't politely close module now that we're streaming return true; } QRETURN CQuickUsb::BulkDataStopStream(QBOOL wait) { // Don't politely open as we must already be open for this call if (QuickUsbBulkDataStopStream(m_hDevice, wait) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } // We're done streaming so we can politely close the module again ClosePolitely(); return true; } ///////////////////// // Programming API // ///////////////////// QRETURN CQuickUsb::WriteFirmware(PCQCHAR fileName, QULONG options, PQPROGRESS_CALLBACK callback, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbWriteFirmware(m_hDevice, fileName, options, callback, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::VerifyFirmware(PCQCHAR filename, PQPROGRESS_CALLBACK callback, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbVerifyFirmware(m_hDevice, filename, callback, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } ////////////// // EPCS API // ////////////// QRETURN CQuickUsb::IdentifyEpcs(QBYTE nSS, PQWORD epcsId, PQULONG epcsByteSize, QULONG flags) { if (!OpenPolitely()) { return false; } if (QuickUsbIdentifyEpcs(m_hDevice, nSS, epcsId, epcsByteSize, flags) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::ConfigureEpcs(QBYTE nSS, PCQCHAR filePath, QULONG flags, PQPROGRESS_CALLBACK callback, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbConfigureEpcs(m_hDevice, nSS, filePath, flags, callback, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::VerifyEpcs(QBYTE nSS, PCQCHAR filePath, QULONG flags, PQPROGRESS_CALLBACK callback, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbVerifyEpcs(m_hDevice, nSS, filePath, flags, callback, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } QRETURN CQuickUsb::EraseEpcs(QBYTE nSS, QULONG flags, PQPROGRESS_CALLBACK callback, PQVOID tag) { if (!OpenPolitely()) { return false; } if (QuickUsbEraseEpcs(m_hDevice, nSS, flags, callback, tag) == 0) { QuickUsbGetLastError(&m_lastError); ClosePolitely(); return false; } ClosePolitely(); return true; } ///////////////////////////////////// // Protected methods and variables // ///////////////////////////////////// QBOOL CQuickUsb::OpenPolitely() { // Disregard if already globally opened if (m_globalOpen != 0) { return true; } // This method of reference counting is extremely important. If nested calls // to this function are made we need to make sure we know when to close // the QuickUSB (of course, only if locally opened). ++m_localOpen; // Open the QuickUSB is it isn't already opened if (m_localOpen == 1) { if (!Open()) { --m_localOpen; QuickUsbGetLastError(&m_lastError); return false; } } return true; } void CQuickUsb::ClosePolitely() { QULONG prevError; // Disregard if already globally opened if (m_globalOpen != 0) { return; } // Close the QuickUSB if we opened it locally if (m_localOpen > 0) { // Only close the module when our reference count indicates this is the // last ClosePolitely call. if (m_localOpen == 1) { // We don't want lastError to be overwritten, so remember it prevError = m_lastError; Close(); m_lastError = prevError; } // We must decrement our reference count after the call to Close --m_localOpen; } }
[ "bhenry@bitwisesys.com" ]
bhenry@bitwisesys.com
9f2ed5e396deaa92fe0b9c704e46b2b3e7b55b00
e8940f26b6102d8db7464f05b0764d93865bde1c
/windows/collapes_window/3DvisBaseManager/3DvisBaseManager/IconList.cpp
e15fc794e7ea2927cee761691037125806a962ab
[]
no_license
zr000/ShoppingCarrier
5350dc54cdf7aa175e1d861666d647ee543d50cb
1c2adcf0b7f622d52342a74abeda5b644d94545c
refs/heads/master
2021-06-24T06:01:26.492815
2020-12-10T03:15:31
2020-12-10T03:15:31
146,838,314
2
1
null
null
null
null
WINDOWS-1252
C++
false
false
1,671
cpp
#include "StdAfx.h" #include "IconList.h" CIconList::CIconList(void): m_bInit(FALSE) { } CIconList::~CIconList(void) { } BOOL CIconList::AddIcon(int id, CRect rect, wstring text) { m_bInit = TRUE; __ICONINFO info; HANDLE htemp; htemp = ::LoadImage(::AfxGetApp()->m_hInstance,MAKEINTRESOURCE(id),IMAGE_ICON,0,0,LR_SHARED); if(htemp == NULL) return FALSE; info.icon = (HICON)htemp; info.rect = rect; info.text.assign(text); m_listIcon.push_back(info); return TRUE; } BOOL CIconList::AddIcon(LPCTSTR path) { return FALSE; } void CIconList::DrawIcon(HDC hdc) { LISTICON::iterator it = m_listIcon.begin(); CRect textRect(0,0,0,0); FontFamily fontFamily(L"Á¥Êé"); Font font(&fontFamily, 25, FontStyleRegular, UnitPixel); PointF pointF(30.0f, 10.0f); SolidBrush solidBrush(Color(255, 255, 255, 255)); RectF rectF; Graphics gra(hdc); while(it!=m_listIcon.end()) { ::DrawIconEx(hdc, it->rect.left, it->rect.top, it->icon, it->rect.Width(),it->rect.Height(),0, NULL, DI_NORMAL); if(it->text.length()!=0) { //::SetTextColor(hdc, RGB(255,255,255)); ::DrawText(hdc, it->text.c_str(),-1,textRect,DT_LEFT|DT_CALCRECT); //textRect.MoveToXY(it->rect.left+(it->rect.Width()-textRect.Width())/2,it->rect.bottom+2); //::DrawText(hdc, it->text.c_str(),-1,textRect,DT_LEFT); pointF.X = it->rect.left+(it->rect.Width()-textRect.Width())/2-15; pointF.Y = it->rect.bottom+2; gra.MeasureString(it->text.c_str(), -1, &font, pointF, &rectF); //gra.DrawString(it->text.c_str(), -1, &font, pointF, &solidBrush); gra.DrawString(it->text.c_str(), -1, &font, rectF, NULL, &solidBrush); } it++; } }
[ "fly_boyabc@hotmail.com" ]
fly_boyabc@hotmail.com
72ddad04102d8b3ed3c38fd791426264da45172c
5e972218c7c9392cf405198037291943b96a9ce5
/complexlib/functions.cpp
95684ad84ad5d008da9c726ad563e0e67345d448
[]
no_license
MikaelMayer/reflex-renderer
34ea3c63a4e6bfa8c5f0e79df2f2e07740104dec
38fb10b8809d15c5cb86b8042e4b8922f04c400a
refs/heads/master
2021-01-21T22:26:07.834820
2010-01-19T13:08:34
2010-01-19T13:08:34
32,997,984
0
0
null
null
null
null
UTF-8
C++
false
false
15,361
cpp
/******************************* * Name: functions.cpp * Author: Mika�l Mayer * Purpose: Implements the Function class * History: Work started 20070901 *********************************/ #include "stdafx.h" #include "functions.h" //Function to be deleted after update. cplx Function::evalFast() { return eval(Identity::current); } //FunctionUnary basic implementations. FunctionUnary::FunctionUnary(Function* theArgument) { setArgument(theArgument); } //delete est seulement la destruction du noeud (pour les simplifications p.ex) FunctionUnary::~FunctionUnary() { } Function* FunctionUnary::kill() { if(argument) argument = argument->kill(); delete this; return NULL; } void FunctionUnary::setArgument(Function* theArgument) { argument=(theArgument==NULL?Identity::get():theArgument); } bool FunctionUnary::simplifieArgFunctionUnary() { argument=argument->simplifie(); return argument->isConstant(); } Function *FunctionUnary::simplifie() { //Si la fonction est constante, on la simplifie. if(!simplifieArgFunctionUnary()) return this; //Ici, cela veut dire que l'argument est constant. //On fait donc simple... on garde la constante de l'argument, modifi�e, et on se supprime. cplx res = eval((dynamic_cast<Constante*>(argument))->valeur); kill();//On tue r�cursivement le noeud et son fils. return new Constante(res);//Et on retourne une nouvelle constante. } //FunctionBinary basic implementations. FunctionBinary::FunctionBinary(Function* theArgument, Function* theArgument2):FunctionUnary(theArgument) { setArgument2(theArgument2); } //delete just this node. FunctionBinary::~FunctionBinary() { } Function* FunctionBinary::kill() { if(argument2) argument2 = argument2->kill(); return FunctionUnary::kill(); } void FunctionBinary::setArgument2(Function *theArgument2) { argument2=(theArgument2==NULL?Identity::get():theArgument2); } bool FunctionBinary::simplifieArgFunctionBinary() { bool resultat = simplifieArgFunctionUnary(); argument2 = argument2->simplifie(); return resultat && argument2->isConstant(); } Function *FunctionBinary::simplifie() { if(!simplifieArgFunctionBinary()) return this; cplx res = eval((dynamic_cast<Constante*>(argument))->valeur); kill(); //On tue r�curivement le noeud et son fils. return new Constante(res); //On r�cup�re une nouvelle constante. } //Cas particulier de la fonction compose. Function *Compose::simplifie() { simplifieArgFunctionBinary(); if(argument->isConstant()) {//Le premier argument est constant. cplx res = dynamic_cast<Constante*>(argument)->valeur; kill(); return new Constante(res); } else if(argument2->isConstant()) { cplx tmp(0); cplx res = eval(tmp);//Peu importe l'endroit o� on l'�value. kill(); return new Constante(res); } else if(argument == Identity::get()) { //une composition avec l'identit� => c'est la deuxi�me fonction Function *f = argument2; delete this; return f; } else if(argument2 == Identity::get()) { //une composition avec l'identit� => c'est la deuxi�me fonction Function *f = argument; delete this; return f; } return this; } cplx Identity::current=0; //Identities definition. Identity* Identity::get() { if(Id == NULL) Id = new Identity(); return Id; } void Identity::killf () { if (Id != NULL) delete Id; } cplx Identity::eval(cplx & z) { return z; } Identity_x* Identity_x::get() { if(Id == NULL) Id = new Identity_x(); return Id; } void Identity_x::killf () { if (Id != NULL) delete Id; } cplx Identity_x::eval(cplx & z) { return z.realcplx(); } Identity_y* Identity_y::get() { if(Id == NULL) Id = new Identity_y(); return Id; } void Identity_y::killf () { if (Id != NULL) delete Id; } cplx Identity_y::eval(cplx & z) { return z.imagcplx(); } Identity *Identity::Id=NULL; Identity_x *Identity_x::Id=NULL; Identity_y *Identity_y::Id=NULL; //Some binary functions. cplx Somme::eval(cplx & z) {return argument->eval(z)+argument2->eval(z);} cplx Somme::evalFast() {return argument->evalFast()+argument2->evalFast();} cplx Multiplication::eval(cplx & z) {return argument->eval(z)*argument2->eval(z);} cplx Multiplication::evalFast() {return argument->evalFast()*argument2->evalFast();} cplx Soustraction::eval(cplx & z) {return argument->eval(z)-argument2->eval(z);} cplx Soustraction::evalFast() {return argument->evalFast()-argument2->evalFast();} cplx Division::eval(cplx & z) {return argument->eval(z)/argument2->eval(z);} cplx Division::evalFast() {return argument->evalFast()/argument2->evalFast();} cplx Compose::eval(cplx & z) {cplx tmp = argument2->eval(z); return argument->eval(tmp);} //TODO: Comparer cette m�thode avec celle de remplacer l'objet courant et de le restaurer cplx Compose::evalFast() {cplx tmp = argument2->evalFast(); return argument->eval(tmp);} cplx ExposantComplexe::eval(cplx & z) { cplx w = argument2->eval(z); if(w.real()!=w.real() && w.imag()!=w.imag()) return cplx(1); cplx tmp = argument->eval(z); cplx exparg = w*ln(tmp); return exp(exparg); } cplx ExposantComplexe::evalFast() {cplx lntmp = argument->evalFast(); cplx exparg = argument2->evalFast()*ln(lntmp); return exp(exparg);} cplx CompositionRecursive::eval(cplx & z) { cplx resultat=z; cplx resultat_tmp=resultat; int i=nbCompose; while(i>0) { resultat_tmp = argument->eval(resultat); resultat = resultat_tmp; i--;}//si i<0, on laisse l'identit� (l'inverse n'est pas d�fini) return resultat; } cplx CompositionRecursive::evalFast() { cplx resultat = Identity::current; cplx current_sauv = resultat; int i=nbCompose; while(i>0) { Identity::setCurrentComplex(resultat); resultat = argument->evalFast(); i--; }//si i<0, on laisse l'identit� (l'inverse n'est pas d�fini) Identity::setCurrentComplex(current_sauv); return resultat; } Constante::Constante(double _valeur):valeur(_valeur) { if(valeur.real() != valeur.real()) { valeur = 1; } } Constante::Constante(cplx _valeur):valeur(_valeur) { if(valeur.real()!=valeur.real() || valeur.imag() != valeur.imag()) { valeur = 1; } } cplx Exposant::eval(cplx & z) { return argument->eval(z)^exposant;} cplx Exposant::evalFast() { return argument->evalFast()^exposant;} cplx Oppose::eval(cplx & z) { return -argument->eval(z); } cplx Oppose::evalFast() { return -argument->evalFast(); } cplx Sin::eval(cplx & z) { cplx tmp = argument->eval(z); return sin(tmp); } cplx Sin::evalFast() { cplx tmp = argument->evalFast(); return sin(tmp); } cplx Cos::eval(cplx & z) { cplx tmp = argument->eval(z); return cos(tmp); } cplx Cos::evalFast() { cplx tmp = argument->evalFast(); return cos(tmp); } cplx Tan::eval(cplx & z) { cplx tmp = argument->eval(z); return tan(tmp); } cplx Tan::evalFast() { cplx tmp = argument->evalFast(); return tan(tmp); } cplx Exp::eval(cplx & z) { cplx tmp = argument->eval(z); return exp(tmp); } cplx Exp::evalFast() { cplx tmp = argument->evalFast(); return exp(tmp); } cplx Sinh::eval(cplx & z) { cplx tmp = argument->eval(z); return sinh(tmp); } cplx Sinh::evalFast() { cplx tmp = argument->evalFast(); return sinh(tmp); } cplx Cosh::eval(cplx & z) { cplx tmp = argument->eval(z); return cosh(tmp); } cplx Cosh::evalFast() { cplx tmp = argument->evalFast(); return cosh(tmp); } cplx Tanh::eval(cplx & z) { cplx tmp = argument->eval(z); return tanh(tmp); } cplx Tanh::evalFast() { cplx tmp = argument->evalFast(); return tanh(tmp); } cplx Ln::eval(cplx & z) { cplx tmp = argument->eval(z); return ln(tmp); } cplx Ln::evalFast() { cplx tmp = argument->evalFast(); return ln(tmp); } cplx Sqrt::eval(cplx & z) { cplx tmp = argument->eval(z); return sqrt(tmp); } cplx Sqrt::evalFast() { cplx tmp = argument->evalFast(); return sqrt(tmp); } cplx Argsh::eval(cplx & z) { cplx tmp = argument->eval(z); return argsh(tmp); } cplx Argsh::evalFast() { cplx tmp = argument->evalFast(); return argsh(tmp); } cplx Argch::eval(cplx & z) { cplx tmp = argument->eval(z); return argch(tmp); } cplx Argch::evalFast() { cplx tmp = argument->evalFast(); return argch(tmp); } cplx Argth::eval(cplx & z) { cplx tmp = argument->eval(z); return argth(tmp); } cplx Argth::evalFast() { cplx tmp = argument->evalFast(); return argth(tmp); } cplx Arcsin::eval(cplx & z) { cplx tmp = argument->eval(z); return arcsin(tmp); } cplx Arcsin::evalFast() { cplx tmp = argument->evalFast(); return arcsin(tmp); } cplx Arccos::eval(cplx & z) { cplx tmp = argument->eval(z); return arccos(tmp); } cplx Arccos::evalFast() { cplx tmp = argument->evalFast(); return arccos(tmp); } cplx Arctan::eval(cplx & z) { cplx tmp = argument->eval(z); return arctan(tmp); } cplx Arctan::evalFast() { cplx tmp = argument->evalFast(); return arctan(tmp); } cplx Real::eval(cplx & z) { return argument->eval(z).realcplx(); } cplx Real::evalFast() { return argument->evalFast().realcplx(); } cplx Imag::eval(cplx & z) { return argument->eval(z).imagcplx(); } cplx Imag::evalFast() { return argument->evalFast().imagcplx(); } cplx Conj::eval(cplx & z) { return argument->eval(z).conj(); } cplx Conj::evalFast() { return argument->evalFast().conj(); } cplx Circle::eval(cplx & z) { cplx w=argument->eval(z); return w.conj()-w.invs(); }//Optimiser? cplx Circle::evalFast() { cplx w=argument->evalFast(); return w.conj()-w.invs(); }//Optimiser? //Function with variables. FunctionMultiple::FunctionMultiple( Function* _arg, Variable *_var, Function *_debut, Function *_fin, Function* _step): FunctionUnary(_arg), var(_var), debut(_debut), fin(_fin), step(_step) { } FunctionMultiple::FunctionMultiple( Function *_arg, Variable *_var, Function *_debut, Function *_fin): FunctionUnary(_arg),var(_var), debut(_debut), fin(_fin), step(new Constante(1.0)) { } //delete est seulement la destruction du noeud (pour les simplifications p.ex) FunctionMultiple::~FunctionMultiple() { } Function* FunctionMultiple::kill() { if(debut) debut = debut->kill(); if(fin) fin = fin->kill(); if(step) step = step->kill(); return FunctionUnary::kill(); } bool FunctionMultiple::simplifieArgFunctionMultiple() { bool result = simplifieArgFunctionUnary(); debut = debut->simplifie(); fin = fin->simplifie(); if(step) step = step->simplifie(); return result && debut->isConstant() && fin->isConstant() && (step ? step->isConstant() : TRUE); } Function* FunctionMultiple::simplifie() { if(!simplifieArgFunctionMultiple()) return this; //Ici, cela veut dire que l'argument est constant. //On fait donc simple... on garde la constante de l'argument, modifi�e, et on se supprime. cplx res = eval((dynamic_cast<Constante*>(argument))->valeur); kill();//On tue r�cursivement le noeud et son fils. return new Constante(res);//Et on retourne une nouvelle constante. } SommeMultiple::SommeMultiple(Function* argument, Variable *theVar, Function* theDebut, Function* theFin, Function* theStep) :FunctionMultiple(argument, theVar, theDebut, theFin, theStep) { } SommeMultiple::SommeMultiple(Function* argument, Variable *theVar, Function* theDebut, Function* theFin) :FunctionMultiple(argument, theVar, theDebut, theFin) { } cplx SommeMultiple::eval(cplx & z) { cplx resultat = 0; double d = debut->eval(z).real(); double f = fin->eval(z).real(); double s = step->eval(z).real(); if( d*s > f*s || s == 0) return resultat; for(double k=d; k<=f; k+=s) { cplx tmp(k, 0); var->set(tmp);//Effet de bord, les sous-fonctions vont voir la variable changer. resultat += argument->eval(z); } return resultat; } cplx SommeMultiple::evalFast() { cplx resultat = 0; double d = debut->evalFast().real(); double f = fin->evalFast().real(); double s = step->evalFast().real(); if( d*s > f*s || s == 0) return resultat; for(double k=d; k<=f; k+=s) { cplx tmp(k, 0); var->set(tmp);//Effet de bord, les sous-fonctions vont voir la variable changer. resultat += argument->evalFast(); } return resultat; } ProduitMultiple::ProduitMultiple(Function* argument, Variable *theVar, Function* theDebut, Function* theFin, Function* theStep) :FunctionMultiple(argument, theVar, theDebut, theFin, theStep) { } ProduitMultiple::ProduitMultiple(Function* argument, Variable *theVar, Function* theDebut, Function* theFin) :FunctionMultiple(argument, theVar, theDebut, theFin) { } cplx ProduitMultiple::eval(cplx & z) { cplx resultat(1.0); double d = debut->eval(z).real(); double f = fin->eval(z).real(); double s = step->eval(z).real(); if( d*s > f*s || s == 0) return resultat; for(double k=d; k<=f; k+=s) { cplx tmp(k, 0); var->set(tmp);//Effet de bord, les sous-fonctions vont voir la variable changer. resultat*= argument->eval(z); } return resultat; } cplx ProduitMultiple::evalFast() { cplx resultat(1.0); double d = debut->evalFast().real(); double f = fin->evalFast().real(); double s = step->evalFast().real(); if( d*s > f*s || s == 0) return resultat; for(double k=d; k<=f; k+=s) { cplx tmp(k, 0); var->set(tmp);//Effet de bord, les sous-fonctions vont voir la variable changer. resultat*= argument->evalFast(); } return resultat; } CompositionMultiple::CompositionMultiple(Function* argument, Variable *theVar, Function* theDebut, Function* theFin) :FunctionMultiple(argument, theVar, theDebut, theFin, NULL) { } cplx CompositionMultiple::eval(cplx & z) { cplx tmp = debut->eval(z); var->set(tmp); double count = fin->eval(z).real(); while (count > 0) { cplx tmp=argument->eval(z); var->set(tmp); count--; } return var->evalFast(); } cplx CompositionMultiple::evalFast() { cplx tmp = debut->evalFast(); var->set(tmp); double count = fin->evalFast().real(); while (count > 0) { cplx tmp=argument->evalFast(); var->set(tmp); count--; } return var->evalFast(); } //Implementation of variables. void Variable::setNom(const TCHAR* theNom) { //Copy the name to the buffer. size_t taille = _tcslen(theNom); nom = new TCHAR[taille+1]; memcpy(nom, theNom, sizeof(TCHAR)*taille); *(nom+taille)=L'\0'; } Variable::~Variable() { delete [] nom; } VariableListe* VariableListe::get() { if(varList==NULL) { varList=new VariableListe(); } return varList; } void VariableListe::killf() { if(!varList) return; Variable* temp=varList->tete; while(temp) { Variable *suivante=temp->prev(); delete temp; //il n'y a qu'ici qu'on a le droit de d�truire les variables temp=suivante; } delete varList; } Variable* VariableListe::getVariable(TCHAR *nom){ Variable* temp=varList->tete; while(temp) { if(_tcscmp(temp->nom, nom)==0) return temp; temp = temp->prec; } //Not found: lets create it. temp = new Variable(nom); temp->prec = varList->tete; varList->tete = temp; return temp; } VariableListe *VariableListe::varList=NULL;
[ "mmikael222@333b9c3a-880d-11dd-88bd-cff828a63736" ]
mmikael222@333b9c3a-880d-11dd-88bd-cff828a63736
bbab187683d0a0b6f6e61853c9afce7266afc6e1
b07ac72659e0ef000507eb07d34539268d1f7b34
/modules/gles/gl_image_handler.cpp
1d9a9d2486b4dca32e58031ae46d8d0712ecc231
[ "Apache-2.0" ]
permissive
leon1205/libxcam
83694bfd8e3d6ad056b6bf458c536885c92a5658
a072b22c35f9b698a3ae89b04600a7b36743203c
refs/heads/master
2020-03-23T01:22:33.868920
2018-06-14T09:48:32
2018-06-25T08:10:11
140,913,570
1
0
null
2018-07-14T03:43:11
2018-07-14T03:43:11
null
UTF-8
C++
false
false
3,720
cpp
/* * gl_image_handler.cpp - GL image handler implementation * * Copyright (c) 2018 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Author: Yinhang Liu <yinhangx.liu@intel.com> */ #include "gl_image_handler.h" #include "gl_video_buffer.h" namespace XCam { GLImageHandler::GLImageHandler (const char* name) : ImageHandler (name) , _need_configure (true) , _enable_allocator (true) { } GLImageHandler::~GLImageHandler () { } bool GLImageHandler::set_out_video_info (const VideoBufferInfo &info) { XCAM_ASSERT (info.width && info.height && info.format); _out_video_info = info; return true; } bool GLImageHandler::enable_allocator (bool enable) { _enable_allocator = enable; return true; } XCamReturn GLImageHandler::create_allocator () { XCAM_ASSERT (_need_configure); if (_enable_allocator) { XCAM_FAIL_RETURN ( ERROR, _out_video_info.is_valid (), XCAM_RETURN_ERROR_PARAM, "GLImageHandler(%s) create allocator failed, out video info was not set", XCAM_STR (get_name ())); set_allocator (new GLVideoBufferPool); XCamReturn ret = reserve_buffers (_out_video_info, XCAM_GL_RESERVED_BUF_COUNT); XCAM_FAIL_RETURN ( ERROR, ret == XCAM_RETURN_NO_ERROR, ret, "GLImageHandler(%s) reserve buffer failed", XCAM_STR (get_name ())); } return XCAM_RETURN_NO_ERROR; } XCamReturn GLImageHandler::execute_buffer (const SmartPtr<ImageHandler::Parameters> &param, bool sync) { XCAM_UNUSED (sync); XCAM_FAIL_RETURN ( ERROR, param.ptr (), XCAM_RETURN_ERROR_PARAM, "GLImageHandler(%s) parameters is null", XCAM_STR (get_name ())); XCamReturn ret = XCAM_RETURN_NO_ERROR; if (_need_configure) { ret = configure_resource (param); XCAM_FAIL_RETURN ( ERROR, xcam_ret_is_ok (ret), ret, "GLImageHandler(%s) configure resource failed", XCAM_STR (get_name ())); ret = create_allocator (); XCAM_FAIL_RETURN ( ERROR, xcam_ret_is_ok (ret), ret, "GLImageHandler(%s) create allocator failed", XCAM_STR (get_name ())); _need_configure = false; } if (!param->out_buf.ptr () && _enable_allocator) { param->out_buf = get_free_buf (); XCAM_FAIL_RETURN ( ERROR, param->out_buf.ptr (), XCAM_RETURN_ERROR_PARAM, "GLImageHandler(%s) get output buffer failed from allocator", XCAM_STR (get_name ())); } ret = start_work (param); if (!xcam_ret_is_ok (ret)) XCAM_LOG_WARNING ("GLImageHandler(%s) start work failed", XCAM_STR (get_name ())); return ret; } void GLImageHandler::execute_done (const SmartPtr<ImageHandler::Parameters> &param, XCamReturn err) { XCAM_ASSERT (param.ptr ()); if (err < XCAM_RETURN_NO_ERROR) { XCAM_LOG_WARNING ( "GLImageHandler(%s) broken with errno(%d)", XCAM_STR (get_name ()), (int)err); return; } if (err > XCAM_RETURN_NO_ERROR) { XCAM_LOG_WARNING ( "GLImageHandler(%s) continued with errno(%d)", XCAM_STR (get_name ()), (int)err); } execute_status_check (param, err); } }
[ "feng.yuan@intel.com" ]
feng.yuan@intel.com
f762762bc9e536cbe11d3e76f1186c2f7135d654
3cb407c1ddc3f123750c6199b63664815510e706
/啊哈算法/1.2冒泡排序/main.cpp
d83c509689e29c89abd55f01bb55046f7ab91d7a
[]
no_license
hongiii/aha_algorithm_practice
17d4cdf57ec8c3a94419718d862702e8e2bf18b3
af475195db1220600a43ba91bb96bbd6ec701fab
refs/heads/master
2020-05-22T05:02:53.957100
2019-05-12T08:23:52
2019-05-12T08:23:52
186,228,155
0
0
null
null
null
null
GB18030
C++
false
false
1,046
cpp
//冒泡排序的基本思想:每次比较相邻的两个元素,如果顺序错误就把它们交换过来。 //给定一个数据序列12 35 99 18 76,如果是从小到大排序 //第一趟,12 35 18 76 | 99 //第二趟,12 18 35 | 76 99 //第三趟,12 18 | 35 76 99 //第四趟,12 | 18 35 76 99 //复杂度O(N*N) #include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <algorithm> using namespace std; const int N = 100+10; void bubblesort(int a[], int n); int main() { int a[N], n; scanf("%d", &n); for(int i = 0; i < n; i++) scanf("%d", &a[i]); bubblesort(a, n); for(int i = 0; i < n; i++) printf("%d ", a[i]); return 0; } void bubblesort(int a[], int n) { int tmp; for(int i = 0; i < n-1; i++) { for(int j = 0; j < n-i-1; j++) { if(a[j] > a[j+1]) //从小到大 { tmp = a[j]; a[j] = a[j+1]; a[j+1] = tmp; } } } }
[ "yuhongwa@pku.edu.cn" ]
yuhongwa@pku.edu.cn
f6aaa4486cd98ff0ce6a0a5fa8c3354a8525424e
4cfe6d6abf5de90275bc65e4f33e8e7c1f7e074e
/hashingUsingChanningMethod.cpp
f1b6d31d6e3091e583ee0331d7d73ffe6ffd3dad
[]
no_license
Gaurav-88074/DataStructureAndAlgorithm
6e8a4e2e9ad782c49632da2af4ddf9754dd881b5
3892bc108a09b1c3c323654df548f34471eacc8a
refs/heads/master
2023-09-05T11:31:09.613722
2021-11-18T12:04:41
2021-11-18T12:04:41
401,726,155
0
1
null
null
null
null
UTF-8
C++
false
false
2,877
cpp
#include<iostream> #include<vector> using namespace std; class node{ public: int data; node* next; node(){ this->next = NULL; } node(int data){ this->data = data; this->next = NULL; } }; int hashCode(int data){ return data%9; } node* insert(node* &head,int data){ if(!head){ return new node(data); } else if(head->data==data){ return head; } else if(head->data>data){ node* mid = new node(data); mid->next = head; return mid; } else{ head->next = insert(head->next,data); } return head; } void add(vector<node*> &hashTable,int data){ int hashValue = hashCode(data); node* head = hashTable[hashValue]; head = insert(head,data); hashTable[hashValue] = head; } void displayNode(node* &head){ if (!head){cout<<"NULL";return;} cout<<head->data<<" -> "; displayNode(head->next); } node* deleteNode(node* &head,int data){ if(!head){ return head; } if(head->data==data){ return head->next; } else{ head->next = deleteNode(head->next,data); } return head; } void discard(vector<node*> &hashTable,int data){ int hashValue = hashCode(data); node* head = hashTable[hashValue]; head = deleteNode(head,data); hashTable[hashValue]=head; } bool isPresent(node* &head,int data){ if(!head){return false;} if(head->data==data){return true;} return isPresent(head->next,data); } bool contains(vector<node*> &hashTable,int data){ int hashValue = hashCode(data); node* head = hashTable[hashValue]; return isPresent(head,data); } void display(vector<node*> &hashTable){ for (int i = 0; i < 10; i++){ cout<<"["<<i<<" : "; displayNode(hashTable[i]); cout<<"]"<<endl; } } int main(int argc, char const *argv[]){ vector<node*> hashTable(10); for (int i = 0; i < 100; i++){ add(hashTable,rand()%100); } display(hashTable); bool check = contains(hashTable,9); cout<<check<<endl; discard(hashTable,18); display(hashTable); // add(hashTable,10); // add(hashTable,34); // add(hashTable,26); // add(hashTable,49); // add(hashTable,50); // add(hashTable,36); // add(hashTable,77); // add(hashTable,38); // add(hashTable,99); // add(hashTable,24); // add(hashTable,45); // add(hashTable,64); // add(hashTable,22); // add(hashTable,46); // add(hashTable,42); // add(hashTable,51); // add(hashTable,74); // add(hashTable,14); // add(hashTable,89); // add(hashTable,10); // add(hashTable,20); // add(hashTable,30); // add(hashTable,40); // add(hashTable,50); // add(hashTable,60); // add(hashTable,70); // add(hashTable,80); // add(hashTable,90); return 0; }
[ "81903385+Gaurav-88074@users.noreply.github.com" ]
81903385+Gaurav-88074@users.noreply.github.com
9dbd1edf6307ebae3244681d5b6e0fd834286154
4b5385cd5be06f5cb71f447e81bd0c6fc22f4f4d
/alibekov_mr/Practice/Practice10/MyException.cpp
892a124bac43e44c697a3424f654e1c4ab2fbd6a
[]
no_license
AlibekovMurad5202/mp1-practice
844d1058347fcb385ce79a7b8408edc3006153d0
fa351cc70d1bf65d35a1887ce071d2d0bf4b0428
refs/heads/master
2020-03-28T10:43:39.199276
2019-06-03T02:43:26
2019-06-03T02:43:26
148,138,658
0
0
null
2019-05-30T01:29:13
2018-09-10T10:28:07
C++
UTF-8
C++
false
false
3,213
cpp
#include "MyExceptions.h" MyException::MyException() { str_what = 0; line = 0; file = 0; } MyException::MyException(int _line, const char* _file) { str_what = 0; line = _line; file = _file; } MyException::MyException(const MyException& _exception) : str_what(_exception.what()), line(_exception.errorLine()), file(_exception.errorFile()) {} MyException::MyException(const char* error, const char* reason, int _line, const char* _file) : str_what(error), str_why(reason), line(_line), file(_file) {} MyException::MyException(const char* message, int _line, const char* _file) : str_what(message), line(_line), file(_file) {} MyException::~MyException() { line = -1; } ExceptionOutOfRange::ExceptionOutOfRange() { str_what = "Value out of bounds!"; str_why = "Value does not match conditions."; line = -1; file = 0; } ExceptionOutOfRange::ExceptionOutOfRange(const ExceptionOutOfRange& _exception) { str_why = _exception.why(); str_what = _exception.what(); line = _exception.errorLine(); file = _exception.errorFile(); } ExceptionOutOfRange::ExceptionOutOfRange(int _line, const char* _file) { str_what = "Value out of bounds!"; str_why = "Value does not match conditions."; line = _line; file = _file; } ExceptionOutOfRange::~ExceptionOutOfRange() { line = -1; } ExceptionFullContainer::ExceptionFullContainer() { str_what = "Cannot add item!"; str_why = "Container is full."; line = -1; file = 0; } ExceptionFullContainer::ExceptionFullContainer(const ExceptionFullContainer& _exception) { str_why = _exception.why(); str_what = _exception.what(); line = _exception.errorLine(); file = _exception.errorFile(); } ExceptionFullContainer::ExceptionFullContainer(int _line, const char* _file) { str_what = "Cannot add item!"; str_why = "Container is full."; line = _line; file = _file; } ExceptionFullContainer::~ExceptionFullContainer() { line = -1; } ExceptionEmptyContainer::ExceptionEmptyContainer() { str_what = "Cannot delete item!"; str_why = "Container is empty."; line = -1; file = 0; } ExceptionEmptyContainer::ExceptionEmptyContainer(const ExceptionEmptyContainer& _exception) { str_why = _exception.why(); str_what = _exception.what(); line = _exception.errorLine(); file = _exception.errorFile(); } ExceptionEmptyContainer::ExceptionEmptyContainer(int _line, const char* _file) { str_what = "Cannot delete item!"; str_why = "Container is empty."; line = _line; file = _file; } ExceptionEmptyContainer::~ExceptionEmptyContainer() { line = -1; } ExceptionItemNotFound::ExceptionItemNotFound() { str_what = "Item not found!"; str_why = "The item is not in container."; line = -1; file = 0; } ExceptionItemNotFound::ExceptionItemNotFound(const ExceptionItemNotFound& _exception) { str_why = _exception.why(); str_what = _exception.what(); line = _exception.errorLine(); file = _exception.errorFile(); } ExceptionItemNotFound::ExceptionItemNotFound(int _line, const char* _file) { str_what = "Item not found!"; str_why = "The item is not in container."; line = _line; file = _file; } ExceptionItemNotFound::~ExceptionItemNotFound() { line = -1; };
[ "muradalibekov2000@gmail.com" ]
muradalibekov2000@gmail.com
d2d8c18e879d4d45931c4fd0f907c4d752b98570
809995cb4d6339a10b06a2ddf50930cb3d0d78d7
/misc/random_dist/test.cpp
5e186953370990c7b19390573b4b06c539259e3b
[]
no_license
aghandoura/tutorials
f950e2df355be5d84136e02edb6e16db5e69681c
27fe84707601363284ee38e7a01e9ed6de9f461b
refs/heads/master
2020-05-21T14:52:44.169475
2016-11-02T06:40:09
2016-11-02T06:40:36
64,489,120
0
0
null
null
null
null
UTF-8
C++
false
false
1,018
cpp
#include <iostream> #include <iomanip> #include <string> #include <map> #include <random> #include <cmath> int main() { // Seed with a real random value, if available std::random_device rd; // Choose a random mean between 1 and 6 std::default_random_engine e1(rd()); std::uniform_int_distribution<int> uniform_dist(1, 66); int mean = uniform_dist(e1); std::cout << "Randomly-chosen mean: " << mean << '\n'; // Generate a normal distribution around that mean std::mt19937 e2(rd()); std::uniform_int_distribution<int> dist(0 , mean); std::map<int, int> hist; for (int n = 0; n < 10000; ++n) { ++hist[dist(e2)]; } std::cout << "uniform distribution around " << mean << ":\n"; for (auto p : hist) { std::cout << p.first << ' ' << p.second<< '\n'; } for (auto p : hist) { std::cout << std::fixed << std::setprecision(1) << std::setw(2) << p.first << ' ' << std::string(p.second/20, '-') << '\n'; } }
[ "adam.ghandoura@st.com" ]
adam.ghandoura@st.com
f58a24fe889af1a90046cecc3997e2e449821703
fc3f0acde483c63320b58f4d2ed6d6c796a76ea0
/day08/ex01/span.hpp
d2b1117fcd69398913d00c6f3756437db08eac48
[]
no_license
tlecoeuv/piscine_cpp
1c545ed2d32ade824b6d8ffbdaea36461358a1b4
ef957261165f1b2cd8d3418a82401820426c16e0
refs/heads/master
2023-03-06T18:51:41.727622
2021-02-16T12:17:18
2021-02-16T12:17:18
244,199,768
0
0
null
null
null
null
UTF-8
C++
false
false
909
hpp
#ifndef SPAN_HPP # define SPAN_HPP #include <iostream> #include <string> #include <iterator> #include <vector> #include <algorithm> class Span { public: Span(); Span(unsigned int N); Span(Span const & src); ~Span(); Span & operator=(Span const & rhs); void addNumber(int n); void addNumber(int n, unsigned int range); unsigned int shortestSpan(); unsigned int longestSpan(); class NoSpanException : public std::exception { public: virtual const char *what() const throw() { return ("there is no span to find"); } }; class StorageFullException : public std::exception { public: virtual const char *what() const throw() { return ("Storage is full"); } }; std::vector<int>::iterator begin() {return (_tab.begin());} std::vector<int>::iterator end() {return (_tab.end());} private: unsigned int _N; std::vector<int> _tab; unsigned int _sizeTab; }; #endif
[ "tanguy.lecoeuvre@gmail.com" ]
tanguy.lecoeuvre@gmail.com
e3cd9f1dbe75908b5640eab4ee65f7a6216a9f0d
cc3fb6b8ec739443d1983507061b9f2609ef6ce0
/deprecated/imageutilities/src/iutransform.cpp
4a38fe59e9184752c4de91cc9b0457de9dc131b3
[ "MIT" ]
permissive
mwerlberger/imp
9454e2359f7a803b4fbf96dc07a9eb02e6b61c79
2a2e4d31fa59ca1c32ae7f415306b39e31fc1e85
refs/heads/master
2021-01-22T15:35:20.709694
2015-10-16T15:15:32
2015-10-16T15:15:32
25,256,322
8
3
null
2015-10-16T15:15:33
2014-10-15T13:42:05
C++
UTF-8
C++
false
false
3,133
cpp
/* * Copyright (c) ICG. All rights reserved. * * Institute for Computer Graphics and Vision * Graz University of Technology / Austria * * * This software is distributed WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the above copyright notices for more information. * * * Project : ImageUtilities * Module : Geometric Transformation * Class : Wrapper * Language : C * Description : Implementation of public interfaces for the geometric transformation module * * Author : Manuel Werlberger * EMail : werlberger@icg.tugraz.at * */ #include "iutransform.h" #include "iutransform/reduce.h" #include "iutransform/prolongate.h" #include "iutransform/remap.h" namespace iu { /* *************************************************************************** Geometric Transformation * ***************************************************************************/ /* image reduction */ void reduce(const iu::ImageGpu_32f_C1* src, iu::ImageGpu_32f_C1* dst, IuInterpolationType interpolation, bool gauss_prefilter, bool bicubic_bspline_prefilter) {iuprivate::reduce(src, dst, interpolation, gauss_prefilter, bicubic_bspline_prefilter);} /* image prolongation */ void prolongate(const iu::ImageGpu_32f_C1* src, iu::ImageGpu_32f_C1* dst, IuInterpolationType interpolation) {iuprivate::prolongate(src, dst, interpolation);} void prolongate(const iu::ImageGpu_32f_C2* src, iu::ImageGpu_32f_C2* dst, IuInterpolationType interpolation) {iuprivate::prolongate(src, dst, interpolation);} void prolongate(const iu::ImageGpu_32f_C4* src, iu::ImageGpu_32f_C4* dst, IuInterpolationType interpolation) {iuprivate::prolongate(src, dst, interpolation);} /* image remapping (warping) */ // 8u_C1 void remap(iu::ImageGpu_8u_C1* src, iu::ImageGpu_32f_C1* dx_map, iu::ImageGpu_32f_C1* dy_map, iu::ImageGpu_8u_C1* dst, IuInterpolationType interpolation) {iuprivate::remap(src, dx_map, dy_map, dst, interpolation);} // 32f_C1 void remap(iu::ImageGpu_32f_C1* src, iu::ImageGpu_32f_C1* dx_map, iu::ImageGpu_32f_C1* dy_map, iu::ImageGpu_32f_C1* dst, IuInterpolationType interpolation) {iuprivate::remap(src, dx_map, dy_map, dst, interpolation);} //IuStatus remap(iu::ImageGpu_32f_C2* src, // iu::ImageGpu_32f_C1* dx_map, iu::ImageGpu_32f_C1* dy_map, // iu::ImageGpu_32f_C2* dst, IuInterpolationType interpolation) //{return iuprivate::remap(src, dx_map, dy_map, dst, interpolation);} // 32f_C4 void remap(iu::ImageGpu_32f_C4* src, iu::ImageGpu_32f_C1* dx_map, iu::ImageGpu_32f_C1* dy_map, iu::ImageGpu_32f_C4* dst, IuInterpolationType interpolation) {iuprivate::remap(src, dx_map, dy_map, dst, interpolation);} void remapAffine(iu::ImageGpu_32f_C1* src, float a1, float a2, float a3, float a4, float b1, float b2, iu::ImageGpu_32f_C1* dst) {iuprivate::remapAffine(src, a1, a2, a3, a4, b1, b2, dst);} } // namespace iu
[ "heber1@358b74ad-2626-0410-af80-f4c3c349ae55" ]
heber1@358b74ad-2626-0410-af80-f4c3c349ae55
69e789694c0ce7b6f6949de34137bbb26706484a
6b04e077e45f303f70141382dc844b0615574186
/cpp/gfg/gfg_TopologicalSort/gfg_TopologicalSort/stdafx.cpp
284fc6db8a7aecf8657c117ca4cad048a11df58b
[]
no_license
amityadav0788/gitcode
d23e7f56421da0e2f45a0349a71e53b94d2f1e95
60580112187ea3e14d943a4c92c5dcdc168e215f
refs/heads/master
2016-09-05T21:10:16.949165
2015-11-25T10:35:03
2015-11-25T10:35:03
40,748,424
0
0
null
null
null
null
UTF-8
C++
false
false
298
cpp
// stdafx.cpp : source file that includes just the standard includes // gfg_TopologicalSort.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "amit.yadav0788@gmail.com" ]
amit.yadav0788@gmail.com
41e0863a548e7503b327f019c8375e7fd7c81fc2
92a2c7dbeb74f20b666abff02a63e36977d7dc8e
/lib/commonAPI/coreapi/ext/shared/generated/system_api_init.cpp
2ea975898d6c450435ca615c8503f2c2f9b84921
[ "MIT" ]
permissive
kathir/rhodes
7bf5a752f7b44e4adcaa862bdf33f94d03bbf059
e3e1fcfd025ef6c86c7411954d2262bba663301b
refs/heads/master
2021-01-16T20:01:50.120843
2013-02-20T10:16:12
2013-02-20T10:16:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
272
cpp
#include "common/app_build_capabilities.h" extern "C" void Init_RubyAPI_System(); extern "C" void Init_JSAPI_System(); extern "C" void Init_System_API() { #ifndef RHO_NO_RUBY_API Init_RubyAPI_System(); #endif #ifndef RHO_NO_JS_API Init_JSAPI_System(); #endif }
[ "evgeny@rhomobile.com" ]
evgeny@rhomobile.com
ddf96eba3c2e7f952348d326cbfc034a95bb8797
626e1bb354e77150df15e052930a8885d12837c4
/Templates/Graph/最小生成树(kruskal算法).cpp
7004a541b0bdc79f37ac3ece28c7a43008707245
[]
no_license
rongweihe/Algorithms
1367c83fb301eda4772169b42b5b9041bd941abb
93830a9a298c02730effbbb10e4aaf25ca4a3261
refs/heads/master
2021-06-29T23:14:04.813101
2020-12-12T09:02:59
2020-12-12T09:02:59
191,878,965
7
2
null
null
null
null
UTF-8
C++
false
false
1,241
cpp
#include <bits/stdc++.h> using namespace std; const int maxn = 1e5+233; int n,m,tot=0,k=0;//n端点总数,m边数,tot记录最终答案,k已经连接了多少边 int fat[maxn];//记录集体老大 struct node { int from,to,dis;//结构体储存边 }edge[200010]; bool cmp(const node &a,const node &b)//sort排序(当然你也可以快排) { return a.dis<b.dis; } int father(int x)//找集体老大,并查集的一部分 { if(fat[x]!=x) return father(fat[x]); else return x; } void unionn(int x,int y)//加入团体,并查集的一部分 { fat[father(y)]=father(x); } int main() { scanf("%d%d",&n,&m);//输入点数,边数 for(int i=1;i<=m;i++) { scanf("%d%d%d",&edge[i].from,&edge[i].to,&edge[i].dis);//输入边的信息 } for(int i=1;i<=n;i++) fat[i]=i;//自己最开始就是自己的老大 (初始化) sort(edge+1,edge+1+m,cmp);//按权值排序(kruskal的体现) for(int i=1;i<=m;i++)//从小到大遍历 { if(k==n-1) break;//n个点需要n-1条边连接 if(father(edge[i].from)!=father(edge[i].to))//假如不在一个团体 { unionn(edge[i].from,edge[i].to);//加入 tot+=edge[i].dis;//记录边权 k++;//已连接边数+1 } } printf("%d",tot); return 0; }
[ "noreply@github.com" ]
noreply@github.com
b53a541f4d62f2a346ff2c75bf37dc60051263e0
0bd157831b873c99258a3a9f73f0553f272a1104
/DSA_codes_in_cpp/Interview Prep CC/Basics_Cpp/cats_and_dogs.cpp
829ee62421a17dea055ff5389efca324ff2b38f5
[]
no_license
sayantikag98/Current_Data_Structures_and_Algorithms
f79bb9b915e1550d4ea1e77146a19adfb61b95a2
f9b56959b7c9bd991b3348d6ab1adcdfb919b667
refs/heads/master
2023-07-17T13:52:30.298513
2021-08-19T05:17:29
2021-08-19T05:17:29
386,279,433
0
0
null
null
null
null
UTF-8
C++
false
false
770
cpp
#include<bits/stdc++.h> using namespace std; #define loop(i,a,b) for(int i = (a); i<(b); i++) #define rloop(i,b,a) for(int i = (b); i>(a); i--) #define int long long void func(int c, int d, int l){ if(l%4!=0 or l<(4*d) or l>((4*d)+(4*c))){ cout<<"no"<<"\n"; return; } if(c>(2*d)){ int rem = c-(2*d); if(l<((d*4)+(rem*4))){ cout<<"no"<<"\n"; return; } } cout<<"yes"<<"\n"; } int32_t main(){ #ifndef ONLINE_JUDGE freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); #endif ios::sync_with_stdio(0); cin.tie(0); int t; cin>>t; while(t--){ int c,d,l; cin>>c>>d>>l; func(c,d,l); } return 0; }
[ "sayantikaghosh98@gmail.com" ]
sayantikaghosh98@gmail.com
050aea91694bb36bafba63ab70c759e16f093b2b
cc2a86dbc4038e06b5f924c684b7b9768d6b6b39
/unit-tests/raytracing/raytracing.cpp
53ecc816ddcc6e33e51605d9b172abd5d1c67a89
[ "Apache-2.0" ]
permissive
KyleKaiWang/titan-infinite
e86ca3c79f2ebc7982c846dc09022201cda4efa6
d2905e050501fc076589bb8e1578d3285ec5aab0
refs/heads/master
2023-05-03T22:12:18.795434
2021-04-30T19:19:41
2021-04-30T19:19:41
282,824,808
0
0
null
null
null
null
UTF-8
C++
false
false
56,511
cpp
/* * Vulkan Renderer Program * * Copyright (C) 2021 Kyle Wang */ // Enable the WSI extensions #if defined(__ANDROID__) #define VK_USE_PLATFORM_ANDROID_KHR #elif defined(__linux__) #define VK_USE_PLATFORM_XLIB_KHR #elif defined(_WIN32) #define VK_USE_PLATFORM_WIN32_KHR #endif #define GLM_FORCE_RADIANS #define GLM_FORCE_DEPTH_ZERO_TO_ONE #define GLM_ENABLE_EXPERIMENTAL #include "pch.h" #include "gui.h" #include "app.h" class Test_RayTracing : public App { public: PFN_vkGetBufferDeviceAddressKHR vkGetBufferDeviceAddressKHR; PFN_vkCreateAccelerationStructureKHR vkCreateAccelerationStructureKHR; PFN_vkDestroyAccelerationStructureKHR vkDestroyAccelerationStructureKHR; PFN_vkGetAccelerationStructureBuildSizesKHR vkGetAccelerationStructureBuildSizesKHR; PFN_vkGetAccelerationStructureDeviceAddressKHR vkGetAccelerationStructureDeviceAddressKHR; PFN_vkCmdBuildAccelerationStructuresKHR vkCmdBuildAccelerationStructuresKHR; PFN_vkBuildAccelerationStructuresKHR vkBuildAccelerationStructuresKHR; PFN_vkCmdTraceRaysKHR vkCmdTraceRaysKHR; PFN_vkGetRayTracingShaderGroupHandlesKHR vkGetRayTracingShaderGroupHandlesKHR; PFN_vkCreateRayTracingPipelinesKHR vkCreateRayTracingPipelinesKHR; Test_RayTracing() { // Add extension { // Instance vkHelper::addInstanceExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME); vkHelper::addInstanceExtension(VK_KHR_DEVICE_GROUP_CREATION_EXTENSION_NAME); // Swap chain vkHelper::addDeviceExtension(VK_KHR_SWAPCHAIN_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME); // Ray tracing related extensions required by this sample vkHelper::addDeviceExtension(VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME); // Required by VK_KHR_acceleration_structure vkHelper::addDeviceExtension(VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_KHR_DEFERRED_HOST_OPERATIONS_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_KHR_RAY_QUERY_EXTENSION_NAME); // Required for VK_KHR_ray_tracing_pipeline vkHelper::addDeviceExtension(VK_KHR_SPIRV_1_4_EXTENSION_NAME); // Required by VK_KHR_spirv_1_4 vkHelper::addDeviceExtension(VK_KHR_SHADER_FLOAT_CONTROLS_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_KHR_MAINTENANCE3_EXTENSION_NAME); vkHelper::addDeviceExtension(VK_KHR_PIPELINE_LIBRARY_EXTENSION_NAME); } } ~Test_RayTracing() { delete m_camera; delete m_device; m_window->destroy(); delete m_window; } bool init() override { initResource(); return true; } void update(float deltaTime) override { } void run() override { int64_t lastCounter = getUSec(); while (!m_window->getWindowShouldClose()) { int64_t counter = getUSec(); float deltaTime = counterToSecondsElapsed(lastCounter, counter); lastCounter = counter; glfwPollEvents(); update(deltaTime); render(); } vkDeviceWaitIdle(m_device->getDevice()); destroy(); } void getEnabledFeatures() override { // These are passed to device creation via a pNext structure chain enabled_buffer_device_addres_features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES; enabled_buffer_device_addres_features.bufferDeviceAddress = VK_TRUE; enabled_ray_tracing_pipeline_features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_FEATURES_KHR; enabled_ray_tracing_pipeline_features.rayTracingPipeline = VK_TRUE; enabled_ray_tracing_pipeline_features.pNext = &enabled_buffer_device_addres_features; enabled_acceleration_structure_features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_FEATURES_KHR; enabled_acceleration_structure_features.accelerationStructure = VK_TRUE; enabled_acceleration_structure_features.pNext = &enabled_ray_tracing_pipeline_features; m_device->m_lastRequestedExtensionFeature = &enabled_acceleration_structure_features; } private: Window* m_window; Device* m_device; Camera* m_camera; // Mesuring frame time float frameTimer = 0.0f; uint32_t frameCounter = 0; uint32_t lastFPS = 0; std::chrono::time_point<std::chrono::high_resolution_clock> lastTimestamp; VkPhysicalDeviceRayTracingPipelinePropertiesKHR ray_tracing_pipeline_properties{}; VkPhysicalDeviceAccelerationStructureFeaturesKHR acceleration_structure_features{}; VkPhysicalDeviceBufferDeviceAddressFeatures enabled_buffer_device_addres_features{}; VkPhysicalDeviceRayTracingPipelineFeaturesKHR enabled_ray_tracing_pipeline_features{}; VkPhysicalDeviceAccelerationStructureFeaturesKHR enabled_acceleration_structure_features{}; Buffer vertex_buffer; Buffer index_buffer; struct UniformData { glm::mat4 view_inverse; glm::mat4 proj_inverse; }; UniformData uniform_data; Buffer ubo; std::vector<VkRayTracingShaderGroupCreateInfoKHR> shader_groups{}; Buffer raygen_shader_binding_table; Buffer miss_shader_binding_table; Buffer hit_shader_binding_table; struct StorageImage { VkDeviceMemory memory; VkImage image = VK_NULL_HANDLE; VkImageView view; VkFormat format; uint32_t width; uint32_t height; }; StorageImage storage_image; struct ScratchBuffer { uint64_t device_address; VkBuffer handle; VkDeviceMemory memory; }; struct AccelerationStructure { VkAccelerationStructureKHR handle; uint64_t device_address; Buffer buffer; }; AccelerationStructure bottom_level_acceleration_structure{}; AccelerationStructure top_level_acceleration_structure{}; VkPipeline pipeline; VkPipelineLayout pipeline_layout; VkDescriptorSet descriptor_set; VkDescriptorSetLayout descriptor_set_layout; void initResource() { // Camera m_camera = new Camera(); m_camera->fov = 45.0f; m_camera->type = Camera::CameraType::lookat; m_camera->setPerspective(45.0f, (float)WIDTH / (float)HEIGHT, 0.1f, 1000.0f); m_camera->rotationSpeed = 0.25f; m_camera->movementSpeed = 1.0f; m_camera->setPosition({ 0.0f, 0.3f, 1.0f }); m_camera->setRotation({ 0.0f, 0.0f, 0.0f }); // glfw window m_window = new Window(); m_window->setCamera(m_camera); m_window->create(WIDTH, HEIGHT); std::function<void()> getfeatures = [&]() { getEnabledFeatures(); }; // Physical, Logical Device and Surface m_device = new Device(); m_device->create(m_window, vkHelper::getInstanceExtensions(), vkHelper::getDeviceExtensions(), getfeatures); // Ray Tracing init { // Get the ray tracing pipeline properties, which we'll need later on in the sample ray_tracing_pipeline_properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_PROPERTIES_KHR; VkPhysicalDeviceProperties2 device_properties{}; device_properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; device_properties.pNext = &ray_tracing_pipeline_properties; vkGetPhysicalDeviceProperties2(m_device->getPhysicalDevice(), &device_properties); // Get the acceleration structure features, which we'll need later on in the sample acceleration_structure_features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_FEATURES_KHR; VkPhysicalDeviceFeatures2 device_features{}; device_features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; device_features.pNext = &acceleration_structure_features; vkGetPhysicalDeviceFeatures2(m_device->getPhysicalDevice(), &device_features); // Get the function pointers required for ray tracing vkGetBufferDeviceAddressKHR = reinterpret_cast<PFN_vkGetBufferDeviceAddressKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkGetBufferDeviceAddressKHR")); vkCmdBuildAccelerationStructuresKHR = reinterpret_cast<PFN_vkCmdBuildAccelerationStructuresKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkCmdBuildAccelerationStructuresKHR")); vkBuildAccelerationStructuresKHR = reinterpret_cast<PFN_vkBuildAccelerationStructuresKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkBuildAccelerationStructuresKHR")); vkCreateAccelerationStructureKHR = reinterpret_cast<PFN_vkCreateAccelerationStructureKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkCreateAccelerationStructureKHR")); vkDestroyAccelerationStructureKHR = reinterpret_cast<PFN_vkDestroyAccelerationStructureKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkDestroyAccelerationStructureKHR")); vkGetAccelerationStructureBuildSizesKHR = reinterpret_cast<PFN_vkGetAccelerationStructureBuildSizesKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkGetAccelerationStructureBuildSizesKHR")); vkGetAccelerationStructureDeviceAddressKHR = reinterpret_cast<PFN_vkGetAccelerationStructureDeviceAddressKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkGetAccelerationStructureDeviceAddressKHR")); vkCmdTraceRaysKHR = reinterpret_cast<PFN_vkCmdTraceRaysKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkCmdTraceRaysKHR")); vkGetRayTracingShaderGroupHandlesKHR = reinterpret_cast<PFN_vkGetRayTracingShaderGroupHandlesKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkGetRayTracingShaderGroupHandlesKHR")); vkCreateRayTracingPipelinesKHR = reinterpret_cast<PFN_vkCreateRayTracingPipelinesKHR>(vkGetDeviceProcAddr(m_device->getDevice(), "vkCreateRayTracingPipelinesKHR")); // Create the acceleration structures used to render the ray traced scene initButtomLevelAccelerationStructure(); initTopLevelAccelerationStructure(); initStorageImage(); initUniformBuffers(); initRayTracingPipeline(); initShaderBindingTables(); initDescriptorSets(); buildCommandBuffers(); } } void initStorageImage() { storage_image.width = m_window->getWidth(); storage_image.height = m_window->getHeight(); VkImageCreateInfo imageInfo{}; imageInfo.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO; imageInfo.imageType = VK_IMAGE_TYPE_2D; imageInfo.format = m_device->getSwapChainImageFormat(); imageInfo.extent.width = storage_image.width; imageInfo.extent.height = storage_image.height; imageInfo.extent.depth = 1; imageInfo.mipLevels = 1; imageInfo.arrayLayers = 1; imageInfo.samples = VK_SAMPLE_COUNT_1_BIT; imageInfo.tiling = VK_IMAGE_TILING_OPTIMAL; imageInfo.usage = VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USAGE_STORAGE_BIT; imageInfo.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; VK_CHECK(vkCreateImage(m_device->getDevice(), &imageInfo, nullptr, &storage_image.image)); VkMemoryRequirements memory_requirements; vkGetImageMemoryRequirements(m_device->getDevice(), storage_image.image, &memory_requirements); VkMemoryAllocateInfo memory_allocate_info{}; memory_allocate_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; memory_allocate_info.allocationSize = memory_requirements.size; memory_allocate_info.memoryTypeIndex = m_device->findMemoryType(memory_requirements.memoryTypeBits, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT); VK_CHECK(vkAllocateMemory(m_device->getDevice(), &memory_allocate_info, nullptr, &storage_image.memory)); VK_CHECK(vkBindImageMemory(m_device->getDevice(), storage_image.image, storage_image.memory, 0)); storage_image.view = m_device->createImageView( m_device->getDevice(), storage_image.image, VK_IMAGE_VIEW_TYPE_2D, m_device->getSwapChainImageFormat(), { VK_COMPONENT_SWIZZLE_R, VK_COMPONENT_SWIZZLE_G,VK_COMPONENT_SWIZZLE_B, VK_COMPONENT_SWIZZLE_A }, { VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1 }); VkCommandBuffer command_buffer = m_device->createCommandBuffer(VK_COMMAND_BUFFER_LEVEL_PRIMARY, m_device->getCommandPool(), true); texture::setImageLayout( command_buffer, storage_image.image, VK_IMAGE_LAYOUT_UNDEFINED, VK_IMAGE_LAYOUT_GENERAL, { VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1 } ); m_device->flushCommandBuffer(command_buffer, m_device->getGraphicsQueue()); } void initButtomLevelAccelerationStructure() { // Setup vertices and indices for a single triangle struct Vertex { float pos[3]; }; std::vector<Vertex> vertices = { {{1.0f, 1.0f, 0.0f}}, {{-1.0f, 1.0f, 0.0f}}, {{0.0f, -1.0f, 0.0f}} }; std::vector<uint32_t> indices = { 0, 1, 2 }; auto vertex_buffer_size = vertices.size() * sizeof(Vertex); auto index_buffer_size = indices.size() * sizeof(uint32_t); // Note that the buffer usage flags for buffers consumed by the bottom level acceleration structure require special flags const VkBufferUsageFlags buffer_usage_flags = VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_BIT_KHR | VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT; vertex_buffer = buffer::createBuffer( m_device, vertex_buffer_size, buffer_usage_flags, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, VK_SHARING_MODE_EXCLUSIVE, vertices.data()); index_buffer = buffer::createBuffer( m_device, index_buffer_size, buffer_usage_flags, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, VK_SHARING_MODE_EXCLUSIVE, vertices.data()); // Setup a single transformation matrix that can be used to transform the whole geometry for a single bottom level acceleration structure VkTransformMatrixKHR transform_matrix = { 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f }; Buffer transform_matrix_buffer = buffer::createBuffer( m_device, sizeof(transform_matrix), buffer_usage_flags, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, VK_SHARING_MODE_EXCLUSIVE, &transform_matrix); VkDeviceOrHostAddressConstKHR vertex_data_device_address{}; VkDeviceOrHostAddressConstKHR index_data_device_address{}; VkDeviceOrHostAddressConstKHR transform_matrix_device_address{}; vertex_data_device_address.deviceAddress = getBufferDeviceAddress(vertex_buffer.buffer); index_data_device_address.deviceAddress = getBufferDeviceAddress(index_buffer.buffer); transform_matrix_device_address.deviceAddress = getBufferDeviceAddress(transform_matrix_buffer.buffer); // The bottom level acceleration structure contains one set of triangles as the input geometry VkAccelerationStructureGeometryKHR acceleration_structure_geometry{}; acceleration_structure_geometry.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_KHR; acceleration_structure_geometry.geometryType = VK_GEOMETRY_TYPE_TRIANGLES_KHR; acceleration_structure_geometry.flags = VK_GEOMETRY_OPAQUE_BIT_KHR; acceleration_structure_geometry.geometry.triangles.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_TRIANGLES_DATA_KHR; acceleration_structure_geometry.geometry.triangles.vertexFormat = VK_FORMAT_R32G32B32_SFLOAT; acceleration_structure_geometry.geometry.triangles.vertexData = vertex_data_device_address; acceleration_structure_geometry.geometry.triangles.maxVertex = 3; acceleration_structure_geometry.geometry.triangles.vertexStride = sizeof(Vertex); acceleration_structure_geometry.geometry.triangles.indexType = VK_INDEX_TYPE_UINT32; acceleration_structure_geometry.geometry.triangles.indexData = index_data_device_address; acceleration_structure_geometry.geometry.triangles.transformData = transform_matrix_device_address; // Get the size requirements for buffers involved in the acceleration structure build process VkAccelerationStructureBuildGeometryInfoKHR acceleration_structure_build_geometry_info{}; acceleration_structure_build_geometry_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR; acceleration_structure_build_geometry_info.type = VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR; acceleration_structure_build_geometry_info.flags = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR; acceleration_structure_build_geometry_info.geometryCount = 1; acceleration_structure_build_geometry_info.pGeometries = &acceleration_structure_geometry; const uint32_t primitive_count = 1; VkAccelerationStructureBuildSizesInfoKHR acceleration_structure_build_sizes_info{}; acceleration_structure_build_sizes_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR; vkGetAccelerationStructureBuildSizesKHR( m_device->getDevice(), VK_ACCELERATION_STRUCTURE_BUILD_TYPE_DEVICE_KHR, &acceleration_structure_build_geometry_info, &primitive_count, &acceleration_structure_build_sizes_info); // Create a buffer to hold the acceleration structure createAccelerationStructureBuffer(bottom_level_acceleration_structure, acceleration_structure_build_sizes_info); // Create the acceleration structure VkAccelerationStructureCreateInfoKHR acceleration_structure_create_info{}; acceleration_structure_create_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_KHR; acceleration_structure_create_info.buffer = bottom_level_acceleration_structure.buffer.buffer; acceleration_structure_create_info.size = acceleration_structure_build_sizes_info.accelerationStructureSize; acceleration_structure_create_info.type = VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR; vkCreateAccelerationStructureKHR(m_device->getDevice(), &acceleration_structure_create_info, nullptr, &bottom_level_acceleration_structure.handle); // The actual build process starts here // Create a scratch buffer as a temporary storage for the acceleration structure build ScratchBuffer scratch_buffer = createScratchBuffer(acceleration_structure_build_sizes_info.buildScratchSize); VkAccelerationStructureBuildGeometryInfoKHR acceleration_build_geometry_info{}; acceleration_build_geometry_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR; acceleration_build_geometry_info.type = VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR; acceleration_build_geometry_info.flags = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR; acceleration_build_geometry_info.mode = VK_BUILD_ACCELERATION_STRUCTURE_MODE_BUILD_KHR; acceleration_build_geometry_info.dstAccelerationStructure = bottom_level_acceleration_structure.handle; acceleration_build_geometry_info.geometryCount = 1; acceleration_build_geometry_info.pGeometries = &acceleration_structure_geometry; acceleration_build_geometry_info.scratchData.deviceAddress = scratch_buffer.device_address; VkAccelerationStructureBuildRangeInfoKHR acceleration_structure_build_range_info; acceleration_structure_build_range_info.primitiveCount = 1; acceleration_structure_build_range_info.primitiveOffset = 0; acceleration_structure_build_range_info.firstVertex = 0; acceleration_structure_build_range_info.transformOffset = 0; std::vector<VkAccelerationStructureBuildRangeInfoKHR*> acceleration_build_structure_range_infos = { &acceleration_structure_build_range_info }; // Build the acceleration structure on the device via a one-time command buffer submission // Some implementations may support acceleration structure building on the host (VkPhysicalDeviceAccelerationStructureFeaturesKHR->accelerationStructureHostCommands), but we prefer device builds VkCommandBuffer command_buffer = m_device->createCommandBuffer(VK_COMMAND_BUFFER_LEVEL_PRIMARY, m_device->getCommandPool(), true); vkCmdBuildAccelerationStructuresKHR( command_buffer, 1, &acceleration_build_geometry_info, acceleration_build_structure_range_infos.data()); m_device->flushCommandBuffer(command_buffer, m_device->getGraphicsQueue()); deleteScratchBuffer(scratch_buffer); // Get the bottom acceleration structure's handle, which will be used during the top level acceleration build VkAccelerationStructureDeviceAddressInfoKHR acceleration_device_address_info{}; acceleration_device_address_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_DEVICE_ADDRESS_INFO_KHR; acceleration_device_address_info.accelerationStructure = bottom_level_acceleration_structure.handle; bottom_level_acceleration_structure.device_address = vkGetAccelerationStructureDeviceAddressKHR(m_device->getDevice(), &acceleration_device_address_info); transform_matrix_buffer.destroy(); } void initTopLevelAccelerationStructure() { VkTransformMatrixKHR transform_matrix = { 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f }; VkAccelerationStructureInstanceKHR acceleration_structure_instance{}; acceleration_structure_instance.transform = transform_matrix; acceleration_structure_instance.instanceCustomIndex = 0; acceleration_structure_instance.mask = 0xFF; acceleration_structure_instance.instanceShaderBindingTableRecordOffset = 0; acceleration_structure_instance.flags = VK_GEOMETRY_INSTANCE_TRIANGLE_FACING_CULL_DISABLE_BIT_KHR; acceleration_structure_instance.accelerationStructureReference = bottom_level_acceleration_structure.device_address; Buffer instances_buffer = buffer::createBuffer( m_device, sizeof(VkAccelerationStructureInstanceKHR), VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_BIT_KHR | VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, VK_SHARING_MODE_EXCLUSIVE, &acceleration_structure_instance); VkDeviceOrHostAddressConstKHR instance_data_device_address{}; instance_data_device_address.deviceAddress = getBufferDeviceAddress(instances_buffer.buffer); // The top level acceleration structure contains (bottom level) instance as the input geometry VkAccelerationStructureGeometryKHR acceleration_structure_geometry{}; acceleration_structure_geometry.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_KHR; acceleration_structure_geometry.geometryType = VK_GEOMETRY_TYPE_INSTANCES_KHR; acceleration_structure_geometry.flags = VK_GEOMETRY_OPAQUE_BIT_KHR; acceleration_structure_geometry.geometry.instances.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_INSTANCES_DATA_KHR; acceleration_structure_geometry.geometry.instances.arrayOfPointers = VK_FALSE; acceleration_structure_geometry.geometry.instances.data = instance_data_device_address; // Get the size requirements for buffers involved in the acceleration structure build process VkAccelerationStructureBuildGeometryInfoKHR acceleration_structure_build_geometry_info{}; acceleration_structure_build_geometry_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR; acceleration_structure_build_geometry_info.type = VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR; acceleration_structure_build_geometry_info.flags = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR; acceleration_structure_build_geometry_info.geometryCount = 1; acceleration_structure_build_geometry_info.pGeometries = &acceleration_structure_geometry; const uint32_t primitive_count = 1; VkAccelerationStructureBuildSizesInfoKHR acceleration_structure_build_sizes_info{}; acceleration_structure_build_sizes_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR; vkGetAccelerationStructureBuildSizesKHR( m_device->getDevice(), VK_ACCELERATION_STRUCTURE_BUILD_TYPE_DEVICE_KHR, &acceleration_structure_build_geometry_info, &primitive_count, &acceleration_structure_build_sizes_info); // Create a buffer to hold the acceleration structure createAccelerationStructureBuffer(top_level_acceleration_structure, acceleration_structure_build_sizes_info); // Create the acceleration structure VkAccelerationStructureCreateInfoKHR acceleration_structure_create_info{}; acceleration_structure_create_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_KHR; acceleration_structure_create_info.buffer = top_level_acceleration_structure.buffer.buffer;; acceleration_structure_create_info.size = acceleration_structure_build_sizes_info.accelerationStructureSize; acceleration_structure_create_info.type = VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR; vkCreateAccelerationStructureKHR(m_device->getDevice(), &acceleration_structure_create_info, nullptr, &top_level_acceleration_structure.handle); // The actual build process starts here // Create a scratch buffer as a temporary storage for the acceleration structure build ScratchBuffer scratch_buffer = createScratchBuffer(acceleration_structure_build_sizes_info.buildScratchSize); VkAccelerationStructureBuildGeometryInfoKHR acceleration_build_geometry_info{}; acceleration_build_geometry_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR; acceleration_build_geometry_info.type = VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR; acceleration_build_geometry_info.flags = VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR; acceleration_build_geometry_info.mode = VK_BUILD_ACCELERATION_STRUCTURE_MODE_BUILD_KHR; acceleration_build_geometry_info.dstAccelerationStructure = top_level_acceleration_structure.handle; acceleration_build_geometry_info.geometryCount = 1; acceleration_build_geometry_info.pGeometries = &acceleration_structure_geometry; acceleration_build_geometry_info.scratchData.deviceAddress = scratch_buffer.device_address; VkAccelerationStructureBuildRangeInfoKHR acceleration_structure_build_range_info; acceleration_structure_build_range_info.primitiveCount = 1; acceleration_structure_build_range_info.primitiveOffset = 0; acceleration_structure_build_range_info.firstVertex = 0; acceleration_structure_build_range_info.transformOffset = 0; std::vector<VkAccelerationStructureBuildRangeInfoKHR*> acceleration_build_structure_range_infos = { &acceleration_structure_build_range_info }; // Build the acceleration structure on the device via a one-time command buffer submission // Some implementations may support acceleration structure building on the host (VkPhysicalDeviceAccelerationStructureFeaturesKHR->accelerationStructureHostCommands), but we prefer device builds VkCommandBuffer command_buffer = m_device->createCommandBuffer(VK_COMMAND_BUFFER_LEVEL_PRIMARY, m_device->getCommandPool(), true); vkCmdBuildAccelerationStructuresKHR( command_buffer, 1, &acceleration_build_geometry_info, acceleration_build_structure_range_infos.data()); m_device->flushCommandBuffer(command_buffer, m_device->getGraphicsQueue()); deleteScratchBuffer(scratch_buffer); // Get the top acceleration structure's handle, which will be used to setup it's descriptor VkAccelerationStructureDeviceAddressInfoKHR acceleration_device_address_info{}; acceleration_device_address_info.sType = VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_DEVICE_ADDRESS_INFO_KHR; acceleration_device_address_info.accelerationStructure = top_level_acceleration_structure.handle; top_level_acceleration_structure.device_address = vkGetAccelerationStructureDeviceAddressKHR(m_device->getDevice(), &acceleration_device_address_info); } void initRayTracingPipeline() { // Slot for binding top level acceleration structures to the ray generation shader VkDescriptorSetLayoutBinding acceleration_structure_layout_binding{}; acceleration_structure_layout_binding.binding = 0; acceleration_structure_layout_binding.descriptorType = VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR; acceleration_structure_layout_binding.descriptorCount = 1; acceleration_structure_layout_binding.stageFlags = VK_SHADER_STAGE_RAYGEN_BIT_KHR; VkDescriptorSetLayoutBinding result_image_layout_binding{}; result_image_layout_binding.binding = 1; result_image_layout_binding.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE; result_image_layout_binding.descriptorCount = 1; result_image_layout_binding.stageFlags = VK_SHADER_STAGE_RAYGEN_BIT_KHR; VkDescriptorSetLayoutBinding uniform_buffer_binding{}; uniform_buffer_binding.binding = 2; uniform_buffer_binding.descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER; uniform_buffer_binding.descriptorCount = 1; uniform_buffer_binding.stageFlags = VK_SHADER_STAGE_RAYGEN_BIT_KHR; std::vector<VkDescriptorSetLayoutBinding> bindings = { acceleration_structure_layout_binding, result_image_layout_binding, uniform_buffer_binding }; VkDescriptorSetLayoutCreateInfo layout_info{}; layout_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO; layout_info.bindingCount = static_cast<uint32_t>(bindings.size()); layout_info.pBindings = bindings.data(); VK_CHECK(vkCreateDescriptorSetLayout(m_device->getDevice(), &layout_info, nullptr, &descriptor_set_layout)); VkPipelineLayoutCreateInfo pipeline_layout_create_info{}; pipeline_layout_create_info.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO; pipeline_layout_create_info.setLayoutCount = 1; pipeline_layout_create_info.pSetLayouts = &descriptor_set_layout; VK_CHECK(vkCreatePipelineLayout(m_device->getDevice(), &pipeline_layout_create_info, nullptr, &pipeline_layout)); /* Setup ray tracing shader groups Each shader group points at the corresponding shader in the pipeline */ std::vector<ShaderStage> shader_stages; // Ray generation group { shader_stages.push_back(m_device->createRayTracingShader("../../data/shaders/raygen.rgen.spv", VK_SHADER_STAGE_RAYGEN_BIT_KHR)); //shader_stages.push_back(load_shader("khr_ray_tracing_basic/raygen.rgen", VK_SHADER_STAGE_RAYGEN_BIT_KHR)); VkRayTracingShaderGroupCreateInfoKHR raygen_group_ci{}; raygen_group_ci.sType = VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR; raygen_group_ci.type = VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_KHR; raygen_group_ci.generalShader = static_cast<uint32_t>(shader_stages.size()) - 1; raygen_group_ci.closestHitShader = VK_SHADER_UNUSED_KHR; raygen_group_ci.anyHitShader = VK_SHADER_UNUSED_KHR; raygen_group_ci.intersectionShader = VK_SHADER_UNUSED_KHR; shader_groups.push_back(raygen_group_ci); } // Ray miss group { shader_stages.push_back(m_device->createRayTracingShader("../../data/shaders/miss.rmiss.spv", VK_SHADER_STAGE_MISS_BIT_KHR)); //shader_stages.push_back(load_shader("khr_ray_tracing_basic/miss.rmiss", VK_SHADER_STAGE_MISS_BIT_KHR)); VkRayTracingShaderGroupCreateInfoKHR miss_group_ci{}; miss_group_ci.sType = VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR; miss_group_ci.type = VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_KHR; miss_group_ci.generalShader = static_cast<uint32_t>(shader_stages.size()) - 1; miss_group_ci.closestHitShader = VK_SHADER_UNUSED_KHR; miss_group_ci.anyHitShader = VK_SHADER_UNUSED_KHR; miss_group_ci.intersectionShader = VK_SHADER_UNUSED_KHR; shader_groups.push_back(miss_group_ci); } // Ray closest hit group { shader_stages.push_back(m_device->createRayTracingShader("../../data/shaders//closesthit.rchit.spv", VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR)); //shader_stages.push_back(load_shader("khr_ray_tracing_basic/closesthit.rchit", VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR)); VkRayTracingShaderGroupCreateInfoKHR closes_hit_group_ci{}; closes_hit_group_ci.sType = VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR; closes_hit_group_ci.type = VK_RAY_TRACING_SHADER_GROUP_TYPE_TRIANGLES_HIT_GROUP_KHR; closes_hit_group_ci.generalShader = VK_SHADER_UNUSED_KHR; closes_hit_group_ci.closestHitShader = static_cast<uint32_t>(shader_stages.size()) - 1; closes_hit_group_ci.anyHitShader = VK_SHADER_UNUSED_KHR; closes_hit_group_ci.intersectionShader = VK_SHADER_UNUSED_KHR; shader_groups.push_back(closes_hit_group_ci); } std::vector<VkPipelineShaderStageCreateInfo> pipeline_shader_stages; for (const ShaderStage& shaderStage : shader_stages) { VkPipelineShaderStageCreateInfo pipelineShaderStage{}; pipelineShaderStage.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; pipelineShaderStage.module = shaderStage.module; pipelineShaderStage.stage = shaderStage.stage; pipelineShaderStage.pName = shaderStage.pName.c_str(); pipeline_shader_stages.push_back(pipelineShaderStage); } /* Create the ray tracing pipeline */ VkRayTracingPipelineCreateInfoKHR raytracing_pipeline_create_info{}; raytracing_pipeline_create_info.sType = VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_CREATE_INFO_KHR; raytracing_pipeline_create_info.stageCount = static_cast<uint32_t>(shader_stages.size()); raytracing_pipeline_create_info.pStages = pipeline_shader_stages.data(); raytracing_pipeline_create_info.groupCount = static_cast<uint32_t>(shader_groups.size()); raytracing_pipeline_create_info.pGroups = shader_groups.data(); raytracing_pipeline_create_info.maxPipelineRayRecursionDepth = 1; raytracing_pipeline_create_info.layout = pipeline_layout; VK_CHECK(vkCreateRayTracingPipelinesKHR(m_device->getDevice(), VK_NULL_HANDLE, VK_NULL_HANDLE, 1, &raytracing_pipeline_create_info, nullptr, &pipeline)); } void initShaderBindingTables() { const uint32_t handle_size = ray_tracing_pipeline_properties.shaderGroupHandleSize; const uint32_t handle_size_aligned = alignedSize(ray_tracing_pipeline_properties.shaderGroupHandleSize, ray_tracing_pipeline_properties.shaderGroupHandleAlignment); const uint32_t handle_alignment = ray_tracing_pipeline_properties.shaderGroupHandleAlignment; const uint32_t group_count = static_cast<uint32_t>(shader_groups.size()); const uint32_t sbt_size = group_count * handle_size_aligned; const VkBufferUsageFlags sbt_buffer_usafge_flags = VK_BUFFER_USAGE_SHADER_BINDING_TABLE_BIT_KHR | VK_BUFFER_USAGE_TRANSFER_SRC_BIT | VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT; const VkMemoryPropertyFlags memory_usage_flags = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT; raygen_shader_binding_table = buffer::createBuffer(m_device, handle_size, sbt_buffer_usafge_flags, memory_usage_flags, VK_SHARING_MODE_EXCLUSIVE, 0); miss_shader_binding_table = buffer::createBuffer(m_device, handle_size, sbt_buffer_usafge_flags, memory_usage_flags, VK_SHARING_MODE_EXCLUSIVE, 0); hit_shader_binding_table = buffer::createBuffer(m_device, handle_size, sbt_buffer_usafge_flags, memory_usage_flags, VK_SHARING_MODE_EXCLUSIVE, 0); // Raygen // Create binding table buffers for each shader type raygen_shader_binding_table.map(); miss_shader_binding_table.map(); hit_shader_binding_table.map(); // Copy the pipeline's shader handles into a host buffer std::vector<uint8_t> shader_handle_storage(sbt_size); VK_CHECK(vkGetRayTracingShaderGroupHandlesKHR(m_device->getDevice(), pipeline, 0, group_count, sbt_size, shader_handle_storage.data())); // Copy the shader handles from the host buffer to the binding tables memcpy(raygen_shader_binding_table.mapped, shader_handle_storage.data(), handle_size); memcpy(miss_shader_binding_table.mapped, shader_handle_storage.data() + handle_size_aligned, handle_size); memcpy(hit_shader_binding_table.mapped, shader_handle_storage.data() + handle_size_aligned * 2, handle_size); //raygen_shader_binding_table.unmap(); //miss_shader_binding_table.unmap(); //hit_shader_binding_table.unmap(); } void initDescriptorSets() { std::vector<VkDescriptorPoolSize> pool_sizes = { {VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR, 1}, {VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, 1}, {VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 1} }; m_device->m_descriptorPool = m_device->createDescriptorPool(m_device->getDevice(), pool_sizes, 1); descriptor_set = m_device->createDescriptorSet(m_device->getDevice(), m_device->getDescriptorPool(), { descriptor_set_layout }); // Setup the descriptor for binding our top level acceleration structure to the ray tracing shaders VkWriteDescriptorSetAccelerationStructureKHR descriptor_acceleration_structure_info{}; descriptor_acceleration_structure_info.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_KHR; descriptor_acceleration_structure_info.accelerationStructureCount = 1; descriptor_acceleration_structure_info.pAccelerationStructures = &top_level_acceleration_structure.handle; VkWriteDescriptorSet acceleration_structure_write{}; acceleration_structure_write.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET; acceleration_structure_write.dstSet = descriptor_set; acceleration_structure_write.dstBinding = 0; acceleration_structure_write.descriptorCount = 1; acceleration_structure_write.descriptorType = VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR; // The acceleration structure descriptor has to be chained via pNext acceleration_structure_write.pNext = &descriptor_acceleration_structure_info; VkDescriptorImageInfo image_descriptor{}; image_descriptor.imageView = storage_image.view; image_descriptor.imageLayout = VK_IMAGE_LAYOUT_GENERAL; VkWriteDescriptorSet result_image_write{}; result_image_write.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET; result_image_write.dstSet = descriptor_set; result_image_write.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE; result_image_write.descriptorCount = 1; result_image_write.dstBinding = 1; result_image_write.pImageInfo = &image_descriptor; VkWriteDescriptorSet uniform_buffer_write{}; uniform_buffer_write.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET; uniform_buffer_write.dstSet = descriptor_set; uniform_buffer_write.descriptorCount = 1; uniform_buffer_write.descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER; uniform_buffer_write.dstBinding = 2; uniform_buffer_write.pBufferInfo = &ubo.descriptor; std::vector<VkWriteDescriptorSet> write_descriptor_sets = { acceleration_structure_write, result_image_write, uniform_buffer_write }; vkUpdateDescriptorSets(m_device->getDevice(), static_cast<uint32_t>(write_descriptor_sets.size()), write_descriptor_sets.data(), 0, VK_NULL_HANDLE); } void buildCommandBuffers() { auto width = m_window->getWidth(); auto height = m_window->getHeight(); if (width != storage_image.width || height != storage_image.height) { // If the view port size has changed, we need to recreate the storage image vkDestroyImageView(m_device->getDevice(), storage_image.view, nullptr); vkDestroyImage(m_device->getDevice(), storage_image.image, nullptr); vkFreeMemory(m_device->getDevice(), storage_image.memory, nullptr); initStorageImage(); // The descriptor also needs to be updated to reference the new image VkDescriptorImageInfo image_descriptor{}; image_descriptor.imageView = storage_image.view; image_descriptor.imageLayout = VK_IMAGE_LAYOUT_GENERAL; VkWriteDescriptorSet result_image_write{}; result_image_write.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET; result_image_write.dstSet = descriptor_set; result_image_write.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE; result_image_write.dstBinding = 1; result_image_write.pImageInfo = &image_descriptor; vkUpdateDescriptorSets(m_device->getDevice(), 1, &result_image_write, 0, VK_NULL_HANDLE); buildCommandBuffers(); } VkCommandBufferBeginInfo command_buffer_begin_info{}; command_buffer_begin_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO; command_buffer_begin_info.pInheritanceInfo = nullptr; VkImageSubresourceRange subresource_range = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1 }; for (int32_t i = 0; i < m_device->getCommandBuffers().size(); ++i) { VkCommandBuffer currentCB = m_device->m_commandBuffers[i]; VK_CHECK(vkBeginCommandBuffer(currentCB, &command_buffer_begin_info)); /* Setup the strided device address regions pointing at the shader identifiers in the shader binding table */ const uint32_t handle_size_aligned = alignedSize(ray_tracing_pipeline_properties.shaderGroupHandleSize, ray_tracing_pipeline_properties.shaderGroupHandleAlignment); VkStridedDeviceAddressRegionKHR raygen_shader_sbt_entry{}; raygen_shader_sbt_entry.deviceAddress = getBufferDeviceAddress(raygen_shader_binding_table.buffer); raygen_shader_sbt_entry.stride = handle_size_aligned; raygen_shader_sbt_entry.size = handle_size_aligned; VkStridedDeviceAddressRegionKHR miss_shader_sbt_entry{}; miss_shader_sbt_entry.deviceAddress = getBufferDeviceAddress(miss_shader_binding_table.buffer); miss_shader_sbt_entry.stride = handle_size_aligned; miss_shader_sbt_entry.size = handle_size_aligned; VkStridedDeviceAddressRegionKHR hit_shader_sbt_entry{}; hit_shader_sbt_entry.deviceAddress = getBufferDeviceAddress(hit_shader_binding_table.buffer); hit_shader_sbt_entry.stride = handle_size_aligned; hit_shader_sbt_entry.size = handle_size_aligned; VkStridedDeviceAddressRegionKHR callable_shader_sbt_entry{}; /* Dispatch the ray tracing commands */ vkCmdBindPipeline(currentCB, VK_PIPELINE_BIND_POINT_RAY_TRACING_KHR, pipeline); vkCmdBindDescriptorSets(currentCB, VK_PIPELINE_BIND_POINT_RAY_TRACING_KHR, pipeline_layout, 0, 1, &descriptor_set, 0, 0); vkCmdTraceRaysKHR( currentCB, &raygen_shader_sbt_entry, &miss_shader_sbt_entry, &hit_shader_sbt_entry, &callable_shader_sbt_entry, width, height, 1); /* Copy ray tracing output to swap chain image */ // Prepare current swap chain image as transfer destination texture::setImageLayout( currentCB, m_device->getSwapChainimages()[i], VK_IMAGE_LAYOUT_UNDEFINED, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, subresource_range ); // Prepare ray tracing output image as transfer source texture::setImageLayout( currentCB, storage_image.image, VK_IMAGE_LAYOUT_GENERAL, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, subresource_range ); VkImageCopy copy_region{}; copy_region.srcSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 }; copy_region.srcOffset = { 0, 0, 0 }; copy_region.dstSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 }; copy_region.dstOffset = { 0, 0, 0 }; copy_region.extent = { width, height, 1 }; vkCmdCopyImage(currentCB, storage_image.image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, m_device->getSwapChainimages()[i], VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, &copy_region ); // Transition swap chain image back for presentation texture::setImageLayout( currentCB, m_device->getSwapChainimages()[i], VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, VK_IMAGE_LAYOUT_PRESENT_SRC_KHR, subresource_range ); // Transition ray tracing output image back to general layout texture::setImageLayout( currentCB, storage_image.image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, VK_IMAGE_LAYOUT_GENERAL, subresource_range ); VK_CHECK(vkEndCommandBuffer(currentCB)); } } void initUniformBuffers() { ubo = buffer::createBuffer( m_device, sizeof(uniform_data), VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT, VK_SHARING_MODE_EXCLUSIVE, &uniform_data ); ubo.map(); updateUniformBuffer(); } void updateUniformBuffer() { uniform_data.proj_inverse = glm::inverse(m_camera->matrices.perspective); uniform_data.view_inverse = glm::inverse(m_camera->matrices.view); memcpy(ubo.mapped, &uniform_data, sizeof(uniform_data)); } void render() override { auto tStart = std::chrono::high_resolution_clock::now(); //buildCommandBuffers(); drawFrame(); frameCounter++; auto tEnd = std::chrono::high_resolution_clock::now(); auto tDiff = std::chrono::duration<double, std::milli>(tEnd - tStart).count(); frameTimer = (float)tDiff / 1000.0f; m_camera->update(frameTimer); float fpsTimer = (float)(std::chrono::duration<double, std::milli>(tEnd - lastTimestamp).count()); if (fpsTimer > 1000.0f) { lastFPS = static_cast<uint32_t>((float)frameCounter * (1000.0f / fpsTimer)); } frameCounter = 0; lastTimestamp = tEnd; } void drawFrame() { vkWaitForFences(m_device->getDevice(), 1, &m_device->m_waitFences[m_device->getCurrentFrame()], VK_TRUE, UINT64_MAX); vkResetFences(m_device->getDevice(), 1, &m_device->m_waitFences[m_device->getCurrentFrame()]); uint32_t imageIndex; VkResult result = vkAcquireNextImageKHR(m_device->getDevice(), m_device->getSwapChain(), UINT64_MAX, m_device->m_imageAvailableSemaphores[m_device->getCurrentFrame()], VK_NULL_HANDLE, &imageIndex); if (result == VK_ERROR_OUT_OF_DATE_KHR) { return; } else if (result != VK_SUCCESS && result != VK_SUBOPTIMAL_KHR) { throw std::runtime_error("failed to acquire swap chain image!"); } if (m_device->m_imagesInFlight[imageIndex] != VK_NULL_HANDLE) { vkWaitForFences(m_device->getDevice(), 1, &m_device->m_imagesInFlight[imageIndex], VK_TRUE, UINT64_MAX); } m_device->m_imagesInFlight[imageIndex] = m_device->m_waitFences[m_device->getCurrentFrame()]; VkSubmitInfo submitInfo{}; submitInfo.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO; VkSemaphore waitSemaphores[] = { m_device->m_imageAvailableSemaphores[m_device->getCurrentFrame()] }; VkPipelineStageFlags waitStages[] = { VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT }; submitInfo.waitSemaphoreCount = 1; submitInfo.pWaitSemaphores = waitSemaphores; submitInfo.pWaitDstStageMask = waitStages; submitInfo.commandBufferCount = 1; submitInfo.pCommandBuffers = &m_device->m_commandBuffers[imageIndex]; VkSemaphore signalSemaphores[] = { m_device->m_renderFinishedSemaphores[m_device->getCurrentFrame()] }; submitInfo.signalSemaphoreCount = 1; submitInfo.pSignalSemaphores = signalSemaphores; m_device->submitCommandBuffer(m_device->getGraphicsQueue(), &submitInfo, m_device->m_waitFences[m_device->getCurrentFrame()]); VkPresentInfoKHR presentInfo{}; presentInfo.sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR; presentInfo.waitSemaphoreCount = 1; presentInfo.pWaitSemaphores = signalSemaphores; VkSwapchainKHR swapChains[] = { m_device->getSwapChain() }; presentInfo.swapchainCount = 1; presentInfo.pSwapchains = swapChains; presentInfo.pImageIndices = &imageIndex; result = vkQueuePresentKHR(m_device->getPresentQueue(), &presentInfo); if (result == VK_ERROR_OUT_OF_DATE_KHR || result == VK_SUBOPTIMAL_KHR || m_window->getFramebufferResized()) { m_window->setFramebufferResized(false); } else if (result != VK_SUCCESS) { throw std::runtime_error("failed to present swap chain image!"); } m_device->m_currentFrame = (m_device->m_currentFrame + 1) % 2; } void destroy() { } void updateGUI() { } /* Gets the device address from a buffer that's needed in many places during the ray tracing setup */ uint64_t getBufferDeviceAddress(VkBuffer buffer) { VkBufferDeviceAddressInfoKHR buffer_device_address_info{}; buffer_device_address_info.sType = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO; buffer_device_address_info.buffer = buffer; return vkGetBufferDeviceAddressKHR(m_device->getDevice(), &buffer_device_address_info); } void createAccelerationStructureBuffer(AccelerationStructure& accelerationStructure, VkAccelerationStructureBuildSizesInfoKHR buildSizeInfo) { VkBufferCreateInfo bufferCreateInfo{}; bufferCreateInfo.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO; bufferCreateInfo.size = buildSizeInfo.accelerationStructureSize; bufferCreateInfo.usage = VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_STORAGE_BIT_KHR | VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT; VK_CHECK(vkCreateBuffer(m_device->getDevice(), &bufferCreateInfo, nullptr, &accelerationStructure.buffer.buffer)); VkMemoryRequirements memoryRequirements{}; vkGetBufferMemoryRequirements(m_device->getDevice(), accelerationStructure.buffer.buffer, &memoryRequirements); VkMemoryAllocateFlagsInfo memoryAllocateFlagsInfo{}; memoryAllocateFlagsInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO; memoryAllocateFlagsInfo.flags = VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT_KHR; VkMemoryAllocateInfo memoryAllocateInfo{}; memoryAllocateInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; memoryAllocateInfo.pNext = &memoryAllocateFlagsInfo; memoryAllocateInfo.allocationSize = memoryRequirements.size; memoryAllocateInfo.memoryTypeIndex = m_device->findMemoryType(memoryRequirements.memoryTypeBits, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT); VK_CHECK(vkAllocateMemory(m_device->getDevice(), &memoryAllocateInfo, nullptr, &accelerationStructure.buffer.memory)); VK_CHECK(vkBindBufferMemory(m_device->getDevice(), accelerationStructure.buffer.buffer, accelerationStructure.buffer.memory, 0)); } ScratchBuffer createScratchBuffer(VkDeviceSize size) { ScratchBuffer scratchBuffer{}; VkBufferCreateInfo bufferCreateInfo{}; bufferCreateInfo.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO; bufferCreateInfo.size = size; bufferCreateInfo.usage = VK_BUFFER_USAGE_STORAGE_BUFFER_BIT | VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT; VK_CHECK(vkCreateBuffer(m_device->getDevice(), &bufferCreateInfo, nullptr, &scratchBuffer.handle)); VkMemoryRequirements memoryRequirements{}; vkGetBufferMemoryRequirements(m_device->getDevice(), scratchBuffer.handle, &memoryRequirements); VkMemoryAllocateFlagsInfo memoryAllocateFlagsInfo{}; memoryAllocateFlagsInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO; memoryAllocateFlagsInfo.flags = VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT_KHR; VkMemoryAllocateInfo memoryAllocateInfo = {}; memoryAllocateInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; memoryAllocateInfo.pNext = &memoryAllocateFlagsInfo; memoryAllocateInfo.allocationSize = memoryRequirements.size; memoryAllocateInfo.memoryTypeIndex = m_device->findMemoryType(memoryRequirements.memoryTypeBits, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT); VK_CHECK(vkAllocateMemory(m_device->getDevice(), &memoryAllocateInfo, nullptr, &scratchBuffer.memory)); VK_CHECK(vkBindBufferMemory(m_device->getDevice(), scratchBuffer.handle, scratchBuffer.memory, 0)); VkBufferDeviceAddressInfoKHR bufferDeviceAddressInfo{}; bufferDeviceAddressInfo.sType = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO; bufferDeviceAddressInfo.buffer = scratchBuffer.handle; scratchBuffer.device_address = vkGetBufferDeviceAddressKHR(m_device->getDevice(), &bufferDeviceAddressInfo); return scratchBuffer; } void deleteScratchBuffer(ScratchBuffer& scratch_buffer) { if (scratch_buffer.memory != VK_NULL_HANDLE) { vkFreeMemory(m_device->getDevice(), scratch_buffer.memory, nullptr); } if (scratch_buffer.handle != VK_NULL_HANDLE) { vkDestroyBuffer(m_device->getDevice(), scratch_buffer.handle, nullptr); } } uint32_t alignedSize(uint32_t value, uint32_t alignment) { return (value + alignment - 1) & ~(alignment - 1); } }; App* create_application() { return new Test_RayTracing(); }
[ "z82101096@hotmail.com" ]
z82101096@hotmail.com
5ce8f68bdfef554ffd94041ddc10f23b85dde5ed
f156449616e89d538d7b8db79034e5a95a09c5a5
/examples/auto-brake/NewPing.h
58ba39ad1b9c2cbbf3a05534cd5f5376a9fe7793
[ "MIT" ]
permissive
smiljanicm/Arduino-PowerFunctions
2d79febc90e7632930e6ec2da38fcbf1413cc26f
601d289ae6e7655b6696b4829ceb5d31795204d4
refs/heads/master
2021-01-13T17:04:01.514286
2020-02-12T08:29:14
2020-02-12T08:29:14
72,894,133
0
0
MIT
2020-02-12T08:29:16
2016-11-04T23:58:13
C++
UTF-8
C++
false
false
14,158
h
// --------------------------------------------------------------------------- // NewPing Library - v1.8 - 07/30/2016 // // AUTHOR/LICENSE: // Created by Tim Eckel - teckel@leethost.com // Copyright 2016 License: GNU GPL v3 http://www.gnu.org/licenses/gpl.html // // LINKS: // Project home: https://bitbucket.org/teckel12/arduino-new-ping/wiki/Home // Blog: http://arduino.cc/forum/index.php/topic,106043.0.html // // DISCLAIMER: // This software is furnished "as is", without technical support, and with no // warranty, express or implied, as to its usefulness for any purpose. // // BACKGROUND: // When I first received an ultrasonic sensor I was not happy with how poorly // it worked. Quickly I realized the problem wasn't the sensor, it was the // available ping and ultrasonic libraries causing the problem. The NewPing // library totally fixes these problems, adds many new features, and breaths // new life into these very affordable distance sensors. // // FEATURES: // * Works with many different ultrasonic sensors: SR04, SRF05, SRF06, DYP-ME007, URM37 & Parallax PING))). // * Compatible with the entire Arduino line-up (and clones), Teensy family (including $19 96Mhz 32 bit Teensy 3.2) and non-AVR microcontrollers. // * Interface with all but the SRF06 sensor using only one Arduino pin. // * Doesn't lag for a full second if no ping/echo is received. // * Ping sensors consistently and reliably at up to 30 times per second. // * Timer interrupt method for event-driven sketches. // * Built-in digital filter method ping_median() for easy error correction. // * Uses port registers for a faster pin interface and smaller code size. // * Allows you to set a maximum distance where pings beyond that distance are read as no ping "clear". // * Ease of using multiple sensors (example sketch with 15 sensors). // * More accurate distance calculation (cm, inches & uS). // * Doesn't use pulseIn, which is slow and gives incorrect results with some ultrasonic sensor models. // * Actively developed with features being added and bugs/issues addressed. // // CONSTRUCTOR: // NewPing sonar(trigger_pin, echo_pin [, max_cm_distance]) // trigger_pin & echo_pin - Arduino pins connected to sensor trigger and echo. // NOTE: To use the same Arduino pin for trigger and echo, specify the same pin for both values. // max_cm_distance - [Optional] Maximum distance you wish to sense. Default=500cm. // // METHODS: // sonar.ping([max_cm_distance]) - Send a ping and get the echo time (in microseconds) as a result. [max_cm_distance] allows you to optionally set a new max distance. // sonar.ping_in([max_cm_distance]) - Send a ping and get the distance in whole inches. [max_cm_distance] allows you to optionally set a new max distance. // sonar.ping_cm([max_cm_distance]) - Send a ping and get the distance in whole centimeters. [max_cm_distance] allows you to optionally set a new max distance. // sonar.ping_median(iterations [, max_cm_distance]) - Do multiple pings (default=5), discard out of range pings and return median in microseconds. [max_cm_distance] allows you to optionally set a new max distance. // NewPing::convert_in(echoTime) - Convert echoTime from microseconds to inches (rounds to nearest inch). // NewPing::convert_cm(echoTime) - Convert echoTime from microseconds to centimeters (rounds to nearest cm). // sonar.ping_timer(function [, max_cm_distance]) - Send a ping and call function to test if ping is complete. [max_cm_distance] allows you to optionally set a new max distance. // sonar.check_timer() - Check if ping has returned within the set distance limit. // NewPing::timer_us(frequency, function) - Call function every frequency microseconds. // NewPing::timer_ms(frequency, function) - Call function every frequency milliseconds. // NewPing::timer_stop() - Stop the timer. // // HISTORY: // 07/30/2016 v1.8 - Added support for non-AVR microcontrollers. For non-AVR // microcontrollers, advanced ping_timer() timer methods are disabled due to // inconsistencies or no support at all between platforms. However, standard // ping methods are all supported. Added new optional variable to ping(), // ping_in(), ping_cm(), ping_median(), and ping_timer() methods which allows // you to set a new maximum distance for each ping. Added support for the // ATmega16, ATmega32 and ATmega8535 microcontrollers. Changed convert_cm() // and convert_in() methods to static members. You can now call them without // an object. For example: cm = NewPing::convert_cm(distance); // // 09/29/2015 v1.7 - Removed support for the Arduino Due and Zero because // they're both 3.3 volt boards and are not 5 volt tolerant while the HC-SR04 // is a 5 volt sensor. Also, the Due and Zero don't support pin manipulation // compatibility via port registers which can be done (see the Teensy 3.2). // // 06/17/2014 v1.6 - Corrected delay between pings when using ping_median() // method. Added support for the URM37 sensor (must change URM37_ENABLED from // false to true). Added support for Arduino microcontrollers like the $20 // 32 bit ARM Cortex-M4 based Teensy 3.2. Added automatic support for the // Atmel ATtiny family of microcontrollers. Added timer support for the // ATmega8 microcontroller. Rounding disabled by default, reduces compiled // code size (can be turned on with ROUNDING_ENABLED switch). Added // TIMER_ENABLED switch to get around compile-time "__vector_7" errors when // using the Tone library, or you can use the toneAC, NewTone or // TimerFreeTone libraries: https://bitbucket.org/teckel12/arduino-toneac/ // Other speed and compiled size optimizations. // // 08/15/2012 v1.5 - Added ping_median() method which does a user specified // number of pings (default=5) and returns the median ping in microseconds // (out of range pings ignored). This is a very effective digital filter. // Optimized for smaller compiled size (even smaller than sketches that // don't use a library). // // 07/14/2012 v1.4 - Added support for the Parallax PING)))� sensor. Interface // with all but the SRF06 sensor using only one Arduino pin. You can also // interface with the SRF06 using one pin if you install a 0.1uf capacitor // on the trigger and echo pins of the sensor then tie the trigger pin to // the Arduino pin (doesn't work with Teensy). To use the same Arduino pin // for trigger and echo, specify the same pin for both values. Various bug // fixes. // // 06/08/2012 v1.3 - Big feature addition, event-driven ping! Uses Timer2 // interrupt, so be mindful of PWM or timing conflicts messing with Timer2 // may cause (namely PWM on pins 3 & 11 on Arduino, PWM on pins 9 and 10 on // Mega, and Tone library). Simple to use timer interrupt functions you can // use in your sketches totally unrelated to ultrasonic sensors (don't use if // you're also using NewPing's ping_timer because both use Timer2 interrupts). // Loop counting ping method deleted in favor of timing ping method after // inconsistent results kept surfacing with the loop timing ping method. // Conversion to cm and inches now rounds to the nearest cm or inch. Code // optimized to save program space and fixed a couple minor bugs here and // there. Many new comments added as well as line spacing to group code // sections for better source readability. // // 05/25/2012 v1.2 - Lots of code clean-up thanks to Arduino Forum members. // Rebuilt the ping timing code from scratch, ditched the pulseIn code as it // doesn't give correct results (at least with ping sensors). The NewPing // library is now VERY accurate and the code was simplified as a bonus. // Smaller and faster code as well. Fixed some issues with very close ping // results when converting to inches. All functions now return 0 only when // there's no ping echo (out of range) and a positive value for a successful // ping. This can effectively be used to detect if something is out of range // or in-range and at what distance. Now compatible with Arduino 0023. // // 05/16/2012 v1.1 - Changed all I/O functions to use low-level port registers // for ultra-fast and lean code (saves from 174 to 394 bytes). Tested on both // the Arduino Uno and Teensy 2.0 but should work on all Arduino-based // platforms because it calls standard functions to retrieve port registers // and bit masks. Also made a couple minor fixes to defines. // // 05/15/2012 v1.0 - Initial release. // --------------------------------------------------------------------------- #ifndef NewPing_h #define NewPing_h #if defined (ARDUINO) && ARDUINO >= 100 #include <Arduino.h> #else #include <WProgram.h> #include <pins_arduino.h> #endif #if defined (__AVR__) #include <avr/io.h> #include <avr/interrupt.h> #endif // Shouldn't need to change these values unless you have a specific need to do so. #define MAX_SENSOR_DISTANCE 500 // Maximum sensor distance can be as high as 500cm, no reason to wait for ping longer than sound takes to travel this distance and back. Default=500 #define US_ROUNDTRIP_CM 57 // Microseconds (uS) it takes sound to travel round-trip 1cm (2cm total), uses integer to save compiled code space. Default=57 #define US_ROUNDTRIP_IN 146 // Microseconds (uS) it takes sound to travel round-trip 1 inch (2 inches total), uses integer to save compiled code space. Defalult=146 #define ONE_PIN_ENABLED true // Set to "false" to disable one pin mode which saves around 14-26 bytes of binary size. Default=true #define ROUNDING_ENABLED false // Set to "true" to enable distance rounding which also adds 64 bytes to binary size. Default=false #define URM37_ENABLED false // Set to "true" to enable support for the URM37 sensor in PWM mode. Default=false // GG Disabled to avoid timer useage #define TIMER_ENABLED false // Set to "false" to disable the timer ISR (if getting "__vector_7" compile errors set this to false). Default=true // Probably shouldn't change these values unless you really know what you're doing. #define NO_ECHO 0 // Value returned if there's no ping echo within the specified MAX_SENSOR_DISTANCE or max_cm_distance. Default=0 #define MAX_SENSOR_DELAY 5800 // Maximum uS it takes for sensor to start the ping. Default=5800 #define ECHO_TIMER_FREQ 24 // Frequency to check for a ping echo (every 24uS is about 0.4cm accuracy). Default=24 #define PING_MEDIAN_DELAY 29000 // Microsecond delay between pings in the ping_median method. Default=29000 #define PING_OVERHEAD 5 // Ping overhead in microseconds (uS). Default=5 #define PING_TIMER_OVERHEAD 13 // Ping timer overhead in microseconds (uS). Default=13 #if URM37_ENABLED == true #undef US_ROUNDTRIP_CM #undef US_ROUNDTRIP_IN #define US_ROUNDTRIP_CM 50 // Every 50uS PWM signal is low indicates 1cm distance. Default=50 #define US_ROUNDTRIP_IN 127 // If 50uS is 1cm, 1 inch would be 127uS (50 x 2.54 = 127). Default=127 #endif // Conversion from uS to distance (round result to nearest cm or inch). #define NewPingConvert(echoTime, conversionFactor) (max(((unsigned int)echoTime + conversionFactor / 2) / conversionFactor, (echoTime ? 1 : 0))) // Detect non-AVR microcontrollers (Teensy 3.x, Arduino DUE, etc.) and don't use port registers or timer interrupts as required. #if (defined (__arm__) && defined (TEENSYDUINO)) #undef PING_OVERHEAD #define PING_OVERHEAD 1 #undef PING_TIMER_OVERHEAD #define PING_TIMER_OVERHEAD 1 #define DO_BITWISE true #elif !defined (__AVR__) #undef PING_OVERHEAD #define PING_OVERHEAD 1 #undef PING_TIMER_OVERHEAD #define PING_TIMER_OVERHEAD 1 #undef TIMER_ENABLED #define TIMER_ENABLED false #define DO_BITWISE false #else #define DO_BITWISE true #endif // Disable the timer interrupts when using ATmega128 and all ATtiny microcontrollers. #if defined (__AVR_ATmega128__) || defined (__AVR_ATtiny24__) || defined (__AVR_ATtiny44__) || defined (__AVR_ATtiny84__) || defined (__AVR_ATtiny25__) || defined (__AVR_ATtiny45__) || defined (__AVR_ATtiny85__) || defined (__AVR_ATtiny261__) || defined (__AVR_ATtiny461__) || defined (__AVR_ATtiny861__) || defined (__AVR_ATtiny43U__) #undef TIMER_ENABLED #define TIMER_ENABLED false #endif // Define timers when using ATmega8, ATmega16, ATmega32 and ATmega8535 microcontrollers. #if defined (__AVR_ATmega8__) || defined (__AVR_ATmega16__) || defined (__AVR_ATmega32__) || defined (__AVR_ATmega8535__) #define OCR2A OCR2 #define TIMSK2 TIMSK #define OCIE2A OCIE2 #endif class NewPing { public: NewPing(uint8_t trigger_pin, uint8_t echo_pin, unsigned int max_cm_distance = MAX_SENSOR_DISTANCE); unsigned int ping(unsigned int max_cm_distance = 0); unsigned long ping_cm(unsigned int max_cm_distance = 0); unsigned long ping_in(unsigned int max_cm_distance = 0); unsigned long ping_median(uint8_t it = 5, unsigned int max_cm_distance = 0); static unsigned int convert_cm(unsigned int echoTime); static unsigned int convert_in(unsigned int echoTime); #if TIMER_ENABLED == true void ping_timer(void (*userFunc)(void), unsigned int max_cm_distance = 0); boolean check_timer(); unsigned long ping_result; static void timer_us(unsigned int frequency, void (*userFunc)(void)); static void timer_ms(unsigned long frequency, void (*userFunc)(void)); static void timer_stop(); #endif private: boolean ping_trigger(); void set_max_distance(unsigned int max_cm_distance); #if TIMER_ENABLED == true boolean ping_trigger_timer(unsigned int trigger_delay); boolean ping_wait_timer(); static void timer_setup(); static void timer_ms_cntdwn(); #endif #if DO_BITWISE == true uint8_t _triggerBit; uint8_t _echoBit; volatile uint8_t *_triggerOutput; volatile uint8_t *_echoInput; volatile uint8_t *_triggerMode; #else uint8_t _triggerPin; uint8_t _echoPin; #endif unsigned int _maxEchoTime; unsigned long _max_time; }; #endif
[ "jj@gioorgi.com" ]
jj@gioorgi.com
3c4ffcf266280b2663487de21cc002dd3bdb69da
4f267de5c3abde3eaf3a7b89d71cd10d3abad87c
/ThirdParty/Libigl/igl/copyleft/cgal/slice.cpp
2e274a2f2caeca72b19b6c5dbba0eeb67a9b27bc
[ "GPL-1.0-or-later", "MPL-2.0", "MIT" ]
permissive
MeshGeometry/IogramSource
5f627ca3102e85cd4f16801f5ee67557605eb506
a82302ccf96177dde3358456c6dc8e597c30509c
refs/heads/master
2022-02-10T19:19:18.984763
2018-01-31T20:09:08
2018-01-31T20:09:08
83,458,576
29
17
MIT
2022-02-01T13:45:33
2017-02-28T17:07:02
C++
UTF-8
C++
false
false
453
cpp
// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2017 Alec Jacobson <alecjacobson@gmail.com> // // This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at http://mozilla.org/MPL/2.0/. #include "../../slice.h" #ifdef IGL_STATIC_LIBRARY #undef IGL_STATIC_LIBRARY #include "../../slice.cpp" #endif
[ "daniel@meshconsultants.ca" ]
daniel@meshconsultants.ca
c5df8b514b1effb306dbc557e536492eeb618a88
6f68f4bab02b090d521e50a66e882f011f597d2c
/src/CommandBase.h
d9c969f5abf7fe5ffd87d8f47954fae4040a0ffe
[]
no_license
Robotics-Team-5268/RobotCode2016
8f004c4a8a2db10e35ec5a2ebb9296b64bc19363
8afb3339263d2e5ecef9dc94c476cf125996df01
refs/heads/master
2021-05-04T10:35:29.156947
2017-01-19T22:36:46
2017-01-19T22:36:46
51,608,242
0
0
null
null
null
null
UTF-8
C++
false
false
979
h
#ifndef COMMAND_BASE_H #define COMMAND_BASE_H #include <string> #include "Commands/Command.h" #include "OI.h" #include "WPILib.h" #include "Subsystems/Drive.h" #include "Subsystems/Fetcher.h" #include "Subsystems/LEDController.h" #include "Subsystems/Shooter.h" #include "Subsystems/Targeting.h" /** * The base for all commands. All atomic commands should subclass CommandBase. * CommandBase stores creates and stores each control system. To access a * subsystem elsewhere in your code in your code use CommandBase.examplesubsystem */ class CommandBase: public Command { public: CommandBase(const std::string &name); CommandBase(); static void init(); // Create a single static instance of all of your subsystems static std::unique_ptr<OI> oi; static std::unique_ptr<Drive> drive; static std::unique_ptr<Fetcher> fetcher; static std::unique_ptr<LEDController> leds; static std::unique_ptr<Shooter> shooter; static std::unique_ptr<Targeting> targeting; }; #endif
[ "benjsmith314@gmail.com" ]
benjsmith314@gmail.com
bfef670d697bce4810a624fa90a3243baf7320fc
46f53e9a564192eed2f40dc927af6448f8608d13
/content/browser/renderer_host/render_view_host_delegate.cc
bc72dcdfef832d464629d309bdd0ceb47bc2f75d
[ "BSD-3-Clause" ]
permissive
sgraham/nope
deb2d106a090d71ae882ac1e32e7c371f42eaca9
f974e0c234388a330aab71a3e5bbf33c4dcfc33c
refs/heads/master
2022-12-21T01:44:15.776329
2015-03-23T17:25:47
2015-03-23T17:25:47
32,344,868
2
2
null
null
null
null
UTF-8
C++
false
false
1,255
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/renderer_host/render_view_host_delegate.h" #include "content/public/common/web_preferences.h" #include "url/gurl.h" namespace content { RenderViewHostDelegateView* RenderViewHostDelegate::GetDelegateView() { return NULL; } bool RenderViewHostDelegate::OnMessageReceived(RenderViewHost* render_view_host, const IPC::Message& message) { return false; } WebContents* RenderViewHostDelegate::GetAsWebContents() { return NULL; } bool RenderViewHostDelegate::IsFullscreenForCurrentTab() const { return false; } SessionStorageNamespace* RenderViewHostDelegate::GetSessionStorageNamespace( SiteInstance* instance) { return NULL; } SessionStorageNamespaceMap RenderViewHostDelegate::GetSessionStorageNamespaceMap() { return SessionStorageNamespaceMap(); } FrameTree* RenderViewHostDelegate::GetFrameTree() { return NULL; } bool RenderViewHostDelegate::IsNeverVisible() { return false; } bool RenderViewHostDelegate::IsVirtualKeyboardRequested() { return false; } } // namespace content
[ "scottmg@chromium.org" ]
scottmg@chromium.org
7b5b09d023062c423cbca1feb920bf4c7a0a3d7b
f6ac5b1183e384096d1842c52cf723d28d05cfce
/LudumDare/LudumDare/MenueScene.h
f2163e877da396031bde46a4ad30e8b962a32a73
[]
no_license
manimax3/LudumDare
64f0acaaa156eb1d0c7303cf89da33bd09998eca
af530fcca635ed0085a275d41692a05291fee7c1
refs/heads/master
2021-01-10T07:50:11.002620
2015-12-13T15:03:44
2015-12-13T15:03:44
47,869,292
0
0
null
null
null
null
UTF-8
C++
false
false
254
h
#pragma once #include "Scene.h" class MenueScene : public Scene { public: MenueScene(); ~MenueScene(); void handleInput(sf::Event &event); void update(sf::Time &frameTime); void render(sf::RenderWindow &window); Scene* unload(); void load(); };
[ "manimax3@hotmail.de" ]
manimax3@hotmail.de
304e22f7894f9581c8343a8641bd77d866fd1d01
e380a9ae0eeda33fd81768541c1c71e45de430e3
/gui/TextOutput.cpp
0f73ce74bb4dfd4b5f8b925faf28e4d026846290
[]
no_license
ColdIV/math-tool
1897a6ca1257518873d59831d0a997bdcb1e2ecf
a3ebee8e475cf564427a6aec1e80b0838d962dba
refs/heads/master
2023-01-02T14:28:23.372602
2020-10-21T19:34:55
2020-10-21T19:34:55
246,321,879
0
0
null
2020-10-15T22:52:21
2020-03-10T14:23:59
C++
UTF-8
C++
false
false
697
cpp
#include <sstream> #include "TextOutput.h" #include "debug.h" #include "render_text.h" TextOutput::TextOutput( SDL_Window *w, SDL_Renderer *r, int x1, int y1, int x2, int y2, std::string text, int fontSize ) : Widget(w, r, x1, y1, x2, y2) { this->text = text; this->fontSize = fontSize; } void TextOutput::draw(){ Widget::draw(); debug("drawing in textoutput"); render_text( this->renderer, this->xStart, this->yStart, this->xEnd, this->yEnd, this->fontSize, this->text ); // reset color SDL_SetRenderDrawColor(this->renderer, 0, 0, 0, 255); } std::string TextOutput::getText() { return this->text; } void TextOutput::setText(std::string newText) { this->text = newText; }
[ "amazing.laser.sharks@gmail.com" ]
amazing.laser.sharks@gmail.com
20d2c62e93594fb4a84af29be681c51294810552
4ab0daf5550475bfd1b7a6ff3aa2bbdd88fbc753
/develop/NFComm/NetPlugin/LocalNetServer.h
80fe56be05be22948c0edcd177bf691e999b382d
[]
no_license
nincool/ServerEngine
16d6b0b518337773344af5a9bbfe336871de37a0
ee0b8e07fdecdab939551dfc9e7a07e7b9903cf1
refs/heads/master
2021-04-17T08:24:31.367237
2020-02-04T02:23:32
2020-02-04T02:23:32
249,428,869
1
1
null
2020-03-23T12:47:38
2020-03-23T12:47:37
null
GB18030
C++
false
false
681
h
///-------------------------------------------------------------------- /// 文件名: LocalNetServer.h /// 内 容: 本地内存服务器对象 /// 说 明: /// 创建日期: 2019年12月28日 /// 创建人: 肖庆军 /// 版权所有: 血帆海盗团 ///-------------------------------------------------------------------- #ifndef __H_LocalNetServer_H__ #define __H_LocalNetServer_H__ #include <string> #include <set> class LocalNetServer { public: static void AddLocalServer(const std::string& ip, const int port); static bool IsLocalServer(const std::string& ip, const int port); private: static std::set<std::string> mServerSet; }; #endif //__H_LocalNetServer_H__
[ "1550051771@qq.com" ]
1550051771@qq.com
5de70940c83f62105fc825b156a818659ac45ebc
0d0e78c6262417fb1dff53901c6087b29fe260a0
/captcha/include/tencentcloud/captcha/v20190722/model/CaptchaOperDataLoadTimeUnit.h
722075c32b83712362bce0c2beba5c2146254761
[ "Apache-2.0" ]
permissive
li5ch/tencentcloud-sdk-cpp
ae35ffb0c36773fd28e1b1a58d11755682ade2ee
12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4
refs/heads/master
2022-12-04T15:33:08.729850
2020-07-20T00:52:24
2020-07-20T00:52:24
281,135,686
1
0
Apache-2.0
2020-07-20T14:14:47
2020-07-20T14:14:46
null
UTF-8
C++
false
false
4,454
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TENCENTCLOUD_CAPTCHA_V20190722_MODEL_CAPTCHAOPERDATALOADTIMEUNIT_H_ #define TENCENTCLOUD_CAPTCHA_V20190722_MODEL_CAPTCHAOPERDATALOADTIMEUNIT_H_ #include <string> #include <vector> #include <map> #include <tencentcloud/core/utils/rapidjson/document.h> #include <tencentcloud/core/utils/rapidjson/writer.h> #include <tencentcloud/core/utils/rapidjson/stringbuffer.h> #include <tencentcloud/core/AbstractModel.h> namespace TencentCloud { namespace Captcha { namespace V20190722 { namespace Model { /** * 操作数据查询方法DescribeCaptchaOperData 的返回结果,安全验证码加载耗时type = 1 */ class CaptchaOperDataLoadTimeUnit : public AbstractModel { public: CaptchaOperDataLoadTimeUnit(); ~CaptchaOperDataLoadTimeUnit() = default; void ToJsonObject(rapidjson::Value &value, rapidjson::Document::AllocatorType& allocator) const; CoreInternalOutcome Deserialize(const rapidjson::Value &value); /** * 获取时间 * @return DateKey 时间 */ std::string GetDateKey() const; /** * 设置时间 * @param DateKey 时间 */ void SetDateKey(const std::string& _dateKey); /** * 判断参数 DateKey 是否已赋值 * @return DateKey 是否已赋值 */ bool DateKeyHasBeenSet() const; /** * 获取Market加载时间 * @return MarketLoadTime Market加载时间 */ double GetMarketLoadTime() const; /** * 设置Market加载时间 * @param MarketLoadTime Market加载时间 */ void SetMarketLoadTime(const double& _marketLoadTime); /** * 判断参数 MarketLoadTime 是否已赋值 * @return MarketLoadTime 是否已赋值 */ bool MarketLoadTimeHasBeenSet() const; /** * 获取AppId加载时间 * @return AppIdLoadTime AppId加载时间 */ double GetAppIdLoadTime() const; /** * 设置AppId加载时间 * @param AppIdLoadTime AppId加载时间 */ void SetAppIdLoadTime(const double& _appIdLoadTime); /** * 判断参数 AppIdLoadTime 是否已赋值 * @return AppIdLoadTime 是否已赋值 */ bool AppIdLoadTimeHasBeenSet() const; private: /** * 时间 */ std::string m_dateKey; bool m_dateKeyHasBeenSet; /** * Market加载时间 */ double m_marketLoadTime; bool m_marketLoadTimeHasBeenSet; /** * AppId加载时间 */ double m_appIdLoadTime; bool m_appIdLoadTimeHasBeenSet; }; } } } } #endif // !TENCENTCLOUD_CAPTCHA_V20190722_MODEL_CAPTCHAOPERDATALOADTIMEUNIT_H_
[ "zhiqiangfan@tencent.com" ]
zhiqiangfan@tencent.com
3224c177454cb63eda2b5cd0076ffd3fb27346a1
c9cdb8772eb74c832b703624f6395f1e8b84c09e
/tools/CondLangLR1/Main/lang/LangParser.cpp
2c29e02fd1f3efae1602a30a00fc4ad11a6e9239
[ "BSL-1.0" ]
permissive
SergeyStrukov/CCore
70799f40d0ecfec75ab9298f60e7396413931800
509bd439ae5621603f9fbe8e8b3ca03721ac283b
refs/heads/master
2021-01-17T17:01:19.899215
2015-08-12T18:41:25
2015-08-12T18:41:25
3,891,233
6
1
null
null
null
null
UTF-8
C++
false
false
2,662
cpp
/* LangParser.cpp */ //---------------------------------------------------------------------------------------- // // Project: CondLangLR1 1.00 // // License: Boost Software License - Version 1.0 - August 17th, 2003 // // see http://www.boost.org/LICENSE_1_0.txt or the local copy // // Copyright (c) 2013 Sergey Strukov. All rights reserved. // //---------------------------------------------------------------------------------------- #include "LangParser.h" namespace App { namespace LangParser { /* functions */ ulen ScanName(StrLen text) { if( +text && GetCharClass(text[0])==Char_Letter ) return TokenizerBase::ScanLetterDigit(text); return 0; } /* class CharProp */ CharProp::CharProp() { setSet(GetDigitChars(),Char_Digit); setSet(GetCLetterChars(),Char_Letter); setSet("!,{}()&|=<>:",Char_Punct); setSet("/",Char_Comment); setSet(GetSpaceChars(),Char_Space); } const CharProp CharProp::Object; /* enum TokenClass */ const char * GetTextDesc(TokenClass tc) { switch( tc ) { case Token_Punct : return "punct"; case Token_Name : return "name"; case Token_Visible : return "visible"; case Token_Space : return "space"; case Token_ShortComment : return "short comment"; case Token_LongComment : return "long comment"; case Token_END : return "END"; default: return "other"; } } /* struct TokenizerBase */ auto TokenizerBase::ScanLongComment(StrLen text) -> Scan { ulen len=text.len; for(text+=2; text.len>=2 ;++text) { if( text[0]=='*' && text[1]=='/' ) { return len-text.len+2; } } return BadScan(len); } ulen TokenizerBase::ScanShortComment(StrLen text) { ulen len=text.len; for(text+=2; +text && !CharIsEOL(*text) ;++text); return len-text.len; } ulen TokenizerBase::ScanLetterDigit(StrLen text) { return ScanExtraChars(text,CharIsLetterDigit); } ulen TokenizerBase::ScanSpace(StrLen text) { return ScanExtraChars(text,CharIsSpace<char>); } ulen TokenizerBase::ScanVisible(StrLen text) { return ScanExtraChars(text,CharIsVisible<char>); } ulen TokenizerBase::ScanNameExt(StrLen text) { if( text.len<2 || text[0]!='@' || GetCharClass(text[1])!=Char_Letter ) return 0; ++text; return 1+ScanLetterDigit(text); } /* struct CondPaserBase */ const CondPaserBase::State CondPaserBase::StateTable[52]= { #include "../Cond/StateTable.gen.cpp" }; } // namespace LangParser } // namespace App
[ "sshimnick@hotmail.com" ]
sshimnick@hotmail.com
18e5147735490fb4b9b68eba35e220d51c051c64
a92b18defb50c5d1118a11bc364f17b148312028
/src/prod/src/api/definitions/IBackupRestoreService.h
cb2929d09d02a521aa9815b3b62d916b01df14e1
[ "MIT" ]
permissive
KDSBest/service-fabric
34694e150fde662286e25f048fb763c97606382e
fe61c45b15a30fb089ad891c68c893b3a976e404
refs/heads/master
2023-01-28T23:19:25.040275
2020-11-30T11:11:58
2020-11-30T11:11:58
301,365,601
1
0
MIT
2020-11-30T11:11:59
2020-10-05T10:05:53
null
UTF-8
C++
false
false
2,298
h
// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ #pragma once namespace Api { class IBackupRestoreService { public: virtual ~IBackupRestoreService() {}; virtual Common::AsyncOperationSPtr BeginGetBackupSchedulingPolicy( FABRIC_BACKUP_PARTITION_INFO * partitionInfo, Common::TimeSpan const timeoutMilliseconds, Common::AsyncCallback const &callback, Common::AsyncOperationSPtr const &parent) = 0; virtual Common::ErrorCode EndGetBackupSchedulingPolicy( Common::AsyncOperationSPtr const &operation, __out IFabricGetBackupSchedulePolicyResult ** policyResult) = 0; virtual Common::AsyncOperationSPtr BeginGetRestorePointDetails( FABRIC_BACKUP_PARTITION_INFO * partitionInfo, Common::TimeSpan const timeoutMilliseconds, Common::AsyncCallback const &callback, Common::AsyncOperationSPtr const &parent) = 0; virtual Common::ErrorCode EndGetGetRestorePointDetails( Common::AsyncOperationSPtr const &operation, __out IFabricGetRestorePointDetailsResult ** restorePointResult) = 0; virtual Common::AsyncOperationSPtr BeginReportBackupOperationResult( FABRIC_BACKUP_OPERATION_RESULT * operationResult, Common::TimeSpan const timeoutMilliseconds, Common::AsyncCallback const &callback, Common::AsyncOperationSPtr const &parent) = 0; virtual Common::ErrorCode EndReportBackupOperationResult( Common::AsyncOperationSPtr const &operation) = 0; virtual Common::AsyncOperationSPtr BeginReportRestoreOperationResult( FABRIC_RESTORE_OPERATION_RESULT * operationResult, Common::TimeSpan const timeoutMilliseconds, Common::AsyncCallback const &callback, Common::AsyncOperationSPtr const &parent) = 0; virtual Common::ErrorCode EndReportRestoreOperationResult( Common::AsyncOperationSPtr const &operation) = 0; }; }
[ "noreply-sfteam@microsoft.com" ]
noreply-sfteam@microsoft.com
1813bdb05247bf1bb801183f7950d4531ea8af26
6eed9493176592ea08ef5c5522421a6596ab262d
/src/coins.cpp
7c961614a8ec5f34eec1fec2bb88a2ebb37f2daf
[ "MIT" ]
permissive
bitstakecore/bitstake
30de7da408d3a9280d79e341d6fb8c9525315217
026c006222ca08a7137db7772961f2462ef45d03
refs/heads/master
2020-04-24T02:14:44.973100
2019-02-23T10:19:30
2019-02-23T10:19:30
171,630,007
0
0
null
null
null
null
UTF-8
C++
false
false
9,720
cpp
// Copyright (c) 2012-2014 The Bitcoin developers // Copyright (c) 2015-2018 The PIVX developers // Copyright (c) 2018 The BS Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "coins.h" #include "random.h" #include <assert.h> /** * calculate number of bytes for the bitmask, and its number of non-zero bytes * each bit in the bitmask represents the availability of one output, but the * availabilities of the first two outputs are encoded separately */ void CCoins::CalcMaskSize(unsigned int& nBytes, unsigned int& nNonzeroBytes) const { unsigned int nLastUsedByte = 0; for (unsigned int b = 0; 2 + b * 8 < vout.size(); b++) { bool fZero = true; for (unsigned int i = 0; i < 8 && 2 + b * 8 + i < vout.size(); i++) { if (!vout[2 + b * 8 + i].IsNull()) { fZero = false; continue; } } if (!fZero) { nLastUsedByte = b + 1; nNonzeroBytes++; } } nBytes += nLastUsedByte; } bool CCoins::Spend(const COutPoint& out, CTxInUndo& undo) { if (out.n >= vout.size()) return false; if (vout[out.n].IsNull()) return false; undo = CTxInUndo(vout[out.n]); vout[out.n].SetNull(); Cleanup(); if (vout.size() == 0) { undo.nHeight = nHeight; undo.fCoinBase = fCoinBase; undo.fCoinStake = fCoinStake; undo.nVersion = this->nVersion; } return true; } bool CCoins::Spend(int nPos) { CTxInUndo undo; COutPoint out(0, nPos); return Spend(out, undo); } bool CCoinsView::GetCoins(const uint256& txid, CCoins& coins) const { return false; } bool CCoinsView::HaveCoins(const uint256& txid) const { return false; } uint256 CCoinsView::GetBestBlock() const { return uint256(0); } bool CCoinsView::BatchWrite(CCoinsMap& mapCoins, const uint256& hashBlock) { return false; } bool CCoinsView::GetStats(CCoinsStats& stats) const { return false; } CCoinsViewBacked::CCoinsViewBacked(CCoinsView* viewIn) : base(viewIn) {} bool CCoinsViewBacked::GetCoins(const uint256& txid, CCoins& coins) const { return base->GetCoins(txid, coins); } bool CCoinsViewBacked::HaveCoins(const uint256& txid) const { return base->HaveCoins(txid); } uint256 CCoinsViewBacked::GetBestBlock() const { return base->GetBestBlock(); } void CCoinsViewBacked::SetBackend(CCoinsView& viewIn) { base = &viewIn; } bool CCoinsViewBacked::BatchWrite(CCoinsMap& mapCoins, const uint256& hashBlock) { return base->BatchWrite(mapCoins, hashBlock); } bool CCoinsViewBacked::GetStats(CCoinsStats& stats) const { return base->GetStats(stats); } CCoinsKeyHasher::CCoinsKeyHasher() : salt(GetRandHash()) {} CCoinsViewCache::CCoinsViewCache(CCoinsView* baseIn) : CCoinsViewBacked(baseIn), hasModifier(false), hashBlock(0) {} CCoinsViewCache::~CCoinsViewCache() { assert(!hasModifier); } CCoinsMap::const_iterator CCoinsViewCache::FetchCoins(const uint256& txid) const { CCoinsMap::iterator it = cacheCoins.find(txid); if (it != cacheCoins.end()) return it; CCoins tmp; if (!base->GetCoins(txid, tmp)) return cacheCoins.end(); CCoinsMap::iterator ret = cacheCoins.insert(std::make_pair(txid, CCoinsCacheEntry())).first; tmp.swap(ret->second.coins); if (ret->second.coins.IsPruned()) { // The parent only has an empty entry for this txid; we can consider our // version as fresh. ret->second.flags = CCoinsCacheEntry::FRESH; } return ret; } bool CCoinsViewCache::GetCoins(const uint256& txid, CCoins& coins) const { CCoinsMap::const_iterator it = FetchCoins(txid); if (it != cacheCoins.end()) { coins = it->second.coins; return true; } return false; } CCoinsModifier CCoinsViewCache::ModifyCoins(const uint256& txid) { assert(!hasModifier); std::pair<CCoinsMap::iterator, bool> ret = cacheCoins.insert(std::make_pair(txid, CCoinsCacheEntry())); if (ret.second) { if (!base->GetCoins(txid, ret.first->second.coins)) { // The parent view does not have this entry; mark it as fresh. ret.first->second.coins.Clear(); ret.first->second.flags = CCoinsCacheEntry::FRESH; } else if (ret.first->second.coins.IsPruned()) { // The parent view only has a pruned entry for this; mark it as fresh. ret.first->second.flags = CCoinsCacheEntry::FRESH; } } // Assume that whenever ModifyCoins is called, the entry will be modified. ret.first->second.flags |= CCoinsCacheEntry::DIRTY; return CCoinsModifier(*this, ret.first); } const CCoins* CCoinsViewCache::AccessCoins(const uint256& txid) const { CCoinsMap::const_iterator it = FetchCoins(txid); if (it == cacheCoins.end()) { return NULL; } else { return &it->second.coins; } } bool CCoinsViewCache::HaveCoins(const uint256& txid) const { CCoinsMap::const_iterator it = FetchCoins(txid); // We're using vtx.empty() instead of IsPruned here for performance reasons, // as we only care about the case where a transaction was replaced entirely // in a reorganization (which wipes vout entirely, as opposed to spending // which just cleans individual outputs). return (it != cacheCoins.end() && !it->second.coins.vout.empty()); } uint256 CCoinsViewCache::GetBestBlock() const { if (hashBlock == uint256(0)) hashBlock = base->GetBestBlock(); return hashBlock; } void CCoinsViewCache::SetBestBlock(const uint256& hashBlockIn) { hashBlock = hashBlockIn; } bool CCoinsViewCache::BatchWrite(CCoinsMap& mapCoins, const uint256& hashBlockIn) { assert(!hasModifier); for (CCoinsMap::iterator it = mapCoins.begin(); it != mapCoins.end();) { if (it->second.flags & CCoinsCacheEntry::DIRTY) { // Ignore non-dirty entries (optimization). CCoinsMap::iterator itUs = cacheCoins.find(it->first); if (itUs == cacheCoins.end()) { if (!it->second.coins.IsPruned()) { // The parent cache does not have an entry, while the child // cache does have (a non-pruned) one. Move the data up, and // mark it as fresh (if the grandparent did have it, we // would have pulled it in at first GetCoins). assert(it->second.flags & CCoinsCacheEntry::FRESH); CCoinsCacheEntry& entry = cacheCoins[it->first]; entry.coins.swap(it->second.coins); entry.flags = CCoinsCacheEntry::DIRTY | CCoinsCacheEntry::FRESH; } } else { if ((itUs->second.flags & CCoinsCacheEntry::FRESH) && it->second.coins.IsPruned()) { // The grandparent does not have an entry, and the child is // modified and being pruned. This means we can just delete // it from the parent. cacheCoins.erase(itUs); } else { // A normal modification. itUs->second.coins.swap(it->second.coins); itUs->second.flags |= CCoinsCacheEntry::DIRTY; } } } CCoinsMap::iterator itOld = it++; mapCoins.erase(itOld); } hashBlock = hashBlockIn; return true; } bool CCoinsViewCache::Flush() { bool fOk = base->BatchWrite(cacheCoins, hashBlock); cacheCoins.clear(); return fOk; } unsigned int CCoinsViewCache::GetCacheSize() const { return cacheCoins.size(); } const CTxOut& CCoinsViewCache::GetOutputFor(const CTxIn& input) const { const CCoins* coins = AccessCoins(input.prevout.hash); assert(coins && coins->IsAvailable(input.prevout.n)); return coins->vout[input.prevout.n]; } CAmount CCoinsViewCache::GetValueIn(const CTransaction& tx) const { if (tx.IsCoinBase()) return 0; //todo are there any security precautions to take here? if (tx.IsZerocoinSpend()) return tx.GetZerocoinSpent(); CAmount nResult = 0; for (unsigned int i = 0; i < tx.vin.size(); i++) nResult += GetOutputFor(tx.vin[i]).nValue; return nResult; } bool CCoinsViewCache::HaveInputs(const CTransaction& tx) const { if (!tx.IsCoinBase() && !tx.IsZerocoinSpend()) { for (unsigned int i = 0; i < tx.vin.size(); i++) { const COutPoint& prevout = tx.vin[i].prevout; const CCoins* coins = AccessCoins(prevout.hash); if (!coins || !coins->IsAvailable(prevout.n)) { return false; } } } return true; } double CCoinsViewCache::GetPriority(const CTransaction& tx, int nHeight) const { if (tx.IsCoinBase() || tx.IsCoinStake()) return 0.0; double dResult = 0.0; for (const CTxIn& txin: tx.vin) { const CCoins* coins = AccessCoins(txin.prevout.hash); assert(coins); if (!coins->IsAvailable(txin.prevout.n)) continue; if (coins->nHeight < nHeight) { dResult += coins->vout[txin.prevout.n].nValue * (nHeight - coins->nHeight); } } return tx.ComputePriority(dResult); } CCoinsModifier::CCoinsModifier(CCoinsViewCache& cache_, CCoinsMap::iterator it_) : cache(cache_), it(it_) { assert(!cache.hasModifier); cache.hasModifier = true; } CCoinsModifier::~CCoinsModifier() { assert(cache.hasModifier); cache.hasModifier = false; it->second.coins.Cleanup(); if ((it->second.flags & CCoinsCacheEntry::FRESH) && it->second.coins.IsPruned()) { cache.cacheCoins.erase(it); } }
[ "admin@bitstake.org" ]
admin@bitstake.org
ab92e5a8a3ea2fcb5bd714da26ff4e6ea7154b59
964819a7517facfc538a7f5eea6d72d8dd3b3875
/src/plugins/controllers/mono_image_controller/mono_image_sensor_filter/mono_image_sensor_filter.cpp
e2df25c3b0553c17e31a12125ea6489505eaf25d
[]
no_license
danielsakhapov/atlas
8c583013ca04670ba3527dafc7c6d59bc9dcca4a
3be11819ae77590c404d2ec0cc45dfb7d9b49129
refs/heads/master
2021-06-12T02:21:48.945065
2021-03-10T20:12:26
2021-03-10T20:12:26
132,591,953
0
0
null
2018-05-09T16:59:27
2018-05-08T10:18:22
null
UTF-8
C++
false
false
37
cpp
#include "mono_image_sensor_filter.h"
[ "danielsakhapov@gmail.com" ]
danielsakhapov@gmail.com
63fec6aebb3b3e8a2e086998cadc76f4d36fe53a
8c096e28b755defa6c60da44d43e060756796d18
/src/test/blockencodings_tests.cpp
6e449314bd13702aabcb6e5df8ab7e7984cfeb14
[ "MIT" ]
permissive
twairgroup/wondercoin
b9599deae3e1acb40dcaa5f5db3fd89985ba9736
c075c2d0c1a4927d9f04d5100106e369a85128e5
refs/heads/master
2022-07-30T05:46:30.125814
2021-06-13T21:08:03
2021-06-13T21:08:03
361,614,184
1
1
MIT
2021-06-13T08:45:10
2021-04-26T04:13:04
C++
UTF-8
C++
false
false
12,438
cpp
// Copyright (c) 2011-2016 The Bitcoin Core developers // Copyright (c) 2021 The Wondercoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "blockencodings.h" #include "consensus/merkle.h" #include "chainparams.h" #include "random.h" #include "test/test_wondercoin.h" #include <boost/test/unit_test.hpp> std::vector<std::pair<uint256, CTransactionRef>> extra_txn; struct RegtestingSetup : public TestingSetup { RegtestingSetup() : TestingSetup(CBaseChainParams::REGTEST) {} }; BOOST_FIXTURE_TEST_SUITE(blockencodings_tests, RegtestingSetup) static CBlock BuildBlockTestCase() { CBlock block; CMutableTransaction tx; tx.vin.resize(1); tx.vin[0].scriptSig.resize(10); tx.vout.resize(1); tx.vout[0].nValue = 42; block.vtx.resize(3); block.vtx[0] = MakeTransactionRef(tx); block.nVersion = 42; block.hashPrevBlock = InsecureRand256(); block.nBits = 0x207fffff; tx.vin[0].prevout.hash = InsecureRand256(); tx.vin[0].prevout.n = 0; block.vtx[1] = MakeTransactionRef(tx); tx.vin.resize(10); for (size_t i = 0; i < tx.vin.size(); i++) { tx.vin[i].prevout.hash = InsecureRand256(); tx.vin[i].prevout.n = 0; } block.vtx[2] = MakeTransactionRef(tx); bool mutated; block.hashMerkleRoot = BlockMerkleRoot(block, &mutated); assert(!mutated); while (!CheckProofOfWork(block.GetHash(), block.nBits, Params().GetConsensus())) ++block.nNonce; return block; } // Number of shared use_counts we expect for a tx we havent touched // == 2 (mempool + our copy from the GetSharedTx call) #define SHARED_TX_OFFSET 2 BOOST_AUTO_TEST_CASE(SimpleRoundTripTest) { CTxMemPool pool; TestMemPoolEntryHelper entry; CBlock block(BuildBlockTestCase()); pool.addUnchecked(block.vtx[2]->GetHash(), entry.FromTx(*block.vtx[2])); BOOST_CHECK_EQUAL(pool.mapTx.find(block.vtx[2]->GetHash())->GetSharedTx().use_count(), SHARED_TX_OFFSET + 0); // Do a simple ShortTxIDs RT { CBlockHeaderAndShortTxIDs shortIDs(block, true); CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << shortIDs; CBlockHeaderAndShortTxIDs shortIDs2; stream >> shortIDs2; PartiallyDownloadedBlock partialBlock(&pool); BOOST_CHECK(partialBlock.InitData(shortIDs2, extra_txn) == READ_STATUS_OK); BOOST_CHECK( partialBlock.IsTxAvailable(0)); BOOST_CHECK(!partialBlock.IsTxAvailable(1)); BOOST_CHECK( partialBlock.IsTxAvailable(2)); BOOST_CHECK_EQUAL(pool.mapTx.find(block.vtx[2]->GetHash())->GetSharedTx().use_count(), SHARED_TX_OFFSET + 1); size_t poolSize = pool.size(); pool.removeRecursive(*block.vtx[2]); BOOST_CHECK_EQUAL(pool.size(), poolSize - 1); CBlock block2; { PartiallyDownloadedBlock tmp = partialBlock; BOOST_CHECK(partialBlock.FillBlock(block2, {}) == READ_STATUS_INVALID); // No transactions partialBlock = tmp; } // Wrong transaction { PartiallyDownloadedBlock tmp = partialBlock; partialBlock.FillBlock(block2, {block.vtx[2]}); // Current implementation doesn't check txn here, but don't require that partialBlock = tmp; } bool mutated; BOOST_CHECK(block.hashMerkleRoot != BlockMerkleRoot(block2, &mutated)); CBlock block3; BOOST_CHECK(partialBlock.FillBlock(block3, {block.vtx[1]}) == READ_STATUS_OK); BOOST_CHECK_EQUAL(block.GetHash().ToString(), block3.GetHash().ToString()); BOOST_CHECK_EQUAL(block.hashMerkleRoot.ToString(), BlockMerkleRoot(block3, &mutated).ToString()); BOOST_CHECK(!mutated); } } class TestHeaderAndShortIDs { // Utility to encode custom CBlockHeaderAndShortTxIDs public: CBlockHeader header; uint64_t nonce; std::vector<uint64_t> shorttxids; std::vector<PrefilledTransaction> prefilledtxn; TestHeaderAndShortIDs(const CBlockHeaderAndShortTxIDs& orig) { CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << orig; stream >> *this; } TestHeaderAndShortIDs(const CBlock& block) : TestHeaderAndShortIDs(CBlockHeaderAndShortTxIDs(block, true)) {} uint64_t GetShortID(const uint256& txhash) const { CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << *this; CBlockHeaderAndShortTxIDs base; stream >> base; return base.GetShortID(txhash); } ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action) { READWRITE(header); READWRITE(nonce); size_t shorttxids_size = shorttxids.size(); READWRITE(VARINT(shorttxids_size)); shorttxids.resize(shorttxids_size); for (size_t i = 0; i < shorttxids.size(); i++) { uint32_t lsb = shorttxids[i] & 0xffffffff; uint16_t msb = (shorttxids[i] >> 32) & 0xffff; READWRITE(lsb); READWRITE(msb); shorttxids[i] = (uint64_t(msb) << 32) | uint64_t(lsb); } READWRITE(prefilledtxn); } }; BOOST_AUTO_TEST_CASE(NonCoinbasePreforwardRTTest) { CTxMemPool pool; TestMemPoolEntryHelper entry; CBlock block(BuildBlockTestCase()); pool.addUnchecked(block.vtx[2]->GetHash(), entry.FromTx(*block.vtx[2])); BOOST_CHECK_EQUAL(pool.mapTx.find(block.vtx[2]->GetHash())->GetSharedTx().use_count(), SHARED_TX_OFFSET + 0); uint256 txhash; // Test with pre-forwarding tx 1, but not coinbase { TestHeaderAndShortIDs shortIDs(block); shortIDs.prefilledtxn.resize(1); shortIDs.prefilledtxn[0] = {1, block.vtx[1]}; shortIDs.shorttxids.resize(2); shortIDs.shorttxids[0] = shortIDs.GetShortID(block.vtx[0]->GetHash()); shortIDs.shorttxids[1] = shortIDs.GetShortID(block.vtx[2]->GetHash()); CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << shortIDs; CBlockHeaderAndShortTxIDs shortIDs2; stream >> shortIDs2; PartiallyDownloadedBlock partialBlock(&pool); BOOST_CHECK(partialBlock.InitData(shortIDs2, extra_txn) == READ_STATUS_OK); BOOST_CHECK(!partialBlock.IsTxAvailable(0)); BOOST_CHECK( partialBlock.IsTxAvailable(1)); BOOST_CHECK( partialBlock.IsTxAvailable(2)); BOOST_CHECK_EQUAL(pool.mapTx.find(block.vtx[2]->GetHash())->GetSharedTx().use_count(), SHARED_TX_OFFSET + 1); CBlock block2; { PartiallyDownloadedBlock tmp = partialBlock; BOOST_CHECK(partialBlock.FillBlock(block2, {}) == READ_STATUS_INVALID); // No transactions partialBlock = tmp; } // Wrong transaction { PartiallyDownloadedBlock tmp = partialBlock; partialBlock.FillBlock(block2, {block.vtx[1]}); // Current implementation doesn't check txn here, but don't require that partialBlock = tmp; } bool mutated; BOOST_CHECK(block.hashMerkleRoot != BlockMerkleRoot(block2, &mutated)); CBlock block3; PartiallyDownloadedBlock partialBlockCopy = partialBlock; BOOST_CHECK(partialBlock.FillBlock(block3, {block.vtx[0]}) == READ_STATUS_OK); BOOST_CHECK_EQUAL(block.GetHash().ToString(), block3.GetHash().ToString()); BOOST_CHECK_EQUAL(block.hashMerkleRoot.ToString(), BlockMerkleRoot(block3, &mutated).ToString()); BOOST_CHECK(!mutated); txhash = block.vtx[2]->GetHash(); block.vtx.clear(); block2.vtx.clear(); block3.vtx.clear(); BOOST_CHECK_EQUAL(pool.mapTx.find(txhash)->GetSharedTx().use_count(), SHARED_TX_OFFSET + 1); // + 1 because of partialBlockCopy. } BOOST_CHECK_EQUAL(pool.mapTx.find(txhash)->GetSharedTx().use_count(), SHARED_TX_OFFSET + 0); } BOOST_AUTO_TEST_CASE(SufficientPreforwardRTTest) { CTxMemPool pool; TestMemPoolEntryHelper entry; CBlock block(BuildBlockTestCase()); pool.addUnchecked(block.vtx[1]->GetHash(), entry.FromTx(*block.vtx[1])); BOOST_CHECK_EQUAL(pool.mapTx.find(block.vtx[1]->GetHash())->GetSharedTx().use_count(), SHARED_TX_OFFSET + 0); uint256 txhash; // Test with pre-forwarding coinbase + tx 2 with tx 1 in mempool { TestHeaderAndShortIDs shortIDs(block); shortIDs.prefilledtxn.resize(2); shortIDs.prefilledtxn[0] = {0, block.vtx[0]}; shortIDs.prefilledtxn[1] = {1, block.vtx[2]}; // id == 1 as it is 1 after index 1 shortIDs.shorttxids.resize(1); shortIDs.shorttxids[0] = shortIDs.GetShortID(block.vtx[1]->GetHash()); CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << shortIDs; CBlockHeaderAndShortTxIDs shortIDs2; stream >> shortIDs2; PartiallyDownloadedBlock partialBlock(&pool); BOOST_CHECK(partialBlock.InitData(shortIDs2, extra_txn) == READ_STATUS_OK); BOOST_CHECK( partialBlock.IsTxAvailable(0)); BOOST_CHECK( partialBlock.IsTxAvailable(1)); BOOST_CHECK( partialBlock.IsTxAvailable(2)); BOOST_CHECK_EQUAL(pool.mapTx.find(block.vtx[1]->GetHash())->GetSharedTx().use_count(), SHARED_TX_OFFSET + 1); CBlock block2; PartiallyDownloadedBlock partialBlockCopy = partialBlock; BOOST_CHECK(partialBlock.FillBlock(block2, {}) == READ_STATUS_OK); BOOST_CHECK_EQUAL(block.GetHash().ToString(), block2.GetHash().ToString()); bool mutated; BOOST_CHECK_EQUAL(block.hashMerkleRoot.ToString(), BlockMerkleRoot(block2, &mutated).ToString()); BOOST_CHECK(!mutated); txhash = block.vtx[1]->GetHash(); block.vtx.clear(); block2.vtx.clear(); BOOST_CHECK_EQUAL(pool.mapTx.find(txhash)->GetSharedTx().use_count(), SHARED_TX_OFFSET + 1); // + 1 because of partialBlockCopy. } BOOST_CHECK_EQUAL(pool.mapTx.find(txhash)->GetSharedTx().use_count(), SHARED_TX_OFFSET + 0); } BOOST_AUTO_TEST_CASE(EmptyBlockRoundTripTest) { CTxMemPool pool; CMutableTransaction coinbase; coinbase.vin.resize(1); coinbase.vin[0].scriptSig.resize(10); coinbase.vout.resize(1); coinbase.vout[0].nValue = 42; CBlock block; block.vtx.resize(1); block.vtx[0] = MakeTransactionRef(std::move(coinbase)); block.nVersion = 42; block.hashPrevBlock = InsecureRand256(); block.nBits = 0x207fffff; bool mutated; block.hashMerkleRoot = BlockMerkleRoot(block, &mutated); assert(!mutated); while (!CheckProofOfWork(block.GetHash(), block.nBits, Params().GetConsensus())) ++block.nNonce; // Test simple header round-trip with only coinbase { CBlockHeaderAndShortTxIDs shortIDs(block, false); CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << shortIDs; CBlockHeaderAndShortTxIDs shortIDs2; stream >> shortIDs2; PartiallyDownloadedBlock partialBlock(&pool); BOOST_CHECK(partialBlock.InitData(shortIDs2, extra_txn) == READ_STATUS_OK); BOOST_CHECK(partialBlock.IsTxAvailable(0)); CBlock block2; std::vector<CTransactionRef> vtx_missing; BOOST_CHECK(partialBlock.FillBlock(block2, vtx_missing) == READ_STATUS_OK); BOOST_CHECK_EQUAL(block.GetHash().ToString(), block2.GetHash().ToString()); BOOST_CHECK_EQUAL(block.hashMerkleRoot.ToString(), BlockMerkleRoot(block2, &mutated).ToString()); BOOST_CHECK(!mutated); } } BOOST_AUTO_TEST_CASE(TransactionsRequestSerializationTest) { BlockTransactionsRequest req1; req1.blockhash = InsecureRand256(); req1.indexes.resize(4); req1.indexes[0] = 0; req1.indexes[1] = 1; req1.indexes[2] = 3; req1.indexes[3] = 4; CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << req1; BlockTransactionsRequest req2; stream >> req2; BOOST_CHECK_EQUAL(req1.blockhash.ToString(), req2.blockhash.ToString()); BOOST_CHECK_EQUAL(req1.indexes.size(), req2.indexes.size()); BOOST_CHECK_EQUAL(req1.indexes[0], req2.indexes[0]); BOOST_CHECK_EQUAL(req1.indexes[1], req2.indexes[1]); BOOST_CHECK_EQUAL(req1.indexes[2], req2.indexes[2]); BOOST_CHECK_EQUAL(req1.indexes[3], req2.indexes[3]); } BOOST_AUTO_TEST_SUITE_END()
[ "twairgroup888@gmail.com" ]
twairgroup888@gmail.com
f79adc02c02df102db11fd70432cd809a32d3ede
f0c110eea408075d07e90fc193065b1ae50255c6
/src/handlers.cpp
697d00e1653cbdf3028f308b39794bb69cfaa48c
[ "MIT" ]
permissive
liut/kedge
8e5fc6075a532b6eb60c08d0ade227c69f69b706
755c79929254296df48a834789035f567cfa76b9
refs/heads/main
2023-07-19T06:08:50.229484
2022-02-15T15:58:59
2022-02-15T15:58:59
396,853,851
9
1
MIT
2021-11-11T07:57:56
2021-08-16T15:26:16
C++
UTF-8
C++
false
false
6,960
cpp
#include <memory> #include <mutex> #include <optional> #include <string_view> #include <unordered_set> #include <boost/json/value.hpp> namespace json = boost::json; #include "json_diff.hpp" #include <boost/json/serialize.hpp> #include <libtorrent/config.hpp> #include "handlers.hpp" #include "http_websocket.hpp" #include "log.hpp" namespace btd { httpCaller:: httpCaller(std::shared_ptr<sheath> const& shth, std::string ui_dir) : shth_(shth) , ui_root_(ui_dir) {} const std::optional<http::response<string_body>> httpCaller:: sbCall(http::request<string_body> const& req) { if (req.target().find("/api/") == std::string_view::npos) return std::nullopt; auto uri = req.target().substr(4); if (req.method() == verb::get && uri == "/session"sv) return handleSessionInfo(req); if (req.method() == verb::get && uri == "/session/stats"sv) return handleSessionStats(req); if (req.method() == verb::get && uri == "/sync/stats"sv) return handleSyncStats(req); if (uri == "/torrents"sv) return handleTorrents(req); if (uri.find("/torrent/") == 0) return handleTorrent(req, 13); // len(/api/torrent/) == 13 if (req.method() == verb::put && uri == "/session/toggle"sv) return handleSessionToggle(req); // TODO: more routes return std::nullopt; } http::response<string_body> httpCaller:: handleSessionInfo(http::request<string_body> const& req) { return make_resp<string_body>(req, json::serialize(shth_->getSessionInfo()), ctJSON); } http::response<string_body> httpCaller:: handleSessionStats(http::request<string_body> const& req) { return make_resp<string_body>(req, json::serialize(shth_->getSessionStats()), ctJSON); } http::response<string_body> httpCaller:: handleSessionToggle(http::request<string_body> const& req) { json::object ret({{"isPaused", shth_->toggle_pause_resume()}}); return make_resp<string_body>(req, json::serialize(ret), ctJSON); } http::response<string_body> httpCaller:: handleSyncStats(http::request<string_body> const& req) { return make_resp<string_body>(req, json::serialize(shth_->getSyncStats()), ctJSON); } http::response<string_body> httpCaller:: handleTorrents(http::request<string_body> const& req) // get or post { if (req.method() == verb::get) { return make_resp<string_body>(req, json::serialize(shth_->get_torrents()), ctJSON); } if (req.method() == verb::post) { PLOGD_(WebLog) << "posted " << req.find(http::field::content_length)->value() << " bytes\n"; std::string dir(shth_->dir_store.string()); auto savePath = req.find("x-save-path"); if (savePath != req.end()) { dir = savePath->value(); } if (req[http::field::content_type] == ctTorrent) { if (shth_->add_torrent(req.body().data(), req.body().size(), dir)) { return make_resp_204(req); } return make_resp_500(req, "failed to add with metainfo"); } if (shth_->add_magnet(req.body())) { return make_resp_204(req); } return make_resp_500(req, "failed to add with magnet"); } return make_resp_400(req, "Unsupported method"); } // handle a torrent with GET or POST or DELETE http::response<string_body> httpCaller:: handleTorrent(http::request<string_body> const& req, size_t const offset) { // len(/api/torrent/{info_hash}/{act}?) >= 4 + 9 + 40 const std::string s(req.target().data(), req.target().size()); const size_t ih_size = 40; const size_t min_size = offset+ih_size; if (s.size() < min_size) return make_resp_404(req); lt::sha1_hash ih; if (!from_hex(ih, s.substr(offset, ih_size))) { return make_resp_400(req, "invalid hash string"); } if (req.method() == verb::head) { if (shth_->exists(ih)) { return make_resp_204(req); } return make_resp_404(req); } std::string act = ""; if (s.size() > min_size + 1) { act = s.substr(min_size + 1); } if (req.method() == verb::get) { auto flag = sheath::query_basic; if ("peers" == act) flag = sheath::query_peers; else if ("files" == act) flag = sheath::query_files; auto jv = shth_->get_torrent(ih, flag); if (jv.is_null()) { return make_resp_404(req); } return make_resp<string_body>(req, json::serialize(jv), ctJSON); } if (req.method() == verb::delete_) { shth_->drop_torrent(ih, ("yes" == act || "with_data" == act)); return make_resp_204(req); } if (req.method() == verb::put) { if ("toggle" == act || "pause" == act) shth_->pause_resume_torrent(ih); else if ("start" == act || "resume" == act) shth_->resume_torrent(ih); return make_resp_204(req); } return make_resp_400(req, "Unsupported method"); } void httpCaller:: join(websocket_session* wss) { std::lock_guard<std::mutex> lock(mutex_); sessions_.insert(wss); sync_ver ++; auto qid = wss->qid(); if (qid.empty()) qid = n2hex(randNum(1000, 9999)); if (curr_stats.is_null()) curr_stats = getSyncStats(); json::value jv({ {"version", sync_ver.load()} ,{"id", qid} ,{"body", curr_stats} }); PLOGD_(WebLog) << "ws joinning " << sync_ver.load(); wss->send(std::make_shared<std::string const>(json::serialize(jv))); } void httpCaller:: leave(websocket_session* wss) { std::lock_guard<std::mutex> lock(mutex_); sessions_.erase(wss); PLOGD_(WebLog) << "ws leaved"; } // Broadcast a message to all websocket client sessions void httpCaller:: broadcast(std::string message) { // Put the message in a shared pointer so we can re-use it for each client auto const ss = std::make_shared<std::string const>(std::move(message)); // Make a local list of all the weak pointers representing // the sessions, so we can do the actual sending without // holding the mutex: std::vector<std::weak_ptr<websocket_session>> vws; { std::lock_guard<std::mutex> lock(mutex_); vws.reserve(sessions_.size()); for(auto p : sessions_) vws.emplace_back(p->weak_from_this()); } // For each session in our local list, try to acquire a strong // pointer. If successful, then send the message on that session. for(auto const& wp : vws) if(auto sp = wp.lock()) sp->send(ss); } void httpCaller:: closeWS() { std::lock_guard<std::mutex> lock(mutex_); for(auto p : sessions_) p->close("close by caller"); } json::value httpCaller:: getSyncStats() { return shth_->getSyncStats(); } void httpCaller:: doLoop() { if (sessions_.empty()) { std::this_thread::sleep_for(std::chrono::seconds(20)); return; } std::this_thread::sleep_for(std::chrono::seconds(1)); sync_ver ++; curr_stats = shth_->getSyncStats(); json::value jv({ {"version", sync_ver.load()} ,{"delta", true} ,{"body", json_diff(prev_stats, curr_stats)} }); broadcast(json::serialize(jv)); // std::clog << sync_ver.load() << " "; prev_stats = curr_stats; } } // namespace btd
[ "liut@phoenixtv.com" ]
liut@phoenixtv.com
49ae875c265a1f3db43753e544f08af2d7942d88
680a3eba1774599f2bc86c1b93f01f9de56347f1
/src/configurationmanager_interface.h
4d8b2c9d7bf07b681dd81f4f1d6f8fee6a4514fc
[]
no_license
JeMigli/src
d978b4a740e0cd6bf37ba298f190357da83acf6e
8be4236463b66146faa17345e26d4f0ac852e8ad
refs/heads/master
2021-01-20T14:43:22.571542
2020-10-18T20:14:05
2020-10-18T20:14:05
82,708,754
0
0
null
null
null
null
UTF-8
C++
false
false
13,892
h
/* * Copyright (C) 2004-2017 Savoir-faire Linux Inc. * * Author: Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com> * Author: Alexandre Bourget <alexandre.bourget@savoirfairelinux.com> * Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com> * Author: Guillaume Carmel-Archambault <guillaume.carmel-archambault@savoirfairelinux.com> * Author: Guillaume Roguez <Guillaume.Roguez@savoirfairelinux.com> * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include <vector> #include <map> #include <memory> #include <string> #include <cstdint> #include "dring.h" #include "security_const.h" namespace DRing { void registerConfHandlers(const std::map<std::string, std::shared_ptr<CallbackWrapperBase>>&); std::map<std::string, std::string> getAccountDetails(const std::string& accountID); std::map<std::string, std::string> getVolatileAccountDetails(const std::string& accountID); void setAccountDetails(const std::string& accountID, const std::map<std::string, std::string>& details); std::map<std::string, std::string> testAccountICEInitialization(const std::string& accountID); void setAccountActive(const std::string& accountID, bool active); std::map<std::string, std::string> getAccountTemplate(const std::string& accountType); std::string addAccount(const std::map<std::string, std::string>& details); bool exportOnRing(const std::string& accountID, const std::string& password); bool revokeDevice(const std::string& accountID, const std::string& password, const std::string& deviceID); std::map<std::string, std::string> getKnownRingDevices(const std::string& accountID); bool lookupName(const std::string& account, const std::string& nameserver, const std::string& name); bool lookupAddress(const std::string& account, const std::string& nameserver, const std::string& address); bool registerName(const std::string& account, const std::string& password, const std::string& name); void removeAccount(const std::string& accountID); void setAccountEnabled(const std::string& accountID, bool enable); std::vector<std::string> getAccountList(); void sendRegister(const std::string& accountID, bool enable); void registerAllAccounts(void); uint64_t sendAccountTextMessage(const std::string& accountID, const std::string& to, const std::map<std::string, std::string>& payloads); int getMessageStatus(uint64_t id); std::map<std::string, std::string> getTlsDefaultSettings(); std::vector<unsigned> getCodecList(); std::vector<std::string> getSupportedTlsMethod(); std::vector<std::string> getSupportedCiphers(const std::string& accountID); std::map<std::string, std::string> getCodecDetails(const std::string& accountID, const unsigned& codecId); bool setCodecDetails(const std::string& accountID, const unsigned& codecId, const std::map<std::string, std::string>& details); std::vector<unsigned> getActiveCodecList(const std::string& accountID); void setActiveCodecList(const std::string& accountID, const std::vector<unsigned>& list); std::vector<std::string> getAudioPluginList(); void setAudioPlugin(const std::string& audioPlugin); std::vector<std::string> getAudioOutputDeviceList(); void setAudioOutputDevice(int32_t index); void setAudioInputDevice(int32_t index); void setAudioRingtoneDevice(int32_t index); std::vector<std::string> getAudioInputDeviceList(); std::vector<std::string> getCurrentAudioDevicesIndex(); int32_t getAudioInputDeviceIndex(const std::string& name); int32_t getAudioOutputDeviceIndex(const std::string& name); std::string getCurrentAudioOutputPlugin(); bool getNoiseSuppressState(); void setNoiseSuppressState(bool state); bool isAgcEnabled(); void setAgcState(bool enabled); void muteDtmf(bool mute); bool isDtmfMuted(); bool isCaptureMuted(); void muteCapture(bool mute); bool isPlaybackMuted(); void mutePlayback(bool mute); bool isRingtoneMuted(); void muteRingtone(bool mute); std::string getAudioManager(); bool setAudioManager(const std::string& api); std::string getRecordPath(); void setRecordPath(const std::string& recPath); bool getIsAlwaysRecording(); void setIsAlwaysRecording(bool rec); void setHistoryLimit(int32_t days); int32_t getHistoryLimit(); void setAccountsOrder(const std::string& order); std::map<std::string, std::string> getHookSettings(); void setHookSettings(const std::map<std::string, std::string>& settings); std::vector<std::map<std::string, std::string>> getCredentials(const std::string& accountID); void setCredentials(const std::string& accountID, const std::vector<std::map<std::string, std::string>>& details); std::string getAddrFromInterfaceName(const std::string& iface); std::vector<std::string> getAllIpInterface(); std::vector<std::string> getAllIpInterfaceByName(); std::map<std::string, std::string> getShortcuts(); void setShortcuts(const std::map<std::string, std::string> &shortcutsMap); void setVolume(const std::string& device, double value); double getVolume(const std::string& device); /* * Security */ std::map<std::string, std::string> validateCertificate(const std::string& accountId, const std::string& certificate); std::map<std::string, std::string> validateCertificatePath(const std::string& accountId, const std::string& certificatePath, const std::string& privateKey, const std::string& privateKeyPassword, const std::string& caList); std::map<std::string, std::string> getCertificateDetails(const std::string& certificate); std::map<std::string, std::string> getCertificateDetailsPath(const std::string& certificatePath, const std::string& privateKey, const std::string& privateKeyPassword); std::vector<std::string> getPinnedCertificates(); std::vector<std::string> pinCertificate(const std::vector<uint8_t>& certificate, bool local); bool unpinCertificate(const std::string& certId); void pinCertificatePath(const std::string& path); unsigned unpinCertificatePath(const std::string& path); bool pinRemoteCertificate(const std::string& accountId, const std::string& certId); bool setCertificateStatus(const std::string& account, const std::string& certId, const std::string& status); std::vector<std::string> getCertificatesByStatus(const std::string& account, const std::string& status); /* contact requests */ std::map<std::string, std::string> getTrustRequests(const std::string& accountId); bool acceptTrustRequest(const std::string& accountId, const std::string& from); bool discardTrustRequest(const std::string& accountId, const std::string& from); void sendTrustRequest(const std::string& accountId, const std::string& to, const std::vector<uint8_t>& payload = {}); /* Contacts */ void addContact(const std::string& accountId, const std::string& uri); void removeContact(const std::string& accountId, const std::string& uri); std::vector<std::map<std::string, std::string>> getContacts(const std::string& accountId); /* * Import/Export accounts */ int exportAccounts(std::vector<std::string> accountIDs, std::string filepath, std::string password); int importAccounts(std::string archivePath, std::string password); /* * Network connectivity */ void connectivityChanged(); struct AudioSignal { struct DeviceEvent { constexpr static const char* name = "audioDeviceEvent"; using cb_type = void(void); }; }; // Configuration signal type definitions struct ConfigurationSignal { struct VolumeChanged { constexpr static const char* name = "VolumeChanged"; using cb_type = void(const std::string& /*device*/, double /*value*/); }; struct AccountsChanged { constexpr static const char* name = "AccountsChanged"; using cb_type = void(void); }; struct Error { constexpr static const char* name = "Error"; using cb_type = void(int /*alert*/); }; // TODO: move those to AccountSignal in next API breakage struct StunStatusFailed { constexpr static const char* name = "StunStatusFailed"; using cb_type = void(const std::string& /*account_id*/); }; struct RegistrationStateChanged { constexpr static const char* name = "RegistrationStateChanged"; using cb_type = void(const std::string& /*account_id*/, const std::string& /*state*/, int /*detailsCode*/, const std::string& /*detailsStr*/); }; struct VolatileDetailsChanged { constexpr static const char* name = "VolatileDetailsChanged"; using cb_type = void(const std::string& /*account_id*/, const std::map<std::string, std::string>& /* details */); }; struct IncomingAccountMessage { constexpr static const char* name = "IncomingAccountMessage"; using cb_type = void(const std::string& /*account_id*/, const std::string& /*from*/, const std::map<std::string, std::string>& /*payloads*/); }; struct AccountMessageStatusChanged { constexpr static const char* name = "AccountMessageStatusChanged"; using cb_type = void(const std::string& /*account_id*/, uint64_t /*message_id*/, const std::string& /*to*/, int /*state*/); }; struct IncomingTrustRequest { constexpr static const char* name = "IncomingTrustRequest"; using cb_type = void(const std::string& /*account_id*/, const std::string& /*from*/, const std::vector<uint8_t>& payload, time_t received); }; struct ContactAdded { constexpr static const char* name = "ContactAdded"; using cb_type = void(const std::string& /*account_id*/, const std::string& /*uri*/, bool confirmed); }; struct ContactRemoved { constexpr static const char* name = "ContactRemoved"; using cb_type = void(const std::string& /*account_id*/, const std::string& /*uri*/, bool banned); }; struct ExportOnRingEnded { constexpr static const char* name = "ExportOnRingEnded"; using cb_type = void(const std::string& /*account_id*/, int state, const std::string& pin); }; struct NameRegistrationEnded { constexpr static const char* name = "NameRegistrationEnded"; using cb_type = void(const std::string& /*account_id*/, int state, const std::string& name); }; struct KnownDevicesChanged { constexpr static const char* name = "KnownDevicesChanged"; using cb_type = void(const std::string& /*account_id*/, const std::map<std::string, std::string>& devices); }; struct RegisteredNameFound { constexpr static const char* name = "RegisteredNameFound"; using cb_type = void(const std::string& /*account_id*/, int state, const std::string& /*address*/, const std::string& /*name*/); }; struct CertificatePinned { constexpr static const char* name = "CertificatePinned"; using cb_type = void(const std::string& /*certId*/); }; struct CertificatePathPinned { constexpr static const char* name = "CertificatePathPinned"; using cb_type = void(const std::string& /*path*/, const std::vector<std::string>& /*certId*/); }; struct CertificateExpired { constexpr static const char* name = "CertificateExpired"; using cb_type = void(const std::string& /*certId*/); }; struct CertificateStateChanged { constexpr static const char* name = "CertificateStateChanged"; using cb_type = void(const std::string& /*account_id*/, const std::string& /*certId*/, const std::string& /*state*/); }; struct MediaParametersChanged { constexpr static const char* name = "MediaParametersChanged"; using cb_type = void(const std::string& /*accountId*/); }; struct MigrationEnded { constexpr static const char* name = "MigrationEnded"; using cb_type = void(const std::string& /*accountId*/, const std::string& /*state*/); }; /** * These are special getters for Android and UWP, so the daemon can retreive * information only accessible through their respective platform APIs */ #ifdef __ANDROID__ struct GetHardwareAudioFormat { constexpr static const char* name = "GetHardwareAudioFormat"; using cb_type = void(std::vector<int32_t>* /* params_ret */); }; #endif #if defined(__ANDROID__) || defined(RING_UWP) struct GetAppDataPath { constexpr static const char* name = "GetAppDataPath"; using cb_type = void(const std::string& name, std::vector<std::string>* /* path_ret */); }; #endif }; // Can be used when a client's stdout is not available struct DebugSignal { struct MessageSend { constexpr static const char* name = "MessageSend"; using cb_type = void(const std::string&); }; }; } // namespace DRing
[ "moshaf@l4712-19.info.polymtl.ca" ]
moshaf@l4712-19.info.polymtl.ca
66b5a48d6601f824a8f08d9e6a189e55c4cc0f81
5a60d60fca2c2b8b44d602aca7016afb625bc628
/aws-cpp-sdk-sesv2/source/model/ListConfigurationSetsResult.cpp
40143679f3cc3005bc2a5061499a9686f75e52c4
[ "Apache-2.0", "MIT", "JSON" ]
permissive
yuatpocketgems/aws-sdk-cpp
afaa0bb91b75082b63236cfc0126225c12771ed0
a0dcbc69c6000577ff0e8171de998ccdc2159c88
refs/heads/master
2023-01-23T10:03:50.077672
2023-01-04T22:42:53
2023-01-04T22:42:53
134,497,260
0
1
null
2018-05-23T01:47:14
2018-05-23T01:47:14
null
UTF-8
C++
false
false
1,400
cpp
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/sesv2/model/ListConfigurationSetsResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils.h> #include <aws/core/utils/UnreferencedParam.h> #include <utility> using namespace Aws::SESV2::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; ListConfigurationSetsResult::ListConfigurationSetsResult() { } ListConfigurationSetsResult::ListConfigurationSetsResult(const Aws::AmazonWebServiceResult<JsonValue>& result) { *this = result; } ListConfigurationSetsResult& ListConfigurationSetsResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("ConfigurationSets")) { Aws::Utils::Array<JsonView> configurationSetsJsonList = jsonValue.GetArray("ConfigurationSets"); for(unsigned configurationSetsIndex = 0; configurationSetsIndex < configurationSetsJsonList.GetLength(); ++configurationSetsIndex) { m_configurationSets.push_back(configurationSetsJsonList[configurationSetsIndex].AsString()); } } if(jsonValue.ValueExists("NextToken")) { m_nextToken = jsonValue.GetString("NextToken"); } return *this; }
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
aa04c9f509cf86bbd86560744d64a312a3a70441
570fc184f62d1cf8624ca2a5a7fc487af1452754
/memory/mozalloc/mozalloc_oom.cpp
d6b914bac72adfaff48da44dc9a1e33a23947a95
[]
no_license
roytam1/palemoon26
726424415a96fb36fe47d5d414a2cfafabecb3e6
43b0deedf05166f30d62bd666c040a3165a761a1
refs/heads/master
2023-09-03T15:25:23.800487
2018-08-25T16:35:59
2018-08-28T12:32:52
115,328,093
6
1
null
null
null
null
UTF-8
C++
false
false
1,763
cpp
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: sw=4 ts=4 et : */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #if defined(XP_WIN) # define MOZALLOC_EXPORT __declspec(dllexport) #endif #include "mozilla/mozalloc_abort.h" #include "mozilla/mozalloc_oom.h" #include "mozilla/Assertions.h" static mozalloc_oom_abort_handler gAbortHandler; #define OOM_MSG_LEADER "out of memory: 0x" #define OOM_MSG_DIGITS "0000000000000000" // large enough for 2^64 #define OOM_MSG_TRAILER " bytes requested" #define OOM_MSG_FIRST_DIGIT_OFFSET sizeof(OOM_MSG_LEADER) - 1 #define OOM_MSG_LAST_DIGIT_OFFSET sizeof(OOM_MSG_LEADER) + \ sizeof(OOM_MSG_DIGITS) - 3 static const char *hex = "0123456789ABCDEF"; void mozalloc_handle_oom(size_t size) { char oomMsg[] = OOM_MSG_LEADER OOM_MSG_DIGITS OOM_MSG_TRAILER; size_t i; // NB: this is handle_oom() stage 1, which simply aborts on OOM. // we might proceed to a stage 2 in which an attempt is made to // reclaim memory if (gAbortHandler) gAbortHandler(size); MOZ_STATIC_ASSERT(OOM_MSG_FIRST_DIGIT_OFFSET > 0, "Loop below will never terminate (i can't go below 0)"); // Insert size into the diagnostic message using only primitive operations for (i = OOM_MSG_LAST_DIGIT_OFFSET; size && i >= OOM_MSG_FIRST_DIGIT_OFFSET; i--) { oomMsg[i] = hex[size % 16]; size /= 16; } mozalloc_abort(oomMsg); } void mozalloc_set_oom_abort_handler(mozalloc_oom_abort_handler handler) { gAbortHandler = handler; }
[ "roytam@gmail.com" ]
roytam@gmail.com
8b8be92fecdf5f105e34359daef31a3771fe731b
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/chromium/chrome/browser/ui/views/tabs/base_tab_strip.h
f7504797108eabf3e54aae72798fe2a03be7ac52
[ "BSD-3-Clause", "MIT" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
10,190
h
// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_STRIP_H_ #define CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_STRIP_H_ #pragma once #include <vector> #include "base/memory/scoped_ptr.h" #include "chrome/browser/ui/views/tabs/abstract_tab_strip_view.h" #include "chrome/browser/ui/views/tabs/base_tab.h" #include "chrome/browser/ui/views/tabs/tab_controller.h" #include "views/animation/bounds_animator.h" #include "views/view.h" class BaseTab; class DraggedTabController; class TabStripController; // Base class for the view tab strip implementations. class BaseTabStrip : public AbstractTabStripView, public TabController { public: enum Type { HORIZONTAL_TAB_STRIP, VERTICAL_TAB_STRIP }; BaseTabStrip(TabStripController* controller, Type type); virtual ~BaseTabStrip(); Type type() const { return type_; } // Starts highlighting the tab at the specified index. virtual void StartHighlight(int model_index) = 0; // Stops all tab higlighting. virtual void StopAllHighlighting() = 0; // Retrieves the ideal bounds for the Tab at the specified index. const gfx::Rect& ideal_bounds(int tab_data_index) { return tab_data_[tab_data_index].ideal_bounds; } // Creates and returns a tab that can be used for dragging. Ownership passes // to the caller. virtual BaseTab* CreateTabForDragging() = 0; // Adds a tab at the specified index. void AddTabAt(int model_index, const TabRendererData& data); // Invoked from the controller when the close initiates from the TabController // (the user clicked the tab close button or middle clicked the tab). This is // invoked from Close. Because of unload handlers Close is not always // immediately followed by RemoveTabAt. virtual void PrepareForCloseAt(int model_index) {} // Removes a tab at the specified index. virtual void RemoveTabAt(int model_index) = 0; // Selects a tab at the specified index. |old_model_index| is the selected // index prior to the selection change. virtual void SelectTabAt(int old_model_index, int new_model_index) = 0; // Moves a tab. virtual void MoveTab(int from_model_index, int to_model_index); // Invoked when the title of a tab changes and the tab isn't loading. virtual void TabTitleChangedNotLoading(int model_index) = 0; // Sets the tab data at the specified model index. virtual void SetTabData(int model_index, const TabRendererData& data); // Returns the tab at the specified model index. virtual BaseTab* GetBaseTabAtModelIndex(int model_index) const; // Returns the tab at the specified tab index. BaseTab* base_tab_at_tab_index(int tab_index) const { return tab_data_[tab_index].tab; } // Returns the index of the specified tab in the model coordiate system, or // -1 if tab is closing or not valid. int GetModelIndexOfBaseTab(const BaseTab* tab) const; // Gets the number of Tabs in the tab strip. // WARNING: this is the number of tabs displayed by the tabstrip, which if // an animation is ongoing is not necessarily the same as the number of tabs // in the model. int tab_count() const { return static_cast<int>(tab_data_.size()); } // Cover method for TabStripController::GetCount. int GetModelCount() const; // Cover method for TabStripController::IsValidIndex. bool IsValidModelIndex(int model_index) const; // Returns the index into |tab_data_| corresponding to the index from the // TabStripModel, or |tab_data_.size()| if there is no tab representing // |model_index|. int ModelIndexToTabIndex(int model_index) const; TabStripController* controller() const { return controller_.get(); } // Returns true if a drag session is currently active. bool IsDragSessionActive() const; // Returns true if a tab is being dragged into this tab strip. bool IsActiveDropTarget() const; // AbstractTabStripView implementation virtual bool IsTabStripEditable() const OVERRIDE; virtual bool IsTabStripCloseable() const OVERRIDE; virtual void UpdateLoadingAnimations() OVERRIDE; // TabController overrides: virtual void SelectTab(BaseTab* tab) OVERRIDE; virtual void ExtendSelectionTo(BaseTab* tab) OVERRIDE; virtual void ToggleSelected(BaseTab* tab) OVERRIDE; virtual void AddSelectionFromAnchorTo(BaseTab* tab) OVERRIDE; virtual void CloseTab(BaseTab* tab) OVERRIDE; virtual void ShowContextMenuForTab(BaseTab* tab, const gfx::Point& p) OVERRIDE; virtual bool IsActiveTab(const BaseTab* tab) const OVERRIDE; virtual bool IsTabSelected(const BaseTab* tab) const OVERRIDE; virtual bool IsTabPinned(const BaseTab* tab) const OVERRIDE; virtual bool IsTabCloseable(const BaseTab* tab) const OVERRIDE; virtual void MaybeStartDrag(BaseTab* tab, const views::MouseEvent& event) OVERRIDE; virtual void ContinueDrag(const views::MouseEvent& event) OVERRIDE; virtual bool EndDrag(bool canceled) OVERRIDE; virtual BaseTab* GetTabAt(BaseTab* tab, const gfx::Point& tab_in_tab_coordinates) OVERRIDE; // View overrides: virtual void Layout() OVERRIDE; protected: // The Tabs we contain, and their last generated "good" bounds. struct TabData { BaseTab* tab; gfx::Rect ideal_bounds; }; // View overrides. virtual bool OnMouseDragged(const views::MouseEvent& event) OVERRIDE; virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE; virtual void OnMouseCaptureLost() OVERRIDE; // Creates and returns a new tab. The caller owners the returned tab. virtual BaseTab* CreateTab() = 0; // Invoked from |AddTabAt| after the newly created tab has been inserted. // Subclasses should either start an animation, or layout. virtual void StartInsertTabAnimation(int model_index) = 0; // Invoked from |MoveTab| after |tab_data_| has been updated to animate the // move. virtual void StartMoveTabAnimation(); // Starts the remove tab animation. virtual void StartRemoveTabAnimation(int model_index); // Starts the mini-tab animation. virtual void StartMiniTabAnimation(); // Returns whether the highlight button should be highlighted after a remove. virtual bool ShouldHighlightCloseButtonAfterRemove(); // Animates all the views to their ideal bounds. // NOTE: this does *not* invoke GenerateIdealBounds, it uses the bounds // currently set in ideal_bounds. virtual void AnimateToIdealBounds() = 0; // Cleans up the Tab from the TabStrip. This is called from the tab animation // code and is not a general-purpose method. void RemoveAndDeleteTab(BaseTab* tab); // Resets the bounds of all non-closing tabs. virtual void GenerateIdealBounds() = 0; // Invoked during drag to layout the tabs being dragged in |tabs| at // |location|. If |initial_drag| is true, this is the initial layout after the // user moved the mouse far enough to trigger a drag. virtual void LayoutDraggedTabsAt(const std::vector<BaseTab*>& tabs, BaseTab* active_tab, const gfx::Point& location, bool initial_drag) = 0; // Calculates the bounds needed for each of the tabs, placing the result in // |bounds|. virtual void CalculateBoundsForDraggedTabs( const std::vector<BaseTab*>& tabs, std::vector<gfx::Rect>* bounds) = 0; void set_ideal_bounds(int index, const gfx::Rect& bounds) { tab_data_[index].ideal_bounds = bounds; } // Returns the index into |tab_data_| corresponding to the specified tab, or // -1 if the tab isn't in |tab_data_|. int TabIndexOfTab(BaseTab* tab) const; // Stops any ongoing animations. If |layout| is true and an animation is // ongoing this does a layout. virtual void StopAnimating(bool layout); // Destroys the active drag controller. void DestroyDragController(); // Used by DraggedTabController when the user starts or stops dragging tabs. void StartedDraggingTabs(const std::vector<BaseTab*>& tabs); void StoppedDraggingTabs(const std::vector<BaseTab*>& tabs); // Returns the size needed for the specified tabs. This is invoked during drag // and drop to calculate offsets and positioning. virtual int GetSizeNeededForTabs(const std::vector<BaseTab*>& tabs) = 0; // See description above field for details. bool attaching_dragged_tab() const { return attaching_dragged_tab_; } views::BoundsAnimator& bounds_animator() { return bounds_animator_; } // Invoked prior to starting a new animation. virtual void PrepareForAnimation(); // Creates an AnimationDelegate that resets state after a remove animation // completes. The caller owns the returned object. ui::AnimationDelegate* CreateRemoveTabDelegate(BaseTab* tab); // Invoked from Layout if the size changes or layout is really needed. virtual void DoLayout(); // Returns true if Tabs in this TabStrip are currently changing size or // position. bool IsAnimating() const; // Get tab at a point in local view coordinates. BaseTab* GetTabAtLocal(const gfx::Point& local_point); private: class RemoveTabDelegate; friend class DraggedTabController; // Invoked from StoppedDraggingTabs to cleanup |tab|. If |tab| is known // |is_first_tab| is set to true. void StoppedDraggingTab(BaseTab* tab, bool* is_first_tab); // See description above field for details. void set_attaching_dragged_tab(bool value) { attaching_dragged_tab_ = value; } scoped_ptr<TabStripController> controller_; const Type type_; std::vector<TabData> tab_data_; // The controller for a drag initiated from a Tab. Valid for the lifetime of // the drag session. scoped_ptr<DraggedTabController> drag_controller_; // If true, the insert is a result of a drag attaching the tab back to the // model. bool attaching_dragged_tab_; views::BoundsAnimator bounds_animator_; // Size we last layed out at. gfx::Size last_layout_size_; }; #endif // CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_STRIP_H_
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
47eda547c23813a951da924718b5c6ec930933bd
d79da00ad2ed49398192921c6a32e33874352e57
/TTS/ServerMinPc/ServerMinPc/ServerLog.cpp
ecd0cf64c3457e3af9fac51a758da955549c13d0
[]
no_license
troelszink/COS_ONLY
e34ca72cdf80c8e845507c4b7f59b02282d6dca1
4405a07af4861aaf1ca11f4fb5ec5ab0e5ae83b5
refs/heads/master
2020-04-08T18:55:38.109191
2018-11-29T08:12:23
2018-11-29T08:12:23
159,630,819
0
0
null
null
null
null
ISO-8859-15
C++
false
false
3,666
cpp
#include "ServerLog.h" //-----------------------------------------------------------------------------------------------------------------------------------------------------------// ServerLog::ServerLog() { int logAmount = 0; } //-----------------------------------------------------------------------------------------------------------------------------------------------------------// void ServerLog::logListFiles() { //Tilføj user id. string logElement = "0 - Listed Files on server\n"; addLogElement(logElement); if (logAmount == 100) { logSaveToFile(); logAmount = 0; } } //-----------------------------------------------------------------------------------------------------------------------------------------------------------// void ServerLog::logWrite(int fileOnList, string fileName) { // user id - kommando id - fil id //Tilføj user id. string logElement = "U-ID 1 "; logElement += to_string(fileOnList); logElement += " " + fileName; logElement += " to the server\n"; addLogElement(logElement); if (logAmount == 100) { logSaveToFile(); logAmount = 0; } } void ServerLog::logRead(int fileOnList, string fileName) { //Tilføj user id. string logElement = "U-ID 2 "; logElement += to_string(fileOnList); logElement += " " + fileName; logElement += " from the server\n"; addLogElement(logElement); if (logAmount == 100) { logSaveToFile(); logAmount = 0; } } void ServerLog::logRemove(int fileOnList, string fileName) { //Tilføj user id. string logElement = "U-ID 3 "; logElement += to_string(fileOnList); logElement += " " + fileName; logElement += " from the server\n"; addLogElement(logElement); logSaveToFile(); if (logAmount == 100) { logSaveToFile(); logAmount = 0; } } void ServerLog::logLogin(int userId) { string logElement = to_string(userId); logElement += " logged in to the server\n"; if (logAmount == 100) { logSaveToFile(); logAmount = 0; } } void ServerLog::logLogout(int userId) { string logElement = to_string(userId); logElement += " logged out of the server\n"; addLogElement(logElement); if (logAmount == 100) { logSaveToFile(); logAmount = 0; } } //-----------------------------------------------------------------------------------------------------------------------------------------------------------// void ServerLog::addLogElement(string toBeLoged) { logVector.push_back(toBeLoged); logAmount++; } //-----------------------------------------------------------------------------------------------------------------------------------------------------------// void ServerLog::logSaveToFile() { ofstream fileToWrite; // Opretter en stream, hvori en fil kan åbnes. fileToWrite.open("ServerLog.txt", ios::app); // Den ønskede fil åbnes. for (int i = 0; i<logAmount ; i++) { fileToWrite << logVector[i]; // Det ønskede data skrives ind i den åbne fil. } cout << endl << "-------------------------[Amount of log elements]------------------------------" << endl << endl; cout << "~[ "<< logAmount << " ]~"<< endl; fileToWrite.close(); } //-----------------------------------------------------------------------------------------------------------------------------------------------------------// string ServerLog::logChanges(string ClientId) { for (int i = logAmount - 1; i >= 0; i--) { // if(//currentClientId==logId) } for (int i = 99; i > logAmount-1; i--) { } return string(); } //-----------------------------------------------------------------------------------------------------------------------------------------------------------// ServerLog::~ServerLog() { }
[ "36730711+troelszink@users.noreply.github.com" ]
36730711+troelszink@users.noreply.github.com
56242facbc79fad013eee7431c56b02986ae287a
5cef19f12d46cafa243b087fe8d8aeae07386914
/codeforces/507/B.cpp
92bc4a2d17891b7e30d751d209bcd08135cf5169
[]
no_license
lych4o/competitive-programming
aaa6e1d3f7ae052cba193c5377f27470ed16208f
c5f4b98225a934f3bd3f76cbdd2184f574fe3113
refs/heads/master
2020-03-28T15:48:26.134836
2019-05-29T13:44:39
2019-05-29T13:44:39
148,627,900
1
0
null
null
null
null
UTF-8
C++
false
false
951
cpp
#include<bits/stdc++.h> #define sc(x) scanf("%d",&x) #define sll(x) scanf("%I64d",&x) #define pLL pair<LL, LL> #define pb push_back #define mk make_pair #define sp putchar(' ') #define ln puts("") #define fi first #define fout fflush(stdout) #define sqr(x) ((x)*(x)) #define ALL(x) x.begin(), x.end() #define se second using namespace std; typedef long long LL; const int maxn = 1e6+10; LL n, k; char s[20]; int query(LL a, LL b){ printf("%I64d %I64d\n", a, b); fout; scanf("%s", s); return s[0]=='Y'; } int main(){ srand(time(NULL)); sll(n); sll(k); LL l = 1, r = n+1; while(1){ if(r-l <= 5*k+10){ LL p = l+(rand()%(r-l)); if(query(p,p)) return 0; else l=max(1LL,l-k), r=min(n+1,r+k); }else{ LL mid = (l+r)>>1; if(query(l,mid-1)) l=max(1LL,l-k),r=min(n+1,mid+k); else l=max(1LL,mid-k),r=min(n+1,r+k); } } return 0; }
[ "lych@lychdeMacBook-Air.local" ]
lych@lychdeMacBook-Air.local
202b92e19b7b9c66e4aeffddc7c9f1afbcfd04d5
7a55880b7776de5d9980f75efe670a0b26031635
/src/qt/bitcoinunits.cpp
e4405b14dd0a08280bacfd173719f62164acb5e7
[ "MIT" ]
permissive
AFP99/coin2goproject
8e2f4812a64430e3e40950869b26a481f8f1794e
2a4e7c83467367fac2a0a3f5658d6f24b92156ed
refs/heads/master
2020-06-06T11:47:29.918510
2019-06-18T12:09:14
2019-06-18T12:09:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,281
cpp
#include "bitcoinunits.h" #include <QStringList> BitcoinUnits::BitcoinUnits(QObject *parent): QAbstractListModel(parent), unitlist(availableUnits()) { } QList<BitcoinUnits::Unit> BitcoinUnits::availableUnits() { QList<BitcoinUnits::Unit> unitlist; unitlist.append(BTC); unitlist.append(mBTC); unitlist.append(uBTC); return unitlist; } bool BitcoinUnits::valid(int unit) { switch(unit) { case BTC: case mBTC: case uBTC: return true; default: return false; } } QString BitcoinUnits::name(int unit) { switch(unit) { case BTC: return QString("2GO"); case mBTC: return QString("m2GO"); case uBTC: return QString::fromUtf8("μ2GO"); default: return QString("???"); } } QString BitcoinUnits::description(int unit) { switch(unit) { case BTC: return QString("Coin2Gos"); case mBTC: return QString("Milli-Coin2Gos (1 / 1,000)"); case uBTC: return QString("Micro-Coin2Gos (1 / 1,000,000)"); default: return QString("???"); } } qint64 BitcoinUnits::factor(int unit) { switch(unit) { case BTC: return 100000000; case mBTC: return 100000; case uBTC: return 100; default: return 100000000; } } int BitcoinUnits::amountDigits(int unit) { switch(unit) { case BTC: return 8; // 21,000,000 (# digits, without commas) case mBTC: return 11; // 21,000,000,000 case uBTC: return 14; // 21,000,000,000,000 default: return 0; } } int BitcoinUnits::decimals(int unit) { switch(unit) { case BTC: return 8; case mBTC: return 5; case uBTC: return 2; default: return 0; } } QString BitcoinUnits::format(int unit, qint64 n, bool fPlus) { // Note: not using straight sprintf here because we do NOT want // localized number formatting. if(!valid(unit)) return QString(); // Refuse to format invalid unit qint64 coin = factor(unit); int num_decimals = decimals(unit); qint64 n_abs = (n > 0 ? n : -n); qint64 quotient = n_abs / coin; qint64 remainder = n_abs % coin; QString quotient_str = QString::number(quotient); QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0'); // Right-trim excess zeros after the decimal point int nTrim = 0; for (int i = remainder_str.size()-1; i>=2 && (remainder_str.at(i) == '0'); --i) ++nTrim; remainder_str.chop(nTrim); if (n < 0) quotient_str.insert(0, '-'); else if (fPlus && n > 0) quotient_str.insert(0, '+'); return quotient_str + QString(".") + remainder_str; } QString BitcoinUnits::formatWithUnit(int unit, qint64 amount, bool plussign) { return format(unit, amount, plussign) + QString(" ") + name(unit); } bool BitcoinUnits::parse(int unit, const QString &value, qint64 *val_out) { if(!valid(unit) || value.isEmpty()) return false; // Refuse to parse invalid unit or empty string int num_decimals = decimals(unit); QStringList parts = value.split("."); if(parts.size() > 2) { return false; // More than one dot } QString whole = parts[0]; QString decimals; if(parts.size() > 1) { decimals = parts[1]; } if(decimals.size() > num_decimals) { return false; // Exceeds max precision } bool ok = false; QString str = whole + decimals.leftJustified(num_decimals, '0'); if(str.size() > 18) { return false; // Longer numbers will exceed 63 bits } qint64 retvalue = str.toLongLong(&ok); if(val_out) { *val_out = retvalue; } return ok; } int BitcoinUnits::rowCount(const QModelIndex &parent) const { Q_UNUSED(parent); return unitlist.size(); } QVariant BitcoinUnits::data(const QModelIndex &index, int role) const { int row = index.row(); if(row >= 0 && row < unitlist.size()) { Unit unit = unitlist.at(row); switch(role) { case Qt::EditRole: case Qt::DisplayRole: return QVariant(name(unit)); case Qt::ToolTipRole: return QVariant(description(unit)); case UnitRole: return QVariant(static_cast<int>(unit)); } } return QVariant(); }
[ "admin@cointogo.io" ]
admin@cointogo.io
46131399987bf48396f931974d572bc3adf9377a
cbb8db2493ac14e6ce942e0ebd50de52468b352b
/tests/PointTests.cpp
5a66bcf325f729234b4ce23bf0e824fdc02c696f
[]
no_license
eimearc/simulation
f537221d1d898789940fd161697f8f5ae5608d6f
cbfb37869f1c17b77adbdf4a9a4ff34e34aaa9f3
refs/heads/master
2023-02-22T08:56:02.834881
2023-02-16T14:33:54
2023-02-16T14:33:54
249,696,722
0
0
null
null
null
null
UTF-8
C++
false
false
780
cpp
#include "Point.h" #include <gtest/gtest.h> #include <iostream> #include <Util.h> using namespace ::testing; TEST(Point, ctor) { setup(); ngl::Vec3 position(0,0,0); ngl::Vec3 direction(0,1,0); ngl::Vec3 velocity(0,1,0); Point point(position, direction, velocity); EXPECT_EQ(point.position(), position); EXPECT_EQ(point.velocity(), velocity); EXPECT_EQ(point.direction(), direction); } TEST(Point, update) { setup(); ngl::Vec3 position(0,0,0); ngl::Vec3 direction(0,1,0); ngl::Vec3 velocity(0,1,0); Point point(position, direction, velocity); point.update(); EXPECT_EQ(point.position(), position); EXPECT_EQ(point.velocity(), velocity); EXPECT_EQ(point.direction(), ngl::Vec3(-0.00999983,0.99995,0)); }
[ "eimear.crotty@umail.ucc.ie" ]
eimear.crotty@umail.ucc.ie
a6d7c612791cfe18551e32ba04e0ad94bac8c51c
0a5ba12251ff6fc2c7090121b91f1aebee513219
/src/Interface/PickerInterface.h
af0f2772173d35832e2358896a9f6d86de154b0e
[]
no_license
AlexKLWS/Mengine
0bfa0b7556ba0b0dd0e3606425bce0a6d04d0c37
b4a93363f70f4f1b83720b9432e0919a89f6bdb1
refs/heads/master
2020-03-21T13:57:20.378867
2019-07-16T17:54:58
2019-07-16T17:54:58
138,633,973
0
0
null
2018-06-25T18:22:53
2018-06-25T18:22:52
null
UTF-8
C++
false
false
2,781
h
#pragma once #include "Interface/Interface.h" #include "Interface/InputHandlerInterface.h" #include "Kernel/Resolution.h" #include "Kernel/BoundingBox.h" #include "Kernel/RenderContext.h" #include "Kernel/Scriptable.h" #include "Config/Lambda.h" namespace Mengine { ////////////////////////////////////////////////////////////////////////// typedef IntrusivePtr<class Arrow, class Node> ArrowPtr; ////////////////////////////////////////////////////////////////////////// class PickerInterface : public Interface { public: virtual void setRelationPicker( PickerInterface * _relationPicker ) = 0; virtual void setRelationPickerFront( PickerInterface * _relationPicker ) = 0; virtual void removeRelationPicker() = 0; virtual PickerInterface * getRelationPicker() const = 0; public: virtual void moveRelationPickerFront( PickerInterface * _childPicker ) = 0; virtual void moveRelationPickerMiddle( PickerInterface * _afterPicker, PickerInterface * _childPicker ) = 0; virtual void moveRelationPickerBack( PickerInterface * _childPicker ) = 0; public: typedef Lambda<void( PickerInterface * )> LambdaPicker; virtual void foreachPickerChildren( const LambdaPicker & _lambda ) = 0; virtual void foreachPickerChildrenEnabled( const LambdaPicker & _lambda ) = 0; public: virtual void setPickerEnable( bool _enable ) = 0; virtual bool isPickerEnable() const = 0; public: virtual bool isPickerDummy() const = 0; public: virtual void setPickerPicked( bool _picked ) = 0; virtual bool isPickerPicked() const = 0; virtual void setPickerPressed( bool _picked ) = 0; virtual bool isPickerPressed() const = 0; virtual void setPickerHandle( bool _picked ) = 0; virtual bool isPickerHandle() const = 0; virtual void setPickerExclusive( bool _picked ) = 0; virtual bool isPickerExclusive() const = 0; public: virtual Scriptable * getPickerScriptable() = 0; virtual InputHandlerInterface * getPickerInputHandler() = 0; public: virtual const RenderViewportInterfacePtr & getPickerViewport() const = 0; virtual const RenderCameraInterfacePtr & getPickerCamera() const = 0; public: virtual bool pick( const mt::vec2f & _point, const RenderViewportInterfacePtr & _viewport, const RenderCameraInterfacePtr & _camera, const Resolution & _contentResolution, const ArrowPtr & _arrow ) const = 0; }; ////////////////////////////////////////////////////////////////////////// typedef IntrusivePtr<PickerInterface> PickerInterfacePtr; ////////////////////////////////////////////////////////////////////////// }
[ "irov13@mail.ru" ]
irov13@mail.ru
f0055574822e1f8c7316d4ab69fcdcf958c33f41
dc1149e199b06f64b8f6dc8d785a46938e34c04e
/Classes/CXParticle.cpp
c2a0eaccf2da8c7e8d9601d1ac39840e5aedc3c1
[]
no_license
LINlisen/particlesystem
880290efad768dadc547222bd936f6c539f11d13
35bf74d3d371f42de7e5f55e5a030214c9026ba7
refs/heads/master
2023-06-06T06:16:52.427251
2021-07-02T06:36:11
2021-07-02T06:36:11
382,253,226
0
0
null
null
null
null
UTF-8
C++
false
false
1,774
cpp
//#include <cmath> //#include "CXParticle.h" // //CXParticle::CXParticle() //{ // _Particle = nullptr; // _fGravity = 0; // _fVelocity=0; // _fLifeTime=0; // _fIntensity=1; // _fOpacity=255; // _fSize=1; // _color = cocos2d::Color3B::WHITE; //} //void CXParticle::setParticle(const std::string& pngName, cocos2d::Scene& stage) //{ // _Particle = Sprite::createWithSpriteFrameName(pngName); // _Particle->setPosition(Point(0,0)); // _Particle->setOpacity(_fOpacity); // _Particle->setColor(Color3B::WHITE); // _Particle->setVisible(false); // BlendFunc blendfunc = { GL_SRC_ALPHA, GL_ONE }; // _Particle->setBlendFunc(blendfunc); // stage.addChild(_Particle, 1); // // _bVisible = false; // _iType = 0; // _color = cocos2d::Color3B::WHITE; //}; // //bool CXParticle::update(float dt) //{ // switch (_iType) // { // case STAY_FOR_TWOSECONDS: // if(_fTime==0) // { // _bVisible = true; // _Particle->setVisible(_bVisible); // _Particle->setColor(_color); // _Particle->setPosition(_Pos); // _fTime += dt; // } // if (_fTime <= _fLifeTime) // { // // _fTime += dt; // } // else // { // return true; // } // break; // // default: // break; // } //}; // //void CXParticle::setBehavior(int iType) //{ // float t; // switch (iType) // { // case STAY_FOR_TWOSECONDS: // _fVelocity = 0.25f; // t = 2.0f * M_PI * (rand() % 1000) / 1000.0f; // _Direction.x = cosf(t); // _Direction.y = sinf(t); // _fLifeTime = 2.0f; // _fIntensity = 1; // _fOpacity = 255; // _fSize = 1; // _color = Color3B(64 + rand() % 128, 64 + rand() % 128, 64 + rand() % 128); // _fTime = 0; // _fGravity = 0; // _Particle->setOpacity(255); // _Particle->setScale(_fSize); // _iType = STAY_FOR_TWOSECONDS; // break; // // default: // break; // } //};
[ "z1x2c3v441@gmail.com" ]
z1x2c3v441@gmail.com
52a4f2350e36e2559f651eaa784e57c4b3beb299
834fcda1290b2df392268695e161f47173b91b87
/include/tudocomp/compressors/esp/RoundContextImpl.hpp
55654de684868568effdbe19d7e8435a26a15f37
[ "Apache-2.0" ]
permissive
tudocomp/tudocomp
775fb57c784e3b57d98425255ef576b3d6b365e7
b5512f85f6b3408fb88e19c08899ec4c2716c642
refs/heads/public
2022-09-22T11:56:07.044256
2020-04-15T08:49:38
2020-04-15T08:49:38
49,510,447
19
16
NOASSERTION
2021-12-10T09:38:42
2016-01-12T15:48:46
C++
UTF-8
C++
false
false
1,709
hpp
#pragma once #include <tudocomp/compressors/esp/RoundContext.hpp> namespace tdc {namespace esp { template<typename Source, typename F> inline size_t split_where(const Source& src, size_t i, bool max, F f) { for(size_t j = i; j < src.size() - 1; j++) { if (!f(src[j], src[j + 1])) { return j + (max ? 1 : 0); } } return src.size(); } template<typename round_view_t> void RoundContext<round_view_t>::split(round_view_t src) { auto& ctx = *this; // Split up the input into metablocks of type 2 or 1/3 for (size_t i = 0; i < src.size();) { size_t j; // Scan for non-repeating // NB: First to not find a size-1 repeating prefix j = split_where(src, i, !ctx.behavior_metablocks_maximimze_repeating, [](size_t a, size_t b){ return a != b; }); if(j != i) { auto s = src.slice(i, j); auto mb = debug.metablock(); mb.init(2, s, i); MetablockContext<round_view_t> mbctx(*this, mb); mbctx.eager_mb2(s); i = j; } // Scan for repeating j = split_where(src, i, ctx.behavior_metablocks_maximimze_repeating, [](size_t a, size_t b){ return a == b; }); if(j != i) { auto s = src.slice(i, j); auto mb = debug.metablock(); mb.init(1, s, i); MetablockContext<round_view_t> mbctx(*this, mb); mbctx.eager_mb13(s, 1); i = j; } } } }}
[ "marvin.loebel@tu-dortmund.de" ]
marvin.loebel@tu-dortmund.de
300f64d82a9733c2df512d5494f88b5db609193a
46ed3890867b1e7daa73af821e87682a28777c1e
/kulloclient/api_impl/clientgeneratekeysworker.h
a5dd5de199a190f6401765b29d8871a1ff4f6a30
[]
no_license
yangteng2013/client-libkullo
c10810f962f9d9e127bf1a59f26ed4e74b182953
a8b9542fa650d5128209a49ffa445a045aa1d693
refs/heads/master
2021-06-17T17:10:51.234185
2017-06-09T10:47:41
2017-06-09T10:47:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
977
h
/* Copyright 2013–2017 Kullo GmbH. All rights reserved. */ #pragma once #include <atomic> #include <memory> #include "kulloclient/api/ClientGenerateKeysListener.h" #include "kulloclient/api_impl/worker.h" #include "kulloclient/crypto/privatekey.h" namespace Kullo { namespace ApiImpl { class ClientGenerateKeysWorker : public Worker { public: ClientGenerateKeysWorker( std::shared_ptr<Api::ClientGenerateKeysListener> listener); void work() override; void cancel() override; private: void addToProgress(int8_t progressGrowth); friend class ClientGenerateKeysSigningWorker; // all uses are inherently sequential, thus must not be synchronized std::unique_ptr<Crypto::PrivateKey> keypairSignature_; // all uses must be synchronized std::shared_ptr<Api::ClientGenerateKeysListener> listener_; // only atomic operations std::atomic<int8_t> progress_; std::atomic<bool> cancelGenKeysRequested_{false}; }; } }
[ "simon@kullo.net" ]
simon@kullo.net
af74276762d6a68d03e5805619c87c1f697eb171
2bb994ee638e9f883749cb00d82f5f88008d542f
/数据结构/实验一_一元多项式加法/Poly.cpp
19a1c6fd2558a9ee580332cc624d52c1331fcea3
[]
no_license
Studio-tyx/Course-Related-Code
daacde4d606b3ad3a1871a02166d63195f1a0db2
e83b12905fe4b053bf8a6f045c9f7a882fcd1301
refs/heads/main
2023-06-19T05:47:35.154453
2021-06-30T00:44:58
2021-06-30T00:44:58
376,546,016
0
0
null
null
null
null
GB18030
C++
false
false
1,816
cpp
#include "Poly.h" #include<iostream> #include<iomanip> using namespace std; Poly::Poly() { } Poly::~Poly() { } //初始化 //输入数据PolyArray与多项式项数n void Poly::Create(PolyArray *a, int n){ Head = new PolyNode; PolyNode *s, *r; r = Head; for (int i = 0; i < n; i++){ s = new PolyNode; s->coef = a[i].coef; s->exp = a[i].exp; s->next = NULL; r->next = s; r = s; } } //打印多项式 void Poly::Print() { this->Sort(); cout << "输出二项式:" << endl; PolyNode *tmp = Head->next; if (Head == NULL){ cout << "这是一个空二项式!" << endl; return; } while (tmp != NULL){ cout << "(" << fixed << setprecision(2) << tmp->coef << "x^" << tmp->exp << ")"; tmp = tmp->next; if (tmp != NULL) { cout << "+"; } } cout << endl; } //按指数排序 void Poly::Sort() { PolyNode *p, *q; int exp; float coef; for (p = Head->next; p != NULL; p = p->next) { for (q = p->next; q != NULL; q = q->next) { if ((p->exp) > (q->exp)){ exp = p->exp; coef = p->coef; p->exp = q->exp; p->coef = q->coef; q->exp = exp; q->coef = coef; } } } } //多项式加法 void Poly::Add(Poly LB) { PolyNode* pre = Head, *p = pre->next; PolyNode* qre = LB.Head, *q = qre->next; PolyNode* temp = NULL; while (p != NULL && q != NULL){ if (p->exp < q->exp){ pre = p; p = p->next; } else if (p->exp > q->exp){ temp = q->next; pre->next = q; q->next = p; pre = q; q = temp; qre->next = q; } else{//指数相等 p->coef = p->coef + q->coef; if (p->coef == 0){//相加为零 pre->next = p->next; delete p; p = pre->next; } else{ pre = p; p = p->next; } qre->next = q->next; delete q; q = qre->next; } } if (p == NULL) pre->next = q; LB.Head->next = NULL; }
[ "1341913265@qq.com" ]
1341913265@qq.com
919b94c9b949420b358731194ee6e2be78a10c43
8c01b286917ca24bee4d6ede0f1f336cbc445577
/Distributor/AssistantDll/Device/BatteryInfo.h
07682676e3f66dde755aadecb0ce051856484d5e
[]
no_license
bugHappy/ND91
8d501682beb37212aea7e3ba73114c048c4ff689
0e0c44927d7b1564fa99e64d6c3ddce319d523bc
refs/heads/master
2021-04-07T22:09:19.797378
2019-08-02T05:30:47
2019-08-02T05:30:47
null
0
0
null
null
null
null
GB18030
C++
false
false
1,869
h
#pragma once #include <string> using namespace std; namespace ND91Assistant { class BatteryInfo { public: BatteryInfo() {}; void ParseData(string strData) { vector<string> lines = CStrOperation::parseLines(strData); string line; for (vector<string>::iterator it = lines.begin(); it != lines.end(); it++) { line = *it; int nIndex = line.find(':'); if (nIndex > 0) { string strProp(line,0, nIndex); string strValue(line, nIndex+1); strProp = CStrOperation::toUpper(strProp); strValue = CStrOperation::toUpper(strValue); if ((int)strProp.find("AC POWERED") >= 0) _isACPower = (int)strValue.find("TRUE") >= 0 ? true : false; else if ((int)strProp.find("USB POWERED") >= 0) _isUSBPower = (int)strValue.find("TRUE") >= 0 ? true : false; else if ((int)strProp.find("STATUS") >= 0) _nStatus = atoi(strValue.c_str()); else if ((int)strProp.find("HEALTH") >= 0) _nHealth = atoi(strValue.c_str()); else if ((int)strProp.find("PRESENT") >= 0) _nPresent = atoi(strValue.c_str()); else if ((int)strProp.find("LEVEL") >= 0) _nLever = atoi(strValue.c_str()); else if ((int)strProp.find("SCALE") >= 0) _nScale = atoi(strValue.c_str()); else if ((int)strProp.find("VOLTAGE") >= 0) _nVoltage = atoi(strValue.c_str()); else if ((int)strProp.find("TEMPERATURE") >= 0) _nTemperature = atoi(strValue.c_str()); else if ((int)strProp.find("TECHNOLOGY") >= 0) _strTechnology = CCodeOperation::UTF_8ToUnicode(CStrOperation::trimLeft(strValue, " ")); } } } public: bool _isACPower; //是否是交流电充电 bool _isUSBPower; //是否是USB充电 int _nStatus; int _nHealth; int _nPresent; int _nLever; int _nScale; int _nVoltage; int _nTemperature; wstring _strTechnology; }; }
[ "czy@tongbu.com" ]
czy@tongbu.com
c592e4f5731f16608583bbb9e8572555103c30c0
419839026fe952dcd1bf57659613ee2fa78dc77e
/UssdDispatcher/UssdDispatcher/UssdDispatcher.cpp
667ff1f12400544a4dacedf5c521f547d7eecfac
[]
no_license
blueSteve/UssdDispatcher
32ec8500116e437dbcc16e13d7b84a250f8e403e
f028f37778421a226e35bf5419065ccec0646b2b
refs/heads/master
2020-04-01T01:13:21.884133
2018-10-12T09:59:30
2018-10-12T09:59:30
152,726,004
0
0
null
null
null
null
GB18030
C++
false
false
2,776
cpp
// UssdDispatcher.cpp : 定义应用程序的类行为。 // #include "stdafx.h" #include "UssdDispatcher.h" #include "UssdDispatcherDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CUssdDispatcherApp BEGIN_MESSAGE_MAP(CUssdDispatcherApp, CWinApp) ON_COMMAND(ID_HELP, &CWinApp::OnHelp) END_MESSAGE_MAP() // CUssdDispatcherApp 构造 CUssdDispatcherApp::CUssdDispatcherApp() { // 支持重新启动管理器 m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART; // TODO: 在此处添加构造代码, // 将所有重要的初始化放置在 InitInstance 中 } // 唯一的一个 CUssdDispatcherApp 对象 CUssdDispatcherApp theApp; // CUssdDispatcherApp 初始化 BOOL CUssdDispatcherApp::InitInstance() { // 如果一个运行在 Windows XP 上的应用程序清单指定要 // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式, //则需要 InitCommonControlsEx()。否则,将无法创建窗口。 INITCOMMONCONTROLSEX InitCtrls; InitCtrls.dwSize = sizeof(InitCtrls); // 将它设置为包括所有要在应用程序中使用的 // 公共控件类。 InitCtrls.dwICC = ICC_WIN95_CLASSES; InitCommonControlsEx(&InitCtrls); CWinApp::InitInstance(); AfxEnableControlContainer(); // 创建 shell 管理器,以防对话框包含 // 任何 shell 树视图控件或 shell 列表视图控件。 CShellManager *pShellManager = new CShellManager; // 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题 CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows)); // 标准初始化 // 如果未使用这些功能并希望减小 // 最终可执行文件的大小,则应移除下列 // 不需要的特定初始化例程 // 更改用于存储设置的注册表项 // TODO: 应适当修改该字符串, // 例如修改为公司或组织名 SetRegistryKey(_T("应用程序向导生成的本地应用程序")); CUssdDispatcherDlg dlg; m_pMainWnd = &dlg; INT_PTR nResponse = dlg.DoModal(); if (nResponse == IDOK) { // TODO: 在此放置处理何时用 // “确定”来关闭对话框的代码 } else if (nResponse == IDCANCEL) { // TODO: 在此放置处理何时用 // “取消”来关闭对话框的代码 } else if (nResponse == -1) { TRACE(traceAppMsg, 0, "警告: 对话框创建失败,应用程序将意外终止。\n"); TRACE(traceAppMsg, 0, "警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n"); } // 删除上面创建的 shell 管理器。 if (pShellManager != NULL) { delete pShellManager; } // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序, // 而不是启动应用程序的消息泵。 return FALSE; }
[ "zhengjy@sunspeedy.com" ]
zhengjy@sunspeedy.com
c423238aab3ff529b9c48aea858e031976172550
0078c4b5aab02722d822d176a93db775147e59e1
/Passenger.cc
26d63b12f9c0a92efe2ab1f279bb3b9b0be50c93
[]
no_license
reeecheee/Elevators
ee539723b2e1568559fe718cebb12c196f691997
a817eaa9a9bc4f3e4b121b0fd54980c387fbc0dc
refs/heads/master
2018-12-28T06:33:08.772247
2014-07-24T19:58:31
2014-07-24T19:58:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,988
cc
/* * Passenger.cc * * Passenger class source file: The passenger class represents elevator passengers * and stores their origin and destination floors, the time they arrive at the * origin, and their pick up and drop off times. Getters are provided for the * initial time/floors, getters and setters are provided for the times that are * determined at pick up and drop off. * * Author: Mike Ricci * Date: 20140716 */ #include "Passenger.h" //CONSTRUCTOR Passenger::Passenger(int timeStart, int floorStart, int floorEnd) { this->timeStart = timeStart; if(floorStart >= 0 && floorStart <= 99) //guard against out of range excepts { this->floorStart = floorStart; } if(floorEnd >= 0 && floorStart <= 99) //guard against out of range excepts { this->floorEnd = floorEnd; } } //VIRTUAL DESCTRUCTOR Passenger::~Passenger() { } //MEMBER FUNCTIONS //The function getFloorEnd() returns the passenger's destination floor. int Passenger::getFloorEnd() const { return this->floorEnd; } //The function getFloorStart() returns the passenger's start floor. int Passenger::getFloorStart() const { return this->floorStart; } //The function getTimeDropOff() returns the time the passenger was dropped off //at their destination floor. int Passenger::getTimeDropOff() const { return this->timeDropOff; } //The function getTimePickUp() returns the time the passenger was picked up at //their origin floor. int Passenger::getTimePickUp() const { return this->timePickUp; } //The function getTimeStart() returns the time the passenger was created. int Passenger::getTimeStart() const { return this->timeStart; } //The function setTimeDropOff() sets the time the passenger was dropped off at //their destination floor. void Passenger::setTimeDropoff(int time) { this->timeDropOff = time; } //The function setTimePickUp() sets the time the passenger was picked up at //their origin floor. void Passenger::setTimePickUp(int time) { this->timePickUp = time; }
[ "mike.paul.ricci@gmail.com" ]
mike.paul.ricci@gmail.com
9df1ecd5ea3ede4e31368546eca1e56a966107b2
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/lzma/CPP/Common/MyVector.cpp
054d0aae8f33640183321329db78b79277696030
[ "MIT" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
2,082
cpp
// Common/MyVector.cpp #include "StdAfx.h" #include <string.h> #include "MyVector.h" CBaseRecordVector::~CBaseRecordVector() { ClearAndFree(); } void CBaseRecordVector::ClearAndFree() { Clear(); delete []((unsigned char *)_items); _capacity = 0; _size = 0; _items = 0; } void CBaseRecordVector::Clear() { DeleteFrom(0); } void CBaseRecordVector::DeleteBack() { Delete(_size - 1); } void CBaseRecordVector::DeleteFrom(int index) { Delete(index, _size - index); } void CBaseRecordVector::ReserveOnePosition() { if (_size != _capacity) return; unsigned delta = 1; if (_capacity >= 64) delta = (unsigned)_capacity / 4; else if (_capacity >= 8) delta = 8; Reserve(_capacity + (int)delta); } void CBaseRecordVector::Reserve(int newCapacity) { // if (newCapacity <= _capacity) if (newCapacity == _capacity) return; if ((unsigned)newCapacity >= ((unsigned)1 << (sizeof(unsigned) * 8 - 1))) throw 1052353; size_t newSize = (size_t)(unsigned)newCapacity * _itemSize; if (newSize / _itemSize != (size_t)(unsigned)newCapacity) throw 1052354; unsigned char *p = NULL; if (newSize > 0) { p = new unsigned char[newSize]; if (p == 0) throw 1052355; int numRecordsToMove = (_size < newCapacity ? _size : newCapacity); memcpy(p, _items, _itemSize * numRecordsToMove); } delete [](unsigned char *)_items; _items = p; _capacity = newCapacity; } void CBaseRecordVector::ReserveDown() { Reserve(_size); } void CBaseRecordVector::MoveItems(int destIndex, int srcIndex) { memmove(((unsigned char *)_items) + destIndex * _itemSize, ((unsigned char *)_items) + srcIndex * _itemSize, _itemSize * (_size - srcIndex)); } void CBaseRecordVector::InsertOneItem(int index) { ReserveOnePosition(); MoveItems(index + 1, index); _size++; } void CBaseRecordVector::Delete(int index, int num) { TestIndexAndCorrectNum(index, num); if (num > 0) { MoveItems(index, index + num); _size -= num; } }
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
b1f567d7fa97f9f2b965ac2cf168e760b2dc482f
88b704746d66a76d9ef1470ceff9a523aa9882e4
/Il2CppOutputProject/Source/il2cppOutput/Il2CppComCallableWrappers1.cpp
96cac71afe94ec7e69b451fa8db5bcf98c8e9eca
[]
no_license
larryjustin/SVARx86
11356e5009ad1c9a9189ecd159357c40e8f51599
1564363c06011d2412b4d3961432ea6198730a56
refs/heads/master
2020-12-15T21:23:53.331861
2020-01-21T04:35:55
2020-01-21T04:35:55
235,256,820
0
0
null
null
null
null
UTF-8
C++
false
false
1,902,654
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "vm/CachedCCWBase.h" #include "os/Unity/UnityPlatformConfigure.h" #include "il2cpp-object-internals.h" template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; // Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile struct BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B; // Microsoft.MixedReality.Toolkit.Boundary.BoundaryEventData struct BoundaryEventData_tC9F73BC3895F31B9819342ECF498A94527AFF755; // Microsoft.MixedReality.Toolkit.Boundary.Edge[] struct EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84; // Microsoft.MixedReality.Toolkit.Boundary.InscribedRectangle struct InscribedRectangle_t8C3D61D1D8B9DEC50CAF5879190AFE6DECCF9269; // Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundaryVisualizationProfile struct MixedRealityBoundaryVisualizationProfile_t6DACC19AB1525605BECA678B0BBDD5BD6F958D55; // Microsoft.MixedReality.Toolkit.Diagnostics.DiagnosticsEventData struct DiagnosticsEventData_t1041B445103CE9C737C59460FFED60FDF180E1DD; // Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsProfile struct MixedRealityDiagnosticsProfile_t42D3EF35D9D096DE900C0E7376EFD14FF703FD55; // Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityToolkitVisualProfiler struct MixedRealityToolkitVisualProfiler_t5B89B479EF312C7D11C59ACEA19B534441B4C3DD; // Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest struct BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture struct DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene struct LoadAdditiveScene_t3A3BCE3A254C3DDA121B0A2267B66D70E9970D9F; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback struct UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase struct PanZoomBase_t086EFE26EE3CF9A5C44577C5C6D70952A8841F6F; // Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl struct GridObjectLayoutControl_t62A966D26151616736C590BE4F5E4737D92EED69; // Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator struct ScrollableListPopulator_t587FD7A28CD48179CC964F4641E224272F95BC4A; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse struct SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E; // Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection struct ScrollingObjectCollection_t220BA536AD26CF59AAA7C180404A710BBD0A187F; // Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.ICameraFader struct ICameraFader_tA03EB9C80E7ECA7EC0AD3664A883AEBB9881C04F; // Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionServiceProfile struct SceneTransitionServiceProfile_t211B4789077DB4BA29109575CDEFBF8E7DDFD2B9; // Microsoft.MixedReality.Toolkit.Extensions.Tracking.ILostTrackingVisual struct ILostTrackingVisual_tBC9D4CF3CB056DD3316CCBE7AEEE05349323A4C7; // Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingServiceProfile struct LostTrackingServiceProfile_tB14743DB6B3B8741B000CB999B40BADF7B4018A4; // Microsoft.MixedReality.Toolkit.IMixedRealityService struct IMixedRealityService_t8F8D8ECBFC9D70A9143048ADE6EEEF5608053DAE; // Microsoft.MixedReality.Toolkit.IMixedRealityServiceRegistrar struct IMixedRealityServiceRegistrar_tE83694D916A0E6EA064F6E25AD4635F275E9D126; // Microsoft.MixedReality.Toolkit.Input.DictationEventData struct DictationEventData_t219F19EA61B790AAA7F4BA2CAA9C171C674EABAB; // Microsoft.MixedReality.Toolkit.Input.FocusEventData struct FocusEventData_t91249691522BA4DB3766F932D45A932D7EFAF893; // Microsoft.MixedReality.Toolkit.Input.FocusProvider/PointerData struct PointerData_t2D9777F60624756A55D1E3EEBBC54D707EF38B57; // Microsoft.MixedReality.Toolkit.Input.FocusProvider/PointerHitResult struct PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E; // Microsoft.MixedReality.Toolkit.Input.GazePointerVisibilityStateMachine struct GazePointerVisibilityStateMachine_tAED35D0A182DB62D2FF22A8D6BC39F834D0F1D33; // Microsoft.MixedReality.Toolkit.Input.HandTrackingInputEventData struct HandTrackingInputEventData_tC1438ED6CE58976EF61D89A898683DBE876939F7; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityController struct IMixedRealityController_tFA8E3017D33C9FF594DB4CAC28854137EB3559FA; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityEyeGazeProvider struct IMixedRealityEyeGazeProvider_tF37269D8F6FD8CB5BC7B9068C110F891F1767D36; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityGazeProvider struct IMixedRealityGazeProvider_t1BD428A016C3D960B0D2CB848B32842C26DA0811; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityHand struct IMixedRealityHand_t5EFF4785392B457503DDF532E858F7D5DC844F45; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSource struct IMixedRealityInputSource_tAC5F0B9DCD31153CEDD94E415BB448DF001E003A; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSystem struct IMixedRealityInputSystem_tE6C9D11EE55767D2C8E8FAFC56B57A0CAB4422E5; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer struct IMixedRealityPointer_tA369D6CB41A54D397C9505B232F5CA1F2DE02DC9; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer[] struct IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPrimaryPointerSelector struct IMixedRealityPrimaryPointerSelector_tB698A8FB5F32536171EF9C0F89D1AEBFA59AAF62; // Microsoft.MixedReality.Toolkit.Input.InputAnimation struct InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4; // Microsoft.MixedReality.Toolkit.Input.InputAnimation/AnimationCurveEnumerable struct AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9; // Microsoft.MixedReality.Toolkit.Input.InputAnimation/PoseCurves struct PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79; // Microsoft.MixedReality.Toolkit.Input.InputEventData struct InputEventData_tA8150C91AA91A8818A4B2198FAEA40758D7FA43C; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<Microsoft.MixedReality.Toolkit.Input.HandMeshInfo> struct InputEventData_1_t0D86AE930E071F7A2D5B38A39C0685C41A765C47; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct InputEventData_1_tEB6B24096D7E69FCA95428FB4F330EFC3094D053; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<System.Collections.Generic.IDictionary`2<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>> struct InputEventData_1_t344495BA8CD035C2577A5822C4E2B94476907A39; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<System.Single> struct InputEventData_1_t6D3CE4DE46748052EF8131D75337DD21365869F6; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<UnityEngine.Quaternion> struct InputEventData_1_t5EEC0E129CAE8215347F788048320FD1D8E30BD9; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<UnityEngine.Vector2> struct InputEventData_1_t461B64C1E912DC090A4816E16627FAD022A92F66; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<UnityEngine.Vector3> struct InputEventData_1_t0B4DCED891788FDA7558846E82F2E218895882F2; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputActionRulesProfile struct MixedRealityInputActionRulesProfile_t6A800A4673BEBAED284A7E5ECC05EBB823796D11; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule struct MixedRealityInputModule_t5B412ECABDBD117F458DF6D770C82121892A8B95; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule/PointerData struct PointerData_tDE85694DE0D46912B3A8BBB2DE1BF7729351A593; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystemProfile struct MixedRealityInputSystemProfile_tAA40D456DE1359305601539F80E0D8CDFEEE9519; // Microsoft.MixedReality.Toolkit.Input.MixedRealityPointerEventData struct MixedRealityPointerEventData_t374A33C967ADF2F8C86742A246D5EB05969AAE5A; // Microsoft.MixedReality.Toolkit.Input.PrimaryPointerChangedHandler struct PrimaryPointerChangedHandler_t1F0E5AD69C56410BCED09972D35DA95A8D7A76E1; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<Microsoft.MixedReality.Toolkit.TrackingState> struct SourcePoseEventData_1_tAA99CFE0B9D7AFB1BEB9015484F7A252CB009AA4; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct SourcePoseEventData_1_t61BF2975099D9EA57368187A24694A0D4930C3B1; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<UnityEngine.Quaternion> struct SourcePoseEventData_1_t16464F0E3DBA87489D0BFD4F5245FF0C6B784A29; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<UnityEngine.Vector2> struct SourcePoseEventData_1_tCDBBEBD47B2BFC8C2633ADE116950B18D1CFF1CB; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<UnityEngine.Vector3> struct SourcePoseEventData_1_t48DF5031DB6E9038DFD20E552341C32098D3194C; // Microsoft.MixedReality.Toolkit.Input.SourceStateEventData struct SourceStateEventData_t16ECCDFFE1814B1AC194D6F993989B07935CF5EA; // Microsoft.MixedReality.Toolkit.Input.SpeechEventData struct SpeechEventData_tB4DE65AA03637CF14771BBF054409107ADDE24CC; // Microsoft.MixedReality.Toolkit.Input.UnityInput.MouseController struct MouseController_t32547D2D8778499705748E63858DCB736C8ECC42; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem struct MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem/SceneContentTracker struct SceneContentTracker_tD87EA7966D5855817690FD4C35686B72AEA7305E; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem/SceneLightingExecutor struct SceneLightingExecutor_t61598C0A907D76CA9295593900357D818E429255; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile struct MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B; // Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessMeshObserver struct IMixedRealitySpatialAwarenessMeshObserver_t30253A7C680C900E6A4DD55831D0D44EF15A612B; // Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessSystem struct IMixedRealitySpatialAwarenessSystem_tC23648ACD621CEF6C01E9859A464F73F28808B80; // Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessEventData`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject> struct MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942; // Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfile struct MixedRealitySpatialAwarenessSystemProfile_t0490CE710B8333019A89B8EEEADFD70A97B4901B; // Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject struct SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17; // Microsoft.MixedReality.Toolkit.Teleport.TeleportEventData struct TeleportEventData_tA40B4A166AF712A56E9FC3F17166E4A8E904A2FF; // Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver struct CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593; // Microsoft.MixedReality.Toolkit.UI.FollowMeToggle struct FollowMeToggle_tB2D345BAED26CB91F726B92E4DBDB69AB40C0F94; // Microsoft.MixedReality.Toolkit.UI.GazeHandHelper struct GazeHandHelper_t5ABF3EA484D14D49A64328CDE3A00083D1B07B5F; // Microsoft.MixedReality.Toolkit.UI.IProgressIndicator struct IProgressIndicator_tF65E733D7C769BB23DFEF5ABF158DB7BE377566A; // Microsoft.MixedReality.Toolkit.UI.Interactable struct Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB; // Microsoft.MixedReality.Toolkit.UI.ManipulationHandler struct ManipulationHandler_t5E2187BDB1F00E74E72049A8732294C7B2584925; // Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2 struct PressableButtonHoloLens2_t76B348451A892EE6469989B250B416D48721FEED; // Microsoft.MixedReality.Toolkit.Utilities.GridObjectCollection struct GridObjectCollection_tCFB8D74DD2044599C55049C204019F2D157A8E01; // Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer struct MixedRealityLineRenderer_tD1918F5FC138828F431D6CAEAB98BD2C81EEA0FE; // Microsoft.MixedReality.Toolkit.Utilities.ProximityLight struct ProximityLight_t0625A8AB3CDF2B87960717C31F36BD3B4EAE2B2B; // Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint struct HandConstraint_t3100E17669E5DFC78EB05BBA2443415D8290E8E7; // Microsoft.MixedReality.Toolkit.Utilities.SystemType[] struct SystemTypeU5BU5D_t08D4F14017D72323CF9F0AADE1D251C864175D09; // Microsoft.MixedReality.Toolkit.WindowsMixedReality.WindowsMixedRealityReprojectionUpdater struct WindowsMixedRealityReprojectionUpdater_t07903E0BB3907D681BDE7B8E43E61D11F67ABF03; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579; // System.Action`1<System.Collections.Generic.IEnumerable`1<System.String>> struct Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1; // System.Action`1<System.String> struct Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0; // System.Action`1<UnityEngine.XR.WSA.Input.GestureErrorEventArgs> struct Action_1_t86FE98C3236EF6A6C38460C0B9FE2D8262E44B6B; // System.Action`1<UnityEngine.XR.WSA.Input.HoldCanceledEventArgs> struct Action_1_t5DB3D8F91CD6BEB6D429ED4A29CC61B44CDD8A4B; // System.Action`1<UnityEngine.XR.WSA.Input.HoldCompletedEventArgs> struct Action_1_t37D466E712A7A553C87729F5DD58DC77C8A89FF0; // System.Action`1<UnityEngine.XR.WSA.Input.HoldStartedEventArgs> struct Action_1_t9A7EBE66F02FBEEDDB83D150DBABC2F2728C7F8E; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationCanceledEventArgs> struct Action_1_tB13B2372B219E1C2C06EFDBCE8BD7EE041A2EB5E; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationCompletedEventArgs> struct Action_1_t3D75FAEDED813354B2965399C726ABFD1A5EBC3F; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationStartedEventArgs> struct Action_1_t6DC7BD1E28CAAD24387D527C634AB60FA116325E; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationUpdatedEventArgs> struct Action_1_t6F72821471F95D09FC84BC9F98573CD2139C23DC; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationCanceledEventArgs> struct Action_1_t725D93DE550342B16861C2DF8B459B4657B0B40B; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationCompletedEventArgs> struct Action_1_tE20909ED14E1CC129893FCAD2C19BA898C77D7B1; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationStartedEventArgs> struct Action_1_t12403A5DFD6ED9F6D2D66FBBBF9B65D8CF00538E; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationUpdatedEventArgs> struct Action_1_tEAD62A4E2B757ADC9D11D8A3CCB8E2CF8792F64C; // System.Action`1<UnityEngine.XR.WSA.Input.RecognitionEndedEventArgs> struct Action_1_tE903BE1931BE14124CF0EFF594B91436F631E6E7; // System.Action`1<UnityEngine.XR.WSA.Input.RecognitionStartedEventArgs> struct Action_1_tCDC01C5032C70E5DD6217277758BBB3991DC7A8E; // System.Action`1<UnityEngine.XR.WSA.Input.TappedEventArgs> struct Action_1_tF26E81D6C525086A6BF0264D4CCFF4F9D3C86D12; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap>[] struct EntryU5BU5D_t60C83E552A9B7713913AA260DDAA0AFF0A75765F; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap> struct KeyCollection_t542DBD0562DA7AC8F172BD71C05844EFAD576100; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap> struct ValueCollection_t60741DBA4647D7259ECB16D50D6AC4FEE46A5B88; // System.Collections.Generic.Dictionary`2<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,Microsoft.MixedReality.Toolkit.Input.InputAnimation/PoseCurves> struct Dictionary_2_t8AE540BB32221CF122181088CC6136A39F8DAB1C; // System.Collections.Generic.Dictionary`2<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,UnityEngine.Transform> struct Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85; // System.Collections.Generic.Dictionary`2<System.Int32,Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule/PointerData> struct Dictionary_2_tEA773639426ADE852CDECE7DB72637D7E7BCEA1A; // System.Collections.Generic.Dictionary`2<System.Int32,Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchController> struct Dictionary_2_t22F1D215FD3149E8E7B2DB4355FCAB2FD16F0DCD; // System.Collections.Generic.Dictionary`2<System.Int32,Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject> struct Dictionary_2_t175CE23EB7718FA6D3014B4F9EC0676977DCBB0E; // System.Collections.Generic.Dictionary`2<System.String,Microsoft.MixedReality.Toolkit.Input.UnityInput.GenericJoystickController> struct Dictionary_2_t78CE54B0E15DACC6357DD3E0E24374ADAAF3D251; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.BaseEventSystem/EventHandlerEntry>> struct Dictionary_2_t6CAFAD6E74E812BB153AF6AC7727B33761F3933E; // System.Collections.Generic.Dictionary`2<System.UInt32,Microsoft.MixedReality.Toolkit.Input.IMixedRealityController> struct Dictionary_2_t3484B067E3D1A03543590C3E99605EDAD82CF231; // System.Collections.Generic.Dictionary`2<System.UInt32,Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerMediator> struct Dictionary_2_t2621E656D43BE7326773FB9B1CE330F895A9BDB2; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Boolean> struct Dictionary_2_t7A223AB4ABB8DBDCA019F46428591CF3E5D1D062; // System.Collections.Generic.Dictionary`2<UnityEngine.GameObject,System.Int32> struct Dictionary_2_t96FB2F26C7CE603F75E00CA02CCD843EA785C29D; // System.Collections.Generic.HashSet`1<Microsoft.MixedReality.Toolkit.Input.FocusProvider/PointerData> struct HashSet_1_t011B6459FAD372DB627D1CFFFDD142A0C0D9C810; // System.Collections.Generic.HashSet`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityController> struct HashSet_1_t1D8C2DF20A0F70B7591B7AB01568F4E468BB5AF4; // System.Collections.Generic.HashSet`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSource> struct HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE; // System.Collections.Generic.HashSet`1<UnityEngine.GameObject> struct HashSet_1_t0C44F460B51C051B426D52ACDF3D6639DD4B3D2E; // System.Collections.Generic.HashSet`1<UnityEngine.Transform> struct HashSet_1_tD2C56B25731BF501B4A41A1C5403B6717E9AF1A4; // System.Collections.Generic.ICollection`1<UnityEngine.Transform> struct ICollection_1_tF650CAF1C2A8303F2BB61AC1E269EFFD71294C68; // System.Collections.Generic.IEnumerable`1<System.String> struct IEnumerable_1_t31EF1520A3A805598500BB6033C14ABDA7116D5E; // System.Collections.Generic.IEnumerator`1<System.String> struct IEnumerator_1_tE14471B9BA58E22CC2B0F85AA521BEBB7F04E004; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.IMixedRealityDataProvider> struct List_1_tB495F59A1F3D218202CA1BE53AA38D8A46C25E1A; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.Input.FocusProvider/PointerData> struct List_1_tE1D27E9C4800D7B35F2E105CC4DC73C67F2B2EA6; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.Input.FocusProvider/PointerPreferences> struct List_1_tFE6FD54290FAE1215104780403982C7B09CDF827; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchController> struct List_1_t25753972ADFC1AFE2CB446A36CA82C50B1D0A211; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo> struct List_1_t5C91A9AB04749854BD3D1F315F09CE414B49BCF4; // System.Collections.Generic.List`1<System.Tuple`2<Microsoft.MixedReality.Toolkit.BaseEventSystem/Action,UnityEngine.GameObject>> struct List_1_t14CC06CC2142256D6066B9B737B042E972799633; // System.Collections.Generic.List`1<System.Tuple`3<Microsoft.MixedReality.Toolkit.BaseEventSystem/Action,System.Type,UnityEngine.EventSystems.IEventSystemHandler>> struct List_1_t1F1B688CCCBE76E073C576F58A5558AB95C3187A; // System.Collections.Generic.List`1<UnityEngine.Camera> struct List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372; // System.Collections.Generic.List`1<UnityEngine.GameObject> struct List_1_t99909CDEDA6D21189884AEA74B1FD99FC9C6A4C0; // System.Collections.Generic.List`1<UnityEngine.Ray> struct List_1_tDBFFB28EA2DB808522ECEF439E08351254619124; // System.Collections.Generic.Queue`1<UnityEngine.Transform> struct Queue_1_tBF9430B97FF40E31C9F6F2D5152E2DF92C15746A; // System.Collections.Generic.Queue`1<UnityEngine.XR.WSA.SurfaceId> struct Queue_1_tA6C11EBF8FDE095B3E1145561094C8C2F7D35EDE; // System.Collections.Generic.Stack`1<UnityEngine.GameObject> struct Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC; // System.Collections.Generic.Stack`1<UnityEngine.Transform> struct Stack_1_tB73C3A77994D6235D71C61492FE0A4D9FDFF9F75; // System.Collections.IEnumerator struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A; // System.IFormatProvider struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.String struct String_t; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.Text.StringBuilder struct StringBuilder_t; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; // TMPro.TMP_Dropdown struct TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353; // TMPro.TMP_FontAsset struct TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C; // TMPro.TMP_InputField struct TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB; // TMPro.TMP_SpriteAnimator struct TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17; // TMPro.TMP_SpriteAsset struct TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487; // TMPro.TMP_TextElement struct TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344; // UnityEngine.AnimationCurve struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C; // UnityEngine.AudioClip struct AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051; // UnityEngine.BoxCollider struct BoxCollider_t2DF257BBBFCABE0B9D78B21D238298D1942BFBAA; // UnityEngine.Camera struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34; // UnityEngine.Collider[] struct ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252; // UnityEngine.Color32[] struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Boundary.IMixedRealityBoundaryHandler> struct EventFunction_1_t97D0C3B1C38BD8910A6C8BA1C38B402288281E1D; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Diagnostics.IMixedRealityDiagnosticsHandler> struct EventFunction_1_tE3613A187BD139B1D75C574A04A3CAB85EA52641; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityBaseInputHandler> struct EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityDictationHandler> struct EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityFocusChangedHandler> struct EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityFocusHandler> struct EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler> struct EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>> struct EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Quaternion>> struct EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Vector2>> struct EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Vector3>> struct EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityHandJointHandler> struct EventFunction_1_t3561006DFAC5A7EB3C26A1F81ED9AFAA62826564; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityHandMeshHandler> struct EventFunction_1_t2F8921FE20FCDB73071295BBD26D1D37A01733AC; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler> struct EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>> struct EventFunction_1_tDCFC7996E2B97EB5312A7DCB087AA16ECFAA4712; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<System.Single>> struct EventFunction_1_t60B6A8A5E23390341767A320326CFCBDD0906F9B; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<UnityEngine.Quaternion>> struct EventFunction_1_t7458C3A623F78CEAB385AD577FA46150E68AEA08; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<UnityEngine.Vector2>> struct EventFunction_1_t2EB7A86FAD8D1102145538CA64F91309A07D14FA; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<UnityEngine.Vector3>> struct EventFunction_1_tB79678BB1BB73E2B30F6BDC706B4DD804D42EF2C; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerHandler> struct EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourcePoseHandler> struct EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourceStateHandler> struct EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySpeechHandler> struct EventFunction_1_t876F8E08C1920DE6C297A650967F6B9B6C6DBAA8; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityTouchHandler> struct EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessObservationHandler`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject>> struct EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<Microsoft.MixedReality.Toolkit.Teleport.IMixedRealityTeleportHandler> struct EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759; // UnityEngine.EventSystems.PointerEventData struct PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63; // UnityEngine.GameObject struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F; // UnityEngine.GameObject[] struct GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520; // UnityEngine.GlobalJavaObjectRef struct GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0; // UnityEngine.GradientAlphaKey[] struct GradientAlphaKeyU5BU5D_t6907BD924111274532A9E85C9426951DF1C6FB4B; // UnityEngine.LayerMask[] struct LayerMaskU5BU5D_tDFC13874A022E79527D2CDF572C06EC90D0F828D; // UnityEngine.Material struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598; // UnityEngine.Mesh struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0; // UnityEngine.RenderTexture struct RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6; // UnityEngine.Transform struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA; // UnityEngine.Vector2[] struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6; // UnityEngine.Vector3[] struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28; // UnityEngine.Vector4[] struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66; // UnityEngine.WaitUntil struct WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F; // UnityEngine.Windows.Speech.DictationRecognizer struct DictationRecognizer_tAABC39C7583FCB17ADB78BCE15E2E1AEFA85F355; // UnityEngine.Windows.Speech.KeywordRecognizer struct KeywordRecognizer_t8F0A26BBF11FE0307328C06B4A9EB4268386578C; // UnityEngine.XR.WSA.Input.GestureRecognizer struct GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE; // UnityEngine.XR.WSA.Input.GestureRecognizer/GestureErrorDelegate struct GestureErrorDelegate_tFA3E7E6A9E25ADFB4D2FF30E7CD521937F795084; // UnityEngine.XR.WSA.Input.GestureRecognizer/HoldCanceledEventDelegate struct HoldCanceledEventDelegate_t5073A875A657B659A55D9111BF52AFA5E8FA22C2; // UnityEngine.XR.WSA.Input.GestureRecognizer/HoldCompletedEventDelegate struct HoldCompletedEventDelegate_tE1C05DE1BDD2AF5B15D561CE9EEB23259CAD0A7A; // UnityEngine.XR.WSA.Input.GestureRecognizer/HoldStartedEventDelegate struct HoldStartedEventDelegate_t79DBAFBD8DB4A33E282665E171EF7F7903DA57B2; // UnityEngine.XR.WSA.Input.GestureRecognizer/ManipulationCanceledEventDelegate struct ManipulationCanceledEventDelegate_t5D62D76C35A55841145479B9708F35A667B42917; // UnityEngine.XR.WSA.Input.GestureRecognizer/ManipulationCompletedEventDelegate struct ManipulationCompletedEventDelegate_tFBC536B9D0EED5699871DB3855AA02653F35B6A4; // UnityEngine.XR.WSA.Input.GestureRecognizer/ManipulationStartedEventDelegate struct ManipulationStartedEventDelegate_tECC88952F89E480F898CF5710A0A47D1BA85C9F0; // UnityEngine.XR.WSA.Input.GestureRecognizer/ManipulationUpdatedEventDelegate struct ManipulationUpdatedEventDelegate_t521F96EEF0CE5D99D54AA2AB2D075CBD66D46406; // UnityEngine.XR.WSA.Input.GestureRecognizer/NavigationCanceledEventDelegate struct NavigationCanceledEventDelegate_tA82EB6DFFB53212C7FADC09362EA424CEEF2A954; // UnityEngine.XR.WSA.Input.GestureRecognizer/NavigationCompletedEventDelegate struct NavigationCompletedEventDelegate_tF2B1D25EF7819624117F3C6E25E70F80B238F5D3; // UnityEngine.XR.WSA.Input.GestureRecognizer/NavigationStartedEventDelegate struct NavigationStartedEventDelegate_tC56D514B35B7270BBE8D21E15C435EDBA84F1AEF; // UnityEngine.XR.WSA.Input.GestureRecognizer/NavigationUpdatedEventDelegate struct NavigationUpdatedEventDelegate_t5802B4B5608A4D915714D70A5A51C82C6E34C69A; // UnityEngine.XR.WSA.Input.GestureRecognizer/RecognitionEndedEventDelegate struct RecognitionEndedEventDelegate_t00AB7FD9F0C0070CA19697B832E58151348F700B; // UnityEngine.XR.WSA.Input.GestureRecognizer/RecognitionStartedEventDelegate struct RecognitionStartedEventDelegate_t8C076BC7E24C0326F46F8EBB3B3CB7495027B214; // UnityEngine.XR.WSA.Input.GestureRecognizer/TappedEventDelegate struct TappedEventDelegate_tC33CDAA9CA071369B711FA5FDE947E122072D34F; // UnityEngine.XR.WSA.Input.InteractionSourceState[] struct InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA; // UnityEngine.XR.WSA.SurfaceObserver struct SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864; // Windows.UI.Xaml.Interop.TypeName struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC; IL2CPP_EXTERN_C RuntimeClass* AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Size_t4766FF009097CE547F699B69250246058DA664D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_tD18885B289077804D4E82931E68E84181C072755_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReferenceArray_1_get_Value_m085ABBDED729E7C8E332FDD90292AAAFB1267309_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReferenceArray_1_get_Value_mA8AE791F44230344C847AF9155D2F6144318D062_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m03DA6CDF5117537DE41F422D686269BF50DA50C6_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m0F953FE55F90100B2381188B132B5FAA7D5A4929_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m12AEB76C9C84E98E8BEE7E909CE268F95A05E899_CCW_Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m1CF326D0DC7E3C56CE53356E28D6DB71110F7928_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m1DF83BE7461C683CF165E03BC4915F4FFC2690C6_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m2269DCAE519508A042AD9A68C026B7AA70901042_CCW_UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m2492E30E817B6A78C5A7C728CD3DFFA25D4608BF_CCW_Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m29DABAFAF45FE5B35150EB56DB1AC7608AC04108_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m310ABD51534A3ABADF2474DAC870D26B1706D4A1_CCW_HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m36783109B74EB29CB28AF73DD7E207957146F018_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m4F109C5DA2FF9F7BD3F605BB09430CA3F936807A_CCW_FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m5A5957990F5156FC2709CA1F6E406C6A0C4AD6A3_CCW_Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m5C473856F84B9723FF4AFFA39ACD3BC9FB2FE6EF_CCW_JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m6C23125A016E1F5E4169DEDCBDCC3031D03BE8DD_CCW_SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m7AA4C5DD3527F1B19462C726F511D88FC12FBE6B_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m8A2147DBABB963656671ACB6C0BC03A06A02DA4A_CCW_DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m93D0577BA82B2418EB4B2DCF81F86934016908A7_CCW_EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_m9952B601AF3C6D205C72E5DA9AEDDB03A369E4EF_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mAD21B0BAD0AA9FB92F7A686B1DEE50AB61A0B5A3_CCW_TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mAE5A8F99060F1DC39B04303111B9B0936CF2EE59_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mB4F86E26F7843886681B8F2CF9CDA79DC74827E7_CCW_Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mB500DD4EC51CF23CA8B4D79F9CBF5E4C254AB0E1_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mC6234E02A201EAFB66846D1AA800201A51B2CDF7_CCW_TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mD022CF12AFA037E3A391C619D1DF5926221967A4_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mD70DC394007AE06DD463C810C4A6C833AE4F83CB_CCW_Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mE6C0B7EE13DDE444F05495C7D1FB93F46BD4B1A9_CCW_HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mEEA056935DABABBA8E17B0CBDA7AF3596AF5E825_CCW_Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IReference_1_get_Value_mF64790DEC6FF93C719750283EA8C9CFB1EA82AE0_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId; struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ; struct DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ; struct Guid_t ; struct IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B; struct IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E; struct IIterator_1_t0979D6AE40DD58B191FD848FE224608112B69237; struct IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616; struct IIterator_1_t2B21213FEB0A065EE8EE08505D4993A125B94604; struct IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A; struct IIterator_1_t7D121DD54685B5C3A67B4FBEBDB34A8EBACD6E4C; struct IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356; struct IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171; struct Il2CppWindowsRuntimeTypeName; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com; struct Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ; struct Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ; struct Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ; struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC;; struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime; struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime;; struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ; struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ; struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E; struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IEnumerable`1<System.Char>> struct NOVTABLE IIterable_1_t7AD27FF97F3631C2A53221E237A532F8259212D5 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IIterable_1_First_m83409326985343D364AFE4A5C738D93A279AEAA1(IIterator_1_t0979D6AE40DD58B191FD848FE224608112B69237** comReturnValue) = 0; }; // Windows.Foundation.Collections.IIterable`1<System.Collections.IEnumerable> struct NOVTABLE IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) = 0; }; // Windows.Foundation.Collections.IIterable`1<System.Object> struct NOVTABLE IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) = 0; }; // Windows.Foundation.Collections.IIterable`1<System.String> struct NOVTABLE IIterable_1_t3D3C61499BF616A0FC79BBE99A667948ED4235BC : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IIterable_1_First_m040BDF89865ADD81E4589B6F4D5E3FFD516CCEAE(IIterator_1_t7D121DD54685B5C3A67B4FBEBDB34A8EBACD6E4C** comReturnValue) = 0; }; // Windows.Foundation.Collections.IIterable`1<System.Type> struct NOVTABLE IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IIterable_1_First_m44403577D0A7FC49C192EC087DF22DC82ABD1BEC(IIterator_1_t2B21213FEB0A065EE8EE08505D4993A125B94604** comReturnValue) = 0; }; // Windows.Foundation.Collections.IVectorView`1<System.Object> struct NOVTABLE IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) = 0; }; // Windows.Foundation.Collections.IVector`1<System.Object> struct NOVTABLE IVector_1_t4AB9C9A64B093834D6FAE1CB577829FE2EA347AD : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mF1C28A39CB196A6558872EF51C7BBA27345A0577(uint32_t ___index0, Il2CppIInspectable** comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mF67ADD732EE6887FDB6C6FA10423E3A17E70F907(uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m74563BA39B42A410531686B0E575591BB1B6783B(IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356** comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m5D285CE815AEA392A54B1B8DB0DB87AE7A11E9F1(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m2DBCED7F76180810B1A8913EC60326C225EC8928(uint32_t ___index0, Il2CppIInspectable* ___value1) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m8E26C2891B8B514689C8598799F065DF5787A033(uint32_t ___index0, Il2CppIInspectable* ___value1) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mE57C73814C5CE91212890C68FB5024CA38CF1336(uint32_t ___index0) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_Append_mE03D632B5C8AE9BF9D0D19B2DF47B14D9AEA63ED(Il2CppIInspectable* ___value0) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m2BE9E5FF5D4F73D5F4E26F1E8B74789A79009EB2() = 0; virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mCE8AE5382949CD2CFD3A9B40EF02A3897FD77698() = 0; virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mBCA555ECFB3AC3D8FEFCD39368DF88BE5642352E(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m627D66FCD1A06ED4C5AA428B4EA3514E34F52A3A(uint32_t ___items0ArraySize, Il2CppIInspectable** ___items0) = 0; }; // Windows.Foundation.IClosable struct NOVTABLE IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() = 0; }; // Windows.Foundation.IReferenceArray`1<System.Object> struct NOVTABLE IReferenceArray_1_t1E66560BE2F95224CD3DDD53D0E4F57D944AADF7 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReferenceArray_1_get_Value_mA8AE791F44230344C847AF9155D2F6144318D062(uint32_t* comReturnValueArraySize, Il2CppIInspectable*** comReturnValue) = 0; }; // Windows.Foundation.IReferenceArray`1<System.Type> struct NOVTABLE IReferenceArray_1_tAF5C268A5AF981224627FF530FA49915B8755802 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReferenceArray_1_get_Value_m085ABBDED729E7C8E332FDD90292AAAFB1267309(uint32_t* comReturnValueArraySize, Il2CppWindowsRuntimeTypeName** comReturnValue) = 0; }; // Windows.UI.Xaml.Interop.IBindableIterable struct NOVTABLE IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) = 0; }; // Windows.UI.Xaml.Interop.IBindableVector struct NOVTABLE IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() = 0; virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() = 0; }; // I18N.CJK.CodeTable struct CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F : public RuntimeObject { public: // System.IO.Stream I18N.CJK.CodeTable::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_0; public: inline static int32_t get_offset_of_stream_0() { return static_cast<int32_t>(offsetof(CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F, ___stream_0)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_0() const { return ___stream_0; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_0() { return &___stream_0; } inline void set_stream_0(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_0), (void*)value); } }; // Microsoft.MixedReality.Toolkit.BaseService struct BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248 : public RuntimeObject { public: // System.String Microsoft.MixedReality.Toolkit.BaseService::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_1; // System.UInt32 Microsoft.MixedReality.Toolkit.BaseService::<Priority>k__BackingField uint32_t ___U3CPriorityU3Ek__BackingField_2; // Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile Microsoft.MixedReality.Toolkit.BaseService::<ConfigurationProfile>k__BackingField BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * ___U3CConfigurationProfileU3Ek__BackingField_3; // System.Boolean Microsoft.MixedReality.Toolkit.BaseService::disposed bool ___disposed_4; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248, ___U3CNameU3Ek__BackingField_1)); } inline String_t* get_U3CNameU3Ek__BackingField_1() const { return ___U3CNameU3Ek__BackingField_1; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_1() { return &___U3CNameU3Ek__BackingField_1; } inline void set_U3CNameU3Ek__BackingField_1(String_t* value) { ___U3CNameU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CPriorityU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248, ___U3CPriorityU3Ek__BackingField_2)); } inline uint32_t get_U3CPriorityU3Ek__BackingField_2() const { return ___U3CPriorityU3Ek__BackingField_2; } inline uint32_t* get_address_of_U3CPriorityU3Ek__BackingField_2() { return &___U3CPriorityU3Ek__BackingField_2; } inline void set_U3CPriorityU3Ek__BackingField_2(uint32_t value) { ___U3CPriorityU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CConfigurationProfileU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248, ___U3CConfigurationProfileU3Ek__BackingField_3)); } inline BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * get_U3CConfigurationProfileU3Ek__BackingField_3() const { return ___U3CConfigurationProfileU3Ek__BackingField_3; } inline BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B ** get_address_of_U3CConfigurationProfileU3Ek__BackingField_3() { return &___U3CConfigurationProfileU3Ek__BackingField_3; } inline void set_U3CConfigurationProfileU3Ek__BackingField_3(BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * value) { ___U3CConfigurationProfileU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CConfigurationProfileU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_disposed_4() { return static_cast<int32_t>(offsetof(BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248, ___disposed_4)); } inline bool get_disposed_4() const { return ___disposed_4; } inline bool* get_address_of_disposed_4() { return &___disposed_4; } inline void set_disposed_4(bool value) { ___disposed_4 = value; } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12 struct U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<>4__this BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB * ___U3CU3E4__this_2; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<cube>5__2 GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CcubeU3E5__2_3; // Microsoft.MixedReality.Toolkit.UI.ManipulationHandler Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<mh>5__3 ManipulationHandler_t5E2187BDB1F00E74E72049A8732294C7B2584925 * ___U3CmhU3E5__3_4; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<newObject>5__4 GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CnewObjectU3E5__4_5; // UnityEngine.BoxCollider Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<bc>5__5 BoxCollider_t2DF257BBBFCABE0B9D78B21D238298D1942BFBAA * ___U3CbcU3E5__5_6; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12::<lastParent>5__6 Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3ClastParentU3E5__6_7; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3CU3E4__this_2)); } inline BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CcubeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3CcubeU3E5__2_3)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CcubeU3E5__2_3() const { return ___U3CcubeU3E5__2_3; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CcubeU3E5__2_3() { return &___U3CcubeU3E5__2_3; } inline void set_U3CcubeU3E5__2_3(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___U3CcubeU3E5__2_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcubeU3E5__2_3), (void*)value); } inline static int32_t get_offset_of_U3CmhU3E5__3_4() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3CmhU3E5__3_4)); } inline ManipulationHandler_t5E2187BDB1F00E74E72049A8732294C7B2584925 * get_U3CmhU3E5__3_4() const { return ___U3CmhU3E5__3_4; } inline ManipulationHandler_t5E2187BDB1F00E74E72049A8732294C7B2584925 ** get_address_of_U3CmhU3E5__3_4() { return &___U3CmhU3E5__3_4; } inline void set_U3CmhU3E5__3_4(ManipulationHandler_t5E2187BDB1F00E74E72049A8732294C7B2584925 * value) { ___U3CmhU3E5__3_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CmhU3E5__3_4), (void*)value); } inline static int32_t get_offset_of_U3CnewObjectU3E5__4_5() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3CnewObjectU3E5__4_5)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CnewObjectU3E5__4_5() const { return ___U3CnewObjectU3E5__4_5; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CnewObjectU3E5__4_5() { return &___U3CnewObjectU3E5__4_5; } inline void set_U3CnewObjectU3E5__4_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___U3CnewObjectU3E5__4_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CnewObjectU3E5__4_5), (void*)value); } inline static int32_t get_offset_of_U3CbcU3E5__5_6() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3CbcU3E5__5_6)); } inline BoxCollider_t2DF257BBBFCABE0B9D78B21D238298D1942BFBAA * get_U3CbcU3E5__5_6() const { return ___U3CbcU3E5__5_6; } inline BoxCollider_t2DF257BBBFCABE0B9D78B21D238298D1942BFBAA ** get_address_of_U3CbcU3E5__5_6() { return &___U3CbcU3E5__5_6; } inline void set_U3CbcU3E5__5_6(BoxCollider_t2DF257BBBFCABE0B9D78B21D238298D1942BFBAA * value) { ___U3CbcU3E5__5_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CbcU3E5__5_6), (void*)value); } inline static int32_t get_offset_of_U3ClastParentU3E5__6_7() { return static_cast<int32_t>(offsetof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451, ___U3ClastParentU3E5__6_7)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3ClastParentU3E5__6_7() const { return ___U3ClastParentU3E5__6_7; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3ClastParentU3E5__6_7() { return &___U3ClastParentU3E5__6_7; } inline void set_U3ClastParentU3E5__6_7(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___U3ClastParentU3E5__6_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3ClastParentU3E5__6_7), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<WaitForSpeechCommand>d__14 struct U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<WaitForSpeechCommand>d__14::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<WaitForSpeechCommand>d__14::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<WaitForSpeechCommand>d__14::<>4__this BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568, ___U3CU3E4__this_2)); } inline BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(BoundingBoxExampleTest_tDEBD28CECE370F5ED6F4FD3699D1CB4221A68AEB * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.EyeTrackingDemoUtils_<LoadNewScene>d__8 struct U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.EyeTrackingDemoUtils_<LoadNewScene>d__8::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.EyeTrackingDemoUtils_<LoadNewScene>d__8::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Single Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.EyeTrackingDemoUtils_<LoadNewScene>d__8::delayInSeconds float ___delayInSeconds_2; // System.String Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.EyeTrackingDemoUtils_<LoadNewScene>d__8::sceneToBeLoaded String_t* ___sceneToBeLoaded_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_delayInSeconds_2() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE, ___delayInSeconds_2)); } inline float get_delayInSeconds_2() const { return ___delayInSeconds_2; } inline float* get_address_of_delayInSeconds_2() { return &___delayInSeconds_2; } inline void set_delayInSeconds_2(float value) { ___delayInSeconds_2 = value; } inline static int32_t get_offset_of_sceneToBeLoaded_3() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE, ___sceneToBeLoaded_3)); } inline String_t* get_sceneToBeLoaded_3() const { return ___sceneToBeLoaded_3; } inline String_t** get_address_of_sceneToBeLoaded_3() { return &___sceneToBeLoaded_3; } inline void set_sceneToBeLoaded_3(String_t* value) { ___sceneToBeLoaded_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sceneToBeLoaded_3), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene_<LoadNewScene>d__6 struct U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene_<LoadNewScene>d__6::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene_<LoadNewScene>d__6::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene_<LoadNewScene>d__6::<>4__this LoadAdditiveScene_t3A3BCE3A254C3DDA121B0A2267B66D70E9970D9F * ___U3CU3E4__this_2; // System.String Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene_<LoadNewScene>d__6::sceneName String_t* ___sceneName_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED, ___U3CU3E4__this_2)); } inline LoadAdditiveScene_t3A3BCE3A254C3DDA121B0A2267B66D70E9970D9F * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline LoadAdditiveScene_t3A3BCE3A254C3DDA121B0A2267B66D70E9970D9F ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(LoadAdditiveScene_t3A3BCE3A254C3DDA121B0A2267B66D70E9970D9F * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_sceneName_3() { return static_cast<int32_t>(offsetof(U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED, ___sceneName_3)); } inline String_t* get_sceneName_3() const { return ___sceneName_3; } inline String_t** get_address_of_sceneName_3() { return &___sceneName_3; } inline void set_sceneName_3(String_t* value) { ___sceneName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sceneName_3), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<AddToCounter>d__44 struct U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<AddToCounter>d__44::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<AddToCounter>d__44::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Single Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<AddToCounter>d__44::time float ___time_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_time_2() { return static_cast<int32_t>(offsetof(U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4, ___time_2)); } inline float get_time_2() const { return ___time_2; } inline float* get_address_of_time_2() { return &___time_2; } inline void set_time_2(float value) { ___time_2 = value; } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<PopulateHeatmap>d__42 struct U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<PopulateHeatmap>d__42::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<PopulateHeatmap>d__42::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<PopulateHeatmap>d__42::<>4__this UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 * ___U3CU3E4__this_2; // System.Single Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<PopulateHeatmap>d__42::<maxTargetingDistInMeters>5__2 float ___U3CmaxTargetingDistInMetersU3E5__2_3; // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<PopulateHeatmap>d__42::<i>5__3 int32_t ___U3CiU3E5__3_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88, ___U3CU3E4__this_2)); } inline UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CmaxTargetingDistInMetersU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88, ___U3CmaxTargetingDistInMetersU3E5__2_3)); } inline float get_U3CmaxTargetingDistInMetersU3E5__2_3() const { return ___U3CmaxTargetingDistInMetersU3E5__2_3; } inline float* get_address_of_U3CmaxTargetingDistInMetersU3E5__2_3() { return &___U3CmaxTargetingDistInMetersU3E5__2_3; } inline void set_U3CmaxTargetingDistInMetersU3E5__2_3(float value) { ___U3CmaxTargetingDistInMetersU3E5__2_3 = value; } inline static int32_t get_offset_of_U3CiU3E5__3_4() { return static_cast<int32_t>(offsetof(U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88, ___U3CiU3E5__3_4)); } inline int32_t get_U3CiU3E5__3_4() const { return ___U3CiU3E5__3_4; } inline int32_t* get_address_of_U3CiU3E5__3_4() { return &___U3CiU3E5__3_4; } inline void set_U3CiU3E5__3_4(int32_t value) { ___U3CiU3E5__3_4 = value; } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<UpdateStatus>d__43 struct U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<UpdateStatus>d__43::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<UpdateStatus>d__43::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<UpdateStatus>d__43::<>4__this UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 * ___U3CU3E4__this_2; // System.Single Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<UpdateStatus>d__43::updateFrequency float ___updateFrequency_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1, ___U3CU3E4__this_2)); } inline UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(UserInputPlayback_t0EA006DE523ABEF24D8AB3B5DF84355812009C56 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_updateFrequency_3() { return static_cast<int32_t>(offsetof(U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1, ___updateFrequency_3)); } inline float get_updateFrequency_3() const { return ___updateFrequency_3; } inline float* get_address_of_updateFrequency_3() { return &___updateFrequency_3; } inline void set_updateFrequency_3(float value) { ___updateFrequency_3 = value; } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase_<ZoomAndStop>d__78 struct U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase_<ZoomAndStop>d__78::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase_<ZoomAndStop>d__78::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase_<ZoomAndStop>d__78::<>4__this PanZoomBase_t086EFE26EE3CF9A5C44577C5C6D70952A8841F6F * ___U3CU3E4__this_2; // System.Boolean Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase_<ZoomAndStop>d__78::zoomIn bool ___zoomIn_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE, ___U3CU3E4__this_2)); } inline PanZoomBase_t086EFE26EE3CF9A5C44577C5C6D70952A8841F6F * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline PanZoomBase_t086EFE26EE3CF9A5C44577C5C6D70952A8841F6F ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(PanZoomBase_t086EFE26EE3CF9A5C44577C5C6D70952A8841F6F * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_zoomIn_3() { return static_cast<int32_t>(offsetof(U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE, ___zoomIn_3)); } inline bool get_zoomIn_3() const { return ___zoomIn_3; } inline bool* get_address_of_zoomIn_3() { return &___zoomIn_3; } inline void set_zoomIn_3(bool value) { ___zoomIn_3 = value; } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7 struct U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7::<>4__this GridObjectLayoutControl_t62A966D26151616736C590BE4F5E4737D92EED69 * ___U3CU3E4__this_2; // Microsoft.MixedReality.Toolkit.Utilities.GridObjectCollection Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7::<gridCollection>5__2 GridObjectCollection_tCFB8D74DD2044599C55049C204019F2D157A8E01 * ___U3CgridCollectionU3E5__2_3; // System.String Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7::<path>5__3 String_t* ___U3CpathU3E5__3_4; // System.Text.StringBuilder Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7::<stringBuilder>5__4 StringBuilder_t * ___U3CstringBuilderU3E5__4_5; // System.Collections.IEnumerator Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7::<>7__wrap4 RuntimeObject* ___U3CU3E7__wrap4_6; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2, ___U3CU3E4__this_2)); } inline GridObjectLayoutControl_t62A966D26151616736C590BE4F5E4737D92EED69 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline GridObjectLayoutControl_t62A966D26151616736C590BE4F5E4737D92EED69 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(GridObjectLayoutControl_t62A966D26151616736C590BE4F5E4737D92EED69 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CgridCollectionU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2, ___U3CgridCollectionU3E5__2_3)); } inline GridObjectCollection_tCFB8D74DD2044599C55049C204019F2D157A8E01 * get_U3CgridCollectionU3E5__2_3() const { return ___U3CgridCollectionU3E5__2_3; } inline GridObjectCollection_tCFB8D74DD2044599C55049C204019F2D157A8E01 ** get_address_of_U3CgridCollectionU3E5__2_3() { return &___U3CgridCollectionU3E5__2_3; } inline void set_U3CgridCollectionU3E5__2_3(GridObjectCollection_tCFB8D74DD2044599C55049C204019F2D157A8E01 * value) { ___U3CgridCollectionU3E5__2_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CgridCollectionU3E5__2_3), (void*)value); } inline static int32_t get_offset_of_U3CpathU3E5__3_4() { return static_cast<int32_t>(offsetof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2, ___U3CpathU3E5__3_4)); } inline String_t* get_U3CpathU3E5__3_4() const { return ___U3CpathU3E5__3_4; } inline String_t** get_address_of_U3CpathU3E5__3_4() { return &___U3CpathU3E5__3_4; } inline void set_U3CpathU3E5__3_4(String_t* value) { ___U3CpathU3E5__3_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CpathU3E5__3_4), (void*)value); } inline static int32_t get_offset_of_U3CstringBuilderU3E5__4_5() { return static_cast<int32_t>(offsetof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2, ___U3CstringBuilderU3E5__4_5)); } inline StringBuilder_t * get_U3CstringBuilderU3E5__4_5() const { return ___U3CstringBuilderU3E5__4_5; } inline StringBuilder_t ** get_address_of_U3CstringBuilderU3E5__4_5() { return &___U3CstringBuilderU3E5__4_5; } inline void set_U3CstringBuilderU3E5__4_5(StringBuilder_t * value) { ___U3CstringBuilderU3E5__4_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CstringBuilderU3E5__4_5), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap4_6() { return static_cast<int32_t>(offsetof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2, ___U3CU3E7__wrap4_6)); } inline RuntimeObject* get_U3CU3E7__wrap4_6() const { return ___U3CU3E7__wrap4_6; } inline RuntimeObject** get_address_of_U3CU3E7__wrap4_6() { return &___U3CU3E7__wrap4_6; } inline void set_U3CU3E7__wrap4_6(RuntimeObject* value) { ___U3CU3E7__wrap4_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap4_6), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26 struct U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26::<>4__this ScrollableListPopulator_t587FD7A28CD48179CC964F4641E224272F95BC4A * ___U3CU3E4__this_2; // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26::instancesPerFrame int32_t ___instancesPerFrame_3; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26::loaderViz GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___loaderViz_4; // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26::<currItemCount>5__2 int32_t ___U3CcurrItemCountU3E5__2_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF, ___U3CU3E4__this_2)); } inline ScrollableListPopulator_t587FD7A28CD48179CC964F4641E224272F95BC4A * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline ScrollableListPopulator_t587FD7A28CD48179CC964F4641E224272F95BC4A ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(ScrollableListPopulator_t587FD7A28CD48179CC964F4641E224272F95BC4A * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_instancesPerFrame_3() { return static_cast<int32_t>(offsetof(U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF, ___instancesPerFrame_3)); } inline int32_t get_instancesPerFrame_3() const { return ___instancesPerFrame_3; } inline int32_t* get_address_of_instancesPerFrame_3() { return &___instancesPerFrame_3; } inline void set_instancesPerFrame_3(int32_t value) { ___instancesPerFrame_3 = value; } inline static int32_t get_offset_of_loaderViz_4() { return static_cast<int32_t>(offsetof(U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF, ___loaderViz_4)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_loaderViz_4() const { return ___loaderViz_4; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_loaderViz_4() { return &___loaderViz_4; } inline void set_loaderViz_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___loaderViz_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___loaderViz_4), (void*)value); } inline static int32_t get_offset_of_U3CcurrItemCountU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF, ___U3CcurrItemCountU3E5__2_5)); } inline int32_t get_U3CcurrItemCountU3E5__2_5() const { return ___U3CcurrItemCountU3E5__2_5; } inline int32_t* get_address_of_U3CcurrItemCountU3E5__2_5() { return &___U3CcurrItemCountU3E5__2_5; } inline void set_U3CcurrItemCountU3E5__2_5(int32_t value) { ___U3CcurrItemCountU3E5__2_5 = value; } }; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoAnimatePulse>d__22 struct U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoAnimatePulse>d__22::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoAnimatePulse>d__22::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoAnimatePulse>d__22::<>4__this SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * ___U3CU3E4__this_2; // System.Single Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoAnimatePulse>d__22::<t>5__2 float ___U3CtU3E5__2_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D, ___U3CU3E4__this_2)); } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CtU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D, ___U3CtU3E5__2_3)); } inline float get_U3CtU3E5__2_3() const { return ___U3CtU3E5__2_3; } inline float* get_address_of_U3CtU3E5__2_3() { return &___U3CtU3E5__2_3; } inline void set_U3CtU3E5__2_3(float value) { ___U3CtU3E5__2_3 = value; } }; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoRepeatPulse>d__21 struct U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoRepeatPulse>d__21::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoRepeatPulse>d__21::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoRepeatPulse>d__21::<>4__this SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA, ___U3CU3E4__this_2)); } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoSinglePulse>d__20 struct U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoSinglePulse>d__20::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoSinglePulse>d__20::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoSinglePulse>d__20::<>4__this SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED, ___U3CU3E4__this_2)); } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoWaitForRepeatDelay>d__23 struct U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoWaitForRepeatDelay>d__23::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoWaitForRepeatDelay>d__23::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoWaitForRepeatDelay>d__23::<>4__this SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96, ___U3CU3E4__this_2)); } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(SurfacePulse_t6C9E2610F0324915B2E845B00F9369F05D13088E * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable struct AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9 : public RuntimeObject { public: // Microsoft.MixedReality.Toolkit.Input.InputAnimation Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable::animation InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 * ___animation_0; public: inline static int32_t get_offset_of_animation_0() { return static_cast<int32_t>(offsetof(AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9, ___animation_0)); } inline InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 * get_animation_0() const { return ___animation_0; } inline InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 ** get_address_of_animation_0() { return &___animation_0; } inline void set_animation_0(InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 * value) { ___animation_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___animation_0), (void*)value); } }; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20 struct U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20::<>1__state int32_t ___U3CU3E1__state_0; // System.Type Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20::<>2__current Type_t * ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20::<>4__this MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B * ___U3CU3E4__this_3; // Microsoft.MixedReality.Toolkit.Utilities.SystemType[] Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20::<>7__wrap1 SystemTypeU5BU5D_t08D4F14017D72323CF9F0AADE1D251C864175D09* ___U3CU3E7__wrap1_4; // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20::<>7__wrap2 int32_t ___U3CU3E7__wrap2_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6, ___U3CU3E2__current_1)); } inline Type_t * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline Type_t ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(Type_t * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6, ___U3CU3E4__this_3)); } inline MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_4() { return static_cast<int32_t>(offsetof(U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6, ___U3CU3E7__wrap1_4)); } inline SystemTypeU5BU5D_t08D4F14017D72323CF9F0AADE1D251C864175D09* get_U3CU3E7__wrap1_4() const { return ___U3CU3E7__wrap1_4; } inline SystemTypeU5BU5D_t08D4F14017D72323CF9F0AADE1D251C864175D09** get_address_of_U3CU3E7__wrap1_4() { return &___U3CU3E7__wrap1_4; } inline void set_U3CU3E7__wrap1_4(SystemTypeU5BU5D_t08D4F14017D72323CF9F0AADE1D251C864175D09* value) { ___U3CU3E7__wrap1_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap2_5() { return static_cast<int32_t>(offsetof(U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6, ___U3CU3E7__wrap2_5)); } inline int32_t get_U3CU3E7__wrap2_5() const { return ___U3CU3E7__wrap2_5; } inline int32_t* get_address_of_U3CU3E7__wrap2_5() { return &___U3CU3E7__wrap2_5; } inline void set_U3CU3E7__wrap2_5(int32_t value) { ___U3CU3E7__wrap2_5 = value; } }; // Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8 struct U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::<>1__state int32_t ___U3CU3E1__state_0; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::<>2__current Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Boolean Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::includeSelf bool ___includeSelf_3; // System.Boolean Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::<>3__includeSelf bool ___U3CU3E3__includeSelf_4; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::startTransform Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___startTransform_5; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::<>3__startTransform Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CU3E3__startTransform_6; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8::<transform>5__2 Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CtransformU3E5__2_7; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___U3CU3E2__current_1)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_includeSelf_3() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___includeSelf_3)); } inline bool get_includeSelf_3() const { return ___includeSelf_3; } inline bool* get_address_of_includeSelf_3() { return &___includeSelf_3; } inline void set_includeSelf_3(bool value) { ___includeSelf_3 = value; } inline static int32_t get_offset_of_U3CU3E3__includeSelf_4() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___U3CU3E3__includeSelf_4)); } inline bool get_U3CU3E3__includeSelf_4() const { return ___U3CU3E3__includeSelf_4; } inline bool* get_address_of_U3CU3E3__includeSelf_4() { return &___U3CU3E3__includeSelf_4; } inline void set_U3CU3E3__includeSelf_4(bool value) { ___U3CU3E3__includeSelf_4 = value; } inline static int32_t get_offset_of_startTransform_5() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___startTransform_5)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_startTransform_5() const { return ___startTransform_5; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_startTransform_5() { return &___startTransform_5; } inline void set_startTransform_5(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___startTransform_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___startTransform_5), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__startTransform_6() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___U3CU3E3__startTransform_6)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CU3E3__startTransform_6() const { return ___U3CU3E3__startTransform_6; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CU3E3__startTransform_6() { return &___U3CU3E3__startTransform_6; } inline void set_U3CU3E3__startTransform_6(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___U3CU3E3__startTransform_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__startTransform_6), (void*)value); } inline static int32_t get_offset_of_U3CtransformU3E5__2_7() { return static_cast<int32_t>(offsetof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E, ___U3CtransformU3E5__2_7)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CtransformU3E5__2_7() const { return ___U3CtransformU3E5__2_7; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CtransformU3E5__2_7() { return &___U3CtransformU3E5__2_7; } inline void set_U3CtransformU3E5__2_7(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___U3CtransformU3E5__2_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CtransformU3E5__2_7), (void*)value); } }; // Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4 struct U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::<>1__state int32_t ___U3CU3E1__state_0; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::<>2__current Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::root Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___root_3; // UnityEngine.Transform Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::<>3__root Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CU3E3__root_4; // System.Collections.Generic.ICollection`1<UnityEngine.Transform> Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::ignore RuntimeObject* ___ignore_5; // System.Collections.Generic.ICollection`1<UnityEngine.Transform> Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::<>3__ignore RuntimeObject* ___U3CU3E3__ignore_6; // System.Collections.Generic.Queue`1<UnityEngine.Transform> Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4::<transformQueue>5__2 Queue_1_tBF9430B97FF40E31C9F6F2D5152E2DF92C15746A * ___U3CtransformQueueU3E5__2_7; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___U3CU3E2__current_1)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_root_3() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___root_3)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_root_3() const { return ___root_3; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_root_3() { return &___root_3; } inline void set_root_3(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___root_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___root_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__root_4() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___U3CU3E3__root_4)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CU3E3__root_4() const { return ___U3CU3E3__root_4; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CU3E3__root_4() { return &___U3CU3E3__root_4; } inline void set_U3CU3E3__root_4(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ___U3CU3E3__root_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__root_4), (void*)value); } inline static int32_t get_offset_of_ignore_5() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___ignore_5)); } inline RuntimeObject* get_ignore_5() const { return ___ignore_5; } inline RuntimeObject** get_address_of_ignore_5() { return &___ignore_5; } inline void set_ignore_5(RuntimeObject* value) { ___ignore_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ignore_5), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__ignore_6() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___U3CU3E3__ignore_6)); } inline RuntimeObject* get_U3CU3E3__ignore_6() const { return ___U3CU3E3__ignore_6; } inline RuntimeObject** get_address_of_U3CU3E3__ignore_6() { return &___U3CU3E3__ignore_6; } inline void set_U3CU3E3__ignore_6(RuntimeObject* value) { ___U3CU3E3__ignore_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__ignore_6), (void*)value); } inline static int32_t get_offset_of_U3CtransformQueueU3E5__2_7() { return static_cast<int32_t>(offsetof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579, ___U3CtransformQueueU3E5__2_7)); } inline Queue_1_tBF9430B97FF40E31C9F6F2D5152E2DF92C15746A * get_U3CtransformQueueU3E5__2_7() const { return ___U3CtransformQueueU3E5__2_7; } inline Queue_1_tBF9430B97FF40E31C9F6F2D5152E2DF92C15746A ** get_address_of_U3CtransformQueueU3E5__2_7() { return &___U3CtransformQueueU3E5__2_7; } inline void set_U3CtransformQueueU3E5__2_7(Queue_1_tBF9430B97FF40E31C9F6F2D5152E2DF92C15746A * value) { ___U3CtransformQueueU3E5__2_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CtransformQueueU3E5__2_7), (void*)value); } }; // Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<ClickTimer>d__14 struct U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<ClickTimer>d__14::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<ClickTimer>d__14::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Single Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<ClickTimer>d__14::time float ___time_2; // Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<ClickTimer>d__14::<>4__this CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 * ___U3CU3E4__this_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_time_2() { return static_cast<int32_t>(offsetof(U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680, ___time_2)); } inline float get_time_2() const { return ___time_2; } inline float* get_address_of_time_2() { return &___time_2; } inline void set_time_2(float value) { ___time_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680, ___U3CU3E4__this_3)); } inline CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } }; // Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<VoiceTimer>d__15 struct U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<VoiceTimer>d__15::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<VoiceTimer>d__15::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Single Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<VoiceTimer>d__15::time float ___time_2; // Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<VoiceTimer>d__15::<>4__this CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 * ___U3CU3E4__this_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_time_2() { return static_cast<int32_t>(offsetof(U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B, ___time_2)); } inline float get_time_2() const { return ___time_2; } inline float* get_address_of_time_2() { return &___time_2; } inline void set_time_2(float value) { ___time_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B, ___U3CU3E4__this_3)); } inline CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(CustomInteractablesReceiver_t90833B94F8F561006175D361AEEC5FF19F703593 * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } }; // Microsoft.MixedReality.Toolkit.UI.FollowMeToggle_<AutoFollowDistanceCheck>d__26 struct U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.UI.FollowMeToggle_<AutoFollowDistanceCheck>d__26::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.UI.FollowMeToggle_<AutoFollowDistanceCheck>d__26::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.UI.FollowMeToggle Microsoft.MixedReality.Toolkit.UI.FollowMeToggle_<AutoFollowDistanceCheck>d__26::<>4__this FollowMeToggle_tB2D345BAED26CB91F726B92E4DBDB69AB40C0F94 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812, ___U3CU3E4__this_2)); } inline FollowMeToggle_tB2D345BAED26CB91F726B92E4DBDB69AB40C0F94 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline FollowMeToggle_tB2D345BAED26CB91F726B92E4DBDB69AB40C0F94 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(FollowMeToggle_tB2D345BAED26CB91F726B92E4DBDB69AB40C0F94 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // Microsoft.MixedReality.Toolkit.UI.Interactable_<GlobalVisualReset>d__156 struct U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.UI.Interactable_<GlobalVisualReset>d__156::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.UI.Interactable_<GlobalVisualReset>d__156::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Single Microsoft.MixedReality.Toolkit.UI.Interactable_<GlobalVisualReset>d__156::time float ___time_2; // Microsoft.MixedReality.Toolkit.UI.Interactable Microsoft.MixedReality.Toolkit.UI.Interactable_<GlobalVisualReset>d__156::<>4__this Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB * ___U3CU3E4__this_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_time_2() { return static_cast<int32_t>(offsetof(U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8, ___time_2)); } inline float get_time_2() const { return ___time_2; } inline float* get_address_of_time_2() { return &___time_2; } inline void set_time_2(float value) { ___time_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8, ___U3CU3E4__this_3)); } inline Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } }; // Microsoft.MixedReality.Toolkit.UI.Interactable_<InputDownTimer>d__146 struct U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.UI.Interactable_<InputDownTimer>d__146::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.UI.Interactable_<InputDownTimer>d__146::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Single Microsoft.MixedReality.Toolkit.UI.Interactable_<InputDownTimer>d__146::time float ___time_2; // Microsoft.MixedReality.Toolkit.UI.Interactable Microsoft.MixedReality.Toolkit.UI.Interactable_<InputDownTimer>d__146::<>4__this Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB * ___U3CU3E4__this_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_time_2() { return static_cast<int32_t>(offsetof(U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA, ___time_2)); } inline float get_time_2() const { return ___time_2; } inline float* get_address_of_time_2() { return &___time_2; } inline void set_time_2(float value) { ___time_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA, ___U3CU3E4__this_3)); } inline Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(Interactable_tD658AE086D025379A3D7DCF0FC043D7CA0E620AB * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } }; // Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23 struct U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2 Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23::<>4__this PressableButtonHoloLens2_t76B348451A892EE6469989B250B416D48721FEED * ___U3CU3E4__this_2; // System.Boolean Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23::fadeIn bool ___fadeIn_3; // System.Single Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23::time float ___time_4; // System.Single Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23::<blendTime>5__2 float ___U3CblendTimeU3E5__2_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398, ___U3CU3E4__this_2)); } inline PressableButtonHoloLens2_t76B348451A892EE6469989B250B416D48721FEED * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline PressableButtonHoloLens2_t76B348451A892EE6469989B250B416D48721FEED ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(PressableButtonHoloLens2_t76B348451A892EE6469989B250B416D48721FEED * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_fadeIn_3() { return static_cast<int32_t>(offsetof(U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398, ___fadeIn_3)); } inline bool get_fadeIn_3() const { return ___fadeIn_3; } inline bool* get_address_of_fadeIn_3() { return &___fadeIn_3; } inline void set_fadeIn_3(bool value) { ___fadeIn_3 = value; } inline static int32_t get_offset_of_time_4() { return static_cast<int32_t>(offsetof(U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398, ___time_4)); } inline float get_time_4() const { return ___time_4; } inline float* get_address_of_time_4() { return &___time_4; } inline void set_time_4(float value) { ___time_4 = value; } inline static int32_t get_offset_of_U3CblendTimeU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398, ___U3CblendTimeU3E5__2_5)); } inline float get_U3CblendTimeU3E5__2_5() const { return ___U3CblendTimeU3E5__2_5; } inline float* get_address_of_U3CblendTimeU3E5__2_5() { return &___U3CblendTimeU3E5__2_5; } inline void set_U3CblendTimeU3E5__2_5(float value) { ___U3CblendTimeU3E5__2_5 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35 struct U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::<>4__this MixedRealityLineRenderer_tD1918F5FC138828F431D6CAEAB98BD2C81EEA0FE * ___U3CU3E4__this_2; // System.Single Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::animationLength float ___animationLength_3; // System.Single Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::targetAlphaPercentage float ___targetAlphaPercentage_4; // System.Single Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::<currentTime>5__2 float ___U3CcurrentTimeU3E5__2_5; // UnityEngine.GradientAlphaKey[] Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::<fadedKeys>5__3 GradientAlphaKeyU5BU5D_t6907BD924111274532A9E85C9426951DF1C6FB4B* ___U3CfadedKeysU3E5__3_6; // System.Single Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35::<startAlpha>5__4 float ___U3CstartAlphaU3E5__4_7; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___U3CU3E4__this_2)); } inline MixedRealityLineRenderer_tD1918F5FC138828F431D6CAEAB98BD2C81EEA0FE * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline MixedRealityLineRenderer_tD1918F5FC138828F431D6CAEAB98BD2C81EEA0FE ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(MixedRealityLineRenderer_tD1918F5FC138828F431D6CAEAB98BD2C81EEA0FE * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_animationLength_3() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___animationLength_3)); } inline float get_animationLength_3() const { return ___animationLength_3; } inline float* get_address_of_animationLength_3() { return &___animationLength_3; } inline void set_animationLength_3(float value) { ___animationLength_3 = value; } inline static int32_t get_offset_of_targetAlphaPercentage_4() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___targetAlphaPercentage_4)); } inline float get_targetAlphaPercentage_4() const { return ___targetAlphaPercentage_4; } inline float* get_address_of_targetAlphaPercentage_4() { return &___targetAlphaPercentage_4; } inline void set_targetAlphaPercentage_4(float value) { ___targetAlphaPercentage_4 = value; } inline static int32_t get_offset_of_U3CcurrentTimeU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___U3CcurrentTimeU3E5__2_5)); } inline float get_U3CcurrentTimeU3E5__2_5() const { return ___U3CcurrentTimeU3E5__2_5; } inline float* get_address_of_U3CcurrentTimeU3E5__2_5() { return &___U3CcurrentTimeU3E5__2_5; } inline void set_U3CcurrentTimeU3E5__2_5(float value) { ___U3CcurrentTimeU3E5__2_5 = value; } inline static int32_t get_offset_of_U3CfadedKeysU3E5__3_6() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___U3CfadedKeysU3E5__3_6)); } inline GradientAlphaKeyU5BU5D_t6907BD924111274532A9E85C9426951DF1C6FB4B* get_U3CfadedKeysU3E5__3_6() const { return ___U3CfadedKeysU3E5__3_6; } inline GradientAlphaKeyU5BU5D_t6907BD924111274532A9E85C9426951DF1C6FB4B** get_address_of_U3CfadedKeysU3E5__3_6() { return &___U3CfadedKeysU3E5__3_6; } inline void set_U3CfadedKeysU3E5__3_6(GradientAlphaKeyU5BU5D_t6907BD924111274532A9E85C9426951DF1C6FB4B* value) { ___U3CfadedKeysU3E5__3_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CfadedKeysU3E5__3_6), (void*)value); } inline static int32_t get_offset_of_U3CstartAlphaU3E5__4_7() { return static_cast<int32_t>(offsetof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3, ___U3CstartAlphaU3E5__4_7)); } inline float get_U3CstartAlphaU3E5__4_7() const { return ___U3CstartAlphaU3E5__4_7; } inline float* get_address_of_U3CstartAlphaU3E5__4_7() { return &___U3CstartAlphaU3E5__4_7; } inline void set_U3CstartAlphaU3E5__4_7(float value) { ___U3CstartAlphaU3E5__4_7 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1 struct U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1::<>1__state int32_t ___U3CU3E1__state_0; // System.String Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1::<>2__current String_t* ___U3CU3E2__current_1; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1::target GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_2; // System.Boolean Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1::includeChildren bool ___includeChildren_3; // System.Text.StringBuilder Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1::<objBuffer>5__2 StringBuilder_t * ___U3CobjBufferU3E5__2_4; // System.Collections.Generic.Stack`1<UnityEngine.Transform> Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1::<processStack>5__3 Stack_1_tB73C3A77994D6235D71C61492FE0A4D9FDFF9F75 * ___U3CprocessStackU3E5__3_5; // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1::<startVertexIndex>5__4 int32_t ___U3CstartVertexIndexU3E5__4_6; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE, ___U3CU3E2__current_1)); } inline String_t* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline String_t** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(String_t* value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_target_2() { return static_cast<int32_t>(offsetof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE, ___target_2)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_2() const { return ___target_2; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_2() { return &___target_2; } inline void set_target_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___target_2), (void*)value); } inline static int32_t get_offset_of_includeChildren_3() { return static_cast<int32_t>(offsetof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE, ___includeChildren_3)); } inline bool get_includeChildren_3() const { return ___includeChildren_3; } inline bool* get_address_of_includeChildren_3() { return &___includeChildren_3; } inline void set_includeChildren_3(bool value) { ___includeChildren_3 = value; } inline static int32_t get_offset_of_U3CobjBufferU3E5__2_4() { return static_cast<int32_t>(offsetof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE, ___U3CobjBufferU3E5__2_4)); } inline StringBuilder_t * get_U3CobjBufferU3E5__2_4() const { return ___U3CobjBufferU3E5__2_4; } inline StringBuilder_t ** get_address_of_U3CobjBufferU3E5__2_4() { return &___U3CobjBufferU3E5__2_4; } inline void set_U3CobjBufferU3E5__2_4(StringBuilder_t * value) { ___U3CobjBufferU3E5__2_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CobjBufferU3E5__2_4), (void*)value); } inline static int32_t get_offset_of_U3CprocessStackU3E5__3_5() { return static_cast<int32_t>(offsetof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE, ___U3CprocessStackU3E5__3_5)); } inline Stack_1_tB73C3A77994D6235D71C61492FE0A4D9FDFF9F75 * get_U3CprocessStackU3E5__3_5() const { return ___U3CprocessStackU3E5__3_5; } inline Stack_1_tB73C3A77994D6235D71C61492FE0A4D9FDFF9F75 ** get_address_of_U3CprocessStackU3E5__3_5() { return &___U3CprocessStackU3E5__3_5; } inline void set_U3CprocessStackU3E5__3_5(Stack_1_tB73C3A77994D6235D71C61492FE0A4D9FDFF9F75 * value) { ___U3CprocessStackU3E5__3_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CprocessStackU3E5__3_5), (void*)value); } inline static int32_t get_offset_of_U3CstartVertexIndexU3E5__4_6() { return static_cast<int32_t>(offsetof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE, ___U3CstartVertexIndexU3E5__4_6)); } inline int32_t get_U3CstartVertexIndexU3E5__4_6() const { return ___U3CstartVertexIndexU3E5__4_6; } inline int32_t* get_address_of_U3CstartVertexIndexU3E5__4_6() { return &___U3CstartVertexIndexU3E5__4_6; } inline void set_U3CstartVertexIndexU3E5__4_6(int32_t value) { ___U3CstartVertexIndexU3E5__4_6 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22 struct U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Utilities.ProximityLight Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22::<>4__this ProximityLight_t0625A8AB3CDF2B87960717C31F36BD3B4EAE2B2B * ___U3CU3E4__this_2; // System.Single Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22::pulseDuration float ___pulseDuration_3; // System.Single Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22::fadeBegin float ___fadeBegin_4; // System.Single Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22::fadeSpeed float ___fadeSpeed_5; // System.Single Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22::<pulseTimer>5__2 float ___U3CpulseTimerU3E5__2_6; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02, ___U3CU3E4__this_2)); } inline ProximityLight_t0625A8AB3CDF2B87960717C31F36BD3B4EAE2B2B * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline ProximityLight_t0625A8AB3CDF2B87960717C31F36BD3B4EAE2B2B ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(ProximityLight_t0625A8AB3CDF2B87960717C31F36BD3B4EAE2B2B * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_pulseDuration_3() { return static_cast<int32_t>(offsetof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02, ___pulseDuration_3)); } inline float get_pulseDuration_3() const { return ___pulseDuration_3; } inline float* get_address_of_pulseDuration_3() { return &___pulseDuration_3; } inline void set_pulseDuration_3(float value) { ___pulseDuration_3 = value; } inline static int32_t get_offset_of_fadeBegin_4() { return static_cast<int32_t>(offsetof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02, ___fadeBegin_4)); } inline float get_fadeBegin_4() const { return ___fadeBegin_4; } inline float* get_address_of_fadeBegin_4() { return &___fadeBegin_4; } inline void set_fadeBegin_4(float value) { ___fadeBegin_4 = value; } inline static int32_t get_offset_of_fadeSpeed_5() { return static_cast<int32_t>(offsetof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02, ___fadeSpeed_5)); } inline float get_fadeSpeed_5() const { return ___fadeSpeed_5; } inline float* get_address_of_fadeSpeed_5() { return &___fadeSpeed_5; } inline void set_fadeSpeed_5(float value) { ___fadeSpeed_5 = value; } inline static int32_t get_offset_of_U3CpulseTimerU3E5__2_6() { return static_cast<int32_t>(offsetof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02, ___U3CpulseTimerU3E5__2_6)); } inline float get_U3CpulseTimerU3E5__2_6() const { return ___U3CpulseTimerU3E5__2_6; } inline float* get_address_of_U3CpulseTimerU3E5__2_6() { return &___U3CpulseTimerU3E5__2_6; } inline void set_U3CpulseTimerU3E5__2_6(float value) { ___U3CpulseTimerU3E5__2_6 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2 struct U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2::<>1__state int32_t ___U3CU3E1__state_0; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2::<>2__current GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2::<i>5__2 int32_t ___U3CiU3E5__2_3; // UnityEngine.GameObject[] Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2::<>7__wrap2 GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* ___U3CU3E7__wrap2_4; // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2::<>7__wrap3 int32_t ___U3CU3E7__wrap3_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028, ___U3CU3E2__current_1)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_U3CiU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028, ___U3CiU3E5__2_3)); } inline int32_t get_U3CiU3E5__2_3() const { return ___U3CiU3E5__2_3; } inline int32_t* get_address_of_U3CiU3E5__2_3() { return &___U3CiU3E5__2_3; } inline void set_U3CiU3E5__2_3(int32_t value) { ___U3CiU3E5__2_3 = value; } inline static int32_t get_offset_of_U3CU3E7__wrap2_4() { return static_cast<int32_t>(offsetof(U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028, ___U3CU3E7__wrap2_4)); } inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* get_U3CU3E7__wrap2_4() const { return ___U3CU3E7__wrap2_4; } inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520** get_address_of_U3CU3E7__wrap2_4() { return &___U3CU3E7__wrap2_4; } inline void set_U3CU3E7__wrap2_4(GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* value) { ___U3CU3E7__wrap2_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap2_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap3_5() { return static_cast<int32_t>(offsetof(U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028, ___U3CU3E7__wrap3_5)); } inline int32_t get_U3CU3E7__wrap3_5() const { return ___U3CU3E7__wrap3_5; } inline int32_t* get_address_of_U3CU3E7__wrap3_5() { return &___U3CU3E7__wrap3_5; } inline void set_U3CU3E7__wrap3_5(int32_t value) { ___U3CU3E7__wrap3_5 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46 struct U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityController Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46::controller RuntimeObject* ___controller_2; // Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46::<>4__this HandConstraint_t3100E17669E5DFC78EB05BBA2443415D8290E8E7 * ___U3CU3E4__this_3; // System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46::frameDelay bool ___frameDelay_4; // System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46::visible bool ___visible_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_controller_2() { return static_cast<int32_t>(offsetof(U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622, ___controller_2)); } inline RuntimeObject* get_controller_2() const { return ___controller_2; } inline RuntimeObject** get_address_of_controller_2() { return &___controller_2; } inline void set_controller_2(RuntimeObject* value) { ___controller_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___controller_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622, ___U3CU3E4__this_3)); } inline HandConstraint_t3100E17669E5DFC78EB05BBA2443415D8290E8E7 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline HandConstraint_t3100E17669E5DFC78EB05BBA2443415D8290E8E7 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(HandConstraint_t3100E17669E5DFC78EB05BBA2443415D8290E8E7 * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } inline static int32_t get_offset_of_frameDelay_4() { return static_cast<int32_t>(offsetof(U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622, ___frameDelay_4)); } inline bool get_frameDelay_4() const { return ___frameDelay_4; } inline bool* get_address_of_frameDelay_4() { return &___frameDelay_4; } inline void set_frameDelay_4(bool value) { ___frameDelay_4 = value; } inline static int32_t get_offset_of_visible_5() { return static_cast<int32_t>(offsetof(U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622, ___visible_5)); } inline bool get_visible_5() const { return ___visible_5; } inline bool* get_address_of_visible_5() { return &___visible_5; } inline void set_visible_5(bool value) { ___visible_5 = value; } }; // System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap> struct Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t60C83E552A9B7713913AA260DDAA0AFF0A75765F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t542DBD0562DA7AC8F172BD71C05844EFAD576100 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t60741DBA4647D7259ECB16D50D6AC4FEE46A5B88 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___entries_1)); } inline EntryU5BU5D_t60C83E552A9B7713913AA260DDAA0AFF0A75765F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t60C83E552A9B7713913AA260DDAA0AFF0A75765F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t60C83E552A9B7713913AA260DDAA0AFF0A75765F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___keys_7)); } inline KeyCollection_t542DBD0562DA7AC8F172BD71C05844EFAD576100 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t542DBD0562DA7AC8F172BD71C05844EFAD576100 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t542DBD0562DA7AC8F172BD71C05844EFAD576100 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ___values_8)); } inline ValueCollection_t60741DBA4647D7259ECB16D50D6AC4FEE46A5B88 * get_values_8() const { return ___values_8; } inline ValueCollection_t60741DBA4647D7259ECB16D50D6AC4FEE46A5B88 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t60741DBA4647D7259ECB16D50D6AC4FEE46A5B88 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // TMPro.TMP_Dropdown_<DelayedDestroyDropdownList>d__72 struct U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8 : public RuntimeObject { public: // System.Int32 TMPro.TMP_Dropdown_<DelayedDestroyDropdownList>d__72::<>1__state int32_t ___U3CU3E1__state_0; // System.Object TMPro.TMP_Dropdown_<DelayedDestroyDropdownList>d__72::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Single TMPro.TMP_Dropdown_<DelayedDestroyDropdownList>d__72::delay float ___delay_2; // TMPro.TMP_Dropdown TMPro.TMP_Dropdown_<DelayedDestroyDropdownList>d__72::<>4__this TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353 * ___U3CU3E4__this_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_delay_2() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8, ___delay_2)); } inline float get_delay_2() const { return ___delay_2; } inline float* get_address_of_delay_2() { return &___delay_2; } inline void set_delay_2(float value) { ___delay_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8, ___U3CU3E4__this_3)); } inline TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353 * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } }; // TMPro.TMP_InputField_<CaretBlink>d__267 struct U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D : public RuntimeObject { public: // System.Int32 TMPro.TMP_InputField_<CaretBlink>d__267::<>1__state int32_t ___U3CU3E1__state_0; // System.Object TMPro.TMP_InputField_<CaretBlink>d__267::<>2__current RuntimeObject * ___U3CU3E2__current_1; // TMPro.TMP_InputField TMPro.TMP_InputField_<CaretBlink>d__267::<>4__this TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D, ___U3CU3E4__this_2)); } inline TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // TMPro.TMP_InputField_<MouseDragOutsideRect>d__285 struct U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1 : public RuntimeObject { public: // System.Int32 TMPro.TMP_InputField_<MouseDragOutsideRect>d__285::<>1__state int32_t ___U3CU3E1__state_0; // System.Object TMPro.TMP_InputField_<MouseDragOutsideRect>d__285::<>2__current RuntimeObject * ___U3CU3E2__current_1; // TMPro.TMP_InputField TMPro.TMP_InputField_<MouseDragOutsideRect>d__285::<>4__this TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB * ___U3CU3E4__this_2; // UnityEngine.EventSystems.PointerEventData TMPro.TMP_InputField_<MouseDragOutsideRect>d__285::eventData PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1, ___U3CU3E4__this_2)); } inline TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(TMP_InputField_tC3C57E697A57232E8A855D39600CF06CFDA8F6CB * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_eventData_3() { return static_cast<int32_t>(offsetof(U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1, ___eventData_3)); } inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_eventData_3() const { return ___eventData_3; } inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_eventData_3() { return &___eventData_3; } inline void set_eventData_3(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value) { ___eventData_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventData_3), (void*)value); } }; // UnityEngine.AndroidJavaObject struct AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D : public RuntimeObject { public: // UnityEngine.GlobalJavaObjectRef UnityEngine.AndroidJavaObject::m_jobject GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 * ___m_jobject_1; // UnityEngine.GlobalJavaObjectRef UnityEngine.AndroidJavaObject::m_jclass GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 * ___m_jclass_2; public: inline static int32_t get_offset_of_m_jobject_1() { return static_cast<int32_t>(offsetof(AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D, ___m_jobject_1)); } inline GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 * get_m_jobject_1() const { return ___m_jobject_1; } inline GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 ** get_address_of_m_jobject_1() { return &___m_jobject_1; } inline void set_m_jobject_1(GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 * value) { ___m_jobject_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_jobject_1), (void*)value); } inline static int32_t get_offset_of_m_jclass_2() { return static_cast<int32_t>(offsetof(AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D, ___m_jclass_2)); } inline GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 * get_m_jclass_2() const { return ___m_jclass_2; } inline GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 ** get_address_of_m_jclass_2() { return &___m_jclass_2; } inline void set_m_jclass_2(GlobalJavaObjectRef_t2B9FA8DBBC53F0C0E0B57ACDC0FA9967CFB22DD0 * value) { ___m_jclass_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_jclass_2), (void*)value); } }; struct AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_StaticFields { public: // System.Boolean UnityEngine.AndroidJavaObject::enableDebugPrints bool ___enableDebugPrints_0; public: inline static int32_t get_offset_of_enableDebugPrints_0() { return static_cast<int32_t>(offsetof(AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_StaticFields, ___enableDebugPrints_0)); } inline bool get_enableDebugPrints_0() const { return ___enableDebugPrints_0; } inline bool* get_address_of_enableDebugPrints_0() { return &___enableDebugPrints_0; } inline void set_enableDebugPrints_0(bool value) { ___enableDebugPrints_0 = value; } }; // UnityEngine.XR.WSA.SurfaceObserver struct SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864 : public RuntimeObject { public: // System.Int32 UnityEngine.XR.WSA.SurfaceObserver::m_Observer int32_t ___m_Observer_0; public: inline static int32_t get_offset_of_m_Observer_0() { return static_cast<int32_t>(offsetof(SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864, ___m_Observer_0)); } inline int32_t get_m_Observer_0() const { return ___m_Observer_0; } inline int32_t* get_address_of_m_Observer_0() { return &___m_Observer_0; } inline void set_m_Observer_0(int32_t value) { ___m_Observer_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.WSA.SurfaceObserver struct SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_marshaled_pinvoke { int32_t ___m_Observer_0; }; // Native definition for COM marshalling of UnityEngine.XR.WSA.SurfaceObserver struct SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_marshaled_com { int32_t ___m_Observer_0; }; // Microsoft.MixedReality.Toolkit.BaseDataProvider struct BaseDataProvider_t62035BEE793ABE4C6359BCDBEB30CED3AEAC2C70 : public BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248 { public: // Microsoft.MixedReality.Toolkit.IMixedRealityServiceRegistrar Microsoft.MixedReality.Toolkit.BaseDataProvider::<Registrar>k__BackingField RuntimeObject* ___U3CRegistrarU3Ek__BackingField_5; // Microsoft.MixedReality.Toolkit.IMixedRealityService Microsoft.MixedReality.Toolkit.BaseDataProvider::<Service>k__BackingField RuntimeObject* ___U3CServiceU3Ek__BackingField_6; public: inline static int32_t get_offset_of_U3CRegistrarU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(BaseDataProvider_t62035BEE793ABE4C6359BCDBEB30CED3AEAC2C70, ___U3CRegistrarU3Ek__BackingField_5)); } inline RuntimeObject* get_U3CRegistrarU3Ek__BackingField_5() const { return ___U3CRegistrarU3Ek__BackingField_5; } inline RuntimeObject** get_address_of_U3CRegistrarU3Ek__BackingField_5() { return &___U3CRegistrarU3Ek__BackingField_5; } inline void set_U3CRegistrarU3Ek__BackingField_5(RuntimeObject* value) { ___U3CRegistrarU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRegistrarU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CServiceU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(BaseDataProvider_t62035BEE793ABE4C6359BCDBEB30CED3AEAC2C70, ___U3CServiceU3Ek__BackingField_6)); } inline RuntimeObject* get_U3CServiceU3Ek__BackingField_6() const { return ___U3CServiceU3Ek__BackingField_6; } inline RuntimeObject** get_address_of_U3CServiceU3Ek__BackingField_6() { return &___U3CServiceU3Ek__BackingField_6; } inline void set_U3CServiceU3Ek__BackingField_6(RuntimeObject* value) { ___U3CServiceU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CServiceU3Ek__BackingField_6), (void*)value); } }; // Microsoft.MixedReality.Toolkit.BaseEventSystem struct BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A : public BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248 { public: // System.Type Microsoft.MixedReality.Toolkit.BaseEventSystem::eventSystemHandlerType Type_t * ___eventSystemHandlerType_7; // System.Collections.Generic.List`1<System.Tuple`3<Microsoft.MixedReality.Toolkit.BaseEventSystem_Action,System.Type,UnityEngine.EventSystems.IEventSystemHandler>> Microsoft.MixedReality.Toolkit.BaseEventSystem::postponedActions List_1_t1F1B688CCCBE76E073C576F58A5558AB95C3187A * ___postponedActions_8; // System.Collections.Generic.List`1<System.Tuple`2<Microsoft.MixedReality.Toolkit.BaseEventSystem_Action,UnityEngine.GameObject>> Microsoft.MixedReality.Toolkit.BaseEventSystem::postponedObjectActions List_1_t14CC06CC2142256D6066B9B737B042E972799633 * ___postponedObjectActions_9; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.BaseEventSystem_EventHandlerEntry>> Microsoft.MixedReality.Toolkit.BaseEventSystem::<EventHandlersByType>k__BackingField Dictionary_2_t6CAFAD6E74E812BB153AF6AC7727B33761F3933E * ___U3CEventHandlersByTypeU3Ek__BackingField_10; // System.Collections.Generic.List`1<UnityEngine.GameObject> Microsoft.MixedReality.Toolkit.BaseEventSystem::<EventListeners>k__BackingField List_1_t99909CDEDA6D21189884AEA74B1FD99FC9C6A4C0 * ___U3CEventListenersU3Ek__BackingField_11; public: inline static int32_t get_offset_of_eventSystemHandlerType_7() { return static_cast<int32_t>(offsetof(BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A, ___eventSystemHandlerType_7)); } inline Type_t * get_eventSystemHandlerType_7() const { return ___eventSystemHandlerType_7; } inline Type_t ** get_address_of_eventSystemHandlerType_7() { return &___eventSystemHandlerType_7; } inline void set_eventSystemHandlerType_7(Type_t * value) { ___eventSystemHandlerType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventSystemHandlerType_7), (void*)value); } inline static int32_t get_offset_of_postponedActions_8() { return static_cast<int32_t>(offsetof(BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A, ___postponedActions_8)); } inline List_1_t1F1B688CCCBE76E073C576F58A5558AB95C3187A * get_postponedActions_8() const { return ___postponedActions_8; } inline List_1_t1F1B688CCCBE76E073C576F58A5558AB95C3187A ** get_address_of_postponedActions_8() { return &___postponedActions_8; } inline void set_postponedActions_8(List_1_t1F1B688CCCBE76E073C576F58A5558AB95C3187A * value) { ___postponedActions_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___postponedActions_8), (void*)value); } inline static int32_t get_offset_of_postponedObjectActions_9() { return static_cast<int32_t>(offsetof(BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A, ___postponedObjectActions_9)); } inline List_1_t14CC06CC2142256D6066B9B737B042E972799633 * get_postponedObjectActions_9() const { return ___postponedObjectActions_9; } inline List_1_t14CC06CC2142256D6066B9B737B042E972799633 ** get_address_of_postponedObjectActions_9() { return &___postponedObjectActions_9; } inline void set_postponedObjectActions_9(List_1_t14CC06CC2142256D6066B9B737B042E972799633 * value) { ___postponedObjectActions_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___postponedObjectActions_9), (void*)value); } inline static int32_t get_offset_of_U3CEventHandlersByTypeU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A, ___U3CEventHandlersByTypeU3Ek__BackingField_10)); } inline Dictionary_2_t6CAFAD6E74E812BB153AF6AC7727B33761F3933E * get_U3CEventHandlersByTypeU3Ek__BackingField_10() const { return ___U3CEventHandlersByTypeU3Ek__BackingField_10; } inline Dictionary_2_t6CAFAD6E74E812BB153AF6AC7727B33761F3933E ** get_address_of_U3CEventHandlersByTypeU3Ek__BackingField_10() { return &___U3CEventHandlersByTypeU3Ek__BackingField_10; } inline void set_U3CEventHandlersByTypeU3Ek__BackingField_10(Dictionary_2_t6CAFAD6E74E812BB153AF6AC7727B33761F3933E * value) { ___U3CEventHandlersByTypeU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEventHandlersByTypeU3Ek__BackingField_10), (void*)value); } inline static int32_t get_offset_of_U3CEventListenersU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A, ___U3CEventListenersU3Ek__BackingField_11)); } inline List_1_t99909CDEDA6D21189884AEA74B1FD99FC9C6A4C0 * get_U3CEventListenersU3Ek__BackingField_11() const { return ___U3CEventListenersU3Ek__BackingField_11; } inline List_1_t99909CDEDA6D21189884AEA74B1FD99FC9C6A4C0 ** get_address_of_U3CEventListenersU3Ek__BackingField_11() { return &___U3CEventListenersU3Ek__BackingField_11; } inline void set_U3CEventListenersU3Ek__BackingField_11(List_1_t99909CDEDA6D21189884AEA74B1FD99FC9C6A4C0 * value) { ___U3CEventListenersU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEventListenersU3Ek__BackingField_11), (void*)value); } }; struct BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A_StaticFields { public: // System.Boolean Microsoft.MixedReality.Toolkit.BaseEventSystem::enableDanglingHandlerDiagnostics bool ___enableDanglingHandlerDiagnostics_5; // System.Int32 Microsoft.MixedReality.Toolkit.BaseEventSystem::eventExecutionDepth int32_t ___eventExecutionDepth_6; public: inline static int32_t get_offset_of_enableDanglingHandlerDiagnostics_5() { return static_cast<int32_t>(offsetof(BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A_StaticFields, ___enableDanglingHandlerDiagnostics_5)); } inline bool get_enableDanglingHandlerDiagnostics_5() const { return ___enableDanglingHandlerDiagnostics_5; } inline bool* get_address_of_enableDanglingHandlerDiagnostics_5() { return &___enableDanglingHandlerDiagnostics_5; } inline void set_enableDanglingHandlerDiagnostics_5(bool value) { ___enableDanglingHandlerDiagnostics_5 = value; } inline static int32_t get_offset_of_eventExecutionDepth_6() { return static_cast<int32_t>(offsetof(BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A_StaticFields, ___eventExecutionDepth_6)); } inline int32_t get_eventExecutionDepth_6() const { return ___eventExecutionDepth_6; } inline int32_t* get_address_of_eventExecutionDepth_6() { return &___eventExecutionDepth_6; } inline void set_eventExecutionDepth_6(int32_t value) { ___eventExecutionDepth_6 = value; } }; // Microsoft.MixedReality.Toolkit.BaseExtensionService struct BaseExtensionService_t03E75FDDCE03139ED70D3E269F247C4515188B57 : public BaseService_tC02B92B66649511F83A73CD8A2A569521EAC0248 { public: // Microsoft.MixedReality.Toolkit.IMixedRealityServiceRegistrar Microsoft.MixedReality.Toolkit.BaseExtensionService::<Registrar>k__BackingField RuntimeObject* ___U3CRegistrarU3Ek__BackingField_5; public: inline static int32_t get_offset_of_U3CRegistrarU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(BaseExtensionService_t03E75FDDCE03139ED70D3E269F247C4515188B57, ___U3CRegistrarU3Ek__BackingField_5)); } inline RuntimeObject* get_U3CRegistrarU3Ek__BackingField_5() const { return ___U3CRegistrarU3Ek__BackingField_5; } inline RuntimeObject** get_address_of_U3CRegistrarU3Ek__BackingField_5() { return &___U3CRegistrarU3Ek__BackingField_5; } inline void set_U3CRegistrarU3Ek__BackingField_5(RuntimeObject* value) { ___U3CRegistrarU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRegistrarU3Ek__BackingField_5), (void*)value); } }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.UInt32,System.Boolean> struct Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_t7A223AB4ABB8DBDCA019F46428591CF3E5D1D062 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey uint32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF, ___dictionary_0)); } inline Dictionary_2_t7A223AB4ABB8DBDCA019F46428591CF3E5D1D062 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7A223AB4ABB8DBDCA019F46428591CF3E5D1D062 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7A223AB4ABB8DBDCA019F46428591CF3E5D1D062 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF, ___currentKey_3)); } inline uint32_t get_currentKey_3() const { return ___currentKey_3; } inline uint32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(uint32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,Microsoft.MixedReality.Toolkit.Input.InputAnimation_PoseCurves> struct Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t8AE540BB32221CF122181088CC6136A39F8DAB1C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664, ___dictionary_0)); } inline Dictionary_2_t8AE540BB32221CF122181088CC6136A39F8DAB1C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8AE540BB32221CF122181088CC6136A39F8DAB1C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8AE540BB32221CF122181088CC6136A39F8DAB1C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664, ___currentValue_3)); } inline PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 * get_currentValue_3() const { return ___currentValue_3; } inline PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.HashSet`1_Enumerator<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSource> struct Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0 { public: // System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE * ____set_0; // System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.HashSet`1_Enumerator::_current RuntimeObject* ____current_3; public: inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0, ____set_0)); } inline HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE * get__set_0() const { return ____set_0; } inline HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE ** get_address_of__set_0() { return &____set_0; } inline void set__set_0(HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE * value) { ____set_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0, ____index_1)); } inline int32_t get__index_1() const { return ____index_1; } inline int32_t* get_address_of__index_1() { return &____index_1; } inline void set__index_1(int32_t value) { ____index_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0, ____current_3)); } inline RuntimeObject* get__current_3() const { return ____current_3; } inline RuntimeObject** get_address_of__current_3() { return &____current_3; } inline void set__current_3(RuntimeObject* value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value); } }; // System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.Transform> struct Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4 { public: // System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set HashSet_1_tD2C56B25731BF501B4A41A1C5403B6717E9AF1A4 * ____set_0; // System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.HashSet`1_Enumerator::_current Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ____current_3; public: inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4, ____set_0)); } inline HashSet_1_tD2C56B25731BF501B4A41A1C5403B6717E9AF1A4 * get__set_0() const { return ____set_0; } inline HashSet_1_tD2C56B25731BF501B4A41A1C5403B6717E9AF1A4 ** get_address_of__set_0() { return &____set_0; } inline void set__set_0(HashSet_1_tD2C56B25731BF501B4A41A1C5403B6717E9AF1A4 * value) { ____set_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4, ____index_1)); } inline int32_t get__index_1() const { return ____index_1; } inline int32_t* get_address_of__index_1() { return &____index_1; } inline void set__index_1(int32_t value) { ____index_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4, ____current_3)); } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get__current_3() const { return ____current_3; } inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of__current_3() { return &____current_3; } inline void set__current_3(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_PointerData> struct KeyValuePair_2_tEE2B205D63428F049DEDEBC22F044745BEBB40CC { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value PointerData_tDE85694DE0D46912B3A8BBB2DE1BF7729351A593 * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEE2B205D63428F049DEDEBC22F044745BEBB40CC, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEE2B205D63428F049DEDEBC22F044745BEBB40CC, ___value_1)); } inline PointerData_tDE85694DE0D46912B3A8BBB2DE1BF7729351A593 * get_value_1() const { return ___value_1; } inline PointerData_tDE85694DE0D46912B3A8BBB2DE1BF7729351A593 ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(PointerData_tDE85694DE0D46912B3A8BBB2DE1BF7729351A593 * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____fastRng_14; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value); } inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__fastRng_14() const { return ____fastRng_14; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__fastRng_14() { return &____fastRng_14; } inline void set__fastRng_14(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____fastRng_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value); } }; // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Nullable`1<System.Single> struct Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 { public: // T System.Nullable`1::value float ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777, ___value_0)); } inline float get_value_0() const { return ___value_0; } inline float* get_address_of_value_0() { return &___value_0; } inline void set_value_0(float value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Numerics.Quaternion struct Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A { public: // System.Single System.Numerics.Quaternion::X float ___X_0; // System.Single System.Numerics.Quaternion::Y float ___Y_1; // System.Single System.Numerics.Quaternion::Z float ___Z_2; // System.Single System.Numerics.Quaternion::W float ___W_3; public: inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___X_0)); } inline float get_X_0() const { return ___X_0; } inline float* get_address_of_X_0() { return &___X_0; } inline void set_X_0(float value) { ___X_0 = value; } inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___Y_1)); } inline float get_Y_1() const { return ___Y_1; } inline float* get_address_of_Y_1() { return &___Y_1; } inline void set_Y_1(float value) { ___Y_1 = value; } inline static int32_t get_offset_of_Z_2() { return static_cast<int32_t>(offsetof(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___Z_2)); } inline float get_Z_2() const { return ___Z_2; } inline float* get_address_of_Z_2() { return &___Z_2; } inline void set_Z_2(float value) { ___Z_2 = value; } inline static int32_t get_offset_of_W_3() { return static_cast<int32_t>(offsetof(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___W_3)); } inline float get_W_3() const { return ___W_3; } inline float* get_address_of_W_3() { return &___W_3; } inline void set_W_3(float value) { ___W_3 = value; } }; // System.Numerics.Vector3 struct Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 { public: // System.Single System.Numerics.Vector3::X float ___X_0; // System.Single System.Numerics.Vector3::Y float ___Y_1; // System.Single System.Numerics.Vector3::Z float ___Z_2; public: inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65, ___X_0)); } inline float get_X_0() const { return ___X_0; } inline float* get_address_of_X_0() { return &___X_0; } inline void set_X_0(float value) { ___X_0 = value; } inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65, ___Y_1)); } inline float get_Y_1() const { return ___Y_1; } inline float* get_address_of_Y_1() { return &___Y_1; } inline void set_Y_1(float value) { ___Y_1 = value; } inline static int32_t get_offset_of_Z_2() { return static_cast<int32_t>(offsetof(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65, ___Z_2)); } inline float get_Z_2() const { return ___Z_2; } inline float* get_address_of_Z_2() { return &___Z_2; } inline void set_Z_2(float value) { ___Z_2 = value; } }; // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // UnityEngine.AndroidJavaClass struct AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE : public AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D { public: public: }; // UnityEngine.Color struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // UnityEngine.Color32 struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 { public: union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); } inline int32_t get_rgba_0() const { return ___rgba_0; } inline int32_t* get_address_of_rgba_0() { return &___rgba_0; } inline void set_rgba_0(int32_t value) { ___rgba_0 = value; } inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); } inline uint8_t get_r_1() const { return ___r_1; } inline uint8_t* get_address_of_r_1() { return &___r_1; } inline void set_r_1(uint8_t value) { ___r_1 = value; } inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); } inline uint8_t get_g_2() const { return ___g_2; } inline uint8_t* get_address_of_g_2() { return &___g_2; } inline void set_g_2(uint8_t value) { ___g_2 = value; } inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); } inline uint8_t get_b_3() const { return ___b_3; } inline uint8_t* get_address_of_b_3() { return &___b_3; } inline void set_b_3(uint8_t value) { ___b_3 = value; } inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); } inline uint8_t get_a_4() const { return ___a_4; } inline uint8_t* get_address_of_a_4() { return &___a_4; } inline void set_a_4(uint8_t value) { ___a_4 = value; } }; // UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainGroups struct TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5 : public Dictionary_2_t651CE851D569289A981D44DC5543BEA956206753 { public: public: }; // UnityEngine.Quaternion struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___identityQuaternion_4 = value; } }; // UnityEngine.SceneManagement.Scene struct Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 { public: // System.Int32 UnityEngine.SceneManagement.Scene::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2, ___m_Handle_0)); } inline int32_t get_m_Handle_0() const { return ___m_Handle_0; } inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(int32_t value) { ___m_Handle_0 = value; } }; // UnityEngine.Vector2 struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector3 struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector4 struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___negativeInfinityVector_8 = value; } }; // Windows.Foundation.DateTime struct DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 { public: // System.Int64 Windows.Foundation.DateTime::UniversalTime int64_t ___UniversalTime_0; public: inline static int32_t get_offset_of_UniversalTime_0() { return static_cast<int32_t>(offsetof(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795, ___UniversalTime_0)); } inline int64_t get_UniversalTime_0() const { return ___UniversalTime_0; } inline int64_t* get_address_of_UniversalTime_0() { return &___UniversalTime_0; } inline void set_UniversalTime_0(int64_t value) { ___UniversalTime_0 = value; } }; // Windows.Foundation.EventRegistrationToken struct EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 { public: // System.Int64 Windows.Foundation.EventRegistrationToken::Value int64_t ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4, ___Value_0)); } inline int64_t get_Value_0() const { return ___Value_0; } inline int64_t* get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(int64_t value) { ___Value_0 = value; } }; // Windows.Foundation.FoundationContract struct FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 { public: public: }; // Windows.Foundation.HResult struct HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB { public: // System.Int32 Windows.Foundation.HResult::Value int32_t ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB, ___Value_0)); } inline int32_t get_Value_0() const { return ___Value_0; } inline int32_t* get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(int32_t value) { ___Value_0 = value; } }; // Windows.Foundation.Numerics.Matrix4x4 struct Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 { public: // System.Single Windows.Foundation.Numerics.Matrix4x4::M11 float ___M11_0; // System.Single Windows.Foundation.Numerics.Matrix4x4::M12 float ___M12_1; // System.Single Windows.Foundation.Numerics.Matrix4x4::M13 float ___M13_2; // System.Single Windows.Foundation.Numerics.Matrix4x4::M14 float ___M14_3; // System.Single Windows.Foundation.Numerics.Matrix4x4::M21 float ___M21_4; // System.Single Windows.Foundation.Numerics.Matrix4x4::M22 float ___M22_5; // System.Single Windows.Foundation.Numerics.Matrix4x4::M23 float ___M23_6; // System.Single Windows.Foundation.Numerics.Matrix4x4::M24 float ___M24_7; // System.Single Windows.Foundation.Numerics.Matrix4x4::M31 float ___M31_8; // System.Single Windows.Foundation.Numerics.Matrix4x4::M32 float ___M32_9; // System.Single Windows.Foundation.Numerics.Matrix4x4::M33 float ___M33_10; // System.Single Windows.Foundation.Numerics.Matrix4x4::M34 float ___M34_11; // System.Single Windows.Foundation.Numerics.Matrix4x4::M41 float ___M41_12; // System.Single Windows.Foundation.Numerics.Matrix4x4::M42 float ___M42_13; // System.Single Windows.Foundation.Numerics.Matrix4x4::M43 float ___M43_14; // System.Single Windows.Foundation.Numerics.Matrix4x4::M44 float ___M44_15; public: inline static int32_t get_offset_of_M11_0() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M11_0)); } inline float get_M11_0() const { return ___M11_0; } inline float* get_address_of_M11_0() { return &___M11_0; } inline void set_M11_0(float value) { ___M11_0 = value; } inline static int32_t get_offset_of_M12_1() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M12_1)); } inline float get_M12_1() const { return ___M12_1; } inline float* get_address_of_M12_1() { return &___M12_1; } inline void set_M12_1(float value) { ___M12_1 = value; } inline static int32_t get_offset_of_M13_2() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M13_2)); } inline float get_M13_2() const { return ___M13_2; } inline float* get_address_of_M13_2() { return &___M13_2; } inline void set_M13_2(float value) { ___M13_2 = value; } inline static int32_t get_offset_of_M14_3() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M14_3)); } inline float get_M14_3() const { return ___M14_3; } inline float* get_address_of_M14_3() { return &___M14_3; } inline void set_M14_3(float value) { ___M14_3 = value; } inline static int32_t get_offset_of_M21_4() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M21_4)); } inline float get_M21_4() const { return ___M21_4; } inline float* get_address_of_M21_4() { return &___M21_4; } inline void set_M21_4(float value) { ___M21_4 = value; } inline static int32_t get_offset_of_M22_5() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M22_5)); } inline float get_M22_5() const { return ___M22_5; } inline float* get_address_of_M22_5() { return &___M22_5; } inline void set_M22_5(float value) { ___M22_5 = value; } inline static int32_t get_offset_of_M23_6() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M23_6)); } inline float get_M23_6() const { return ___M23_6; } inline float* get_address_of_M23_6() { return &___M23_6; } inline void set_M23_6(float value) { ___M23_6 = value; } inline static int32_t get_offset_of_M24_7() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M24_7)); } inline float get_M24_7() const { return ___M24_7; } inline float* get_address_of_M24_7() { return &___M24_7; } inline void set_M24_7(float value) { ___M24_7 = value; } inline static int32_t get_offset_of_M31_8() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M31_8)); } inline float get_M31_8() const { return ___M31_8; } inline float* get_address_of_M31_8() { return &___M31_8; } inline void set_M31_8(float value) { ___M31_8 = value; } inline static int32_t get_offset_of_M32_9() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M32_9)); } inline float get_M32_9() const { return ___M32_9; } inline float* get_address_of_M32_9() { return &___M32_9; } inline void set_M32_9(float value) { ___M32_9 = value; } inline static int32_t get_offset_of_M33_10() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M33_10)); } inline float get_M33_10() const { return ___M33_10; } inline float* get_address_of_M33_10() { return &___M33_10; } inline void set_M33_10(float value) { ___M33_10 = value; } inline static int32_t get_offset_of_M34_11() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M34_11)); } inline float get_M34_11() const { return ___M34_11; } inline float* get_address_of_M34_11() { return &___M34_11; } inline void set_M34_11(float value) { ___M34_11 = value; } inline static int32_t get_offset_of_M41_12() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M41_12)); } inline float get_M41_12() const { return ___M41_12; } inline float* get_address_of_M41_12() { return &___M41_12; } inline void set_M41_12(float value) { ___M41_12 = value; } inline static int32_t get_offset_of_M42_13() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M42_13)); } inline float get_M42_13() const { return ___M42_13; } inline float* get_address_of_M42_13() { return &___M42_13; } inline void set_M42_13(float value) { ___M42_13 = value; } inline static int32_t get_offset_of_M43_14() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M43_14)); } inline float get_M43_14() const { return ___M43_14; } inline float* get_address_of_M43_14() { return &___M43_14; } inline void set_M43_14(float value) { ___M43_14 = value; } inline static int32_t get_offset_of_M44_15() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M44_15)); } inline float get_M44_15() const { return ___M44_15; } inline float* get_address_of_M44_15() { return &___M44_15; } inline void set_M44_15(float value) { ___M44_15 = value; } }; // Windows.Foundation.Numerics.Quaternion struct Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C { public: // System.Single Windows.Foundation.Numerics.Quaternion::X float ___X_0; // System.Single Windows.Foundation.Numerics.Quaternion::Y float ___Y_1; // System.Single Windows.Foundation.Numerics.Quaternion::Z float ___Z_2; // System.Single Windows.Foundation.Numerics.Quaternion::W float ___W_3; public: inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___X_0)); } inline float get_X_0() const { return ___X_0; } inline float* get_address_of_X_0() { return &___X_0; } inline void set_X_0(float value) { ___X_0 = value; } inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___Y_1)); } inline float get_Y_1() const { return ___Y_1; } inline float* get_address_of_Y_1() { return &___Y_1; } inline void set_Y_1(float value) { ___Y_1 = value; } inline static int32_t get_offset_of_Z_2() { return static_cast<int32_t>(offsetof(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___Z_2)); } inline float get_Z_2() const { return ___Z_2; } inline float* get_address_of_Z_2() { return &___Z_2; } inline void set_Z_2(float value) { ___Z_2 = value; } inline static int32_t get_offset_of_W_3() { return static_cast<int32_t>(offsetof(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___W_3)); } inline float get_W_3() const { return ___W_3; } inline float* get_address_of_W_3() { return &___W_3; } inline void set_W_3(float value) { ___W_3 = value; } }; // Windows.Foundation.Numerics.Vector3 struct Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD { public: // System.Single Windows.Foundation.Numerics.Vector3::X float ___X_0; // System.Single Windows.Foundation.Numerics.Vector3::Y float ___Y_1; // System.Single Windows.Foundation.Numerics.Vector3::Z float ___Z_2; public: inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD, ___X_0)); } inline float get_X_0() const { return ___X_0; } inline float* get_address_of_X_0() { return &___X_0; } inline void set_X_0(float value) { ___X_0 = value; } inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD, ___Y_1)); } inline float get_Y_1() const { return ___Y_1; } inline float* get_address_of_Y_1() { return &___Y_1; } inline void set_Y_1(float value) { ___Y_1 = value; } inline static int32_t get_offset_of_Z_2() { return static_cast<int32_t>(offsetof(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD, ___Z_2)); } inline float get_Z_2() const { return ___Z_2; } inline float* get_address_of_Z_2() { return &___Z_2; } inline void set_Z_2(float value) { ___Z_2 = value; } }; // Windows.Foundation.Point struct Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 { public: // System.Single Windows.Foundation.Point::X float ___X_0; // System.Single Windows.Foundation.Point::Y float ___Y_1; public: inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1, ___X_0)); } inline float get_X_0() const { return ___X_0; } inline float* get_address_of_X_0() { return &___X_0; } inline void set_X_0(float value) { ___X_0 = value; } inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1, ___Y_1)); } inline float get_Y_1() const { return ___Y_1; } inline float* get_address_of_Y_1() { return &___Y_1; } inline void set_Y_1(float value) { ___Y_1 = value; } }; // Windows.Foundation.Point struct Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC { public: // System.Single Windows.Foundation.Point::_x float ____x_0; // System.Single Windows.Foundation.Point::_y float ____y_1; public: inline static int32_t get_offset_of__x_0() { return static_cast<int32_t>(offsetof(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC, ____x_0)); } inline float get__x_0() const { return ____x_0; } inline float* get_address_of__x_0() { return &____x_0; } inline void set__x_0(float value) { ____x_0 = value; } inline static int32_t get_offset_of__y_1() { return static_cast<int32_t>(offsetof(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC, ____y_1)); } inline float get__y_1() const { return ____y_1; } inline float* get_address_of__y_1() { return &____y_1; } inline void set__y_1(float value) { ____y_1 = value; } }; // Windows.Foundation.Rect struct Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA { public: // System.Single Windows.Foundation.Rect::X float ___X_0; // System.Single Windows.Foundation.Rect::Y float ___Y_1; // System.Single Windows.Foundation.Rect::Width float ___Width_2; // System.Single Windows.Foundation.Rect::Height float ___Height_3; public: inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___X_0)); } inline float get_X_0() const { return ___X_0; } inline float* get_address_of_X_0() { return &___X_0; } inline void set_X_0(float value) { ___X_0 = value; } inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___Y_1)); } inline float get_Y_1() const { return ___Y_1; } inline float* get_address_of_Y_1() { return &___Y_1; } inline void set_Y_1(float value) { ___Y_1 = value; } inline static int32_t get_offset_of_Width_2() { return static_cast<int32_t>(offsetof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___Width_2)); } inline float get_Width_2() const { return ___Width_2; } inline float* get_address_of_Width_2() { return &___Width_2; } inline void set_Width_2(float value) { ___Width_2 = value; } inline static int32_t get_offset_of_Height_3() { return static_cast<int32_t>(offsetof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___Height_3)); } inline float get_Height_3() const { return ___Height_3; } inline float* get_address_of_Height_3() { return &___Height_3; } inline void set_Height_3(float value) { ___Height_3 = value; } }; // Windows.Foundation.Rect struct Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 { public: // System.Single Windows.Foundation.Rect::_x float ____x_0; // System.Single Windows.Foundation.Rect::_y float ____y_1; // System.Single Windows.Foundation.Rect::_width float ____width_2; // System.Single Windows.Foundation.Rect::_height float ____height_3; public: inline static int32_t get_offset_of__x_0() { return static_cast<int32_t>(offsetof(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____x_0)); } inline float get__x_0() const { return ____x_0; } inline float* get_address_of__x_0() { return &____x_0; } inline void set__x_0(float value) { ____x_0 = value; } inline static int32_t get_offset_of__y_1() { return static_cast<int32_t>(offsetof(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____y_1)); } inline float get__y_1() const { return ____y_1; } inline float* get_address_of__y_1() { return &____y_1; } inline void set__y_1(float value) { ____y_1 = value; } inline static int32_t get_offset_of__width_2() { return static_cast<int32_t>(offsetof(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____width_2)); } inline float get__width_2() const { return ____width_2; } inline float* get_address_of__width_2() { return &____width_2; } inline void set__width_2(float value) { ____width_2 = value; } inline static int32_t get_offset_of__height_3() { return static_cast<int32_t>(offsetof(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____height_3)); } inline float get__height_3() const { return ____height_3; } inline float* get_address_of__height_3() { return &____height_3; } inline void set__height_3(float value) { ____height_3 = value; } }; // Windows.Foundation.Size struct Size_t4766FF009097CE547F699B69250246058DA664D9 { public: // System.Single Windows.Foundation.Size::Width float ___Width_0; // System.Single Windows.Foundation.Size::Height float ___Height_1; public: inline static int32_t get_offset_of_Width_0() { return static_cast<int32_t>(offsetof(Size_t4766FF009097CE547F699B69250246058DA664D9, ___Width_0)); } inline float get_Width_0() const { return ___Width_0; } inline float* get_address_of_Width_0() { return &___Width_0; } inline void set_Width_0(float value) { ___Width_0 = value; } inline static int32_t get_offset_of_Height_1() { return static_cast<int32_t>(offsetof(Size_t4766FF009097CE547F699B69250246058DA664D9, ___Height_1)); } inline float get_Height_1() const { return ___Height_1; } inline float* get_address_of_Height_1() { return &___Height_1; } inline void set_Height_1(float value) { ___Height_1 = value; } }; // Windows.Foundation.Size struct Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 { public: // System.Single Windows.Foundation.Size::_width float ____width_0; // System.Single Windows.Foundation.Size::_height float ____height_1; public: inline static int32_t get_offset_of__width_0() { return static_cast<int32_t>(offsetof(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2, ____width_0)); } inline float get__width_0() const { return ____width_0; } inline float* get_address_of__width_0() { return &____width_0; } inline void set__width_0(float value) { ____width_0 = value; } inline static int32_t get_offset_of__height_1() { return static_cast<int32_t>(offsetof(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2, ____height_1)); } inline float get__height_1() const { return ____height_1; } inline float* get_address_of__height_1() { return &____height_1; } inline void set__height_1(float value) { ____height_1 = value; } }; // Windows.Foundation.TimeSpan struct TimeSpan_tD18885B289077804D4E82931E68E84181C072755 { public: // System.Int64 Windows.Foundation.TimeSpan::Duration int64_t ___Duration_0; public: inline static int32_t get_offset_of_Duration_0() { return static_cast<int32_t>(offsetof(TimeSpan_tD18885B289077804D4E82931E68E84181C072755, ___Duration_0)); } inline int64_t get_Duration_0() const { return ___Duration_0; } inline int64_t* get_address_of_Duration_0() { return &___Duration_0; } inline void set_Duration_0(int64_t value) { ___Duration_0 = value; } }; // Windows.Foundation.UniversalApiContract struct UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 { public: public: }; // Microsoft.MixedReality.Toolkit.BaseCoreSystem struct BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F : public BaseEventSystem_tC4ADB21EAC9DA95E3A19A458B5CA298A1D51707A { public: // Microsoft.MixedReality.Toolkit.IMixedRealityServiceRegistrar Microsoft.MixedReality.Toolkit.BaseCoreSystem::<Registrar>k__BackingField RuntimeObject* ___U3CRegistrarU3Ek__BackingField_12; public: inline static int32_t get_offset_of_U3CRegistrarU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F, ___U3CRegistrarU3Ek__BackingField_12)); } inline RuntimeObject* get_U3CRegistrarU3Ek__BackingField_12() const { return ___U3CRegistrarU3Ek__BackingField_12; } inline RuntimeObject** get_address_of_U3CRegistrarU3Ek__BackingField_12() { return &___U3CRegistrarU3Ek__BackingField_12; } inline void set_U3CRegistrarU3Ek__BackingField_12(RuntimeObject* value) { ___U3CRegistrarU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRegistrarU3Ek__BackingField_12), (void*)value); } }; // Microsoft.MixedReality.Toolkit.CameraSystem.BaseCameraSettingsProvider struct BaseCameraSettingsProvider_t99681BF8F7DF479B33F9AB5F36D3FDE923AA34EB : public BaseDataProvider_t62035BEE793ABE4C6359BCDBEB30CED3AEAC2C70 { public: // System.Boolean Microsoft.MixedReality.Toolkit.CameraSystem.BaseCameraSettingsProvider::<IsOpaque>k__BackingField bool ___U3CIsOpaqueU3Ek__BackingField_7; public: inline static int32_t get_offset_of_U3CIsOpaqueU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(BaseCameraSettingsProvider_t99681BF8F7DF479B33F9AB5F36D3FDE923AA34EB, ___U3CIsOpaqueU3Ek__BackingField_7)); } inline bool get_U3CIsOpaqueU3Ek__BackingField_7() const { return ___U3CIsOpaqueU3Ek__BackingField_7; } inline bool* get_address_of_U3CIsOpaqueU3Ek__BackingField_7() { return &___U3CIsOpaqueU3Ek__BackingField_7; } inline void set_U3CIsOpaqueU3Ek__BackingField_7(bool value) { ___U3CIsOpaqueU3Ek__BackingField_7 = value; } }; // Microsoft.MixedReality.Toolkit.CameraSystem.DisplayType struct DisplayType_tAA887ACFF90F338B13C853469CFC8E540631D2FD { public: // System.Int32 Microsoft.MixedReality.Toolkit.CameraSystem.DisplayType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DisplayType_tAA887ACFF90F338B13C853469CFC8E540631D2FD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20 struct U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20::<>2__current RuntimeObject * ___U3CU3E2__current_1; // UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20::currPosUV Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___currPosUV_2; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20::<>4__this DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A * ___U3CU3E4__this_3; // System.Boolean Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20::positiveX bool ___positiveX_4; // System.Boolean Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20::positiveY bool ___positiveY_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_currPosUV_2() { return static_cast<int32_t>(offsetof(U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC, ___currPosUV_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_currPosUV_2() const { return ___currPosUV_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_currPosUV_2() { return &___currPosUV_2; } inline void set_currPosUV_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___currPosUV_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC, ___U3CU3E4__this_3)); } inline DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } inline static int32_t get_offset_of_positiveX_4() { return static_cast<int32_t>(offsetof(U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC, ___positiveX_4)); } inline bool get_positiveX_4() const { return ___positiveX_4; } inline bool* get_address_of_positiveX_4() { return &___positiveX_4; } inline void set_positiveX_4(bool value) { ___positiveX_4 = value; } inline static int32_t get_offset_of_positiveY_5() { return static_cast<int32_t>(offsetof(U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC, ___positiveY_5)); } inline bool get_positiveY_5() const { return ___positiveY_5; } inline bool* get_address_of_positiveY_5() { return &___positiveY_5; } inline void set_positiveY_5(bool value) { ___positiveY_5 = value; } }; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<DrawAt>d__19 struct U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<DrawAt>d__19::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<DrawAt>d__19::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<DrawAt>d__19::<>4__this DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A * ___U3CU3E4__this_2; // UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<DrawAt>d__19::posUV Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___posUV_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458, ___U3CU3E4__this_2)); } inline DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(DrawOnTexture_t7C68E2C9FD3B75BC4376ADEABBCCE9D87C9A605A * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_posUV_3() { return static_cast<int32_t>(offsetof(U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458, ___posUV_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_posUV_3() const { return ___posUV_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_posUV_3() { return &___posUV_3; } inline void set_posUV_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___posUV_3 = value; } }; // Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149 struct U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::<>4__this ScrollingObjectCollection_t220BA536AD26CF59AAA7C180404A710BBD0A187F * ___U3CU3E4__this_2; // UnityEngine.AnimationCurve Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::curve AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___curve_3; // System.Nullable`1<System.Single> Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::time Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 ___time_4; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::initialPos Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___initialPos_5; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::finalPos Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___finalPos_6; // System.Action Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::callback Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___callback_7; // System.Single Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149::<counter>5__2 float ___U3CcounterU3E5__2_8; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___U3CU3E4__this_2)); } inline ScrollingObjectCollection_t220BA536AD26CF59AAA7C180404A710BBD0A187F * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline ScrollingObjectCollection_t220BA536AD26CF59AAA7C180404A710BBD0A187F ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(ScrollingObjectCollection_t220BA536AD26CF59AAA7C180404A710BBD0A187F * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_curve_3() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___curve_3)); } inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_curve_3() const { return ___curve_3; } inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_curve_3() { return &___curve_3; } inline void set_curve_3(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value) { ___curve_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___curve_3), (void*)value); } inline static int32_t get_offset_of_time_4() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___time_4)); } inline Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 get_time_4() const { return ___time_4; } inline Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 * get_address_of_time_4() { return &___time_4; } inline void set_time_4(Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 value) { ___time_4 = value; } inline static int32_t get_offset_of_initialPos_5() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___initialPos_5)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_initialPos_5() const { return ___initialPos_5; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_initialPos_5() { return &___initialPos_5; } inline void set_initialPos_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___initialPos_5 = value; } inline static int32_t get_offset_of_finalPos_6() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___finalPos_6)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_finalPos_6() const { return ___finalPos_6; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_finalPos_6() { return &___finalPos_6; } inline void set_finalPos_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___finalPos_6 = value; } inline static int32_t get_offset_of_callback_7() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___callback_7)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_callback_7() const { return ___callback_7; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_callback_7() { return &___callback_7; } inline void set_callback_7(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___callback_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_7), (void*)value); } inline static int32_t get_offset_of_U3CcounterU3E5__2_8() { return static_cast<int32_t>(offsetof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26, ___U3CcounterU3E5__2_8)); } inline float get_U3CcounterU3E5__2_8() const { return ___U3CcounterU3E5__2_8; } inline float* get_address_of_U3CcounterU3E5__2_8() { return &___U3CcounterU3E5__2_8; } inline void set_U3CcounterU3E5__2_8(float value) { ___U3CcounterU3E5__2_8 = value; } }; // Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.CameraFaderTargets struct CameraFaderTargets_t902EE2FFBE5DBBEC82BD5BC8991EC13EEA4FD1F7 { public: // System.Int32 Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.CameraFaderTargets::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CameraFaderTargets_t902EE2FFBE5DBBEC82BD5BC8991EC13EEA4FD1F7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService struct LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C : public BaseExtensionService_t03E75FDDCE03139ED70D3E269F247C4515188B57 { public: // System.Boolean Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService::<TrackingLost>k__BackingField bool ___U3CTrackingLostU3Ek__BackingField_6; // System.Action Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService::<OnTrackingLost>k__BackingField Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___U3COnTrackingLostU3Ek__BackingField_7; // System.Action Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService::<OnTrackingRestored>k__BackingField Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___U3COnTrackingRestoredU3Ek__BackingField_8; // Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingServiceProfile Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService::profile LostTrackingServiceProfile_tB14743DB6B3B8741B000CB999B40BADF7B4018A4 * ___profile_9; // Microsoft.MixedReality.Toolkit.Extensions.Tracking.ILostTrackingVisual Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService::visual RuntimeObject* ___visual_10; // System.Int32 Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService::cullingMaskOnTrackingLost int32_t ___cullingMaskOnTrackingLost_11; // System.Single Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService::timeScaleOnTrackingLost float ___timeScaleOnTrackingLost_12; public: inline static int32_t get_offset_of_U3CTrackingLostU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C, ___U3CTrackingLostU3Ek__BackingField_6)); } inline bool get_U3CTrackingLostU3Ek__BackingField_6() const { return ___U3CTrackingLostU3Ek__BackingField_6; } inline bool* get_address_of_U3CTrackingLostU3Ek__BackingField_6() { return &___U3CTrackingLostU3Ek__BackingField_6; } inline void set_U3CTrackingLostU3Ek__BackingField_6(bool value) { ___U3CTrackingLostU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3COnTrackingLostU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C, ___U3COnTrackingLostU3Ek__BackingField_7)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_U3COnTrackingLostU3Ek__BackingField_7() const { return ___U3COnTrackingLostU3Ek__BackingField_7; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_U3COnTrackingLostU3Ek__BackingField_7() { return &___U3COnTrackingLostU3Ek__BackingField_7; } inline void set_U3COnTrackingLostU3Ek__BackingField_7(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___U3COnTrackingLostU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnTrackingLostU3Ek__BackingField_7), (void*)value); } inline static int32_t get_offset_of_U3COnTrackingRestoredU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C, ___U3COnTrackingRestoredU3Ek__BackingField_8)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_U3COnTrackingRestoredU3Ek__BackingField_8() const { return ___U3COnTrackingRestoredU3Ek__BackingField_8; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_U3COnTrackingRestoredU3Ek__BackingField_8() { return &___U3COnTrackingRestoredU3Ek__BackingField_8; } inline void set_U3COnTrackingRestoredU3Ek__BackingField_8(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___U3COnTrackingRestoredU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnTrackingRestoredU3Ek__BackingField_8), (void*)value); } inline static int32_t get_offset_of_profile_9() { return static_cast<int32_t>(offsetof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C, ___profile_9)); } inline LostTrackingServiceProfile_tB14743DB6B3B8741B000CB999B40BADF7B4018A4 * get_profile_9() const { return ___profile_9; } inline LostTrackingServiceProfile_tB14743DB6B3B8741B000CB999B40BADF7B4018A4 ** get_address_of_profile_9() { return &___profile_9; } inline void set_profile_9(LostTrackingServiceProfile_tB14743DB6B3B8741B000CB999B40BADF7B4018A4 * value) { ___profile_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___profile_9), (void*)value); } inline static int32_t get_offset_of_visual_10() { return static_cast<int32_t>(offsetof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C, ___visual_10)); } inline RuntimeObject* get_visual_10() const { return ___visual_10; } inline RuntimeObject** get_address_of_visual_10() { return &___visual_10; } inline void set_visual_10(RuntimeObject* value) { ___visual_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___visual_10), (void*)value); } inline static int32_t get_offset_of_cullingMaskOnTrackingLost_11() { return static_cast<int32_t>(offsetof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C, ___cullingMaskOnTrackingLost_11)); } inline int32_t get_cullingMaskOnTrackingLost_11() const { return ___cullingMaskOnTrackingLost_11; } inline int32_t* get_address_of_cullingMaskOnTrackingLost_11() { return &___cullingMaskOnTrackingLost_11; } inline void set_cullingMaskOnTrackingLost_11(int32_t value) { ___cullingMaskOnTrackingLost_11 = value; } inline static int32_t get_offset_of_timeScaleOnTrackingLost_12() { return static_cast<int32_t>(offsetof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C, ___timeScaleOnTrackingLost_12)); } inline float get_timeScaleOnTrackingLost_12() const { return ___timeScaleOnTrackingLost_12; } inline float* get_address_of_timeScaleOnTrackingLost_12() { return &___timeScaleOnTrackingLost_12; } inline void set_timeScaleOnTrackingLost_12(float value) { ___timeScaleOnTrackingLost_12 = value; } }; // Microsoft.MixedReality.Toolkit.Input.BaseInputDeviceManager struct BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD : public BaseDataProvider_t62035BEE793ABE4C6359BCDBEB30CED3AEAC2C70 { public: // Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSystem Microsoft.MixedReality.Toolkit.Input.BaseInputDeviceManager::<InputSystem>k__BackingField RuntimeObject* ___U3CInputSystemU3Ek__BackingField_7; public: inline static int32_t get_offset_of_U3CInputSystemU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD, ___U3CInputSystemU3Ek__BackingField_7)); } inline RuntimeObject* get_U3CInputSystemU3Ek__BackingField_7() const { return ___U3CInputSystemU3Ek__BackingField_7; } inline RuntimeObject** get_address_of_U3CInputSystemU3Ek__BackingField_7() { return &___U3CInputSystemU3Ek__BackingField_7; } inline void set_U3CInputSystemU3Ek__BackingField_7(RuntimeObject* value) { ___U3CInputSystemU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CInputSystemU3Ek__BackingField_7), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable_<GetEnumerator>d__2 struct U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable_<GetEnumerator>d__2::<>1__state int32_t ___U3CU3E1__state_0; // UnityEngine.AnimationCurve Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable_<GetEnumerator>d__2::<>2__current AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable_<GetEnumerator>d__2::<>4__this AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9 * ___U3CU3E4__this_2; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,Microsoft.MixedReality.Toolkit.Input.InputAnimation_PoseCurves> Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable_<GetEnumerator>d__2::<>7__wrap1 Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664 ___U3CU3E7__wrap1_3; // Microsoft.MixedReality.Toolkit.Input.InputAnimation_PoseCurves Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable_<GetEnumerator>d__2::<curves>5__3 PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 * ___U3CcurvesU3E5__3_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678, ___U3CU3E2__current_1)); } inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678, ___U3CU3E4__this_2)); } inline AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678, ___U3CU3E7__wrap1_3)); } inline Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664 get_U3CU3E7__wrap1_3() const { return ___U3CU3E7__wrap1_3; } inline Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664 * get_address_of_U3CU3E7__wrap1_3() { return &___U3CU3E7__wrap1_3; } inline void set_U3CU3E7__wrap1_3(Enumerator_tF86533E85C353C33385FC2F3E0A924B89EC76664 value) { ___U3CU3E7__wrap1_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_3))->___dictionary_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_3))->___currentValue_3), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CcurvesU3E5__3_4() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678, ___U3CcurvesU3E5__3_4)); } inline PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 * get_U3CcurvesU3E5__3_4() const { return ___U3CcurvesU3E5__3_4; } inline PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 ** get_address_of_U3CcurvesU3E5__3_4() { return &___U3CcurvesU3E5__3_4; } inline void set_U3CcurvesU3E5__3_4(PoseCurves_tEDF854069B437D5E05447DF8704E8C49CE75FA79 * value) { ___U3CcurvesU3E5__3_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcurvesU3E5__3_4), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.InputSourceType struct InputSourceType_t954A9FB9FA68D8DBFF984983180F248F774D7371 { public: // System.Int32 Microsoft.MixedReality.Toolkit.Input.InputSourceType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputSourceType_t954A9FB9FA68D8DBFF984983180F248F774D7371, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Input.PointerBehavior struct PointerBehavior_t70E7D4FCC681DED041929F2CEDB98833894B6AE2 { public: // System.Int32 Microsoft.MixedReality.Toolkit.Input.PointerBehavior::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PointerBehavior_t70E7D4FCC681DED041929F2CEDB98833894B6AE2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7 struct U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7::<>1__state int32_t ___U3CU3E1__state_0; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7::<>2__current RuntimeObject* ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Collections.Generic.HashSet`1_Enumerator<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSource> Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7::<>7__wrap1 Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0 ___U3CU3E7__wrap1_3; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer[] Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7::<>7__wrap2 IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D* ___U3CU3E7__wrap2_4; // System.Int32 Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7::<>7__wrap3 int32_t ___U3CU3E7__wrap3_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE, ___U3CU3E2__current_1)); } inline RuntimeObject* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject* value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_U3CU3E7__wrap1_3() { return static_cast<int32_t>(offsetof(U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE, ___U3CU3E7__wrap1_3)); } inline Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0 get_U3CU3E7__wrap1_3() const { return ___U3CU3E7__wrap1_3; } inline Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0 * get_address_of_U3CU3E7__wrap1_3() { return &___U3CU3E7__wrap1_3; } inline void set_U3CU3E7__wrap1_3(Enumerator_tC398DCE38F733C30897E40656D796FF85E228AB0 value) { ___U3CU3E7__wrap1_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_3))->____set_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_3))->____current_3), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3E7__wrap2_4() { return static_cast<int32_t>(offsetof(U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE, ___U3CU3E7__wrap2_4)); } inline IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D* get_U3CU3E7__wrap2_4() const { return ___U3CU3E7__wrap2_4; } inline IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D** get_address_of_U3CU3E7__wrap2_4() { return &___U3CU3E7__wrap2_4; } inline void set_U3CU3E7__wrap2_4(IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D* value) { ___U3CU3E7__wrap2_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap2_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap3_5() { return static_cast<int32_t>(offsetof(U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE, ___U3CU3E7__wrap3_5)); } inline int32_t get_U3CU3E7__wrap3_5() const { return ___U3CU3E7__wrap3_5; } inline int32_t* get_address_of_U3CU3E7__wrap3_5() { return &___U3CU3E7__wrap3_5; } inline void set_U3CU3E7__wrap3_5(int32_t value) { ___U3CU3E7__wrap3_5 = value; } }; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122 struct U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122::<>1__state int32_t ___U3CU3E1__state_0; // UnityEngine.SceneManagement.Scene Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122::<>2__current Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Collections.Generic.IEnumerable`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122::sceneNames RuntimeObject* ___sceneNames_3; // System.Collections.Generic.IEnumerable`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122::<>3__sceneNames RuntimeObject* ___U3CU3E3__sceneNames_4; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122::<>4__this MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA * ___U3CU3E4__this_5; // System.Collections.Generic.IEnumerator`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122::<>7__wrap1 RuntimeObject* ___U3CU3E7__wrap1_6; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF, ___U3CU3E2__current_1)); } inline Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 value) { ___U3CU3E2__current_1 = value; } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_sceneNames_3() { return static_cast<int32_t>(offsetof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF, ___sceneNames_3)); } inline RuntimeObject* get_sceneNames_3() const { return ___sceneNames_3; } inline RuntimeObject** get_address_of_sceneNames_3() { return &___sceneNames_3; } inline void set_sceneNames_3(RuntimeObject* value) { ___sceneNames_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sceneNames_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__sceneNames_4() { return static_cast<int32_t>(offsetof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF, ___U3CU3E3__sceneNames_4)); } inline RuntimeObject* get_U3CU3E3__sceneNames_4() const { return ___U3CU3E3__sceneNames_4; } inline RuntimeObject** get_address_of_U3CU3E3__sceneNames_4() { return &___U3CU3E3__sceneNames_4; } inline void set_U3CU3E3__sceneNames_4(RuntimeObject* value) { ___U3CU3E3__sceneNames_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__sceneNames_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_5() { return static_cast<int32_t>(offsetof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF, ___U3CU3E4__this_5)); } inline MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA * get_U3CU3E4__this_5() const { return ___U3CU3E4__this_5; } inline MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA ** get_address_of_U3CU3E4__this_5() { return &___U3CU3E4__this_5; } inline void set_U3CU3E4__this_5(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA * value) { ___U3CU3E4__this_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_5), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_6() { return static_cast<int32_t>(offsetof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF, ___U3CU3E7__wrap1_6)); } inline RuntimeObject* get_U3CU3E7__wrap1_6() const { return ___U3CU3E7__wrap1_6; } inline RuntimeObject** get_address_of_U3CU3E7__wrap1_6() { return &___U3CU3E7__wrap1_6; } inline void set_U3CU3E7__wrap1_6(RuntimeObject* value) { ___U3CU3E7__wrap1_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_6), (void*)value); } }; // Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshDisplayOptions struct SpatialAwarenessMeshDisplayOptions_tC6FF850FCC16261E31E0D82AA9900BD98B70F685 { public: // System.Int32 Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshDisplayOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpatialAwarenessMeshDisplayOptions_tC6FF850FCC16261E31E0D82AA9900BD98B70F685, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshLevelOfDetail struct SpatialAwarenessMeshLevelOfDetail_t66B05607B86D5AE04F26A54015D4F9E485AC9353 { public: // System.Int32 Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshLevelOfDetail::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpatialAwarenessMeshLevelOfDetail_t66B05607B86D5AE04F26A54015D4F9E485AC9353, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2 struct U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessMeshObserver Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2::meshObserver RuntimeObject* ___meshObserver_2; // System.Boolean Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2::consolidate bool ___consolidate_3; // System.String Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2::folderPath String_t* ___folderPath_4; // System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.Transform> Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2::<>7__wrap1 Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4 ___U3CU3E7__wrap1_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_meshObserver_2() { return static_cast<int32_t>(offsetof(U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0, ___meshObserver_2)); } inline RuntimeObject* get_meshObserver_2() const { return ___meshObserver_2; } inline RuntimeObject** get_address_of_meshObserver_2() { return &___meshObserver_2; } inline void set_meshObserver_2(RuntimeObject* value) { ___meshObserver_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___meshObserver_2), (void*)value); } inline static int32_t get_offset_of_consolidate_3() { return static_cast<int32_t>(offsetof(U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0, ___consolidate_3)); } inline bool get_consolidate_3() const { return ___consolidate_3; } inline bool* get_address_of_consolidate_3() { return &___consolidate_3; } inline void set_consolidate_3(bool value) { ___consolidate_3 = value; } inline static int32_t get_offset_of_folderPath_4() { return static_cast<int32_t>(offsetof(U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0, ___folderPath_4)); } inline String_t* get_folderPath_4() const { return ___folderPath_4; } inline String_t** get_address_of_folderPath_4() { return &___folderPath_4; } inline void set_folderPath_4(String_t* value) { ___folderPath_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___folderPath_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_5() { return static_cast<int32_t>(offsetof(U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0, ___U3CU3E7__wrap1_5)); } inline Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4 get_U3CU3E7__wrap1_5() const { return ___U3CU3E7__wrap1_5; } inline Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4 * get_address_of_U3CU3E7__wrap1_5() { return &___U3CU3E7__wrap1_5; } inline void set_U3CU3E7__wrap1_5(Enumerator_t32958B9DFFF28C79711C74E0DA17AB337E1210C4 value) { ___U3CU3E7__wrap1_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_5))->____set_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_5))->____current_3), (void*)NULL); #endif } }; // Microsoft.MixedReality.Toolkit.UI.GazeHandHelper_<GetAllHandPositions>d__11 struct U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.UI.GazeHandHelper_<GetAllHandPositions>d__11::<>1__state int32_t ___U3CU3E1__state_0; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.UI.GazeHandHelper_<GetAllHandPositions>d__11::<>2__current Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.UI.GazeHandHelper_<GetAllHandPositions>d__11::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // Microsoft.MixedReality.Toolkit.UI.GazeHandHelper Microsoft.MixedReality.Toolkit.UI.GazeHandHelper_<GetAllHandPositions>d__11::<>4__this GazeHandHelper_t5ABF3EA484D14D49A64328CDE3A00083D1B07B5F * ___U3CU3E4__this_3; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.UInt32,System.Boolean> Microsoft.MixedReality.Toolkit.UI.GazeHandHelper_<GetAllHandPositions>d__11::<>7__wrap1 Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF ___U3CU3E7__wrap1_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B, ___U3CU3E2__current_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___U3CU3E2__current_1 = value; } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B, ___U3CU3E4__this_3)); } inline GazeHandHelper_t5ABF3EA484D14D49A64328CDE3A00083D1B07B5F * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline GazeHandHelper_t5ABF3EA484D14D49A64328CDE3A00083D1B07B5F ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(GazeHandHelper_t5ABF3EA484D14D49A64328CDE3A00083D1B07B5F * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_4() { return static_cast<int32_t>(offsetof(U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B, ___U3CU3E7__wrap1_4)); } inline Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF get_U3CU3E7__wrap1_4() const { return ___U3CU3E7__wrap1_4; } inline Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF * get_address_of_U3CU3E7__wrap1_4() { return &___U3CU3E7__wrap1_4; } inline void set_U3CU3E7__wrap1_4(Enumerator_t12FC4046BEB26F686D773FB3AA2CFFE110908CBF value) { ___U3CU3E7__wrap1_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_4))->___dictionary_0), (void*)NULL); } }; // Microsoft.MixedReality.Toolkit.Utilities.AutoStartBehavior struct AutoStartBehavior_tF188900DEFF704CF9A059B93F586D6FCF91E61FD { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.AutoStartBehavior::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AutoStartBehavior_tF188900DEFF704CF9A059B93F586D6FCF91E61FD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.AxisType struct AxisType_tBC98A816F11947D8F8C750865A90359794459654 { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.AxisType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AxisType_tBC98A816F11947D8F8C750865A90359794459654, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.ExperienceScale struct ExperienceScale_t42774BD3768AE650313816FAF28F0199C186381F { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.ExperienceScale::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExperienceScale_t42774BD3768AE650313816FAF28F0199C186381F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.RecognitionConfidenceLevel struct RecognitionConfidenceLevel_tC58C99F8C6AE5F4453377BC2BAE7161DA1F25BB5 { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.RecognitionConfidenceLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RecognitionConfidenceLevel_tC58C99F8C6AE5F4453377BC2BAE7161DA1F25BB5, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.VolumeType struct VolumeType_tE13DBF07EC977D38105114CA065DECE7F9817C95 { public: // System.Int32 Microsoft.MixedReality.Toolkit.Utilities.VolumeType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VolumeType_tE13DBF07EC977D38105114CA065DECE7F9817C95, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Windows.Input.WindowsGestureSettings struct WindowsGestureSettings_t6A0D1921BB6221DF739FBE44B1D40AF3D796290D { public: // System.Int32 Microsoft.MixedReality.Toolkit.Windows.Input.WindowsGestureSettings::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(WindowsGestureSettings_t6A0D1921BB6221DF739FBE44B1D40AF3D796290D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.AttributeTargets struct AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741 { public: // System.Int32 System.AttributeTargets::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_PointerData> struct Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tEA773639426ADE852CDECE7DB72637D7E7BCEA1A * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_tEE2B205D63428F049DEDEBC22F044745BEBB40CC ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D, ___dictionary_0)); } inline Dictionary_2_tEA773639426ADE852CDECE7DB72637D7E7BCEA1A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tEA773639426ADE852CDECE7DB72637D7E7BCEA1A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tEA773639426ADE852CDECE7DB72637D7E7BCEA1A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D, ___current_3)); } inline KeyValuePair_2_tEE2B205D63428F049DEDEBC22F044745BEBB40CC get_current_3() const { return ___current_3; } inline KeyValuePair_2_tEE2B205D63428F049DEDEBC22F044745BEBB40CC * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tEE2B205D63428F049DEDEBC22F044745BEBB40CC value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // TMPro.FontStyles struct FontStyles_t31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893 { public: // System.Int32 TMPro.FontStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontStyles_t31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // TMPro.TMP_TextElementType struct TMP_TextElementType_tBF2553FA730CC21CF99473E591C33DC52360D509 { public: // System.Int32 TMPro.TMP_TextElementType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TMP_TextElementType_tBF2553FA730CC21CF99473E591C33DC52360D509, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // TMPro.TMP_Vertex struct TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 { public: // UnityEngine.Vector3 TMPro.TMP_Vertex::position Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0; // UnityEngine.Vector2 TMPro.TMP_Vertex::uv Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv_1; // UnityEngine.Vector2 TMPro.TMP_Vertex::uv2 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_2; // UnityEngine.Vector2 TMPro.TMP_Vertex::uv4 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv4_3; // UnityEngine.Color32 TMPro.TMP_Vertex::color Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_4; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___position_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___position_0 = value; } inline static int32_t get_offset_of_uv_1() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv_1)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv_1() const { return ___uv_1; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv_1() { return &___uv_1; } inline void set_uv_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv_1 = value; } inline static int32_t get_offset_of_uv2_2() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv2_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_2() const { return ___uv2_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_2() { return &___uv2_2; } inline void set_uv2_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv2_2 = value; } inline static int32_t get_offset_of_uv4_3() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv4_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv4_3() const { return ___uv4_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv4_3() { return &___uv4_3; } inline void set_uv4_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv4_3 = value; } inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___color_4)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_4() const { return ___color_4; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_4() { return &___color_4; } inline void set_color_4(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___color_4 = value; } }; // UnityEngine.Bounds struct Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 { public: // UnityEngine.Vector3 UnityEngine.Bounds::m_Center Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Center_0; // UnityEngine.Vector3 UnityEngine.Bounds::m_Extents Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Extents_1; public: inline static int32_t get_offset_of_m_Center_0() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Center_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Center_0() const { return ___m_Center_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Center_0() { return &___m_Center_0; } inline void set_m_Center_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Center_0 = value; } inline static int32_t get_offset_of_m_Extents_1() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Extents_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Extents_1() const { return ___m_Extents_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Extents_1() { return &___m_Extents_1; } inline void set_m_Extents_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Extents_1 = value; } }; // UnityEngine.Experimental.VFX.VFXSpawnerState struct VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7 : public RuntimeObject { public: // System.IntPtr UnityEngine.Experimental.VFX.VFXSpawnerState::m_Ptr intptr_t ___m_Ptr_0; // System.Boolean UnityEngine.Experimental.VFX.VFXSpawnerState::m_Owner bool ___m_Owner_1; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } inline static int32_t get_offset_of_m_Owner_1() { return static_cast<int32_t>(offsetof(VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7, ___m_Owner_1)); } inline bool get_m_Owner_1() const { return ___m_Owner_1; } inline bool* get_address_of_m_Owner_1() { return &___m_Owner_1; } inline void set_m_Owner_1(bool value) { ___m_Owner_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.VFX.VFXSpawnerState struct VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_marshaled_pinvoke { intptr_t ___m_Ptr_0; int32_t ___m_Owner_1; }; // Native definition for COM marshalling of UnityEngine.Experimental.VFX.VFXSpawnerState struct VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_marshaled_com { intptr_t ___m_Ptr_0; int32_t ___m_Owner_1; }; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.Ray struct Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 { public: // UnityEngine.Vector3 UnityEngine.Ray::m_Origin Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Origin_0; // UnityEngine.Vector3 UnityEngine.Ray::m_Direction Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Direction_1; public: inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Origin_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Origin_0() const { return ___m_Origin_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Origin_0() { return &___m_Origin_0; } inline void set_m_Origin_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Origin_0 = value; } inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Direction_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Direction_1() const { return ___m_Direction_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Direction_1() { return &___m_Direction_1; } inline void set_m_Direction_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Direction_1 = value; } }; // UnityEngine.TextAnchor struct TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57 { public: // System.Int32 UnityEngine.TextAnchor::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.XR.WSA.Input.GestureRecognizer struct GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE : public RuntimeObject { public: // System.IntPtr UnityEngine.XR.WSA.Input.GestureRecognizer::m_Recognizer intptr_t ___m_Recognizer_0; // System.Action`1<UnityEngine.XR.WSA.Input.HoldCanceledEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::HoldCanceled Action_1_t5DB3D8F91CD6BEB6D429ED4A29CC61B44CDD8A4B * ___HoldCanceled_1; // System.Action`1<UnityEngine.XR.WSA.Input.HoldCompletedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::HoldCompleted Action_1_t37D466E712A7A553C87729F5DD58DC77C8A89FF0 * ___HoldCompleted_2; // System.Action`1<UnityEngine.XR.WSA.Input.HoldStartedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::HoldStarted Action_1_t9A7EBE66F02FBEEDDB83D150DBABC2F2728C7F8E * ___HoldStarted_3; // System.Action`1<UnityEngine.XR.WSA.Input.TappedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::Tapped Action_1_tF26E81D6C525086A6BF0264D4CCFF4F9D3C86D12 * ___Tapped_4; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationCanceledEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationCanceled Action_1_tB13B2372B219E1C2C06EFDBCE8BD7EE041A2EB5E * ___ManipulationCanceled_5; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationCompletedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationCompleted Action_1_t3D75FAEDED813354B2965399C726ABFD1A5EBC3F * ___ManipulationCompleted_6; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationStartedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationStarted Action_1_t6DC7BD1E28CAAD24387D527C634AB60FA116325E * ___ManipulationStarted_7; // System.Action`1<UnityEngine.XR.WSA.Input.ManipulationUpdatedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationUpdated Action_1_t6F72821471F95D09FC84BC9F98573CD2139C23DC * ___ManipulationUpdated_8; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationCanceledEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationCanceled Action_1_t725D93DE550342B16861C2DF8B459B4657B0B40B * ___NavigationCanceled_9; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationCompletedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationCompleted Action_1_tE20909ED14E1CC129893FCAD2C19BA898C77D7B1 * ___NavigationCompleted_10; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationStartedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationStarted Action_1_t12403A5DFD6ED9F6D2D66FBBBF9B65D8CF00538E * ___NavigationStarted_11; // System.Action`1<UnityEngine.XR.WSA.Input.NavigationUpdatedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationUpdated Action_1_tEAD62A4E2B757ADC9D11D8A3CCB8E2CF8792F64C * ___NavigationUpdated_12; // System.Action`1<UnityEngine.XR.WSA.Input.RecognitionEndedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::RecognitionEnded Action_1_tE903BE1931BE14124CF0EFF594B91436F631E6E7 * ___RecognitionEnded_13; // System.Action`1<UnityEngine.XR.WSA.Input.RecognitionStartedEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::RecognitionStarted Action_1_tCDC01C5032C70E5DD6217277758BBB3991DC7A8E * ___RecognitionStarted_14; // System.Action`1<UnityEngine.XR.WSA.Input.GestureErrorEventArgs> UnityEngine.XR.WSA.Input.GestureRecognizer::GestureError Action_1_t86FE98C3236EF6A6C38460C0B9FE2D8262E44B6B * ___GestureError_15; // UnityEngine.XR.WSA.Input.GestureRecognizer_HoldCanceledEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::HoldCanceledEvent HoldCanceledEventDelegate_t5073A875A657B659A55D9111BF52AFA5E8FA22C2 * ___HoldCanceledEvent_16; // UnityEngine.XR.WSA.Input.GestureRecognizer_HoldCompletedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::HoldCompletedEvent HoldCompletedEventDelegate_tE1C05DE1BDD2AF5B15D561CE9EEB23259CAD0A7A * ___HoldCompletedEvent_17; // UnityEngine.XR.WSA.Input.GestureRecognizer_HoldStartedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::HoldStartedEvent HoldStartedEventDelegate_t79DBAFBD8DB4A33E282665E171EF7F7903DA57B2 * ___HoldStartedEvent_18; // UnityEngine.XR.WSA.Input.GestureRecognizer_TappedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::TappedEvent TappedEventDelegate_tC33CDAA9CA071369B711FA5FDE947E122072D34F * ___TappedEvent_19; // UnityEngine.XR.WSA.Input.GestureRecognizer_ManipulationCanceledEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationCanceledEvent ManipulationCanceledEventDelegate_t5D62D76C35A55841145479B9708F35A667B42917 * ___ManipulationCanceledEvent_20; // UnityEngine.XR.WSA.Input.GestureRecognizer_ManipulationCompletedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationCompletedEvent ManipulationCompletedEventDelegate_tFBC536B9D0EED5699871DB3855AA02653F35B6A4 * ___ManipulationCompletedEvent_21; // UnityEngine.XR.WSA.Input.GestureRecognizer_ManipulationStartedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationStartedEvent ManipulationStartedEventDelegate_tECC88952F89E480F898CF5710A0A47D1BA85C9F0 * ___ManipulationStartedEvent_22; // UnityEngine.XR.WSA.Input.GestureRecognizer_ManipulationUpdatedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::ManipulationUpdatedEvent ManipulationUpdatedEventDelegate_t521F96EEF0CE5D99D54AA2AB2D075CBD66D46406 * ___ManipulationUpdatedEvent_23; // UnityEngine.XR.WSA.Input.GestureRecognizer_NavigationCanceledEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationCanceledEvent NavigationCanceledEventDelegate_tA82EB6DFFB53212C7FADC09362EA424CEEF2A954 * ___NavigationCanceledEvent_24; // UnityEngine.XR.WSA.Input.GestureRecognizer_NavigationCompletedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationCompletedEvent NavigationCompletedEventDelegate_tF2B1D25EF7819624117F3C6E25E70F80B238F5D3 * ___NavigationCompletedEvent_25; // UnityEngine.XR.WSA.Input.GestureRecognizer_NavigationStartedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationStartedEvent NavigationStartedEventDelegate_tC56D514B35B7270BBE8D21E15C435EDBA84F1AEF * ___NavigationStartedEvent_26; // UnityEngine.XR.WSA.Input.GestureRecognizer_NavigationUpdatedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::NavigationUpdatedEvent NavigationUpdatedEventDelegate_t5802B4B5608A4D915714D70A5A51C82C6E34C69A * ___NavigationUpdatedEvent_27; // UnityEngine.XR.WSA.Input.GestureRecognizer_RecognitionEndedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::RecognitionEndedEvent RecognitionEndedEventDelegate_t00AB7FD9F0C0070CA19697B832E58151348F700B * ___RecognitionEndedEvent_28; // UnityEngine.XR.WSA.Input.GestureRecognizer_RecognitionStartedEventDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::RecognitionStartedEvent RecognitionStartedEventDelegate_t8C076BC7E24C0326F46F8EBB3B3CB7495027B214 * ___RecognitionStartedEvent_29; // UnityEngine.XR.WSA.Input.GestureRecognizer_GestureErrorDelegate UnityEngine.XR.WSA.Input.GestureRecognizer::GestureErrorEvent GestureErrorDelegate_tFA3E7E6A9E25ADFB4D2FF30E7CD521937F795084 * ___GestureErrorEvent_30; public: inline static int32_t get_offset_of_m_Recognizer_0() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___m_Recognizer_0)); } inline intptr_t get_m_Recognizer_0() const { return ___m_Recognizer_0; } inline intptr_t* get_address_of_m_Recognizer_0() { return &___m_Recognizer_0; } inline void set_m_Recognizer_0(intptr_t value) { ___m_Recognizer_0 = value; } inline static int32_t get_offset_of_HoldCanceled_1() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___HoldCanceled_1)); } inline Action_1_t5DB3D8F91CD6BEB6D429ED4A29CC61B44CDD8A4B * get_HoldCanceled_1() const { return ___HoldCanceled_1; } inline Action_1_t5DB3D8F91CD6BEB6D429ED4A29CC61B44CDD8A4B ** get_address_of_HoldCanceled_1() { return &___HoldCanceled_1; } inline void set_HoldCanceled_1(Action_1_t5DB3D8F91CD6BEB6D429ED4A29CC61B44CDD8A4B * value) { ___HoldCanceled_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___HoldCanceled_1), (void*)value); } inline static int32_t get_offset_of_HoldCompleted_2() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___HoldCompleted_2)); } inline Action_1_t37D466E712A7A553C87729F5DD58DC77C8A89FF0 * get_HoldCompleted_2() const { return ___HoldCompleted_2; } inline Action_1_t37D466E712A7A553C87729F5DD58DC77C8A89FF0 ** get_address_of_HoldCompleted_2() { return &___HoldCompleted_2; } inline void set_HoldCompleted_2(Action_1_t37D466E712A7A553C87729F5DD58DC77C8A89FF0 * value) { ___HoldCompleted_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___HoldCompleted_2), (void*)value); } inline static int32_t get_offset_of_HoldStarted_3() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___HoldStarted_3)); } inline Action_1_t9A7EBE66F02FBEEDDB83D150DBABC2F2728C7F8E * get_HoldStarted_3() const { return ___HoldStarted_3; } inline Action_1_t9A7EBE66F02FBEEDDB83D150DBABC2F2728C7F8E ** get_address_of_HoldStarted_3() { return &___HoldStarted_3; } inline void set_HoldStarted_3(Action_1_t9A7EBE66F02FBEEDDB83D150DBABC2F2728C7F8E * value) { ___HoldStarted_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___HoldStarted_3), (void*)value); } inline static int32_t get_offset_of_Tapped_4() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___Tapped_4)); } inline Action_1_tF26E81D6C525086A6BF0264D4CCFF4F9D3C86D12 * get_Tapped_4() const { return ___Tapped_4; } inline Action_1_tF26E81D6C525086A6BF0264D4CCFF4F9D3C86D12 ** get_address_of_Tapped_4() { return &___Tapped_4; } inline void set_Tapped_4(Action_1_tF26E81D6C525086A6BF0264D4CCFF4F9D3C86D12 * value) { ___Tapped_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Tapped_4), (void*)value); } inline static int32_t get_offset_of_ManipulationCanceled_5() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationCanceled_5)); } inline Action_1_tB13B2372B219E1C2C06EFDBCE8BD7EE041A2EB5E * get_ManipulationCanceled_5() const { return ___ManipulationCanceled_5; } inline Action_1_tB13B2372B219E1C2C06EFDBCE8BD7EE041A2EB5E ** get_address_of_ManipulationCanceled_5() { return &___ManipulationCanceled_5; } inline void set_ManipulationCanceled_5(Action_1_tB13B2372B219E1C2C06EFDBCE8BD7EE041A2EB5E * value) { ___ManipulationCanceled_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationCanceled_5), (void*)value); } inline static int32_t get_offset_of_ManipulationCompleted_6() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationCompleted_6)); } inline Action_1_t3D75FAEDED813354B2965399C726ABFD1A5EBC3F * get_ManipulationCompleted_6() const { return ___ManipulationCompleted_6; } inline Action_1_t3D75FAEDED813354B2965399C726ABFD1A5EBC3F ** get_address_of_ManipulationCompleted_6() { return &___ManipulationCompleted_6; } inline void set_ManipulationCompleted_6(Action_1_t3D75FAEDED813354B2965399C726ABFD1A5EBC3F * value) { ___ManipulationCompleted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationCompleted_6), (void*)value); } inline static int32_t get_offset_of_ManipulationStarted_7() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationStarted_7)); } inline Action_1_t6DC7BD1E28CAAD24387D527C634AB60FA116325E * get_ManipulationStarted_7() const { return ___ManipulationStarted_7; } inline Action_1_t6DC7BD1E28CAAD24387D527C634AB60FA116325E ** get_address_of_ManipulationStarted_7() { return &___ManipulationStarted_7; } inline void set_ManipulationStarted_7(Action_1_t6DC7BD1E28CAAD24387D527C634AB60FA116325E * value) { ___ManipulationStarted_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationStarted_7), (void*)value); } inline static int32_t get_offset_of_ManipulationUpdated_8() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationUpdated_8)); } inline Action_1_t6F72821471F95D09FC84BC9F98573CD2139C23DC * get_ManipulationUpdated_8() const { return ___ManipulationUpdated_8; } inline Action_1_t6F72821471F95D09FC84BC9F98573CD2139C23DC ** get_address_of_ManipulationUpdated_8() { return &___ManipulationUpdated_8; } inline void set_ManipulationUpdated_8(Action_1_t6F72821471F95D09FC84BC9F98573CD2139C23DC * value) { ___ManipulationUpdated_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationUpdated_8), (void*)value); } inline static int32_t get_offset_of_NavigationCanceled_9() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationCanceled_9)); } inline Action_1_t725D93DE550342B16861C2DF8B459B4657B0B40B * get_NavigationCanceled_9() const { return ___NavigationCanceled_9; } inline Action_1_t725D93DE550342B16861C2DF8B459B4657B0B40B ** get_address_of_NavigationCanceled_9() { return &___NavigationCanceled_9; } inline void set_NavigationCanceled_9(Action_1_t725D93DE550342B16861C2DF8B459B4657B0B40B * value) { ___NavigationCanceled_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationCanceled_9), (void*)value); } inline static int32_t get_offset_of_NavigationCompleted_10() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationCompleted_10)); } inline Action_1_tE20909ED14E1CC129893FCAD2C19BA898C77D7B1 * get_NavigationCompleted_10() const { return ___NavigationCompleted_10; } inline Action_1_tE20909ED14E1CC129893FCAD2C19BA898C77D7B1 ** get_address_of_NavigationCompleted_10() { return &___NavigationCompleted_10; } inline void set_NavigationCompleted_10(Action_1_tE20909ED14E1CC129893FCAD2C19BA898C77D7B1 * value) { ___NavigationCompleted_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationCompleted_10), (void*)value); } inline static int32_t get_offset_of_NavigationStarted_11() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationStarted_11)); } inline Action_1_t12403A5DFD6ED9F6D2D66FBBBF9B65D8CF00538E * get_NavigationStarted_11() const { return ___NavigationStarted_11; } inline Action_1_t12403A5DFD6ED9F6D2D66FBBBF9B65D8CF00538E ** get_address_of_NavigationStarted_11() { return &___NavigationStarted_11; } inline void set_NavigationStarted_11(Action_1_t12403A5DFD6ED9F6D2D66FBBBF9B65D8CF00538E * value) { ___NavigationStarted_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationStarted_11), (void*)value); } inline static int32_t get_offset_of_NavigationUpdated_12() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationUpdated_12)); } inline Action_1_tEAD62A4E2B757ADC9D11D8A3CCB8E2CF8792F64C * get_NavigationUpdated_12() const { return ___NavigationUpdated_12; } inline Action_1_tEAD62A4E2B757ADC9D11D8A3CCB8E2CF8792F64C ** get_address_of_NavigationUpdated_12() { return &___NavigationUpdated_12; } inline void set_NavigationUpdated_12(Action_1_tEAD62A4E2B757ADC9D11D8A3CCB8E2CF8792F64C * value) { ___NavigationUpdated_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationUpdated_12), (void*)value); } inline static int32_t get_offset_of_RecognitionEnded_13() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___RecognitionEnded_13)); } inline Action_1_tE903BE1931BE14124CF0EFF594B91436F631E6E7 * get_RecognitionEnded_13() const { return ___RecognitionEnded_13; } inline Action_1_tE903BE1931BE14124CF0EFF594B91436F631E6E7 ** get_address_of_RecognitionEnded_13() { return &___RecognitionEnded_13; } inline void set_RecognitionEnded_13(Action_1_tE903BE1931BE14124CF0EFF594B91436F631E6E7 * value) { ___RecognitionEnded_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___RecognitionEnded_13), (void*)value); } inline static int32_t get_offset_of_RecognitionStarted_14() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___RecognitionStarted_14)); } inline Action_1_tCDC01C5032C70E5DD6217277758BBB3991DC7A8E * get_RecognitionStarted_14() const { return ___RecognitionStarted_14; } inline Action_1_tCDC01C5032C70E5DD6217277758BBB3991DC7A8E ** get_address_of_RecognitionStarted_14() { return &___RecognitionStarted_14; } inline void set_RecognitionStarted_14(Action_1_tCDC01C5032C70E5DD6217277758BBB3991DC7A8E * value) { ___RecognitionStarted_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___RecognitionStarted_14), (void*)value); } inline static int32_t get_offset_of_GestureError_15() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___GestureError_15)); } inline Action_1_t86FE98C3236EF6A6C38460C0B9FE2D8262E44B6B * get_GestureError_15() const { return ___GestureError_15; } inline Action_1_t86FE98C3236EF6A6C38460C0B9FE2D8262E44B6B ** get_address_of_GestureError_15() { return &___GestureError_15; } inline void set_GestureError_15(Action_1_t86FE98C3236EF6A6C38460C0B9FE2D8262E44B6B * value) { ___GestureError_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___GestureError_15), (void*)value); } inline static int32_t get_offset_of_HoldCanceledEvent_16() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___HoldCanceledEvent_16)); } inline HoldCanceledEventDelegate_t5073A875A657B659A55D9111BF52AFA5E8FA22C2 * get_HoldCanceledEvent_16() const { return ___HoldCanceledEvent_16; } inline HoldCanceledEventDelegate_t5073A875A657B659A55D9111BF52AFA5E8FA22C2 ** get_address_of_HoldCanceledEvent_16() { return &___HoldCanceledEvent_16; } inline void set_HoldCanceledEvent_16(HoldCanceledEventDelegate_t5073A875A657B659A55D9111BF52AFA5E8FA22C2 * value) { ___HoldCanceledEvent_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___HoldCanceledEvent_16), (void*)value); } inline static int32_t get_offset_of_HoldCompletedEvent_17() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___HoldCompletedEvent_17)); } inline HoldCompletedEventDelegate_tE1C05DE1BDD2AF5B15D561CE9EEB23259CAD0A7A * get_HoldCompletedEvent_17() const { return ___HoldCompletedEvent_17; } inline HoldCompletedEventDelegate_tE1C05DE1BDD2AF5B15D561CE9EEB23259CAD0A7A ** get_address_of_HoldCompletedEvent_17() { return &___HoldCompletedEvent_17; } inline void set_HoldCompletedEvent_17(HoldCompletedEventDelegate_tE1C05DE1BDD2AF5B15D561CE9EEB23259CAD0A7A * value) { ___HoldCompletedEvent_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___HoldCompletedEvent_17), (void*)value); } inline static int32_t get_offset_of_HoldStartedEvent_18() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___HoldStartedEvent_18)); } inline HoldStartedEventDelegate_t79DBAFBD8DB4A33E282665E171EF7F7903DA57B2 * get_HoldStartedEvent_18() const { return ___HoldStartedEvent_18; } inline HoldStartedEventDelegate_t79DBAFBD8DB4A33E282665E171EF7F7903DA57B2 ** get_address_of_HoldStartedEvent_18() { return &___HoldStartedEvent_18; } inline void set_HoldStartedEvent_18(HoldStartedEventDelegate_t79DBAFBD8DB4A33E282665E171EF7F7903DA57B2 * value) { ___HoldStartedEvent_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___HoldStartedEvent_18), (void*)value); } inline static int32_t get_offset_of_TappedEvent_19() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___TappedEvent_19)); } inline TappedEventDelegate_tC33CDAA9CA071369B711FA5FDE947E122072D34F * get_TappedEvent_19() const { return ___TappedEvent_19; } inline TappedEventDelegate_tC33CDAA9CA071369B711FA5FDE947E122072D34F ** get_address_of_TappedEvent_19() { return &___TappedEvent_19; } inline void set_TappedEvent_19(TappedEventDelegate_tC33CDAA9CA071369B711FA5FDE947E122072D34F * value) { ___TappedEvent_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___TappedEvent_19), (void*)value); } inline static int32_t get_offset_of_ManipulationCanceledEvent_20() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationCanceledEvent_20)); } inline ManipulationCanceledEventDelegate_t5D62D76C35A55841145479B9708F35A667B42917 * get_ManipulationCanceledEvent_20() const { return ___ManipulationCanceledEvent_20; } inline ManipulationCanceledEventDelegate_t5D62D76C35A55841145479B9708F35A667B42917 ** get_address_of_ManipulationCanceledEvent_20() { return &___ManipulationCanceledEvent_20; } inline void set_ManipulationCanceledEvent_20(ManipulationCanceledEventDelegate_t5D62D76C35A55841145479B9708F35A667B42917 * value) { ___ManipulationCanceledEvent_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationCanceledEvent_20), (void*)value); } inline static int32_t get_offset_of_ManipulationCompletedEvent_21() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationCompletedEvent_21)); } inline ManipulationCompletedEventDelegate_tFBC536B9D0EED5699871DB3855AA02653F35B6A4 * get_ManipulationCompletedEvent_21() const { return ___ManipulationCompletedEvent_21; } inline ManipulationCompletedEventDelegate_tFBC536B9D0EED5699871DB3855AA02653F35B6A4 ** get_address_of_ManipulationCompletedEvent_21() { return &___ManipulationCompletedEvent_21; } inline void set_ManipulationCompletedEvent_21(ManipulationCompletedEventDelegate_tFBC536B9D0EED5699871DB3855AA02653F35B6A4 * value) { ___ManipulationCompletedEvent_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationCompletedEvent_21), (void*)value); } inline static int32_t get_offset_of_ManipulationStartedEvent_22() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationStartedEvent_22)); } inline ManipulationStartedEventDelegate_tECC88952F89E480F898CF5710A0A47D1BA85C9F0 * get_ManipulationStartedEvent_22() const { return ___ManipulationStartedEvent_22; } inline ManipulationStartedEventDelegate_tECC88952F89E480F898CF5710A0A47D1BA85C9F0 ** get_address_of_ManipulationStartedEvent_22() { return &___ManipulationStartedEvent_22; } inline void set_ManipulationStartedEvent_22(ManipulationStartedEventDelegate_tECC88952F89E480F898CF5710A0A47D1BA85C9F0 * value) { ___ManipulationStartedEvent_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationStartedEvent_22), (void*)value); } inline static int32_t get_offset_of_ManipulationUpdatedEvent_23() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___ManipulationUpdatedEvent_23)); } inline ManipulationUpdatedEventDelegate_t521F96EEF0CE5D99D54AA2AB2D075CBD66D46406 * get_ManipulationUpdatedEvent_23() const { return ___ManipulationUpdatedEvent_23; } inline ManipulationUpdatedEventDelegate_t521F96EEF0CE5D99D54AA2AB2D075CBD66D46406 ** get_address_of_ManipulationUpdatedEvent_23() { return &___ManipulationUpdatedEvent_23; } inline void set_ManipulationUpdatedEvent_23(ManipulationUpdatedEventDelegate_t521F96EEF0CE5D99D54AA2AB2D075CBD66D46406 * value) { ___ManipulationUpdatedEvent_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___ManipulationUpdatedEvent_23), (void*)value); } inline static int32_t get_offset_of_NavigationCanceledEvent_24() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationCanceledEvent_24)); } inline NavigationCanceledEventDelegate_tA82EB6DFFB53212C7FADC09362EA424CEEF2A954 * get_NavigationCanceledEvent_24() const { return ___NavigationCanceledEvent_24; } inline NavigationCanceledEventDelegate_tA82EB6DFFB53212C7FADC09362EA424CEEF2A954 ** get_address_of_NavigationCanceledEvent_24() { return &___NavigationCanceledEvent_24; } inline void set_NavigationCanceledEvent_24(NavigationCanceledEventDelegate_tA82EB6DFFB53212C7FADC09362EA424CEEF2A954 * value) { ___NavigationCanceledEvent_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationCanceledEvent_24), (void*)value); } inline static int32_t get_offset_of_NavigationCompletedEvent_25() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationCompletedEvent_25)); } inline NavigationCompletedEventDelegate_tF2B1D25EF7819624117F3C6E25E70F80B238F5D3 * get_NavigationCompletedEvent_25() const { return ___NavigationCompletedEvent_25; } inline NavigationCompletedEventDelegate_tF2B1D25EF7819624117F3C6E25E70F80B238F5D3 ** get_address_of_NavigationCompletedEvent_25() { return &___NavigationCompletedEvent_25; } inline void set_NavigationCompletedEvent_25(NavigationCompletedEventDelegate_tF2B1D25EF7819624117F3C6E25E70F80B238F5D3 * value) { ___NavigationCompletedEvent_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationCompletedEvent_25), (void*)value); } inline static int32_t get_offset_of_NavigationStartedEvent_26() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationStartedEvent_26)); } inline NavigationStartedEventDelegate_tC56D514B35B7270BBE8D21E15C435EDBA84F1AEF * get_NavigationStartedEvent_26() const { return ___NavigationStartedEvent_26; } inline NavigationStartedEventDelegate_tC56D514B35B7270BBE8D21E15C435EDBA84F1AEF ** get_address_of_NavigationStartedEvent_26() { return &___NavigationStartedEvent_26; } inline void set_NavigationStartedEvent_26(NavigationStartedEventDelegate_tC56D514B35B7270BBE8D21E15C435EDBA84F1AEF * value) { ___NavigationStartedEvent_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationStartedEvent_26), (void*)value); } inline static int32_t get_offset_of_NavigationUpdatedEvent_27() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___NavigationUpdatedEvent_27)); } inline NavigationUpdatedEventDelegate_t5802B4B5608A4D915714D70A5A51C82C6E34C69A * get_NavigationUpdatedEvent_27() const { return ___NavigationUpdatedEvent_27; } inline NavigationUpdatedEventDelegate_t5802B4B5608A4D915714D70A5A51C82C6E34C69A ** get_address_of_NavigationUpdatedEvent_27() { return &___NavigationUpdatedEvent_27; } inline void set_NavigationUpdatedEvent_27(NavigationUpdatedEventDelegate_t5802B4B5608A4D915714D70A5A51C82C6E34C69A * value) { ___NavigationUpdatedEvent_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___NavigationUpdatedEvent_27), (void*)value); } inline static int32_t get_offset_of_RecognitionEndedEvent_28() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___RecognitionEndedEvent_28)); } inline RecognitionEndedEventDelegate_t00AB7FD9F0C0070CA19697B832E58151348F700B * get_RecognitionEndedEvent_28() const { return ___RecognitionEndedEvent_28; } inline RecognitionEndedEventDelegate_t00AB7FD9F0C0070CA19697B832E58151348F700B ** get_address_of_RecognitionEndedEvent_28() { return &___RecognitionEndedEvent_28; } inline void set_RecognitionEndedEvent_28(RecognitionEndedEventDelegate_t00AB7FD9F0C0070CA19697B832E58151348F700B * value) { ___RecognitionEndedEvent_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___RecognitionEndedEvent_28), (void*)value); } inline static int32_t get_offset_of_RecognitionStartedEvent_29() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___RecognitionStartedEvent_29)); } inline RecognitionStartedEventDelegate_t8C076BC7E24C0326F46F8EBB3B3CB7495027B214 * get_RecognitionStartedEvent_29() const { return ___RecognitionStartedEvent_29; } inline RecognitionStartedEventDelegate_t8C076BC7E24C0326F46F8EBB3B3CB7495027B214 ** get_address_of_RecognitionStartedEvent_29() { return &___RecognitionStartedEvent_29; } inline void set_RecognitionStartedEvent_29(RecognitionStartedEventDelegate_t8C076BC7E24C0326F46F8EBB3B3CB7495027B214 * value) { ___RecognitionStartedEvent_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___RecognitionStartedEvent_29), (void*)value); } inline static int32_t get_offset_of_GestureErrorEvent_30() { return static_cast<int32_t>(offsetof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE, ___GestureErrorEvent_30)); } inline GestureErrorDelegate_tFA3E7E6A9E25ADFB4D2FF30E7CD521937F795084 * get_GestureErrorEvent_30() const { return ___GestureErrorEvent_30; } inline GestureErrorDelegate_tFA3E7E6A9E25ADFB4D2FF30E7CD521937F795084 ** get_address_of_GestureErrorEvent_30() { return &___GestureErrorEvent_30; } inline void set_GestureErrorEvent_30(GestureErrorDelegate_tFA3E7E6A9E25ADFB4D2FF30E7CD521937F795084 * value) { ___GestureErrorEvent_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___GestureErrorEvent_30), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.WSA.Input.GestureRecognizer struct GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_marshaled_pinvoke { intptr_t ___m_Recognizer_0; Il2CppMethodPointer ___HoldCanceled_1; Il2CppMethodPointer ___HoldCompleted_2; Il2CppMethodPointer ___HoldStarted_3; Il2CppMethodPointer ___Tapped_4; Il2CppMethodPointer ___ManipulationCanceled_5; Il2CppMethodPointer ___ManipulationCompleted_6; Il2CppMethodPointer ___ManipulationStarted_7; Il2CppMethodPointer ___ManipulationUpdated_8; Il2CppMethodPointer ___NavigationCanceled_9; Il2CppMethodPointer ___NavigationCompleted_10; Il2CppMethodPointer ___NavigationStarted_11; Il2CppMethodPointer ___NavigationUpdated_12; Il2CppMethodPointer ___RecognitionEnded_13; Il2CppMethodPointer ___RecognitionStarted_14; Il2CppMethodPointer ___GestureError_15; Il2CppMethodPointer ___HoldCanceledEvent_16; Il2CppMethodPointer ___HoldCompletedEvent_17; Il2CppMethodPointer ___HoldStartedEvent_18; Il2CppMethodPointer ___TappedEvent_19; Il2CppMethodPointer ___ManipulationCanceledEvent_20; Il2CppMethodPointer ___ManipulationCompletedEvent_21; Il2CppMethodPointer ___ManipulationStartedEvent_22; Il2CppMethodPointer ___ManipulationUpdatedEvent_23; Il2CppMethodPointer ___NavigationCanceledEvent_24; Il2CppMethodPointer ___NavigationCompletedEvent_25; Il2CppMethodPointer ___NavigationStartedEvent_26; Il2CppMethodPointer ___NavigationUpdatedEvent_27; Il2CppMethodPointer ___RecognitionEndedEvent_28; Il2CppMethodPointer ___RecognitionStartedEvent_29; Il2CppMethodPointer ___GestureErrorEvent_30; }; // Native definition for COM marshalling of UnityEngine.XR.WSA.Input.GestureRecognizer struct GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_marshaled_com { intptr_t ___m_Recognizer_0; Il2CppMethodPointer ___HoldCanceled_1; Il2CppMethodPointer ___HoldCompleted_2; Il2CppMethodPointer ___HoldStarted_3; Il2CppMethodPointer ___Tapped_4; Il2CppMethodPointer ___ManipulationCanceled_5; Il2CppMethodPointer ___ManipulationCompleted_6; Il2CppMethodPointer ___ManipulationStarted_7; Il2CppMethodPointer ___ManipulationUpdated_8; Il2CppMethodPointer ___NavigationCanceled_9; Il2CppMethodPointer ___NavigationCompleted_10; Il2CppMethodPointer ___NavigationStarted_11; Il2CppMethodPointer ___NavigationUpdated_12; Il2CppMethodPointer ___RecognitionEnded_13; Il2CppMethodPointer ___RecognitionStarted_14; Il2CppMethodPointer ___GestureError_15; Il2CppMethodPointer ___HoldCanceledEvent_16; Il2CppMethodPointer ___HoldCompletedEvent_17; Il2CppMethodPointer ___HoldStartedEvent_18; Il2CppMethodPointer ___TappedEvent_19; Il2CppMethodPointer ___ManipulationCanceledEvent_20; Il2CppMethodPointer ___ManipulationCompletedEvent_21; Il2CppMethodPointer ___ManipulationStartedEvent_22; Il2CppMethodPointer ___ManipulationUpdatedEvent_23; Il2CppMethodPointer ___NavigationCanceledEvent_24; Il2CppMethodPointer ___NavigationCompletedEvent_25; Il2CppMethodPointer ___NavigationStartedEvent_26; Il2CppMethodPointer ___NavigationUpdatedEvent_27; Il2CppMethodPointer ___RecognitionEndedEvent_28; Il2CppMethodPointer ___RecognitionStartedEvent_29; Il2CppMethodPointer ___GestureErrorEvent_30; }; // UnityEngine.XR.WSA.Persistence.WorldAnchorStore struct WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225 : public RuntimeObject { public: // System.IntPtr UnityEngine.XR.WSA.Persistence.WorldAnchorStore::m_NativePtr intptr_t ___m_NativePtr_0; public: inline static int32_t get_offset_of_m_NativePtr_0() { return static_cast<int32_t>(offsetof(WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225, ___m_NativePtr_0)); } inline intptr_t get_m_NativePtr_0() const { return ___m_NativePtr_0; } inline intptr_t* get_address_of_m_NativePtr_0() { return &___m_NativePtr_0; } inline void set_m_NativePtr_0(intptr_t value) { ___m_NativePtr_0 = value; } }; struct WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_StaticFields { public: // UnityEngine.XR.WSA.Persistence.WorldAnchorStore UnityEngine.XR.WSA.Persistence.WorldAnchorStore::s_Instance WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225 * ___s_Instance_1; public: inline static int32_t get_offset_of_s_Instance_1() { return static_cast<int32_t>(offsetof(WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_StaticFields, ___s_Instance_1)); } inline WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225 * get_s_Instance_1() const { return ___s_Instance_1; } inline WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225 ** get_address_of_s_Instance_1() { return &___s_Instance_1; } inline void set_s_Instance_1(WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225 * value) { ___s_Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.WSA.Persistence.WorldAnchorStore struct WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_marshaled_pinvoke { intptr_t ___m_NativePtr_0; }; // Native definition for COM marshalling of UnityEngine.XR.WSA.Persistence.WorldAnchorStore struct WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_marshaled_com { intptr_t ___m_NativePtr_0; }; // UnityEngine.XR.WSA.Sharing.WorldAnchorTransferBatch struct WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96 : public RuntimeObject { public: // System.IntPtr UnityEngine.XR.WSA.Sharing.WorldAnchorTransferBatch::m_NativePtr intptr_t ___m_NativePtr_0; public: inline static int32_t get_offset_of_m_NativePtr_0() { return static_cast<int32_t>(offsetof(WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96, ___m_NativePtr_0)); } inline intptr_t get_m_NativePtr_0() const { return ___m_NativePtr_0; } inline intptr_t* get_address_of_m_NativePtr_0() { return &___m_NativePtr_0; } inline void set_m_NativePtr_0(intptr_t value) { ___m_NativePtr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.WSA.Sharing.WorldAnchorTransferBatch struct WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_marshaled_pinvoke { intptr_t ___m_NativePtr_0; }; // Native definition for COM marshalling of UnityEngine.XR.WSA.Sharing.WorldAnchorTransferBatch struct WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_marshaled_com { intptr_t ___m_NativePtr_0; }; // Windows.Foundation.IReference`1<Windows.Foundation.DateTime> struct NOVTABLE IReference_1_tDB374689D094BEB200D3B354DC916CA5889930B4 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m8A2147DBABB963656671ACB6C0BC03A06A02DA4A(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.EventRegistrationToken> struct NOVTABLE IReference_1_t2743E3BA6B940A699EE49615FBA484964C9B8B44 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m93D0577BA82B2418EB4B2DCF81F86934016908A7(EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.FoundationContract> struct NOVTABLE IReference_1_t5A6F21153F46184B91D3803A669C812309053C2E : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m4F109C5DA2FF9F7BD3F605BB09430CA3F936807A(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.HResult> struct NOVTABLE IReference_1_t9BBCE4CCCD926DFB5670735553DCC34756C5BF9E : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m310ABD51534A3ABADF2474DAC870D26B1706D4A1(HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Numerics.Matrix4x4> struct NOVTABLE IReference_1_t83324F52C6450F1C6DEDB644D38367FCE61372E1 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m2492E30E817B6A78C5A7C728CD3DFFA25D4608BF(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Numerics.Quaternion> struct NOVTABLE IReference_1_t926809CC0C2BCDF32D15E8A86885B7F4BE14A59F : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mB4F86E26F7843886681B8F2CF9CDA79DC74827E7(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Numerics.Vector3> struct NOVTABLE IReference_1_t02F02891CF2473BD3395C94005BD0A1BE2757EA8 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m5A5957990F5156FC2709CA1F6E406C6A0C4AD6A3(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Point> struct NOVTABLE IReference_1_t7773DF4951EE2956BB52F40107CA99EB3AC18121 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m12AEB76C9C84E98E8BEE7E909CE268F95A05E899(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Rect> struct NOVTABLE IReference_1_t0383D46BD689BDB48118BCC40E516D48E99AC9C9 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mD70DC394007AE06DD463C810C4A6C833AE4F83CB(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Size> struct NOVTABLE IReference_1_t1C3EFAED54D294F78A828A79443DD579F84600A5 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mEEA056935DABABBA8E17B0CBDA7AF3596AF5E825(Size_t4766FF009097CE547F699B69250246058DA664D9 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.TimeSpan> struct NOVTABLE IReference_1_t3C2FDD60AAF84C14D98EE687F95A2FE316F1D921 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mC6234E02A201EAFB66846D1AA800201A51B2CDF7(TimeSpan_tD18885B289077804D4E82931E68E84181C072755 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.UniversalApiContract> struct NOVTABLE IReference_1_tC752D5284F00B4397E95E715F07700B7C452DA32 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m2269DCAE519508A042AD9A68C026B7AA70901042(UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 * comReturnValue) = 0; }; // Windows.Foundation.Metadata.MarshalingType struct MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6 { public: // System.Int32 Windows.Foundation.Metadata.MarshalingType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.Foundation.Metadata.ThreadingModel struct ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE { public: // System.Int32 Windows.Foundation.Metadata.ThreadingModel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.Foundation.PropertyType struct PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C { public: // System.Int32 Windows.Foundation.PropertyType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.Graphics.Holographic.HolographicViewConfigurationKind struct HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E { public: // System.Int32 Windows.Graphics.Holographic.HolographicViewConfigurationKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.Perception.People.HandJointKind struct HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA { public: // System.Int32 Windows.Perception.People.HandJointKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.Perception.People.HandMeshVertex struct HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 { public: // System.Numerics.Vector3 Windows.Perception.People.HandMeshVertex::Position Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Position_0; // System.Numerics.Vector3 Windows.Perception.People.HandMeshVertex::Normal Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Normal_1; public: inline static int32_t get_offset_of_Position_0() { return static_cast<int32_t>(offsetof(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3, ___Position_0)); } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Position_0() const { return ___Position_0; } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Position_0() { return &___Position_0; } inline void set_Position_0(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value) { ___Position_0 = value; } inline static int32_t get_offset_of_Normal_1() { return static_cast<int32_t>(offsetof(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3, ___Normal_1)); } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Normal_1() const { return ___Normal_1; } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Normal_1() { return &___Normal_1; } inline void set_Normal_1(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value) { ___Normal_1 = value; } }; // Windows.Perception.People.JointPoseAccuracy struct JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C { public: // System.Int32 Windows.Perception.People.JointPoseAccuracy::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.Perception.Spatial.SpatialRay struct SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B { public: // System.Numerics.Vector3 Windows.Perception.Spatial.SpatialRay::Origin Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Origin_0; // System.Numerics.Vector3 Windows.Perception.Spatial.SpatialRay::Direction Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Direction_1; public: inline static int32_t get_offset_of_Origin_0() { return static_cast<int32_t>(offsetof(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B, ___Origin_0)); } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Origin_0() const { return ___Origin_0; } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Origin_0() { return &___Origin_0; } inline void set_Origin_0(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value) { ___Origin_0 = value; } inline static int32_t get_offset_of_Direction_1() { return static_cast<int32_t>(offsetof(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B, ___Direction_1)); } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Direction_1() const { return ___Direction_1; } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Direction_1() { return &___Direction_1; } inline void set_Direction_1(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value) { ___Direction_1 = value; } }; // Windows.Storage.CreationCollisionOption struct CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538 { public: // System.Int32 Windows.Storage.CreationCollisionOption::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.Storage.Streams.InputStreamOptions struct InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82 { public: // System.UInt32 Windows.Storage.Streams.InputStreamOptions::value__ uint32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82, ___value___2)); } inline uint32_t get_value___2() const { return ___value___2; } inline uint32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint32_t value) { ___value___2 = value; } }; // Windows.UI.Input.GazeInputAccessStatus struct GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0 { public: // System.Int32 Windows.UI.Input.GazeInputAccessStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.UI.Input.Spatial.SpatialInteractionSourceKind struct SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222 { public: // System.Int32 Windows.UI.Input.Spatial.SpatialInteractionSourceKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Windows.UI.Xaml.Interop.TypeKind struct TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C { public: // System.Int32 Windows.UI.Xaml.Interop.TypeKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.BaseDataProviderAccessCoreSystem struct BaseDataProviderAccessCoreSystem_tC631B03A0E5D5616C151D727C004752FB667964A : public BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F { public: // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.IMixedRealityDataProvider> Microsoft.MixedReality.Toolkit.BaseDataProviderAccessCoreSystem::dataProviders List_1_tB495F59A1F3D218202CA1BE53AA38D8A46C25E1A * ___dataProviders_13; public: inline static int32_t get_offset_of_dataProviders_13() { return static_cast<int32_t>(offsetof(BaseDataProviderAccessCoreSystem_tC631B03A0E5D5616C151D727C004752FB667964A, ___dataProviders_13)); } inline List_1_tB495F59A1F3D218202CA1BE53AA38D8A46C25E1A * get_dataProviders_13() const { return ___dataProviders_13; } inline List_1_tB495F59A1F3D218202CA1BE53AA38D8A46C25E1A ** get_address_of_dataProviders_13() { return &___dataProviders_13; } inline void set_dataProviders_13(List_1_tB495F59A1F3D218202CA1BE53AA38D8A46C25E1A * value) { ___dataProviders_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataProviders_13), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem struct MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896 : public BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F { public: // Microsoft.MixedReality.Toolkit.Boundary.BoundaryEventData Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::boundaryEventData BoundaryEventData_tC9F73BC3895F31B9819342ECF498A94527AFF755 * ___boundaryEventData_13; // System.String Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_14; // System.UInt32 Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::<SourceId>k__BackingField uint32_t ___U3CSourceIdU3Ek__BackingField_16; // System.String Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::<SourceName>k__BackingField String_t* ___U3CSourceNameU3Ek__BackingField_17; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::boundaryVisualizationParent GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___boundaryVisualizationParent_20; // System.Int32 Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::ignoreRaycastLayerValue int32_t ___ignoreRaycastLayerValue_21; // Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundaryVisualizationProfile Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::boundaryVisualizationProfile MixedRealityBoundaryVisualizationProfile_t6DACC19AB1525605BECA678B0BBDD5BD6F958D55 * ___boundaryVisualizationProfile_22; // Microsoft.MixedReality.Toolkit.Utilities.ExperienceScale Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::<Scale>k__BackingField int32_t ___U3CScaleU3Ek__BackingField_23; // System.Single Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::<BoundaryHeight>k__BackingField float ___U3CBoundaryHeightU3Ek__BackingField_24; // System.Boolean Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::showFloor bool ___showFloor_25; // System.Boolean Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::showPlayArea bool ___showPlayArea_26; // System.Int32 Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::floorPhysicsLayer int32_t ___floorPhysicsLayer_27; // System.Boolean Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::showTrackedArea bool ___showTrackedArea_28; // System.Int32 Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::playAreaPhysicsLayer int32_t ___playAreaPhysicsLayer_29; // System.Boolean Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::showBoundaryWalls bool ___showBoundaryWalls_30; // System.Int32 Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::trackedAreaPhysicsLayer int32_t ___trackedAreaPhysicsLayer_31; // System.Boolean Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::showCeiling bool ___showCeiling_32; // System.Int32 Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::boundaryWallsPhysicsLayer int32_t ___boundaryWallsPhysicsLayer_33; // System.Int32 Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::ceilingPhysicsLayer int32_t ___ceilingPhysicsLayer_34; // Microsoft.MixedReality.Toolkit.Boundary.Edge[] Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::<Bounds>k__BackingField EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* ___U3CBoundsU3Ek__BackingField_35; // System.Nullable`1<System.Single> Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::<FloorHeight>k__BackingField Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 ___U3CFloorHeightU3Ek__BackingField_36; // Microsoft.MixedReality.Toolkit.Boundary.InscribedRectangle Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::rectangularBounds InscribedRectangle_t8C3D61D1D8B9DEC50CAF5879190AFE6DECCF9269 * ___rectangularBounds_37; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::currentFloorObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentFloorObject_38; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::currentPlayAreaObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentPlayAreaObject_39; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::currentTrackedAreaObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentTrackedAreaObject_40; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::currentBoundaryWallObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentBoundaryWallObject_41; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::currentCeilingObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentCeilingObject_42; public: inline static int32_t get_offset_of_boundaryEventData_13() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___boundaryEventData_13)); } inline BoundaryEventData_tC9F73BC3895F31B9819342ECF498A94527AFF755 * get_boundaryEventData_13() const { return ___boundaryEventData_13; } inline BoundaryEventData_tC9F73BC3895F31B9819342ECF498A94527AFF755 ** get_address_of_boundaryEventData_13() { return &___boundaryEventData_13; } inline void set_boundaryEventData_13(BoundaryEventData_tC9F73BC3895F31B9819342ECF498A94527AFF755 * value) { ___boundaryEventData_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___boundaryEventData_13), (void*)value); } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___U3CNameU3Ek__BackingField_14)); } inline String_t* get_U3CNameU3Ek__BackingField_14() const { return ___U3CNameU3Ek__BackingField_14; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_14() { return &___U3CNameU3Ek__BackingField_14; } inline void set_U3CNameU3Ek__BackingField_14(String_t* value) { ___U3CNameU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_14), (void*)value); } inline static int32_t get_offset_of_U3CSourceIdU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___U3CSourceIdU3Ek__BackingField_16)); } inline uint32_t get_U3CSourceIdU3Ek__BackingField_16() const { return ___U3CSourceIdU3Ek__BackingField_16; } inline uint32_t* get_address_of_U3CSourceIdU3Ek__BackingField_16() { return &___U3CSourceIdU3Ek__BackingField_16; } inline void set_U3CSourceIdU3Ek__BackingField_16(uint32_t value) { ___U3CSourceIdU3Ek__BackingField_16 = value; } inline static int32_t get_offset_of_U3CSourceNameU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___U3CSourceNameU3Ek__BackingField_17)); } inline String_t* get_U3CSourceNameU3Ek__BackingField_17() const { return ___U3CSourceNameU3Ek__BackingField_17; } inline String_t** get_address_of_U3CSourceNameU3Ek__BackingField_17() { return &___U3CSourceNameU3Ek__BackingField_17; } inline void set_U3CSourceNameU3Ek__BackingField_17(String_t* value) { ___U3CSourceNameU3Ek__BackingField_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSourceNameU3Ek__BackingField_17), (void*)value); } inline static int32_t get_offset_of_boundaryVisualizationParent_20() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___boundaryVisualizationParent_20)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_boundaryVisualizationParent_20() const { return ___boundaryVisualizationParent_20; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_boundaryVisualizationParent_20() { return &___boundaryVisualizationParent_20; } inline void set_boundaryVisualizationParent_20(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___boundaryVisualizationParent_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___boundaryVisualizationParent_20), (void*)value); } inline static int32_t get_offset_of_ignoreRaycastLayerValue_21() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___ignoreRaycastLayerValue_21)); } inline int32_t get_ignoreRaycastLayerValue_21() const { return ___ignoreRaycastLayerValue_21; } inline int32_t* get_address_of_ignoreRaycastLayerValue_21() { return &___ignoreRaycastLayerValue_21; } inline void set_ignoreRaycastLayerValue_21(int32_t value) { ___ignoreRaycastLayerValue_21 = value; } inline static int32_t get_offset_of_boundaryVisualizationProfile_22() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___boundaryVisualizationProfile_22)); } inline MixedRealityBoundaryVisualizationProfile_t6DACC19AB1525605BECA678B0BBDD5BD6F958D55 * get_boundaryVisualizationProfile_22() const { return ___boundaryVisualizationProfile_22; } inline MixedRealityBoundaryVisualizationProfile_t6DACC19AB1525605BECA678B0BBDD5BD6F958D55 ** get_address_of_boundaryVisualizationProfile_22() { return &___boundaryVisualizationProfile_22; } inline void set_boundaryVisualizationProfile_22(MixedRealityBoundaryVisualizationProfile_t6DACC19AB1525605BECA678B0BBDD5BD6F958D55 * value) { ___boundaryVisualizationProfile_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___boundaryVisualizationProfile_22), (void*)value); } inline static int32_t get_offset_of_U3CScaleU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___U3CScaleU3Ek__BackingField_23)); } inline int32_t get_U3CScaleU3Ek__BackingField_23() const { return ___U3CScaleU3Ek__BackingField_23; } inline int32_t* get_address_of_U3CScaleU3Ek__BackingField_23() { return &___U3CScaleU3Ek__BackingField_23; } inline void set_U3CScaleU3Ek__BackingField_23(int32_t value) { ___U3CScaleU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_U3CBoundaryHeightU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___U3CBoundaryHeightU3Ek__BackingField_24)); } inline float get_U3CBoundaryHeightU3Ek__BackingField_24() const { return ___U3CBoundaryHeightU3Ek__BackingField_24; } inline float* get_address_of_U3CBoundaryHeightU3Ek__BackingField_24() { return &___U3CBoundaryHeightU3Ek__BackingField_24; } inline void set_U3CBoundaryHeightU3Ek__BackingField_24(float value) { ___U3CBoundaryHeightU3Ek__BackingField_24 = value; } inline static int32_t get_offset_of_showFloor_25() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___showFloor_25)); } inline bool get_showFloor_25() const { return ___showFloor_25; } inline bool* get_address_of_showFloor_25() { return &___showFloor_25; } inline void set_showFloor_25(bool value) { ___showFloor_25 = value; } inline static int32_t get_offset_of_showPlayArea_26() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___showPlayArea_26)); } inline bool get_showPlayArea_26() const { return ___showPlayArea_26; } inline bool* get_address_of_showPlayArea_26() { return &___showPlayArea_26; } inline void set_showPlayArea_26(bool value) { ___showPlayArea_26 = value; } inline static int32_t get_offset_of_floorPhysicsLayer_27() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___floorPhysicsLayer_27)); } inline int32_t get_floorPhysicsLayer_27() const { return ___floorPhysicsLayer_27; } inline int32_t* get_address_of_floorPhysicsLayer_27() { return &___floorPhysicsLayer_27; } inline void set_floorPhysicsLayer_27(int32_t value) { ___floorPhysicsLayer_27 = value; } inline static int32_t get_offset_of_showTrackedArea_28() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___showTrackedArea_28)); } inline bool get_showTrackedArea_28() const { return ___showTrackedArea_28; } inline bool* get_address_of_showTrackedArea_28() { return &___showTrackedArea_28; } inline void set_showTrackedArea_28(bool value) { ___showTrackedArea_28 = value; } inline static int32_t get_offset_of_playAreaPhysicsLayer_29() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___playAreaPhysicsLayer_29)); } inline int32_t get_playAreaPhysicsLayer_29() const { return ___playAreaPhysicsLayer_29; } inline int32_t* get_address_of_playAreaPhysicsLayer_29() { return &___playAreaPhysicsLayer_29; } inline void set_playAreaPhysicsLayer_29(int32_t value) { ___playAreaPhysicsLayer_29 = value; } inline static int32_t get_offset_of_showBoundaryWalls_30() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___showBoundaryWalls_30)); } inline bool get_showBoundaryWalls_30() const { return ___showBoundaryWalls_30; } inline bool* get_address_of_showBoundaryWalls_30() { return &___showBoundaryWalls_30; } inline void set_showBoundaryWalls_30(bool value) { ___showBoundaryWalls_30 = value; } inline static int32_t get_offset_of_trackedAreaPhysicsLayer_31() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___trackedAreaPhysicsLayer_31)); } inline int32_t get_trackedAreaPhysicsLayer_31() const { return ___trackedAreaPhysicsLayer_31; } inline int32_t* get_address_of_trackedAreaPhysicsLayer_31() { return &___trackedAreaPhysicsLayer_31; } inline void set_trackedAreaPhysicsLayer_31(int32_t value) { ___trackedAreaPhysicsLayer_31 = value; } inline static int32_t get_offset_of_showCeiling_32() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___showCeiling_32)); } inline bool get_showCeiling_32() const { return ___showCeiling_32; } inline bool* get_address_of_showCeiling_32() { return &___showCeiling_32; } inline void set_showCeiling_32(bool value) { ___showCeiling_32 = value; } inline static int32_t get_offset_of_boundaryWallsPhysicsLayer_33() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___boundaryWallsPhysicsLayer_33)); } inline int32_t get_boundaryWallsPhysicsLayer_33() const { return ___boundaryWallsPhysicsLayer_33; } inline int32_t* get_address_of_boundaryWallsPhysicsLayer_33() { return &___boundaryWallsPhysicsLayer_33; } inline void set_boundaryWallsPhysicsLayer_33(int32_t value) { ___boundaryWallsPhysicsLayer_33 = value; } inline static int32_t get_offset_of_ceilingPhysicsLayer_34() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___ceilingPhysicsLayer_34)); } inline int32_t get_ceilingPhysicsLayer_34() const { return ___ceilingPhysicsLayer_34; } inline int32_t* get_address_of_ceilingPhysicsLayer_34() { return &___ceilingPhysicsLayer_34; } inline void set_ceilingPhysicsLayer_34(int32_t value) { ___ceilingPhysicsLayer_34 = value; } inline static int32_t get_offset_of_U3CBoundsU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___U3CBoundsU3Ek__BackingField_35)); } inline EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* get_U3CBoundsU3Ek__BackingField_35() const { return ___U3CBoundsU3Ek__BackingField_35; } inline EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84** get_address_of_U3CBoundsU3Ek__BackingField_35() { return &___U3CBoundsU3Ek__BackingField_35; } inline void set_U3CBoundsU3Ek__BackingField_35(EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* value) { ___U3CBoundsU3Ek__BackingField_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CBoundsU3Ek__BackingField_35), (void*)value); } inline static int32_t get_offset_of_U3CFloorHeightU3Ek__BackingField_36() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___U3CFloorHeightU3Ek__BackingField_36)); } inline Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 get_U3CFloorHeightU3Ek__BackingField_36() const { return ___U3CFloorHeightU3Ek__BackingField_36; } inline Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 * get_address_of_U3CFloorHeightU3Ek__BackingField_36() { return &___U3CFloorHeightU3Ek__BackingField_36; } inline void set_U3CFloorHeightU3Ek__BackingField_36(Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 value) { ___U3CFloorHeightU3Ek__BackingField_36 = value; } inline static int32_t get_offset_of_rectangularBounds_37() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___rectangularBounds_37)); } inline InscribedRectangle_t8C3D61D1D8B9DEC50CAF5879190AFE6DECCF9269 * get_rectangularBounds_37() const { return ___rectangularBounds_37; } inline InscribedRectangle_t8C3D61D1D8B9DEC50CAF5879190AFE6DECCF9269 ** get_address_of_rectangularBounds_37() { return &___rectangularBounds_37; } inline void set_rectangularBounds_37(InscribedRectangle_t8C3D61D1D8B9DEC50CAF5879190AFE6DECCF9269 * value) { ___rectangularBounds_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___rectangularBounds_37), (void*)value); } inline static int32_t get_offset_of_currentFloorObject_38() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___currentFloorObject_38)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_currentFloorObject_38() const { return ___currentFloorObject_38; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_currentFloorObject_38() { return &___currentFloorObject_38; } inline void set_currentFloorObject_38(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___currentFloorObject_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentFloorObject_38), (void*)value); } inline static int32_t get_offset_of_currentPlayAreaObject_39() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___currentPlayAreaObject_39)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_currentPlayAreaObject_39() const { return ___currentPlayAreaObject_39; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_currentPlayAreaObject_39() { return &___currentPlayAreaObject_39; } inline void set_currentPlayAreaObject_39(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___currentPlayAreaObject_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentPlayAreaObject_39), (void*)value); } inline static int32_t get_offset_of_currentTrackedAreaObject_40() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___currentTrackedAreaObject_40)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_currentTrackedAreaObject_40() const { return ___currentTrackedAreaObject_40; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_currentTrackedAreaObject_40() { return &___currentTrackedAreaObject_40; } inline void set_currentTrackedAreaObject_40(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___currentTrackedAreaObject_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentTrackedAreaObject_40), (void*)value); } inline static int32_t get_offset_of_currentBoundaryWallObject_41() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___currentBoundaryWallObject_41)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_currentBoundaryWallObject_41() const { return ___currentBoundaryWallObject_41; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_currentBoundaryWallObject_41() { return &___currentBoundaryWallObject_41; } inline void set_currentBoundaryWallObject_41(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___currentBoundaryWallObject_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentBoundaryWallObject_41), (void*)value); } inline static int32_t get_offset_of_currentCeilingObject_42() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896, ___currentCeilingObject_42)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_currentCeilingObject_42() const { return ___currentCeilingObject_42; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_currentCeilingObject_42() { return &___currentCeilingObject_42; } inline void set_currentCeilingObject_42(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___currentCeilingObject_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentCeilingObject_42), (void*)value); } }; struct MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_StaticFields { public: // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Boundary.IMixedRealityBoundaryHandler> Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem::OnVisualizationChanged EventFunction_1_t97D0C3B1C38BD8910A6C8BA1C38B402288281E1D * ___OnVisualizationChanged_15; public: inline static int32_t get_offset_of_OnVisualizationChanged_15() { return static_cast<int32_t>(offsetof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_StaticFields, ___OnVisualizationChanged_15)); } inline EventFunction_1_t97D0C3B1C38BD8910A6C8BA1C38B402288281E1D * get_OnVisualizationChanged_15() const { return ___OnVisualizationChanged_15; } inline EventFunction_1_t97D0C3B1C38BD8910A6C8BA1C38B402288281E1D ** get_address_of_OnVisualizationChanged_15() { return &___OnVisualizationChanged_15; } inline void set_OnVisualizationChanged_15(EventFunction_1_t97D0C3B1C38BD8910A6C8BA1C38B402288281E1D * value) { ___OnVisualizationChanged_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnVisualizationChanged_15), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem struct MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4 : public BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F { public: // System.String Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_13; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::diagnosticVisualizationParent GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___diagnosticVisualizationParent_14; // Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityToolkitVisualProfiler Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::visualProfiler MixedRealityToolkitVisualProfiler_t5B89B479EF312C7D11C59ACEA19B534441B4C3DD * ___visualProfiler_15; // Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsProfile Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::diagnosticsSystemProfile MixedRealityDiagnosticsProfile_t42D3EF35D9D096DE900C0E7376EFD14FF703FD55 * ___diagnosticsSystemProfile_16; // System.Boolean Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::showDiagnostics bool ___showDiagnostics_17; // System.Boolean Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::showProfiler bool ___showProfiler_18; // System.Boolean Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::showFrameInfo bool ___showFrameInfo_19; // System.Boolean Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::showMemoryStats bool ___showMemoryStats_20; // System.Single Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::frameSampleRate float ___frameSampleRate_21; // Microsoft.MixedReality.Toolkit.Diagnostics.DiagnosticsEventData Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::eventData DiagnosticsEventData_t1041B445103CE9C737C59460FFED60FDF180E1DD * ___eventData_22; // UnityEngine.TextAnchor Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::windowAnchor int32_t ___windowAnchor_24; // UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::windowOffset Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___windowOffset_25; // System.Single Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::windowScale float ___windowScale_26; // System.Single Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::windowFollowSpeed float ___windowFollowSpeed_27; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___U3CNameU3Ek__BackingField_13)); } inline String_t* get_U3CNameU3Ek__BackingField_13() const { return ___U3CNameU3Ek__BackingField_13; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_13() { return &___U3CNameU3Ek__BackingField_13; } inline void set_U3CNameU3Ek__BackingField_13(String_t* value) { ___U3CNameU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_diagnosticVisualizationParent_14() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___diagnosticVisualizationParent_14)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_diagnosticVisualizationParent_14() const { return ___diagnosticVisualizationParent_14; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_diagnosticVisualizationParent_14() { return &___diagnosticVisualizationParent_14; } inline void set_diagnosticVisualizationParent_14(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___diagnosticVisualizationParent_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___diagnosticVisualizationParent_14), (void*)value); } inline static int32_t get_offset_of_visualProfiler_15() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___visualProfiler_15)); } inline MixedRealityToolkitVisualProfiler_t5B89B479EF312C7D11C59ACEA19B534441B4C3DD * get_visualProfiler_15() const { return ___visualProfiler_15; } inline MixedRealityToolkitVisualProfiler_t5B89B479EF312C7D11C59ACEA19B534441B4C3DD ** get_address_of_visualProfiler_15() { return &___visualProfiler_15; } inline void set_visualProfiler_15(MixedRealityToolkitVisualProfiler_t5B89B479EF312C7D11C59ACEA19B534441B4C3DD * value) { ___visualProfiler_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___visualProfiler_15), (void*)value); } inline static int32_t get_offset_of_diagnosticsSystemProfile_16() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___diagnosticsSystemProfile_16)); } inline MixedRealityDiagnosticsProfile_t42D3EF35D9D096DE900C0E7376EFD14FF703FD55 * get_diagnosticsSystemProfile_16() const { return ___diagnosticsSystemProfile_16; } inline MixedRealityDiagnosticsProfile_t42D3EF35D9D096DE900C0E7376EFD14FF703FD55 ** get_address_of_diagnosticsSystemProfile_16() { return &___diagnosticsSystemProfile_16; } inline void set_diagnosticsSystemProfile_16(MixedRealityDiagnosticsProfile_t42D3EF35D9D096DE900C0E7376EFD14FF703FD55 * value) { ___diagnosticsSystemProfile_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___diagnosticsSystemProfile_16), (void*)value); } inline static int32_t get_offset_of_showDiagnostics_17() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___showDiagnostics_17)); } inline bool get_showDiagnostics_17() const { return ___showDiagnostics_17; } inline bool* get_address_of_showDiagnostics_17() { return &___showDiagnostics_17; } inline void set_showDiagnostics_17(bool value) { ___showDiagnostics_17 = value; } inline static int32_t get_offset_of_showProfiler_18() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___showProfiler_18)); } inline bool get_showProfiler_18() const { return ___showProfiler_18; } inline bool* get_address_of_showProfiler_18() { return &___showProfiler_18; } inline void set_showProfiler_18(bool value) { ___showProfiler_18 = value; } inline static int32_t get_offset_of_showFrameInfo_19() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___showFrameInfo_19)); } inline bool get_showFrameInfo_19() const { return ___showFrameInfo_19; } inline bool* get_address_of_showFrameInfo_19() { return &___showFrameInfo_19; } inline void set_showFrameInfo_19(bool value) { ___showFrameInfo_19 = value; } inline static int32_t get_offset_of_showMemoryStats_20() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___showMemoryStats_20)); } inline bool get_showMemoryStats_20() const { return ___showMemoryStats_20; } inline bool* get_address_of_showMemoryStats_20() { return &___showMemoryStats_20; } inline void set_showMemoryStats_20(bool value) { ___showMemoryStats_20 = value; } inline static int32_t get_offset_of_frameSampleRate_21() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___frameSampleRate_21)); } inline float get_frameSampleRate_21() const { return ___frameSampleRate_21; } inline float* get_address_of_frameSampleRate_21() { return &___frameSampleRate_21; } inline void set_frameSampleRate_21(float value) { ___frameSampleRate_21 = value; } inline static int32_t get_offset_of_eventData_22() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___eventData_22)); } inline DiagnosticsEventData_t1041B445103CE9C737C59460FFED60FDF180E1DD * get_eventData_22() const { return ___eventData_22; } inline DiagnosticsEventData_t1041B445103CE9C737C59460FFED60FDF180E1DD ** get_address_of_eventData_22() { return &___eventData_22; } inline void set_eventData_22(DiagnosticsEventData_t1041B445103CE9C737C59460FFED60FDF180E1DD * value) { ___eventData_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventData_22), (void*)value); } inline static int32_t get_offset_of_windowAnchor_24() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___windowAnchor_24)); } inline int32_t get_windowAnchor_24() const { return ___windowAnchor_24; } inline int32_t* get_address_of_windowAnchor_24() { return &___windowAnchor_24; } inline void set_windowAnchor_24(int32_t value) { ___windowAnchor_24 = value; } inline static int32_t get_offset_of_windowOffset_25() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___windowOffset_25)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_windowOffset_25() const { return ___windowOffset_25; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_windowOffset_25() { return &___windowOffset_25; } inline void set_windowOffset_25(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___windowOffset_25 = value; } inline static int32_t get_offset_of_windowScale_26() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___windowScale_26)); } inline float get_windowScale_26() const { return ___windowScale_26; } inline float* get_address_of_windowScale_26() { return &___windowScale_26; } inline void set_windowScale_26(float value) { ___windowScale_26 = value; } inline static int32_t get_offset_of_windowFollowSpeed_27() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4, ___windowFollowSpeed_27)); } inline float get_windowFollowSpeed_27() const { return ___windowFollowSpeed_27; } inline float* get_address_of_windowFollowSpeed_27() { return &___windowFollowSpeed_27; } inline void set_windowFollowSpeed_27(float value) { ___windowFollowSpeed_27 = value; } }; struct MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_StaticFields { public: // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Diagnostics.IMixedRealityDiagnosticsHandler> Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem::OnDiagnosticsChanged EventFunction_1_tE3613A187BD139B1D75C574A04A3CAB85EA52641 * ___OnDiagnosticsChanged_23; public: inline static int32_t get_offset_of_OnDiagnosticsChanged_23() { return static_cast<int32_t>(offsetof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_StaticFields, ___OnDiagnosticsChanged_23)); } inline EventFunction_1_tE3613A187BD139B1D75C574A04A3CAB85EA52641 * get_OnDiagnosticsChanged_23() const { return ___OnDiagnosticsChanged_23; } inline EventFunction_1_tE3613A187BD139B1D75C574A04A3CAB85EA52641 ** get_address_of_OnDiagnosticsChanged_23() { return &___OnDiagnosticsChanged_23; } inline void set_OnDiagnosticsChanged_23(EventFunction_1_tE3613A187BD139B1D75C574A04A3CAB85EA52641 * value) { ___OnDiagnosticsChanged_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnDiagnosticsChanged_23), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService struct SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9 : public BaseExtensionService_t03E75FDDCE03139ED70D3E269F247C4515188B57 { public: // System.Boolean Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<UseFadeColor>k__BackingField bool ___U3CUseFadeColorU3Ek__BackingField_8; // UnityEngine.Color Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<FadeColor>k__BackingField Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___U3CFadeColorU3Ek__BackingField_9; // System.Single Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<FadeInTime>k__BackingField float ___U3CFadeInTimeU3Ek__BackingField_10; // System.Single Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<FadeOutTime>k__BackingField float ___U3CFadeOutTimeU3Ek__BackingField_11; // Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.CameraFaderTargets Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<FadeTargets>k__BackingField int32_t ___U3CFadeTargetsU3Ek__BackingField_12; // System.Action Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<OnTransitionStarted>k__BackingField Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___U3COnTransitionStartedU3Ek__BackingField_13; // System.Action Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<OnTransitionCompleted>k__BackingField Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___U3COnTransitionCompletedU3Ek__BackingField_14; // System.Boolean Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<TransitionInProgress>k__BackingField bool ___U3CTransitionInProgressU3Ek__BackingField_15; // System.Single Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::<TransitionProgress>k__BackingField float ___U3CTransitionProgressU3Ek__BackingField_16; // Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionServiceProfile Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::sceneTransitionServiceProfile SceneTransitionServiceProfile_t211B4789077DB4BA29109575CDEFBF8E7DDFD2B9 * ___sceneTransitionServiceProfile_17; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::progressIndicatorObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___progressIndicatorObject_18; // Microsoft.MixedReality.Toolkit.UI.IProgressIndicator Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::defaultProgressIndicator RuntimeObject* ___defaultProgressIndicator_19; // Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.ICameraFader Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::cameraFader RuntimeObject* ___cameraFader_20; // System.Collections.Generic.List`1<UnityEngine.Camera> Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService::customFadeTargetCameras List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 * ___customFadeTargetCameras_21; public: inline static int32_t get_offset_of_U3CUseFadeColorU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3CUseFadeColorU3Ek__BackingField_8)); } inline bool get_U3CUseFadeColorU3Ek__BackingField_8() const { return ___U3CUseFadeColorU3Ek__BackingField_8; } inline bool* get_address_of_U3CUseFadeColorU3Ek__BackingField_8() { return &___U3CUseFadeColorU3Ek__BackingField_8; } inline void set_U3CUseFadeColorU3Ek__BackingField_8(bool value) { ___U3CUseFadeColorU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CFadeColorU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3CFadeColorU3Ek__BackingField_9)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_U3CFadeColorU3Ek__BackingField_9() const { return ___U3CFadeColorU3Ek__BackingField_9; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_U3CFadeColorU3Ek__BackingField_9() { return &___U3CFadeColorU3Ek__BackingField_9; } inline void set_U3CFadeColorU3Ek__BackingField_9(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___U3CFadeColorU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CFadeInTimeU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3CFadeInTimeU3Ek__BackingField_10)); } inline float get_U3CFadeInTimeU3Ek__BackingField_10() const { return ___U3CFadeInTimeU3Ek__BackingField_10; } inline float* get_address_of_U3CFadeInTimeU3Ek__BackingField_10() { return &___U3CFadeInTimeU3Ek__BackingField_10; } inline void set_U3CFadeInTimeU3Ek__BackingField_10(float value) { ___U3CFadeInTimeU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CFadeOutTimeU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3CFadeOutTimeU3Ek__BackingField_11)); } inline float get_U3CFadeOutTimeU3Ek__BackingField_11() const { return ___U3CFadeOutTimeU3Ek__BackingField_11; } inline float* get_address_of_U3CFadeOutTimeU3Ek__BackingField_11() { return &___U3CFadeOutTimeU3Ek__BackingField_11; } inline void set_U3CFadeOutTimeU3Ek__BackingField_11(float value) { ___U3CFadeOutTimeU3Ek__BackingField_11 = value; } inline static int32_t get_offset_of_U3CFadeTargetsU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3CFadeTargetsU3Ek__BackingField_12)); } inline int32_t get_U3CFadeTargetsU3Ek__BackingField_12() const { return ___U3CFadeTargetsU3Ek__BackingField_12; } inline int32_t* get_address_of_U3CFadeTargetsU3Ek__BackingField_12() { return &___U3CFadeTargetsU3Ek__BackingField_12; } inline void set_U3CFadeTargetsU3Ek__BackingField_12(int32_t value) { ___U3CFadeTargetsU3Ek__BackingField_12 = value; } inline static int32_t get_offset_of_U3COnTransitionStartedU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3COnTransitionStartedU3Ek__BackingField_13)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_U3COnTransitionStartedU3Ek__BackingField_13() const { return ___U3COnTransitionStartedU3Ek__BackingField_13; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_U3COnTransitionStartedU3Ek__BackingField_13() { return &___U3COnTransitionStartedU3Ek__BackingField_13; } inline void set_U3COnTransitionStartedU3Ek__BackingField_13(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___U3COnTransitionStartedU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnTransitionStartedU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_U3COnTransitionCompletedU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3COnTransitionCompletedU3Ek__BackingField_14)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_U3COnTransitionCompletedU3Ek__BackingField_14() const { return ___U3COnTransitionCompletedU3Ek__BackingField_14; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_U3COnTransitionCompletedU3Ek__BackingField_14() { return &___U3COnTransitionCompletedU3Ek__BackingField_14; } inline void set_U3COnTransitionCompletedU3Ek__BackingField_14(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___U3COnTransitionCompletedU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnTransitionCompletedU3Ek__BackingField_14), (void*)value); } inline static int32_t get_offset_of_U3CTransitionInProgressU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3CTransitionInProgressU3Ek__BackingField_15)); } inline bool get_U3CTransitionInProgressU3Ek__BackingField_15() const { return ___U3CTransitionInProgressU3Ek__BackingField_15; } inline bool* get_address_of_U3CTransitionInProgressU3Ek__BackingField_15() { return &___U3CTransitionInProgressU3Ek__BackingField_15; } inline void set_U3CTransitionInProgressU3Ek__BackingField_15(bool value) { ___U3CTransitionInProgressU3Ek__BackingField_15 = value; } inline static int32_t get_offset_of_U3CTransitionProgressU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___U3CTransitionProgressU3Ek__BackingField_16)); } inline float get_U3CTransitionProgressU3Ek__BackingField_16() const { return ___U3CTransitionProgressU3Ek__BackingField_16; } inline float* get_address_of_U3CTransitionProgressU3Ek__BackingField_16() { return &___U3CTransitionProgressU3Ek__BackingField_16; } inline void set_U3CTransitionProgressU3Ek__BackingField_16(float value) { ___U3CTransitionProgressU3Ek__BackingField_16 = value; } inline static int32_t get_offset_of_sceneTransitionServiceProfile_17() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___sceneTransitionServiceProfile_17)); } inline SceneTransitionServiceProfile_t211B4789077DB4BA29109575CDEFBF8E7DDFD2B9 * get_sceneTransitionServiceProfile_17() const { return ___sceneTransitionServiceProfile_17; } inline SceneTransitionServiceProfile_t211B4789077DB4BA29109575CDEFBF8E7DDFD2B9 ** get_address_of_sceneTransitionServiceProfile_17() { return &___sceneTransitionServiceProfile_17; } inline void set_sceneTransitionServiceProfile_17(SceneTransitionServiceProfile_t211B4789077DB4BA29109575CDEFBF8E7DDFD2B9 * value) { ___sceneTransitionServiceProfile_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___sceneTransitionServiceProfile_17), (void*)value); } inline static int32_t get_offset_of_progressIndicatorObject_18() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___progressIndicatorObject_18)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_progressIndicatorObject_18() const { return ___progressIndicatorObject_18; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_progressIndicatorObject_18() { return &___progressIndicatorObject_18; } inline void set_progressIndicatorObject_18(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___progressIndicatorObject_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___progressIndicatorObject_18), (void*)value); } inline static int32_t get_offset_of_defaultProgressIndicator_19() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___defaultProgressIndicator_19)); } inline RuntimeObject* get_defaultProgressIndicator_19() const { return ___defaultProgressIndicator_19; } inline RuntimeObject** get_address_of_defaultProgressIndicator_19() { return &___defaultProgressIndicator_19; } inline void set_defaultProgressIndicator_19(RuntimeObject* value) { ___defaultProgressIndicator_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultProgressIndicator_19), (void*)value); } inline static int32_t get_offset_of_cameraFader_20() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___cameraFader_20)); } inline RuntimeObject* get_cameraFader_20() const { return ___cameraFader_20; } inline RuntimeObject** get_address_of_cameraFader_20() { return &___cameraFader_20; } inline void set_cameraFader_20(RuntimeObject* value) { ___cameraFader_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___cameraFader_20), (void*)value); } inline static int32_t get_offset_of_customFadeTargetCameras_21() { return static_cast<int32_t>(offsetof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9, ___customFadeTargetCameras_21)); } inline List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 * get_customFadeTargetCameras_21() const { return ___customFadeTargetCameras_21; } inline List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 ** get_address_of_customFadeTargetCameras_21() { return &___customFadeTargetCameras_21; } inline void set_customFadeTargetCameras_21(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 * value) { ___customFadeTargetCameras_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___customFadeTargetCameras_21), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.BaseGenericInputSource struct BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB : public RuntimeObject { public: // System.UInt32 Microsoft.MixedReality.Toolkit.Input.BaseGenericInputSource::<SourceId>k__BackingField uint32_t ___U3CSourceIdU3Ek__BackingField_0; // System.String Microsoft.MixedReality.Toolkit.Input.BaseGenericInputSource::<SourceName>k__BackingField String_t* ___U3CSourceNameU3Ek__BackingField_1; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer[] Microsoft.MixedReality.Toolkit.Input.BaseGenericInputSource::<Pointers>k__BackingField IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D* ___U3CPointersU3Ek__BackingField_2; // Microsoft.MixedReality.Toolkit.Input.InputSourceType Microsoft.MixedReality.Toolkit.Input.BaseGenericInputSource::<SourceType>k__BackingField int32_t ___U3CSourceTypeU3Ek__BackingField_3; public: inline static int32_t get_offset_of_U3CSourceIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB, ___U3CSourceIdU3Ek__BackingField_0)); } inline uint32_t get_U3CSourceIdU3Ek__BackingField_0() const { return ___U3CSourceIdU3Ek__BackingField_0; } inline uint32_t* get_address_of_U3CSourceIdU3Ek__BackingField_0() { return &___U3CSourceIdU3Ek__BackingField_0; } inline void set_U3CSourceIdU3Ek__BackingField_0(uint32_t value) { ___U3CSourceIdU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CSourceNameU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB, ___U3CSourceNameU3Ek__BackingField_1)); } inline String_t* get_U3CSourceNameU3Ek__BackingField_1() const { return ___U3CSourceNameU3Ek__BackingField_1; } inline String_t** get_address_of_U3CSourceNameU3Ek__BackingField_1() { return &___U3CSourceNameU3Ek__BackingField_1; } inline void set_U3CSourceNameU3Ek__BackingField_1(String_t* value) { ___U3CSourceNameU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSourceNameU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CPointersU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB, ___U3CPointersU3Ek__BackingField_2)); } inline IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D* get_U3CPointersU3Ek__BackingField_2() const { return ___U3CPointersU3Ek__BackingField_2; } inline IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D** get_address_of_U3CPointersU3Ek__BackingField_2() { return &___U3CPointersU3Ek__BackingField_2; } inline void set_U3CPointersU3Ek__BackingField_2(IMixedRealityPointerU5BU5D_t6BA1FD691E59F6222A863D30225925C4BEDB783D* value) { ___U3CPointersU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPointersU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CSourceTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB, ___U3CSourceTypeU3Ek__BackingField_3)); } inline int32_t get_U3CSourceTypeU3Ek__BackingField_3() const { return ___U3CSourceTypeU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CSourceTypeU3Ek__BackingField_3() { return &___U3CSourceTypeU3Ek__BackingField_3; } inline void set_U3CSourceTypeU3Ek__BackingField_3(int32_t value) { ___U3CSourceTypeU3Ek__BackingField_3 = value; } }; // Microsoft.MixedReality.Toolkit.Input.DefaultRaycastProvider struct DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F : public BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F { public: // System.String Microsoft.MixedReality.Toolkit.Input.DefaultRaycastProvider::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_13; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F, ___U3CNameU3Ek__BackingField_13)); } inline String_t* get_U3CNameU3Ek__BackingField_13() const { return ___U3CNameU3Ek__BackingField_13; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_13() { return &___U3CNameU3Ek__BackingField_13; } inline void set_U3CNameU3Ek__BackingField_13(String_t* value) { ___U3CNameU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_13), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.FocusProvider struct FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09 : public BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F { public: // System.Collections.Generic.HashSet`1<Microsoft.MixedReality.Toolkit.Input.FocusProvider_PointerData> Microsoft.MixedReality.Toolkit.Input.FocusProvider::pointers HashSet_1_t011B6459FAD372DB627D1CFFFDD142A0C0D9C810 * ___pointers_13; // System.Collections.Generic.HashSet`1<UnityEngine.GameObject> Microsoft.MixedReality.Toolkit.Input.FocusProvider::pendingOverallFocusEnterSet HashSet_1_t0C44F460B51C051B426D52ACDF3D6639DD4B3D2E * ___pendingOverallFocusEnterSet_14; // System.Collections.Generic.Dictionary`2<UnityEngine.GameObject,System.Int32> Microsoft.MixedReality.Toolkit.Input.FocusProvider::pendingOverallFocusExitSet Dictionary_2_t96FB2F26C7CE603F75E00CA02CCD843EA785C29D * ___pendingOverallFocusExitSet_15; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.Input.FocusProvider_PointerData> Microsoft.MixedReality.Toolkit.Input.FocusProvider::pendingPointerSpecificFocusChange List_1_tE1D27E9C4800D7B35F2E105CC4DC73C67F2B2EA6 * ___pendingPointerSpecificFocusChange_16; // System.Collections.Generic.Dictionary`2<System.UInt32,Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerMediator> Microsoft.MixedReality.Toolkit.Input.FocusProvider::pointerMediators Dictionary_2_t2621E656D43BE7326773FB9B1CE330F895A9BDB2 * ___pointerMediators_17; // Microsoft.MixedReality.Toolkit.Input.FocusProvider_PointerHitResult Microsoft.MixedReality.Toolkit.Input.FocusProvider::hitResult3d PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * ___hitResult3d_18; // Microsoft.MixedReality.Toolkit.Input.FocusProvider_PointerHitResult Microsoft.MixedReality.Toolkit.Input.FocusProvider::hitResultUi PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * ___hitResultUi_19; // System.Int32 Microsoft.MixedReality.Toolkit.Input.FocusProvider::maxQuerySceneResults int32_t ___maxQuerySceneResults_20; // System.Boolean Microsoft.MixedReality.Toolkit.Input.FocusProvider::focusIndividualCompoundCollider bool ___focusIndividualCompoundCollider_21; // System.Int32 Microsoft.MixedReality.Toolkit.Input.FocusProvider::<NumNearPointersActive>k__BackingField int32_t ___U3CNumNearPointersActiveU3Ek__BackingField_22; // System.Int32 Microsoft.MixedReality.Toolkit.Input.FocusProvider::<NumFarPointersActive>k__BackingField int32_t ___U3CNumFarPointersActiveU3Ek__BackingField_23; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer Microsoft.MixedReality.Toolkit.Input.FocusProvider::primaryPointer RuntimeObject* ___primaryPointer_24; // System.String Microsoft.MixedReality.Toolkit.Input.FocusProvider::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_25; // UnityEngine.LayerMask[] Microsoft.MixedReality.Toolkit.Input.FocusProvider::focusLayerMasks LayerMaskU5BU5D_tDFC13874A022E79527D2CDF572C06EC90D0F828D* ___focusLayerMasks_26; // UnityEngine.RenderTexture Microsoft.MixedReality.Toolkit.Input.FocusProvider::uiRaycastCameraTargetTexture RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * ___uiRaycastCameraTargetTexture_27; // UnityEngine.Camera Microsoft.MixedReality.Toolkit.Input.FocusProvider::uiRaycastCamera Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___uiRaycastCamera_28; // Microsoft.MixedReality.Toolkit.Input.FocusProvider_PointerData Microsoft.MixedReality.Toolkit.Input.FocusProvider::gazeProviderPointingData PointerData_t2D9777F60624756A55D1E3EEBBC54D707EF38B57 * ___gazeProviderPointingData_29; // Microsoft.MixedReality.Toolkit.Input.FocusProvider_PointerHitResult Microsoft.MixedReality.Toolkit.Input.FocusProvider::gazeHitResult PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * ___gazeHitResult_30; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Input.FocusProvider::newUiRaycastPosition Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___newUiRaycastPosition_31; // Microsoft.MixedReality.Toolkit.Input.GazePointerVisibilityStateMachine Microsoft.MixedReality.Toolkit.Input.FocusProvider::gazePointerStateMachine GazePointerVisibilityStateMachine_tAED35D0A182DB62D2FF22A8D6BC39F834D0F1D33 * ___gazePointerStateMachine_32; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPrimaryPointerSelector Microsoft.MixedReality.Toolkit.Input.FocusProvider::primaryPointerSelector RuntimeObject* ___primaryPointerSelector_33; // Microsoft.MixedReality.Toolkit.Input.PrimaryPointerChangedHandler Microsoft.MixedReality.Toolkit.Input.FocusProvider::PrimaryPointerChanged PrimaryPointerChangedHandler_t1F0E5AD69C56410BCED09972D35DA95A8D7A76E1 * ___PrimaryPointerChanged_34; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.Input.FocusProvider_PointerPreferences> Microsoft.MixedReality.Toolkit.Input.FocusProvider::customPointerBehaviors List_1_tFE6FD54290FAE1215104780403982C7B09CDF827 * ___customPointerBehaviors_36; // Microsoft.MixedReality.Toolkit.Input.PointerBehavior Microsoft.MixedReality.Toolkit.Input.FocusProvider::<GazePointerBehavior>k__BackingField int32_t ___U3CGazePointerBehaviorU3Ek__BackingField_37; public: inline static int32_t get_offset_of_pointers_13() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___pointers_13)); } inline HashSet_1_t011B6459FAD372DB627D1CFFFDD142A0C0D9C810 * get_pointers_13() const { return ___pointers_13; } inline HashSet_1_t011B6459FAD372DB627D1CFFFDD142A0C0D9C810 ** get_address_of_pointers_13() { return &___pointers_13; } inline void set_pointers_13(HashSet_1_t011B6459FAD372DB627D1CFFFDD142A0C0D9C810 * value) { ___pointers_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___pointers_13), (void*)value); } inline static int32_t get_offset_of_pendingOverallFocusEnterSet_14() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___pendingOverallFocusEnterSet_14)); } inline HashSet_1_t0C44F460B51C051B426D52ACDF3D6639DD4B3D2E * get_pendingOverallFocusEnterSet_14() const { return ___pendingOverallFocusEnterSet_14; } inline HashSet_1_t0C44F460B51C051B426D52ACDF3D6639DD4B3D2E ** get_address_of_pendingOverallFocusEnterSet_14() { return &___pendingOverallFocusEnterSet_14; } inline void set_pendingOverallFocusEnterSet_14(HashSet_1_t0C44F460B51C051B426D52ACDF3D6639DD4B3D2E * value) { ___pendingOverallFocusEnterSet_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___pendingOverallFocusEnterSet_14), (void*)value); } inline static int32_t get_offset_of_pendingOverallFocusExitSet_15() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___pendingOverallFocusExitSet_15)); } inline Dictionary_2_t96FB2F26C7CE603F75E00CA02CCD843EA785C29D * get_pendingOverallFocusExitSet_15() const { return ___pendingOverallFocusExitSet_15; } inline Dictionary_2_t96FB2F26C7CE603F75E00CA02CCD843EA785C29D ** get_address_of_pendingOverallFocusExitSet_15() { return &___pendingOverallFocusExitSet_15; } inline void set_pendingOverallFocusExitSet_15(Dictionary_2_t96FB2F26C7CE603F75E00CA02CCD843EA785C29D * value) { ___pendingOverallFocusExitSet_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___pendingOverallFocusExitSet_15), (void*)value); } inline static int32_t get_offset_of_pendingPointerSpecificFocusChange_16() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___pendingPointerSpecificFocusChange_16)); } inline List_1_tE1D27E9C4800D7B35F2E105CC4DC73C67F2B2EA6 * get_pendingPointerSpecificFocusChange_16() const { return ___pendingPointerSpecificFocusChange_16; } inline List_1_tE1D27E9C4800D7B35F2E105CC4DC73C67F2B2EA6 ** get_address_of_pendingPointerSpecificFocusChange_16() { return &___pendingPointerSpecificFocusChange_16; } inline void set_pendingPointerSpecificFocusChange_16(List_1_tE1D27E9C4800D7B35F2E105CC4DC73C67F2B2EA6 * value) { ___pendingPointerSpecificFocusChange_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___pendingPointerSpecificFocusChange_16), (void*)value); } inline static int32_t get_offset_of_pointerMediators_17() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___pointerMediators_17)); } inline Dictionary_2_t2621E656D43BE7326773FB9B1CE330F895A9BDB2 * get_pointerMediators_17() const { return ___pointerMediators_17; } inline Dictionary_2_t2621E656D43BE7326773FB9B1CE330F895A9BDB2 ** get_address_of_pointerMediators_17() { return &___pointerMediators_17; } inline void set_pointerMediators_17(Dictionary_2_t2621E656D43BE7326773FB9B1CE330F895A9BDB2 * value) { ___pointerMediators_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___pointerMediators_17), (void*)value); } inline static int32_t get_offset_of_hitResult3d_18() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___hitResult3d_18)); } inline PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * get_hitResult3d_18() const { return ___hitResult3d_18; } inline PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E ** get_address_of_hitResult3d_18() { return &___hitResult3d_18; } inline void set_hitResult3d_18(PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * value) { ___hitResult3d_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___hitResult3d_18), (void*)value); } inline static int32_t get_offset_of_hitResultUi_19() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___hitResultUi_19)); } inline PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * get_hitResultUi_19() const { return ___hitResultUi_19; } inline PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E ** get_address_of_hitResultUi_19() { return &___hitResultUi_19; } inline void set_hitResultUi_19(PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * value) { ___hitResultUi_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___hitResultUi_19), (void*)value); } inline static int32_t get_offset_of_maxQuerySceneResults_20() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___maxQuerySceneResults_20)); } inline int32_t get_maxQuerySceneResults_20() const { return ___maxQuerySceneResults_20; } inline int32_t* get_address_of_maxQuerySceneResults_20() { return &___maxQuerySceneResults_20; } inline void set_maxQuerySceneResults_20(int32_t value) { ___maxQuerySceneResults_20 = value; } inline static int32_t get_offset_of_focusIndividualCompoundCollider_21() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___focusIndividualCompoundCollider_21)); } inline bool get_focusIndividualCompoundCollider_21() const { return ___focusIndividualCompoundCollider_21; } inline bool* get_address_of_focusIndividualCompoundCollider_21() { return &___focusIndividualCompoundCollider_21; } inline void set_focusIndividualCompoundCollider_21(bool value) { ___focusIndividualCompoundCollider_21 = value; } inline static int32_t get_offset_of_U3CNumNearPointersActiveU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___U3CNumNearPointersActiveU3Ek__BackingField_22)); } inline int32_t get_U3CNumNearPointersActiveU3Ek__BackingField_22() const { return ___U3CNumNearPointersActiveU3Ek__BackingField_22; } inline int32_t* get_address_of_U3CNumNearPointersActiveU3Ek__BackingField_22() { return &___U3CNumNearPointersActiveU3Ek__BackingField_22; } inline void set_U3CNumNearPointersActiveU3Ek__BackingField_22(int32_t value) { ___U3CNumNearPointersActiveU3Ek__BackingField_22 = value; } inline static int32_t get_offset_of_U3CNumFarPointersActiveU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___U3CNumFarPointersActiveU3Ek__BackingField_23)); } inline int32_t get_U3CNumFarPointersActiveU3Ek__BackingField_23() const { return ___U3CNumFarPointersActiveU3Ek__BackingField_23; } inline int32_t* get_address_of_U3CNumFarPointersActiveU3Ek__BackingField_23() { return &___U3CNumFarPointersActiveU3Ek__BackingField_23; } inline void set_U3CNumFarPointersActiveU3Ek__BackingField_23(int32_t value) { ___U3CNumFarPointersActiveU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_primaryPointer_24() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___primaryPointer_24)); } inline RuntimeObject* get_primaryPointer_24() const { return ___primaryPointer_24; } inline RuntimeObject** get_address_of_primaryPointer_24() { return &___primaryPointer_24; } inline void set_primaryPointer_24(RuntimeObject* value) { ___primaryPointer_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___primaryPointer_24), (void*)value); } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___U3CNameU3Ek__BackingField_25)); } inline String_t* get_U3CNameU3Ek__BackingField_25() const { return ___U3CNameU3Ek__BackingField_25; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_25() { return &___U3CNameU3Ek__BackingField_25; } inline void set_U3CNameU3Ek__BackingField_25(String_t* value) { ___U3CNameU3Ek__BackingField_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_25), (void*)value); } inline static int32_t get_offset_of_focusLayerMasks_26() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___focusLayerMasks_26)); } inline LayerMaskU5BU5D_tDFC13874A022E79527D2CDF572C06EC90D0F828D* get_focusLayerMasks_26() const { return ___focusLayerMasks_26; } inline LayerMaskU5BU5D_tDFC13874A022E79527D2CDF572C06EC90D0F828D** get_address_of_focusLayerMasks_26() { return &___focusLayerMasks_26; } inline void set_focusLayerMasks_26(LayerMaskU5BU5D_tDFC13874A022E79527D2CDF572C06EC90D0F828D* value) { ___focusLayerMasks_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___focusLayerMasks_26), (void*)value); } inline static int32_t get_offset_of_uiRaycastCameraTargetTexture_27() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___uiRaycastCameraTargetTexture_27)); } inline RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * get_uiRaycastCameraTargetTexture_27() const { return ___uiRaycastCameraTargetTexture_27; } inline RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 ** get_address_of_uiRaycastCameraTargetTexture_27() { return &___uiRaycastCameraTargetTexture_27; } inline void set_uiRaycastCameraTargetTexture_27(RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * value) { ___uiRaycastCameraTargetTexture_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___uiRaycastCameraTargetTexture_27), (void*)value); } inline static int32_t get_offset_of_uiRaycastCamera_28() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___uiRaycastCamera_28)); } inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_uiRaycastCamera_28() const { return ___uiRaycastCamera_28; } inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_uiRaycastCamera_28() { return &___uiRaycastCamera_28; } inline void set_uiRaycastCamera_28(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value) { ___uiRaycastCamera_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___uiRaycastCamera_28), (void*)value); } inline static int32_t get_offset_of_gazeProviderPointingData_29() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___gazeProviderPointingData_29)); } inline PointerData_t2D9777F60624756A55D1E3EEBBC54D707EF38B57 * get_gazeProviderPointingData_29() const { return ___gazeProviderPointingData_29; } inline PointerData_t2D9777F60624756A55D1E3EEBBC54D707EF38B57 ** get_address_of_gazeProviderPointingData_29() { return &___gazeProviderPointingData_29; } inline void set_gazeProviderPointingData_29(PointerData_t2D9777F60624756A55D1E3EEBBC54D707EF38B57 * value) { ___gazeProviderPointingData_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___gazeProviderPointingData_29), (void*)value); } inline static int32_t get_offset_of_gazeHitResult_30() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___gazeHitResult_30)); } inline PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * get_gazeHitResult_30() const { return ___gazeHitResult_30; } inline PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E ** get_address_of_gazeHitResult_30() { return &___gazeHitResult_30; } inline void set_gazeHitResult_30(PointerHitResult_t66FE35FF54770E530FDB8F098733F458889B4E9E * value) { ___gazeHitResult_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___gazeHitResult_30), (void*)value); } inline static int32_t get_offset_of_newUiRaycastPosition_31() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___newUiRaycastPosition_31)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_newUiRaycastPosition_31() const { return ___newUiRaycastPosition_31; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_newUiRaycastPosition_31() { return &___newUiRaycastPosition_31; } inline void set_newUiRaycastPosition_31(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___newUiRaycastPosition_31 = value; } inline static int32_t get_offset_of_gazePointerStateMachine_32() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___gazePointerStateMachine_32)); } inline GazePointerVisibilityStateMachine_tAED35D0A182DB62D2FF22A8D6BC39F834D0F1D33 * get_gazePointerStateMachine_32() const { return ___gazePointerStateMachine_32; } inline GazePointerVisibilityStateMachine_tAED35D0A182DB62D2FF22A8D6BC39F834D0F1D33 ** get_address_of_gazePointerStateMachine_32() { return &___gazePointerStateMachine_32; } inline void set_gazePointerStateMachine_32(GazePointerVisibilityStateMachine_tAED35D0A182DB62D2FF22A8D6BC39F834D0F1D33 * value) { ___gazePointerStateMachine_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___gazePointerStateMachine_32), (void*)value); } inline static int32_t get_offset_of_primaryPointerSelector_33() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___primaryPointerSelector_33)); } inline RuntimeObject* get_primaryPointerSelector_33() const { return ___primaryPointerSelector_33; } inline RuntimeObject** get_address_of_primaryPointerSelector_33() { return &___primaryPointerSelector_33; } inline void set_primaryPointerSelector_33(RuntimeObject* value) { ___primaryPointerSelector_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___primaryPointerSelector_33), (void*)value); } inline static int32_t get_offset_of_PrimaryPointerChanged_34() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___PrimaryPointerChanged_34)); } inline PrimaryPointerChangedHandler_t1F0E5AD69C56410BCED09972D35DA95A8D7A76E1 * get_PrimaryPointerChanged_34() const { return ___PrimaryPointerChanged_34; } inline PrimaryPointerChangedHandler_t1F0E5AD69C56410BCED09972D35DA95A8D7A76E1 ** get_address_of_PrimaryPointerChanged_34() { return &___PrimaryPointerChanged_34; } inline void set_PrimaryPointerChanged_34(PrimaryPointerChangedHandler_t1F0E5AD69C56410BCED09972D35DA95A8D7A76E1 * value) { ___PrimaryPointerChanged_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimaryPointerChanged_34), (void*)value); } inline static int32_t get_offset_of_customPointerBehaviors_36() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___customPointerBehaviors_36)); } inline List_1_tFE6FD54290FAE1215104780403982C7B09CDF827 * get_customPointerBehaviors_36() const { return ___customPointerBehaviors_36; } inline List_1_tFE6FD54290FAE1215104780403982C7B09CDF827 ** get_address_of_customPointerBehaviors_36() { return &___customPointerBehaviors_36; } inline void set_customPointerBehaviors_36(List_1_tFE6FD54290FAE1215104780403982C7B09CDF827 * value) { ___customPointerBehaviors_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___customPointerBehaviors_36), (void*)value); } inline static int32_t get_offset_of_U3CGazePointerBehaviorU3Ek__BackingField_37() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09, ___U3CGazePointerBehaviorU3Ek__BackingField_37)); } inline int32_t get_U3CGazePointerBehaviorU3Ek__BackingField_37() const { return ___U3CGazePointerBehaviorU3Ek__BackingField_37; } inline int32_t* get_address_of_U3CGazePointerBehaviorU3Ek__BackingField_37() { return &___U3CGazePointerBehaviorU3Ek__BackingField_37; } inline void set_U3CGazePointerBehaviorU3Ek__BackingField_37(int32_t value) { ___U3CGazePointerBehaviorU3Ek__BackingField_37 = value; } }; struct FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_StaticFields { public: // UnityEngine.Collider[] Microsoft.MixedReality.Toolkit.Input.FocusProvider::colliders ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* ___colliders_35; public: inline static int32_t get_offset_of_colliders_35() { return static_cast<int32_t>(offsetof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_StaticFields, ___colliders_35)); } inline ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* get_colliders_35() const { return ___colliders_35; } inline ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252** get_address_of_colliders_35() { return &___colliders_35; } inline void set_colliders_35(ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* value) { ___colliders_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___colliders_35), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.HandJointService struct HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // Microsoft.MixedReality.Toolkit.Input.IMixedRealityHand Microsoft.MixedReality.Toolkit.Input.HandJointService::leftHand RuntimeObject* ___leftHand_8; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityHand Microsoft.MixedReality.Toolkit.Input.HandJointService::rightHand RuntimeObject* ___rightHand_9; // System.Collections.Generic.Dictionary`2<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,UnityEngine.Transform> Microsoft.MixedReality.Toolkit.Input.HandJointService::leftHandFauxJoints Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 * ___leftHandFauxJoints_10; // System.Collections.Generic.Dictionary`2<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,UnityEngine.Transform> Microsoft.MixedReality.Toolkit.Input.HandJointService::rightHandFauxJoints Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 * ___rightHandFauxJoints_11; public: inline static int32_t get_offset_of_leftHand_8() { return static_cast<int32_t>(offsetof(HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699, ___leftHand_8)); } inline RuntimeObject* get_leftHand_8() const { return ___leftHand_8; } inline RuntimeObject** get_address_of_leftHand_8() { return &___leftHand_8; } inline void set_leftHand_8(RuntimeObject* value) { ___leftHand_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftHand_8), (void*)value); } inline static int32_t get_offset_of_rightHand_9() { return static_cast<int32_t>(offsetof(HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699, ___rightHand_9)); } inline RuntimeObject* get_rightHand_9() const { return ___rightHand_9; } inline RuntimeObject** get_address_of_rightHand_9() { return &___rightHand_9; } inline void set_rightHand_9(RuntimeObject* value) { ___rightHand_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightHand_9), (void*)value); } inline static int32_t get_offset_of_leftHandFauxJoints_10() { return static_cast<int32_t>(offsetof(HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699, ___leftHandFauxJoints_10)); } inline Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 * get_leftHandFauxJoints_10() const { return ___leftHandFauxJoints_10; } inline Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 ** get_address_of_leftHandFauxJoints_10() { return &___leftHandFauxJoints_10; } inline void set_leftHandFauxJoints_10(Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 * value) { ___leftHandFauxJoints_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftHandFauxJoints_10), (void*)value); } inline static int32_t get_offset_of_rightHandFauxJoints_11() { return static_cast<int32_t>(offsetof(HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699, ___rightHandFauxJoints_11)); } inline Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 * get_rightHandFauxJoints_11() const { return ___rightHandFauxJoints_11; } inline Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 ** get_address_of_rightHandFauxJoints_11() { return &___rightHandFauxJoints_11; } inline void set_rightHandFauxJoints_11(Dictionary_2_t80B7787D122CBEB8EF125C02F8C38C0E615A9F85 * value) { ___rightHandFauxJoints_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightHandFauxJoints_11), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.InputRecordingService struct InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // System.Action Microsoft.MixedReality.Toolkit.Input.InputRecordingService::OnRecordingStarted Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___OnRecordingStarted_9; // System.Action Microsoft.MixedReality.Toolkit.Input.InputRecordingService::OnRecordingStopped Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___OnRecordingStopped_10; // System.Boolean Microsoft.MixedReality.Toolkit.Input.InputRecordingService::<IsEnabled>k__BackingField bool ___U3CIsEnabledU3Ek__BackingField_11; // System.Boolean Microsoft.MixedReality.Toolkit.Input.InputRecordingService::<IsRecording>k__BackingField bool ___U3CIsRecordingU3Ek__BackingField_12; // System.Boolean Microsoft.MixedReality.Toolkit.Input.InputRecordingService::useBufferTimeLimit bool ___useBufferTimeLimit_13; // System.Single Microsoft.MixedReality.Toolkit.Input.InputRecordingService::recordingBufferTimeLimit float ___recordingBufferTimeLimit_14; // Microsoft.MixedReality.Toolkit.Input.InputAnimation Microsoft.MixedReality.Toolkit.Input.InputRecordingService::recordingBuffer InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 * ___recordingBuffer_15; // System.Nullable`1<System.Single> Microsoft.MixedReality.Toolkit.Input.InputRecordingService::unlimitedRecordingStartTime Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 ___unlimitedRecordingStartTime_16; public: inline static int32_t get_offset_of_OnRecordingStarted_9() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___OnRecordingStarted_9)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_OnRecordingStarted_9() const { return ___OnRecordingStarted_9; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_OnRecordingStarted_9() { return &___OnRecordingStarted_9; } inline void set_OnRecordingStarted_9(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___OnRecordingStarted_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnRecordingStarted_9), (void*)value); } inline static int32_t get_offset_of_OnRecordingStopped_10() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___OnRecordingStopped_10)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_OnRecordingStopped_10() const { return ___OnRecordingStopped_10; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_OnRecordingStopped_10() { return &___OnRecordingStopped_10; } inline void set_OnRecordingStopped_10(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___OnRecordingStopped_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnRecordingStopped_10), (void*)value); } inline static int32_t get_offset_of_U3CIsEnabledU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___U3CIsEnabledU3Ek__BackingField_11)); } inline bool get_U3CIsEnabledU3Ek__BackingField_11() const { return ___U3CIsEnabledU3Ek__BackingField_11; } inline bool* get_address_of_U3CIsEnabledU3Ek__BackingField_11() { return &___U3CIsEnabledU3Ek__BackingField_11; } inline void set_U3CIsEnabledU3Ek__BackingField_11(bool value) { ___U3CIsEnabledU3Ek__BackingField_11 = value; } inline static int32_t get_offset_of_U3CIsRecordingU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___U3CIsRecordingU3Ek__BackingField_12)); } inline bool get_U3CIsRecordingU3Ek__BackingField_12() const { return ___U3CIsRecordingU3Ek__BackingField_12; } inline bool* get_address_of_U3CIsRecordingU3Ek__BackingField_12() { return &___U3CIsRecordingU3Ek__BackingField_12; } inline void set_U3CIsRecordingU3Ek__BackingField_12(bool value) { ___U3CIsRecordingU3Ek__BackingField_12 = value; } inline static int32_t get_offset_of_useBufferTimeLimit_13() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___useBufferTimeLimit_13)); } inline bool get_useBufferTimeLimit_13() const { return ___useBufferTimeLimit_13; } inline bool* get_address_of_useBufferTimeLimit_13() { return &___useBufferTimeLimit_13; } inline void set_useBufferTimeLimit_13(bool value) { ___useBufferTimeLimit_13 = value; } inline static int32_t get_offset_of_recordingBufferTimeLimit_14() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___recordingBufferTimeLimit_14)); } inline float get_recordingBufferTimeLimit_14() const { return ___recordingBufferTimeLimit_14; } inline float* get_address_of_recordingBufferTimeLimit_14() { return &___recordingBufferTimeLimit_14; } inline void set_recordingBufferTimeLimit_14(float value) { ___recordingBufferTimeLimit_14 = value; } inline static int32_t get_offset_of_recordingBuffer_15() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___recordingBuffer_15)); } inline InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 * get_recordingBuffer_15() const { return ___recordingBuffer_15; } inline InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 ** get_address_of_recordingBuffer_15() { return &___recordingBuffer_15; } inline void set_recordingBuffer_15(InputAnimation_t80C799E7C03B45B187DF76848F3B2C688C84D3E4 * value) { ___recordingBuffer_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___recordingBuffer_15), (void*)value); } inline static int32_t get_offset_of_unlimitedRecordingStartTime_16() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001, ___unlimitedRecordingStartTime_16)); } inline Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 get_unlimitedRecordingStartTime_16() const { return ___unlimitedRecordingStartTime_16; } inline Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 * get_address_of_unlimitedRecordingStartTime_16() { return &___unlimitedRecordingStartTime_16; } inline void set_unlimitedRecordingStartTime_16(Nullable_1_t96A9DB0CC70D8F236B20E8A1F00B8FE74850F777 value) { ___unlimitedRecordingStartTime_16 = value; } }; struct InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_StaticFields { public: // System.Int32 Microsoft.MixedReality.Toolkit.Input.InputRecordingService::jointCount int32_t ___jointCount_8; public: inline static int32_t get_offset_of_jointCount_8() { return static_cast<int32_t>(offsetof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_StaticFields, ___jointCount_8)); } inline int32_t get_jointCount_8() const { return ___jointCount_8; } inline int32_t* get_address_of_jointCount_8() { return &___jointCount_8; } inline void set_jointCount_8(int32_t value) { ___jointCount_8 = value; } }; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 { public: // System.UInt32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::id uint32_t ___id_1; // System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::description String_t* ___description_2; // Microsoft.MixedReality.Toolkit.Utilities.AxisType Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::axisConstraint int32_t ___axisConstraint_3; public: inline static int32_t get_offset_of_id_1() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001, ___id_1)); } inline uint32_t get_id_1() const { return ___id_1; } inline uint32_t* get_address_of_id_1() { return &___id_1; } inline void set_id_1(uint32_t value) { ___id_1 = value; } inline static int32_t get_offset_of_description_2() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001, ___description_2)); } inline String_t* get_description_2() const { return ___description_2; } inline String_t** get_address_of_description_2() { return &___description_2; } inline void set_description_2(String_t* value) { ___description_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___description_2), (void*)value); } inline static int32_t get_offset_of_axisConstraint_3() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001, ___axisConstraint_3)); } inline int32_t get_axisConstraint_3() const { return ___axisConstraint_3; } inline int32_t* get_address_of_axisConstraint_3() { return &___axisConstraint_3; } inline void set_axisConstraint_3(int32_t value) { ___axisConstraint_3 = value; } }; struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_StaticFields { public: // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::<None>k__BackingField MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___U3CNoneU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CNoneU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_StaticFields, ___U3CNoneU3Ek__BackingField_0)); } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_U3CNoneU3Ek__BackingField_0() const { return ___U3CNoneU3Ek__BackingField_0; } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_U3CNoneU3Ek__BackingField_0() { return &___U3CNoneU3Ek__BackingField_0; } inline void set_U3CNoneU3Ek__BackingField_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value) { ___U3CNoneU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CNoneU3Ek__BackingField_0))->___description_2), (void*)NULL); } }; // Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke { uint32_t ___id_1; char* ___description_2; int32_t ___axisConstraint_3; }; // Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com { uint32_t ___id_1; Il2CppChar* ___description_2; int32_t ___axisConstraint_3; }; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_<get_ActiveMixedRealityPointers>d__8 struct U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_<get_ActiveMixedRealityPointers>d__8::<>1__state int32_t ___U3CU3E1__state_0; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_<get_ActiveMixedRealityPointers>d__8::<>2__current RuntimeObject* ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_<get_ActiveMixedRealityPointers>d__8::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_<get_ActiveMixedRealityPointers>d__8::<>4__this MixedRealityInputModule_t5B412ECABDBD117F458DF6D770C82121892A8B95 * ___U3CU3E4__this_3; // System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_PointerData> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_<get_ActiveMixedRealityPointers>d__8::<>7__wrap1 Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D ___U3CU3E7__wrap1_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2, ___U3CU3E2__current_1)); } inline RuntimeObject* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject* value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2, ___U3CU3E4__this_3)); } inline MixedRealityInputModule_t5B412ECABDBD117F458DF6D770C82121892A8B95 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline MixedRealityInputModule_t5B412ECABDBD117F458DF6D770C82121892A8B95 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(MixedRealityInputModule_t5B412ECABDBD117F458DF6D770C82121892A8B95 * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_4() { return static_cast<int32_t>(offsetof(U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2, ___U3CU3E7__wrap1_4)); } inline Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D get_U3CU3E7__wrap1_4() const { return ___U3CU3E7__wrap1_4; } inline Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D * get_address_of_U3CU3E7__wrap1_4() { return &___U3CU3E7__wrap1_4; } inline void set_U3CU3E7__wrap1_4(Enumerator_t842D22AF11E0DB05977481B82C1C171F5A1AEA9D value) { ___U3CU3E7__wrap1_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_4))->___dictionary_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap1_4))->___current_3))->___value_1), (void*)NULL); #endif } }; // Microsoft.MixedReality.Toolkit.Input.UnityInput.MouseDeviceManager struct MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // System.Single Microsoft.MixedReality.Toolkit.Input.UnityInput.MouseDeviceManager::cursorSpeed float ___cursorSpeed_10; // System.Single Microsoft.MixedReality.Toolkit.Input.UnityInput.MouseDeviceManager::wheelSpeed float ___wheelSpeed_11; // Microsoft.MixedReality.Toolkit.Input.UnityInput.MouseController Microsoft.MixedReality.Toolkit.Input.UnityInput.MouseDeviceManager::<Controller>k__BackingField MouseController_t32547D2D8778499705748E63858DCB736C8ECC42 * ___U3CControllerU3Ek__BackingField_12; public: inline static int32_t get_offset_of_cursorSpeed_10() { return static_cast<int32_t>(offsetof(MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38, ___cursorSpeed_10)); } inline float get_cursorSpeed_10() const { return ___cursorSpeed_10; } inline float* get_address_of_cursorSpeed_10() { return &___cursorSpeed_10; } inline void set_cursorSpeed_10(float value) { ___cursorSpeed_10 = value; } inline static int32_t get_offset_of_wheelSpeed_11() { return static_cast<int32_t>(offsetof(MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38, ___wheelSpeed_11)); } inline float get_wheelSpeed_11() const { return ___wheelSpeed_11; } inline float* get_address_of_wheelSpeed_11() { return &___wheelSpeed_11; } inline void set_wheelSpeed_11(float value) { ___wheelSpeed_11 = value; } inline static int32_t get_offset_of_U3CControllerU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38, ___U3CControllerU3Ek__BackingField_12)); } inline MouseController_t32547D2D8778499705748E63858DCB736C8ECC42 * get_U3CControllerU3Ek__BackingField_12() const { return ___U3CControllerU3Ek__BackingField_12; } inline MouseController_t32547D2D8778499705748E63858DCB736C8ECC42 ** get_address_of_U3CControllerU3Ek__BackingField_12() { return &___U3CControllerU3Ek__BackingField_12; } inline void set_U3CControllerU3Ek__BackingField_12(MouseController_t32547D2D8778499705748E63858DCB736C8ECC42 * value) { ___U3CControllerU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CControllerU3Ek__BackingField_12), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityJoystickManager struct UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // System.Single Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityJoystickManager::deviceRefreshTimer float ___deviceRefreshTimer_10; // System.String[] Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityJoystickManager::lastDeviceList StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___lastDeviceList_11; public: inline static int32_t get_offset_of_deviceRefreshTimer_10() { return static_cast<int32_t>(offsetof(UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488, ___deviceRefreshTimer_10)); } inline float get_deviceRefreshTimer_10() const { return ___deviceRefreshTimer_10; } inline float* get_address_of_deviceRefreshTimer_10() { return &___deviceRefreshTimer_10; } inline void set_deviceRefreshTimer_10(float value) { ___deviceRefreshTimer_10 = value; } inline static int32_t get_offset_of_lastDeviceList_11() { return static_cast<int32_t>(offsetof(UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488, ___lastDeviceList_11)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_lastDeviceList_11() const { return ___lastDeviceList_11; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_lastDeviceList_11() { return &___lastDeviceList_11; } inline void set_lastDeviceList_11(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___lastDeviceList_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastDeviceList_11), (void*)value); } }; struct UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,Microsoft.MixedReality.Toolkit.Input.UnityInput.GenericJoystickController> Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityJoystickManager::ActiveControllers Dictionary_2_t78CE54B0E15DACC6357DD3E0E24374ADAAF3D251 * ___ActiveControllers_9; public: inline static int32_t get_offset_of_ActiveControllers_9() { return static_cast<int32_t>(offsetof(UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_StaticFields, ___ActiveControllers_9)); } inline Dictionary_2_t78CE54B0E15DACC6357DD3E0E24374ADAAF3D251 * get_ActiveControllers_9() const { return ___ActiveControllers_9; } inline Dictionary_2_t78CE54B0E15DACC6357DD3E0E24374ADAAF3D251 ** get_address_of_ActiveControllers_9() { return &___ActiveControllers_9; } inline void set_ActiveControllers_9(Dictionary_2_t78CE54B0E15DACC6357DD3E0E24374ADAAF3D251 * value) { ___ActiveControllers_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___ActiveControllers_9), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchDeviceManager struct UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchController> Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchDeviceManager::touchesToRemove List_1_t25753972ADFC1AFE2CB446A36CA82C50B1D0A211 * ___touchesToRemove_9; public: inline static int32_t get_offset_of_touchesToRemove_9() { return static_cast<int32_t>(offsetof(UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9, ___touchesToRemove_9)); } inline List_1_t25753972ADFC1AFE2CB446A36CA82C50B1D0A211 * get_touchesToRemove_9() const { return ___touchesToRemove_9; } inline List_1_t25753972ADFC1AFE2CB446A36CA82C50B1D0A211 ** get_address_of_touchesToRemove_9() { return &___touchesToRemove_9; } inline void set_touchesToRemove_9(List_1_t25753972ADFC1AFE2CB446A36CA82C50B1D0A211 * value) { ___touchesToRemove_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___touchesToRemove_9), (void*)value); } }; struct UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.Int32,Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchController> Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchDeviceManager::ActiveTouches Dictionary_2_t22F1D215FD3149E8E7B2DB4355FCAB2FD16F0DCD * ___ActiveTouches_8; public: inline static int32_t get_offset_of_ActiveTouches_8() { return static_cast<int32_t>(offsetof(UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_StaticFields, ___ActiveTouches_8)); } inline Dictionary_2_t22F1D215FD3149E8E7B2DB4355FCAB2FD16F0DCD * get_ActiveTouches_8() const { return ___ActiveTouches_8; } inline Dictionary_2_t22F1D215FD3149E8E7B2DB4355FCAB2FD16F0DCD ** get_address_of_ActiveTouches_8() { return &___ActiveTouches_8; } inline void set_ActiveTouches_8(Dictionary_2_t22F1D215FD3149E8E7B2DB4355FCAB2FD16F0DCD * value) { ___ActiveTouches_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___ActiveTouches_8), (void*)value); } }; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem struct MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA : public BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F { public: // System.Boolean Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::managerSceneOpInProgress bool ___managerSceneOpInProgress_14; // System.Single Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::managerSceneOpProgress float ___managerSceneOpProgress_15; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_SceneContentTracker Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::contentTracker SceneContentTracker_tD87EA7966D5855817690FD4C35686B72AEA7305E * ___contentTracker_16; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_SceneLightingExecutor Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::lightingExecutor SceneLightingExecutor_t61598C0A907D76CA9295593900357D818E429255 * ___lightingExecutor_17; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_18; // System.Action`1<System.Collections.Generic.IEnumerable`1<System.String>> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnWillLoadContent>k__BackingField Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * ___U3COnWillLoadContentU3Ek__BackingField_19; // System.Action`1<System.Collections.Generic.IEnumerable`1<System.String>> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnContentLoaded>k__BackingField Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * ___U3COnContentLoadedU3Ek__BackingField_20; // System.Action`1<System.Collections.Generic.IEnumerable`1<System.String>> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnWillUnloadContent>k__BackingField Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * ___U3COnWillUnloadContentU3Ek__BackingField_21; // System.Action`1<System.Collections.Generic.IEnumerable`1<System.String>> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnContentUnloaded>k__BackingField Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * ___U3COnContentUnloadedU3Ek__BackingField_22; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnWillLoadLighting>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnWillLoadLightingU3Ek__BackingField_23; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnLightingLoaded>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnLightingLoadedU3Ek__BackingField_24; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnWillUnloadLighting>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnWillUnloadLightingU3Ek__BackingField_25; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnLightingUnloaded>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnLightingUnloadedU3Ek__BackingField_26; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnWillLoadScene>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnWillLoadSceneU3Ek__BackingField_27; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnSceneLoaded>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnSceneLoadedU3Ek__BackingField_28; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnWillUnloadScene>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnWillUnloadSceneU3Ek__BackingField_29; // System.Action`1<System.String> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<OnSceneUnloaded>k__BackingField Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * ___U3COnSceneUnloadedU3Ek__BackingField_30; // System.Boolean Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<SceneOperationInProgress>k__BackingField bool ___U3CSceneOperationInProgressU3Ek__BackingField_31; // System.Single Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<SceneOperationProgress>k__BackingField float ___U3CSceneOperationProgressU3Ek__BackingField_32; // System.Boolean Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<LightingOperationInProgress>k__BackingField bool ___U3CLightingOperationInProgressU3Ek__BackingField_33; // System.Single Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<LightingOperationProgress>k__BackingField float ___U3CLightingOperationProgressU3Ek__BackingField_34; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<ActiveLightingScene>k__BackingField String_t* ___U3CActiveLightingSceneU3Ek__BackingField_35; // System.Boolean Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<WaitingToProceed>k__BackingField bool ___U3CWaitingToProceedU3Ek__BackingField_36; // System.UInt32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<SourceId>k__BackingField uint32_t ___U3CSourceIdU3Ek__BackingField_37; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem::<SourceName>k__BackingField String_t* ___U3CSourceNameU3Ek__BackingField_38; public: inline static int32_t get_offset_of_managerSceneOpInProgress_14() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___managerSceneOpInProgress_14)); } inline bool get_managerSceneOpInProgress_14() const { return ___managerSceneOpInProgress_14; } inline bool* get_address_of_managerSceneOpInProgress_14() { return &___managerSceneOpInProgress_14; } inline void set_managerSceneOpInProgress_14(bool value) { ___managerSceneOpInProgress_14 = value; } inline static int32_t get_offset_of_managerSceneOpProgress_15() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___managerSceneOpProgress_15)); } inline float get_managerSceneOpProgress_15() const { return ___managerSceneOpProgress_15; } inline float* get_address_of_managerSceneOpProgress_15() { return &___managerSceneOpProgress_15; } inline void set_managerSceneOpProgress_15(float value) { ___managerSceneOpProgress_15 = value; } inline static int32_t get_offset_of_contentTracker_16() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___contentTracker_16)); } inline SceneContentTracker_tD87EA7966D5855817690FD4C35686B72AEA7305E * get_contentTracker_16() const { return ___contentTracker_16; } inline SceneContentTracker_tD87EA7966D5855817690FD4C35686B72AEA7305E ** get_address_of_contentTracker_16() { return &___contentTracker_16; } inline void set_contentTracker_16(SceneContentTracker_tD87EA7966D5855817690FD4C35686B72AEA7305E * value) { ___contentTracker_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___contentTracker_16), (void*)value); } inline static int32_t get_offset_of_lightingExecutor_17() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___lightingExecutor_17)); } inline SceneLightingExecutor_t61598C0A907D76CA9295593900357D818E429255 * get_lightingExecutor_17() const { return ___lightingExecutor_17; } inline SceneLightingExecutor_t61598C0A907D76CA9295593900357D818E429255 ** get_address_of_lightingExecutor_17() { return &___lightingExecutor_17; } inline void set_lightingExecutor_17(SceneLightingExecutor_t61598C0A907D76CA9295593900357D818E429255 * value) { ___lightingExecutor_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___lightingExecutor_17), (void*)value); } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CNameU3Ek__BackingField_18)); } inline String_t* get_U3CNameU3Ek__BackingField_18() const { return ___U3CNameU3Ek__BackingField_18; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_18() { return &___U3CNameU3Ek__BackingField_18; } inline void set_U3CNameU3Ek__BackingField_18(String_t* value) { ___U3CNameU3Ek__BackingField_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_18), (void*)value); } inline static int32_t get_offset_of_U3COnWillLoadContentU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnWillLoadContentU3Ek__BackingField_19)); } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * get_U3COnWillLoadContentU3Ek__BackingField_19() const { return ___U3COnWillLoadContentU3Ek__BackingField_19; } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 ** get_address_of_U3COnWillLoadContentU3Ek__BackingField_19() { return &___U3COnWillLoadContentU3Ek__BackingField_19; } inline void set_U3COnWillLoadContentU3Ek__BackingField_19(Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * value) { ___U3COnWillLoadContentU3Ek__BackingField_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnWillLoadContentU3Ek__BackingField_19), (void*)value); } inline static int32_t get_offset_of_U3COnContentLoadedU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnContentLoadedU3Ek__BackingField_20)); } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * get_U3COnContentLoadedU3Ek__BackingField_20() const { return ___U3COnContentLoadedU3Ek__BackingField_20; } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 ** get_address_of_U3COnContentLoadedU3Ek__BackingField_20() { return &___U3COnContentLoadedU3Ek__BackingField_20; } inline void set_U3COnContentLoadedU3Ek__BackingField_20(Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * value) { ___U3COnContentLoadedU3Ek__BackingField_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnContentLoadedU3Ek__BackingField_20), (void*)value); } inline static int32_t get_offset_of_U3COnWillUnloadContentU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnWillUnloadContentU3Ek__BackingField_21)); } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * get_U3COnWillUnloadContentU3Ek__BackingField_21() const { return ___U3COnWillUnloadContentU3Ek__BackingField_21; } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 ** get_address_of_U3COnWillUnloadContentU3Ek__BackingField_21() { return &___U3COnWillUnloadContentU3Ek__BackingField_21; } inline void set_U3COnWillUnloadContentU3Ek__BackingField_21(Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * value) { ___U3COnWillUnloadContentU3Ek__BackingField_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnWillUnloadContentU3Ek__BackingField_21), (void*)value); } inline static int32_t get_offset_of_U3COnContentUnloadedU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnContentUnloadedU3Ek__BackingField_22)); } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * get_U3COnContentUnloadedU3Ek__BackingField_22() const { return ___U3COnContentUnloadedU3Ek__BackingField_22; } inline Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 ** get_address_of_U3COnContentUnloadedU3Ek__BackingField_22() { return &___U3COnContentUnloadedU3Ek__BackingField_22; } inline void set_U3COnContentUnloadedU3Ek__BackingField_22(Action_1_t8E88DA0FD94D7842EA1A9F509758015B2FA98EA1 * value) { ___U3COnContentUnloadedU3Ek__BackingField_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnContentUnloadedU3Ek__BackingField_22), (void*)value); } inline static int32_t get_offset_of_U3COnWillLoadLightingU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnWillLoadLightingU3Ek__BackingField_23)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnWillLoadLightingU3Ek__BackingField_23() const { return ___U3COnWillLoadLightingU3Ek__BackingField_23; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnWillLoadLightingU3Ek__BackingField_23() { return &___U3COnWillLoadLightingU3Ek__BackingField_23; } inline void set_U3COnWillLoadLightingU3Ek__BackingField_23(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnWillLoadLightingU3Ek__BackingField_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnWillLoadLightingU3Ek__BackingField_23), (void*)value); } inline static int32_t get_offset_of_U3COnLightingLoadedU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnLightingLoadedU3Ek__BackingField_24)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnLightingLoadedU3Ek__BackingField_24() const { return ___U3COnLightingLoadedU3Ek__BackingField_24; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnLightingLoadedU3Ek__BackingField_24() { return &___U3COnLightingLoadedU3Ek__BackingField_24; } inline void set_U3COnLightingLoadedU3Ek__BackingField_24(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnLightingLoadedU3Ek__BackingField_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnLightingLoadedU3Ek__BackingField_24), (void*)value); } inline static int32_t get_offset_of_U3COnWillUnloadLightingU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnWillUnloadLightingU3Ek__BackingField_25)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnWillUnloadLightingU3Ek__BackingField_25() const { return ___U3COnWillUnloadLightingU3Ek__BackingField_25; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnWillUnloadLightingU3Ek__BackingField_25() { return &___U3COnWillUnloadLightingU3Ek__BackingField_25; } inline void set_U3COnWillUnloadLightingU3Ek__BackingField_25(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnWillUnloadLightingU3Ek__BackingField_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnWillUnloadLightingU3Ek__BackingField_25), (void*)value); } inline static int32_t get_offset_of_U3COnLightingUnloadedU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnLightingUnloadedU3Ek__BackingField_26)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnLightingUnloadedU3Ek__BackingField_26() const { return ___U3COnLightingUnloadedU3Ek__BackingField_26; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnLightingUnloadedU3Ek__BackingField_26() { return &___U3COnLightingUnloadedU3Ek__BackingField_26; } inline void set_U3COnLightingUnloadedU3Ek__BackingField_26(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnLightingUnloadedU3Ek__BackingField_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnLightingUnloadedU3Ek__BackingField_26), (void*)value); } inline static int32_t get_offset_of_U3COnWillLoadSceneU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnWillLoadSceneU3Ek__BackingField_27)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnWillLoadSceneU3Ek__BackingField_27() const { return ___U3COnWillLoadSceneU3Ek__BackingField_27; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnWillLoadSceneU3Ek__BackingField_27() { return &___U3COnWillLoadSceneU3Ek__BackingField_27; } inline void set_U3COnWillLoadSceneU3Ek__BackingField_27(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnWillLoadSceneU3Ek__BackingField_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnWillLoadSceneU3Ek__BackingField_27), (void*)value); } inline static int32_t get_offset_of_U3COnSceneLoadedU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnSceneLoadedU3Ek__BackingField_28)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnSceneLoadedU3Ek__BackingField_28() const { return ___U3COnSceneLoadedU3Ek__BackingField_28; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnSceneLoadedU3Ek__BackingField_28() { return &___U3COnSceneLoadedU3Ek__BackingField_28; } inline void set_U3COnSceneLoadedU3Ek__BackingField_28(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnSceneLoadedU3Ek__BackingField_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnSceneLoadedU3Ek__BackingField_28), (void*)value); } inline static int32_t get_offset_of_U3COnWillUnloadSceneU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnWillUnloadSceneU3Ek__BackingField_29)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnWillUnloadSceneU3Ek__BackingField_29() const { return ___U3COnWillUnloadSceneU3Ek__BackingField_29; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnWillUnloadSceneU3Ek__BackingField_29() { return &___U3COnWillUnloadSceneU3Ek__BackingField_29; } inline void set_U3COnWillUnloadSceneU3Ek__BackingField_29(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnWillUnloadSceneU3Ek__BackingField_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnWillUnloadSceneU3Ek__BackingField_29), (void*)value); } inline static int32_t get_offset_of_U3COnSceneUnloadedU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3COnSceneUnloadedU3Ek__BackingField_30)); } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * get_U3COnSceneUnloadedU3Ek__BackingField_30() const { return ___U3COnSceneUnloadedU3Ek__BackingField_30; } inline Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 ** get_address_of_U3COnSceneUnloadedU3Ek__BackingField_30() { return &___U3COnSceneUnloadedU3Ek__BackingField_30; } inline void set_U3COnSceneUnloadedU3Ek__BackingField_30(Action_1_t32A9EECF5D4397CC1B9A7C7079870875411B06D0 * value) { ___U3COnSceneUnloadedU3Ek__BackingField_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COnSceneUnloadedU3Ek__BackingField_30), (void*)value); } inline static int32_t get_offset_of_U3CSceneOperationInProgressU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CSceneOperationInProgressU3Ek__BackingField_31)); } inline bool get_U3CSceneOperationInProgressU3Ek__BackingField_31() const { return ___U3CSceneOperationInProgressU3Ek__BackingField_31; } inline bool* get_address_of_U3CSceneOperationInProgressU3Ek__BackingField_31() { return &___U3CSceneOperationInProgressU3Ek__BackingField_31; } inline void set_U3CSceneOperationInProgressU3Ek__BackingField_31(bool value) { ___U3CSceneOperationInProgressU3Ek__BackingField_31 = value; } inline static int32_t get_offset_of_U3CSceneOperationProgressU3Ek__BackingField_32() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CSceneOperationProgressU3Ek__BackingField_32)); } inline float get_U3CSceneOperationProgressU3Ek__BackingField_32() const { return ___U3CSceneOperationProgressU3Ek__BackingField_32; } inline float* get_address_of_U3CSceneOperationProgressU3Ek__BackingField_32() { return &___U3CSceneOperationProgressU3Ek__BackingField_32; } inline void set_U3CSceneOperationProgressU3Ek__BackingField_32(float value) { ___U3CSceneOperationProgressU3Ek__BackingField_32 = value; } inline static int32_t get_offset_of_U3CLightingOperationInProgressU3Ek__BackingField_33() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CLightingOperationInProgressU3Ek__BackingField_33)); } inline bool get_U3CLightingOperationInProgressU3Ek__BackingField_33() const { return ___U3CLightingOperationInProgressU3Ek__BackingField_33; } inline bool* get_address_of_U3CLightingOperationInProgressU3Ek__BackingField_33() { return &___U3CLightingOperationInProgressU3Ek__BackingField_33; } inline void set_U3CLightingOperationInProgressU3Ek__BackingField_33(bool value) { ___U3CLightingOperationInProgressU3Ek__BackingField_33 = value; } inline static int32_t get_offset_of_U3CLightingOperationProgressU3Ek__BackingField_34() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CLightingOperationProgressU3Ek__BackingField_34)); } inline float get_U3CLightingOperationProgressU3Ek__BackingField_34() const { return ___U3CLightingOperationProgressU3Ek__BackingField_34; } inline float* get_address_of_U3CLightingOperationProgressU3Ek__BackingField_34() { return &___U3CLightingOperationProgressU3Ek__BackingField_34; } inline void set_U3CLightingOperationProgressU3Ek__BackingField_34(float value) { ___U3CLightingOperationProgressU3Ek__BackingField_34 = value; } inline static int32_t get_offset_of_U3CActiveLightingSceneU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CActiveLightingSceneU3Ek__BackingField_35)); } inline String_t* get_U3CActiveLightingSceneU3Ek__BackingField_35() const { return ___U3CActiveLightingSceneU3Ek__BackingField_35; } inline String_t** get_address_of_U3CActiveLightingSceneU3Ek__BackingField_35() { return &___U3CActiveLightingSceneU3Ek__BackingField_35; } inline void set_U3CActiveLightingSceneU3Ek__BackingField_35(String_t* value) { ___U3CActiveLightingSceneU3Ek__BackingField_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CActiveLightingSceneU3Ek__BackingField_35), (void*)value); } inline static int32_t get_offset_of_U3CWaitingToProceedU3Ek__BackingField_36() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CWaitingToProceedU3Ek__BackingField_36)); } inline bool get_U3CWaitingToProceedU3Ek__BackingField_36() const { return ___U3CWaitingToProceedU3Ek__BackingField_36; } inline bool* get_address_of_U3CWaitingToProceedU3Ek__BackingField_36() { return &___U3CWaitingToProceedU3Ek__BackingField_36; } inline void set_U3CWaitingToProceedU3Ek__BackingField_36(bool value) { ___U3CWaitingToProceedU3Ek__BackingField_36 = value; } inline static int32_t get_offset_of_U3CSourceIdU3Ek__BackingField_37() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CSourceIdU3Ek__BackingField_37)); } inline uint32_t get_U3CSourceIdU3Ek__BackingField_37() const { return ___U3CSourceIdU3Ek__BackingField_37; } inline uint32_t* get_address_of_U3CSourceIdU3Ek__BackingField_37() { return &___U3CSourceIdU3Ek__BackingField_37; } inline void set_U3CSourceIdU3Ek__BackingField_37(uint32_t value) { ___U3CSourceIdU3Ek__BackingField_37 = value; } inline static int32_t get_offset_of_U3CSourceNameU3Ek__BackingField_38() { return static_cast<int32_t>(offsetof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA, ___U3CSourceNameU3Ek__BackingField_38)); } inline String_t* get_U3CSourceNameU3Ek__BackingField_38() const { return ___U3CSourceNameU3Ek__BackingField_38; } inline String_t** get_address_of_U3CSourceNameU3Ek__BackingField_38() { return &___U3CSourceNameU3Ek__BackingField_38; } inline void set_U3CSourceNameU3Ek__BackingField_38(String_t* value) { ___U3CSourceNameU3Ek__BackingField_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSourceNameU3Ek__BackingField_38), (void*)value); } }; // Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE { public: // System.String Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Name String_t* ___Name_1; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Path String_t* ___Path_2; // System.Boolean Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Included bool ___Included_3; // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::BuildIndex int32_t ___BuildIndex_4; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Tag String_t* ___Tag_5; // UnityEngine.Object Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Asset Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___Asset_6; public: inline static int32_t get_offset_of_Name_1() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Name_1)); } inline String_t* get_Name_1() const { return ___Name_1; } inline String_t** get_address_of_Name_1() { return &___Name_1; } inline void set_Name_1(String_t* value) { ___Name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_1), (void*)value); } inline static int32_t get_offset_of_Path_2() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Path_2)); } inline String_t* get_Path_2() const { return ___Path_2; } inline String_t** get_address_of_Path_2() { return &___Path_2; } inline void set_Path_2(String_t* value) { ___Path_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Path_2), (void*)value); } inline static int32_t get_offset_of_Included_3() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Included_3)); } inline bool get_Included_3() const { return ___Included_3; } inline bool* get_address_of_Included_3() { return &___Included_3; } inline void set_Included_3(bool value) { ___Included_3 = value; } inline static int32_t get_offset_of_BuildIndex_4() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___BuildIndex_4)); } inline int32_t get_BuildIndex_4() const { return ___BuildIndex_4; } inline int32_t* get_address_of_BuildIndex_4() { return &___BuildIndex_4; } inline void set_BuildIndex_4(int32_t value) { ___BuildIndex_4 = value; } inline static int32_t get_offset_of_Tag_5() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Tag_5)); } inline String_t* get_Tag_5() const { return ___Tag_5; } inline String_t** get_address_of_Tag_5() { return &___Tag_5; } inline void set_Tag_5(String_t* value) { ___Tag_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Tag_5), (void*)value); } inline static int32_t get_offset_of_Asset_6() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Asset_6)); } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_Asset_6() const { return ___Asset_6; } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_Asset_6() { return &___Asset_6; } inline void set_Asset_6(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value) { ___Asset_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Asset_6), (void*)value); } }; struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_StaticFields { public: // Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::empty SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE ___empty_0; public: inline static int32_t get_offset_of_empty_0() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_StaticFields, ___empty_0)); } inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE get_empty_0() const { return ___empty_0; } inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE * get_address_of_empty_0() { return &___empty_0; } inline void set_empty_0(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE value) { ___empty_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___empty_0))->___Name_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___empty_0))->___Path_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___empty_0))->___Tag_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___empty_0))->___Asset_6), (void*)NULL); #endif } }; // Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_marshaled_pinvoke { char* ___Name_1; char* ___Path_2; int32_t ___Included_3; int32_t ___BuildIndex_4; char* ___Tag_5; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___Asset_6; }; // Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_marshaled_com { Il2CppChar* ___Name_1; Il2CppChar* ___Path_2; int32_t ___Included_3; int32_t ___BuildIndex_4; Il2CppChar* ___Tag_5; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___Asset_6; }; // Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver struct BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9 : public BaseDataProvider_t62035BEE793ABE4C6359BCDBEB30CED3AEAC2C70 { public: // Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessSystem Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<SpatialAwarenessSystem>k__BackingField RuntimeObject* ___U3CSpatialAwarenessSystemU3Ek__BackingField_7; // System.UInt32 Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<SourceId>k__BackingField uint32_t ___U3CSourceIdU3Ek__BackingField_8; // System.String Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<SourceName>k__BackingField String_t* ___U3CSourceNameU3Ek__BackingField_9; // Microsoft.MixedReality.Toolkit.Utilities.AutoStartBehavior Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<StartupBehavior>k__BackingField int32_t ___U3CStartupBehaviorU3Ek__BackingField_10; // System.Int32 Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<DefaultPhysicsLayer>k__BackingField int32_t ___U3CDefaultPhysicsLayerU3Ek__BackingField_11; // System.Boolean Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<IsRunning>k__BackingField bool ___U3CIsRunningU3Ek__BackingField_12; // System.Boolean Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<IsStationaryObserver>k__BackingField bool ___U3CIsStationaryObserverU3Ek__BackingField_13; // UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<ObserverRotation>k__BackingField Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___U3CObserverRotationU3Ek__BackingField_14; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<ObserverOrigin>k__BackingField Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CObserverOriginU3Ek__BackingField_15; // Microsoft.MixedReality.Toolkit.Utilities.VolumeType Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<ObserverVolumeType>k__BackingField int32_t ___U3CObserverVolumeTypeU3Ek__BackingField_16; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<ObservationExtents>k__BackingField Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CObservationExtentsU3Ek__BackingField_17; // System.Single Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialObserver::<UpdateInterval>k__BackingField float ___U3CUpdateIntervalU3Ek__BackingField_18; public: inline static int32_t get_offset_of_U3CSpatialAwarenessSystemU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CSpatialAwarenessSystemU3Ek__BackingField_7)); } inline RuntimeObject* get_U3CSpatialAwarenessSystemU3Ek__BackingField_7() const { return ___U3CSpatialAwarenessSystemU3Ek__BackingField_7; } inline RuntimeObject** get_address_of_U3CSpatialAwarenessSystemU3Ek__BackingField_7() { return &___U3CSpatialAwarenessSystemU3Ek__BackingField_7; } inline void set_U3CSpatialAwarenessSystemU3Ek__BackingField_7(RuntimeObject* value) { ___U3CSpatialAwarenessSystemU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSpatialAwarenessSystemU3Ek__BackingField_7), (void*)value); } inline static int32_t get_offset_of_U3CSourceIdU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CSourceIdU3Ek__BackingField_8)); } inline uint32_t get_U3CSourceIdU3Ek__BackingField_8() const { return ___U3CSourceIdU3Ek__BackingField_8; } inline uint32_t* get_address_of_U3CSourceIdU3Ek__BackingField_8() { return &___U3CSourceIdU3Ek__BackingField_8; } inline void set_U3CSourceIdU3Ek__BackingField_8(uint32_t value) { ___U3CSourceIdU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CSourceNameU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CSourceNameU3Ek__BackingField_9)); } inline String_t* get_U3CSourceNameU3Ek__BackingField_9() const { return ___U3CSourceNameU3Ek__BackingField_9; } inline String_t** get_address_of_U3CSourceNameU3Ek__BackingField_9() { return &___U3CSourceNameU3Ek__BackingField_9; } inline void set_U3CSourceNameU3Ek__BackingField_9(String_t* value) { ___U3CSourceNameU3Ek__BackingField_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSourceNameU3Ek__BackingField_9), (void*)value); } inline static int32_t get_offset_of_U3CStartupBehaviorU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CStartupBehaviorU3Ek__BackingField_10)); } inline int32_t get_U3CStartupBehaviorU3Ek__BackingField_10() const { return ___U3CStartupBehaviorU3Ek__BackingField_10; } inline int32_t* get_address_of_U3CStartupBehaviorU3Ek__BackingField_10() { return &___U3CStartupBehaviorU3Ek__BackingField_10; } inline void set_U3CStartupBehaviorU3Ek__BackingField_10(int32_t value) { ___U3CStartupBehaviorU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CDefaultPhysicsLayerU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CDefaultPhysicsLayerU3Ek__BackingField_11)); } inline int32_t get_U3CDefaultPhysicsLayerU3Ek__BackingField_11() const { return ___U3CDefaultPhysicsLayerU3Ek__BackingField_11; } inline int32_t* get_address_of_U3CDefaultPhysicsLayerU3Ek__BackingField_11() { return &___U3CDefaultPhysicsLayerU3Ek__BackingField_11; } inline void set_U3CDefaultPhysicsLayerU3Ek__BackingField_11(int32_t value) { ___U3CDefaultPhysicsLayerU3Ek__BackingField_11 = value; } inline static int32_t get_offset_of_U3CIsRunningU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CIsRunningU3Ek__BackingField_12)); } inline bool get_U3CIsRunningU3Ek__BackingField_12() const { return ___U3CIsRunningU3Ek__BackingField_12; } inline bool* get_address_of_U3CIsRunningU3Ek__BackingField_12() { return &___U3CIsRunningU3Ek__BackingField_12; } inline void set_U3CIsRunningU3Ek__BackingField_12(bool value) { ___U3CIsRunningU3Ek__BackingField_12 = value; } inline static int32_t get_offset_of_U3CIsStationaryObserverU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CIsStationaryObserverU3Ek__BackingField_13)); } inline bool get_U3CIsStationaryObserverU3Ek__BackingField_13() const { return ___U3CIsStationaryObserverU3Ek__BackingField_13; } inline bool* get_address_of_U3CIsStationaryObserverU3Ek__BackingField_13() { return &___U3CIsStationaryObserverU3Ek__BackingField_13; } inline void set_U3CIsStationaryObserverU3Ek__BackingField_13(bool value) { ___U3CIsStationaryObserverU3Ek__BackingField_13 = value; } inline static int32_t get_offset_of_U3CObserverRotationU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CObserverRotationU3Ek__BackingField_14)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_U3CObserverRotationU3Ek__BackingField_14() const { return ___U3CObserverRotationU3Ek__BackingField_14; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_U3CObserverRotationU3Ek__BackingField_14() { return &___U3CObserverRotationU3Ek__BackingField_14; } inline void set_U3CObserverRotationU3Ek__BackingField_14(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___U3CObserverRotationU3Ek__BackingField_14 = value; } inline static int32_t get_offset_of_U3CObserverOriginU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CObserverOriginU3Ek__BackingField_15)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CObserverOriginU3Ek__BackingField_15() const { return ___U3CObserverOriginU3Ek__BackingField_15; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CObserverOriginU3Ek__BackingField_15() { return &___U3CObserverOriginU3Ek__BackingField_15; } inline void set_U3CObserverOriginU3Ek__BackingField_15(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___U3CObserverOriginU3Ek__BackingField_15 = value; } inline static int32_t get_offset_of_U3CObserverVolumeTypeU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CObserverVolumeTypeU3Ek__BackingField_16)); } inline int32_t get_U3CObserverVolumeTypeU3Ek__BackingField_16() const { return ___U3CObserverVolumeTypeU3Ek__BackingField_16; } inline int32_t* get_address_of_U3CObserverVolumeTypeU3Ek__BackingField_16() { return &___U3CObserverVolumeTypeU3Ek__BackingField_16; } inline void set_U3CObserverVolumeTypeU3Ek__BackingField_16(int32_t value) { ___U3CObserverVolumeTypeU3Ek__BackingField_16 = value; } inline static int32_t get_offset_of_U3CObservationExtentsU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CObservationExtentsU3Ek__BackingField_17)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CObservationExtentsU3Ek__BackingField_17() const { return ___U3CObservationExtentsU3Ek__BackingField_17; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CObservationExtentsU3Ek__BackingField_17() { return &___U3CObservationExtentsU3Ek__BackingField_17; } inline void set_U3CObservationExtentsU3Ek__BackingField_17(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___U3CObservationExtentsU3Ek__BackingField_17 = value; } inline static int32_t get_offset_of_U3CUpdateIntervalU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9, ___U3CUpdateIntervalU3Ek__BackingField_18)); } inline float get_U3CUpdateIntervalU3Ek__BackingField_18() const { return ___U3CUpdateIntervalU3Ek__BackingField_18; } inline float* get_address_of_U3CUpdateIntervalU3Ek__BackingField_18() { return &___U3CUpdateIntervalU3Ek__BackingField_18; } inline void set_U3CUpdateIntervalU3Ek__BackingField_18(float value) { ___U3CUpdateIntervalU3Ek__BackingField_18 = value; } }; // Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem struct MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042 : public BaseCoreSystem_t1B04DCFA7545A86EAA41A8085969CD32B674EF7F { public: // Microsoft.MixedReality.Toolkit.Teleport.TeleportEventData Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::teleportEventData TeleportEventData_tA40B4A166AF712A56E9FC3F17166E4A8E904A2FF * ___teleportEventData_13; // System.Boolean Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::isTeleporting bool ___isTeleporting_14; // System.Boolean Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::isProcessingTeleportRequest bool ___isProcessingTeleportRequest_15; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::targetPosition Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___targetPosition_16; // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::targetRotation Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___targetRotation_17; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::eventSystemReference GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___eventSystemReference_18; // System.String Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_19; // System.Boolean Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::IsInputSystemEnabled bool ___IsInputSystemEnabled_20; // System.Single Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::teleportDuration float ___teleportDuration_21; public: inline static int32_t get_offset_of_teleportEventData_13() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___teleportEventData_13)); } inline TeleportEventData_tA40B4A166AF712A56E9FC3F17166E4A8E904A2FF * get_teleportEventData_13() const { return ___teleportEventData_13; } inline TeleportEventData_tA40B4A166AF712A56E9FC3F17166E4A8E904A2FF ** get_address_of_teleportEventData_13() { return &___teleportEventData_13; } inline void set_teleportEventData_13(TeleportEventData_tA40B4A166AF712A56E9FC3F17166E4A8E904A2FF * value) { ___teleportEventData_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___teleportEventData_13), (void*)value); } inline static int32_t get_offset_of_isTeleporting_14() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___isTeleporting_14)); } inline bool get_isTeleporting_14() const { return ___isTeleporting_14; } inline bool* get_address_of_isTeleporting_14() { return &___isTeleporting_14; } inline void set_isTeleporting_14(bool value) { ___isTeleporting_14 = value; } inline static int32_t get_offset_of_isProcessingTeleportRequest_15() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___isProcessingTeleportRequest_15)); } inline bool get_isProcessingTeleportRequest_15() const { return ___isProcessingTeleportRequest_15; } inline bool* get_address_of_isProcessingTeleportRequest_15() { return &___isProcessingTeleportRequest_15; } inline void set_isProcessingTeleportRequest_15(bool value) { ___isProcessingTeleportRequest_15 = value; } inline static int32_t get_offset_of_targetPosition_16() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___targetPosition_16)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_targetPosition_16() const { return ___targetPosition_16; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_targetPosition_16() { return &___targetPosition_16; } inline void set_targetPosition_16(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___targetPosition_16 = value; } inline static int32_t get_offset_of_targetRotation_17() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___targetRotation_17)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_targetRotation_17() const { return ___targetRotation_17; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_targetRotation_17() { return &___targetRotation_17; } inline void set_targetRotation_17(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___targetRotation_17 = value; } inline static int32_t get_offset_of_eventSystemReference_18() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___eventSystemReference_18)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_eventSystemReference_18() const { return ___eventSystemReference_18; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_eventSystemReference_18() { return &___eventSystemReference_18; } inline void set_eventSystemReference_18(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___eventSystemReference_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventSystemReference_18), (void*)value); } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___U3CNameU3Ek__BackingField_19)); } inline String_t* get_U3CNameU3Ek__BackingField_19() const { return ___U3CNameU3Ek__BackingField_19; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_19() { return &___U3CNameU3Ek__BackingField_19; } inline void set_U3CNameU3Ek__BackingField_19(String_t* value) { ___U3CNameU3Ek__BackingField_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_19), (void*)value); } inline static int32_t get_offset_of_IsInputSystemEnabled_20() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___IsInputSystemEnabled_20)); } inline bool get_IsInputSystemEnabled_20() const { return ___IsInputSystemEnabled_20; } inline bool* get_address_of_IsInputSystemEnabled_20() { return &___IsInputSystemEnabled_20; } inline void set_IsInputSystemEnabled_20(bool value) { ___IsInputSystemEnabled_20 = value; } inline static int32_t get_offset_of_teleportDuration_21() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042, ___teleportDuration_21)); } inline float get_teleportDuration_21() const { return ___teleportDuration_21; } inline float* get_address_of_teleportDuration_21() { return &___teleportDuration_21; } inline void set_teleportDuration_21(float value) { ___teleportDuration_21 = value; } }; struct MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_StaticFields { public: // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Teleport.IMixedRealityTeleportHandler> Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::OnTeleportRequestHandler EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * ___OnTeleportRequestHandler_22; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Teleport.IMixedRealityTeleportHandler> Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::OnTeleportStartedHandler EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * ___OnTeleportStartedHandler_23; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Teleport.IMixedRealityTeleportHandler> Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::OnTeleportCompletedHandler EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * ___OnTeleportCompletedHandler_24; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Teleport.IMixedRealityTeleportHandler> Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem::OnTeleportCanceledHandler EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * ___OnTeleportCanceledHandler_25; public: inline static int32_t get_offset_of_OnTeleportRequestHandler_22() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_StaticFields, ___OnTeleportRequestHandler_22)); } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * get_OnTeleportRequestHandler_22() const { return ___OnTeleportRequestHandler_22; } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 ** get_address_of_OnTeleportRequestHandler_22() { return &___OnTeleportRequestHandler_22; } inline void set_OnTeleportRequestHandler_22(EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * value) { ___OnTeleportRequestHandler_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTeleportRequestHandler_22), (void*)value); } inline static int32_t get_offset_of_OnTeleportStartedHandler_23() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_StaticFields, ___OnTeleportStartedHandler_23)); } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * get_OnTeleportStartedHandler_23() const { return ___OnTeleportStartedHandler_23; } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 ** get_address_of_OnTeleportStartedHandler_23() { return &___OnTeleportStartedHandler_23; } inline void set_OnTeleportStartedHandler_23(EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * value) { ___OnTeleportStartedHandler_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTeleportStartedHandler_23), (void*)value); } inline static int32_t get_offset_of_OnTeleportCompletedHandler_24() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_StaticFields, ___OnTeleportCompletedHandler_24)); } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * get_OnTeleportCompletedHandler_24() const { return ___OnTeleportCompletedHandler_24; } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 ** get_address_of_OnTeleportCompletedHandler_24() { return &___OnTeleportCompletedHandler_24; } inline void set_OnTeleportCompletedHandler_24(EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * value) { ___OnTeleportCompletedHandler_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTeleportCompletedHandler_24), (void*)value); } inline static int32_t get_offset_of_OnTeleportCanceledHandler_25() { return static_cast<int32_t>(offsetof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_StaticFields, ___OnTeleportCanceledHandler_25)); } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * get_OnTeleportCanceledHandler_25() const { return ___OnTeleportCanceledHandler_25; } inline EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 ** get_address_of_OnTeleportCanceledHandler_25() { return &___OnTeleportCanceledHandler_25; } inline void set_OnTeleportCanceledHandler_25(EventFunction_1_t98D18628139036636B6649C5B87EF8374D3A2759 * value) { ___OnTeleportCanceledHandler_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTeleportCanceledHandler_25), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider struct WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // System.Boolean Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::<IsListening>k__BackingField bool ___U3CIsListeningU3Ek__BackingField_8; // System.Boolean Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::hasFailed bool ___hasFailed_9; // System.Boolean Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::hasListener bool ___hasListener_10; // System.Boolean Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::isTransitioning bool ___isTransitioning_11; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSource Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::inputSource RuntimeObject* ___inputSource_12; // System.Text.StringBuilder Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::textSoFar StringBuilder_t * ___textSoFar_13; // System.String Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::deviceName String_t* ___deviceName_14; // System.Int32 Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::samplingRate int32_t ___samplingRate_15; // System.String Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::dictationResult String_t* ___dictationResult_16; // UnityEngine.AudioClip Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::dictationAudioClip AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * ___dictationAudioClip_17; // UnityEngine.WaitUntil Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::waitUntilPhraseRecognitionSystemHasStarted WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * ___waitUntilPhraseRecognitionSystemHasStarted_19; // UnityEngine.WaitUntil Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::waitUntilPhraseRecognitionSystemHasStopped WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * ___waitUntilPhraseRecognitionSystemHasStopped_20; // UnityEngine.WaitUntil Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::waitUntilDictationRecognizerHasStarted WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * ___waitUntilDictationRecognizerHasStarted_21; // UnityEngine.WaitUntil Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::waitUntilDictationRecognizerHasStopped WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * ___waitUntilDictationRecognizerHasStopped_22; public: inline static int32_t get_offset_of_U3CIsListeningU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___U3CIsListeningU3Ek__BackingField_8)); } inline bool get_U3CIsListeningU3Ek__BackingField_8() const { return ___U3CIsListeningU3Ek__BackingField_8; } inline bool* get_address_of_U3CIsListeningU3Ek__BackingField_8() { return &___U3CIsListeningU3Ek__BackingField_8; } inline void set_U3CIsListeningU3Ek__BackingField_8(bool value) { ___U3CIsListeningU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_hasFailed_9() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___hasFailed_9)); } inline bool get_hasFailed_9() const { return ___hasFailed_9; } inline bool* get_address_of_hasFailed_9() { return &___hasFailed_9; } inline void set_hasFailed_9(bool value) { ___hasFailed_9 = value; } inline static int32_t get_offset_of_hasListener_10() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___hasListener_10)); } inline bool get_hasListener_10() const { return ___hasListener_10; } inline bool* get_address_of_hasListener_10() { return &___hasListener_10; } inline void set_hasListener_10(bool value) { ___hasListener_10 = value; } inline static int32_t get_offset_of_isTransitioning_11() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___isTransitioning_11)); } inline bool get_isTransitioning_11() const { return ___isTransitioning_11; } inline bool* get_address_of_isTransitioning_11() { return &___isTransitioning_11; } inline void set_isTransitioning_11(bool value) { ___isTransitioning_11 = value; } inline static int32_t get_offset_of_inputSource_12() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___inputSource_12)); } inline RuntimeObject* get_inputSource_12() const { return ___inputSource_12; } inline RuntimeObject** get_address_of_inputSource_12() { return &___inputSource_12; } inline void set_inputSource_12(RuntimeObject* value) { ___inputSource_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputSource_12), (void*)value); } inline static int32_t get_offset_of_textSoFar_13() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___textSoFar_13)); } inline StringBuilder_t * get_textSoFar_13() const { return ___textSoFar_13; } inline StringBuilder_t ** get_address_of_textSoFar_13() { return &___textSoFar_13; } inline void set_textSoFar_13(StringBuilder_t * value) { ___textSoFar_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___textSoFar_13), (void*)value); } inline static int32_t get_offset_of_deviceName_14() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___deviceName_14)); } inline String_t* get_deviceName_14() const { return ___deviceName_14; } inline String_t** get_address_of_deviceName_14() { return &___deviceName_14; } inline void set_deviceName_14(String_t* value) { ___deviceName_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___deviceName_14), (void*)value); } inline static int32_t get_offset_of_samplingRate_15() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___samplingRate_15)); } inline int32_t get_samplingRate_15() const { return ___samplingRate_15; } inline int32_t* get_address_of_samplingRate_15() { return &___samplingRate_15; } inline void set_samplingRate_15(int32_t value) { ___samplingRate_15 = value; } inline static int32_t get_offset_of_dictationResult_16() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___dictationResult_16)); } inline String_t* get_dictationResult_16() const { return ___dictationResult_16; } inline String_t** get_address_of_dictationResult_16() { return &___dictationResult_16; } inline void set_dictationResult_16(String_t* value) { ___dictationResult_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictationResult_16), (void*)value); } inline static int32_t get_offset_of_dictationAudioClip_17() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___dictationAudioClip_17)); } inline AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * get_dictationAudioClip_17() const { return ___dictationAudioClip_17; } inline AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 ** get_address_of_dictationAudioClip_17() { return &___dictationAudioClip_17; } inline void set_dictationAudioClip_17(AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * value) { ___dictationAudioClip_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictationAudioClip_17), (void*)value); } inline static int32_t get_offset_of_waitUntilPhraseRecognitionSystemHasStarted_19() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___waitUntilPhraseRecognitionSystemHasStarted_19)); } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * get_waitUntilPhraseRecognitionSystemHasStarted_19() const { return ___waitUntilPhraseRecognitionSystemHasStarted_19; } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F ** get_address_of_waitUntilPhraseRecognitionSystemHasStarted_19() { return &___waitUntilPhraseRecognitionSystemHasStarted_19; } inline void set_waitUntilPhraseRecognitionSystemHasStarted_19(WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * value) { ___waitUntilPhraseRecognitionSystemHasStarted_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___waitUntilPhraseRecognitionSystemHasStarted_19), (void*)value); } inline static int32_t get_offset_of_waitUntilPhraseRecognitionSystemHasStopped_20() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___waitUntilPhraseRecognitionSystemHasStopped_20)); } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * get_waitUntilPhraseRecognitionSystemHasStopped_20() const { return ___waitUntilPhraseRecognitionSystemHasStopped_20; } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F ** get_address_of_waitUntilPhraseRecognitionSystemHasStopped_20() { return &___waitUntilPhraseRecognitionSystemHasStopped_20; } inline void set_waitUntilPhraseRecognitionSystemHasStopped_20(WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * value) { ___waitUntilPhraseRecognitionSystemHasStopped_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___waitUntilPhraseRecognitionSystemHasStopped_20), (void*)value); } inline static int32_t get_offset_of_waitUntilDictationRecognizerHasStarted_21() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___waitUntilDictationRecognizerHasStarted_21)); } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * get_waitUntilDictationRecognizerHasStarted_21() const { return ___waitUntilDictationRecognizerHasStarted_21; } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F ** get_address_of_waitUntilDictationRecognizerHasStarted_21() { return &___waitUntilDictationRecognizerHasStarted_21; } inline void set_waitUntilDictationRecognizerHasStarted_21(WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * value) { ___waitUntilDictationRecognizerHasStarted_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___waitUntilDictationRecognizerHasStarted_21), (void*)value); } inline static int32_t get_offset_of_waitUntilDictationRecognizerHasStopped_22() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8, ___waitUntilDictationRecognizerHasStopped_22)); } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * get_waitUntilDictationRecognizerHasStopped_22() const { return ___waitUntilDictationRecognizerHasStopped_22; } inline WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F ** get_address_of_waitUntilDictationRecognizerHasStopped_22() { return &___waitUntilDictationRecognizerHasStopped_22; } inline void set_waitUntilDictationRecognizerHasStopped_22(WaitUntil_t012561515C0E1D3DEA19DB3A05444B020C68E13F * value) { ___waitUntilDictationRecognizerHasStopped_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___waitUntilDictationRecognizerHasStopped_22), (void*)value); } }; struct WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_StaticFields { public: // UnityEngine.Windows.Speech.DictationRecognizer Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider::dictationRecognizer DictationRecognizer_tAABC39C7583FCB17ADB78BCE15E2E1AEFA85F355 * ___dictationRecognizer_18; public: inline static int32_t get_offset_of_dictationRecognizer_18() { return static_cast<int32_t>(offsetof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_StaticFields, ___dictationRecognizer_18)); } inline DictationRecognizer_tAABC39C7583FCB17ADB78BCE15E2E1AEFA85F355 * get_dictationRecognizer_18() const { return ___dictationRecognizer_18; } inline DictationRecognizer_tAABC39C7583FCB17ADB78BCE15E2E1AEFA85F355 ** get_address_of_dictationRecognizer_18() { return &___dictationRecognizer_18; } inline void set_dictationRecognizer_18(DictationRecognizer_tAABC39C7583FCB17ADB78BCE15E2E1AEFA85F355 * value) { ___dictationRecognizer_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictationRecognizer_18), (void*)value); } }; // Microsoft.MixedReality.Toolkit.Windows.Input.WindowsSpeechInputProvider struct WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSource Microsoft.MixedReality.Toolkit.Windows.Input.WindowsSpeechInputProvider::InputSource RuntimeObject* ___InputSource_8; // Microsoft.MixedReality.Toolkit.Utilities.RecognitionConfidenceLevel Microsoft.MixedReality.Toolkit.Windows.Input.WindowsSpeechInputProvider::<RecognitionConfidenceLevel>k__BackingField int32_t ___U3CRecognitionConfidenceLevelU3Ek__BackingField_9; // UnityEngine.Windows.Speech.KeywordRecognizer Microsoft.MixedReality.Toolkit.Windows.Input.WindowsSpeechInputProvider::keywordRecognizer KeywordRecognizer_t8F0A26BBF11FE0307328C06B4A9EB4268386578C * ___keywordRecognizer_10; public: inline static int32_t get_offset_of_InputSource_8() { return static_cast<int32_t>(offsetof(WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479, ___InputSource_8)); } inline RuntimeObject* get_InputSource_8() const { return ___InputSource_8; } inline RuntimeObject** get_address_of_InputSource_8() { return &___InputSource_8; } inline void set_InputSource_8(RuntimeObject* value) { ___InputSource_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___InputSource_8), (void*)value); } inline static int32_t get_offset_of_U3CRecognitionConfidenceLevelU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479, ___U3CRecognitionConfidenceLevelU3Ek__BackingField_9)); } inline int32_t get_U3CRecognitionConfidenceLevelU3Ek__BackingField_9() const { return ___U3CRecognitionConfidenceLevelU3Ek__BackingField_9; } inline int32_t* get_address_of_U3CRecognitionConfidenceLevelU3Ek__BackingField_9() { return &___U3CRecognitionConfidenceLevelU3Ek__BackingField_9; } inline void set_U3CRecognitionConfidenceLevelU3Ek__BackingField_9(int32_t value) { ___U3CRecognitionConfidenceLevelU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_keywordRecognizer_10() { return static_cast<int32_t>(offsetof(WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479, ___keywordRecognizer_10)); } inline KeywordRecognizer_t8F0A26BBF11FE0307328C06B4A9EB4268386578C * get_keywordRecognizer_10() const { return ___keywordRecognizer_10; } inline KeywordRecognizer_t8F0A26BBF11FE0307328C06B4A9EB4268386578C ** get_address_of_keywordRecognizer_10() { return &___keywordRecognizer_10; } inline void set_keywordRecognizer_10(KeywordRecognizer_t8F0A26BBF11FE0307328C06B4A9EB4268386578C * value) { ___keywordRecognizer_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___keywordRecognizer_10), (void*)value); } }; // Microsoft.MixedReality.Toolkit.WindowsMixedReality.WindowsMixedRealityCameraSettings struct WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99 : public BaseCameraSettingsProvider_t99681BF8F7DF479B33F9AB5F36D3FDE923AA34EB { public: // Microsoft.MixedReality.Toolkit.WindowsMixedReality.WindowsMixedRealityReprojectionUpdater Microsoft.MixedReality.Toolkit.WindowsMixedReality.WindowsMixedRealityCameraSettings::reprojectionUpdater WindowsMixedRealityReprojectionUpdater_t07903E0BB3907D681BDE7B8E43E61D11F67ABF03 * ___reprojectionUpdater_9; public: inline static int32_t get_offset_of_reprojectionUpdater_9() { return static_cast<int32_t>(offsetof(WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99, ___reprojectionUpdater_9)); } inline WindowsMixedRealityReprojectionUpdater_t07903E0BB3907D681BDE7B8E43E61D11F67ABF03 * get_reprojectionUpdater_9() const { return ___reprojectionUpdater_9; } inline WindowsMixedRealityReprojectionUpdater_t07903E0BB3907D681BDE7B8E43E61D11F67ABF03 ** get_address_of_reprojectionUpdater_9() { return &___reprojectionUpdater_9; } inline void set_reprojectionUpdater_9(WindowsMixedRealityReprojectionUpdater_t07903E0BB3907D681BDE7B8E43E61D11F67ABF03 * value) { ___reprojectionUpdater_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___reprojectionUpdater_9), (void*)value); } }; struct WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_StaticFields { public: // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.WindowsMixedRealityCameraSettings::isTryGetViewConfigurationSupported bool ___isTryGetViewConfigurationSupported_8; public: inline static int32_t get_offset_of_isTryGetViewConfigurationSupported_8() { return static_cast<int32_t>(offsetof(WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_StaticFields, ___isTryGetViewConfigurationSupported_8)); } inline bool get_isTryGetViewConfigurationSupported_8() const { return ___isTryGetViewConfigurationSupported_8; } inline bool* get_address_of_isTryGetViewConfigurationSupported_8() { return &___isTryGetViewConfigurationSupported_8; } inline void set_isTryGetViewConfigurationSupported_8(bool value) { ___isTryGetViewConfigurationSupported_8 = value; } }; // System.Nullable`1<UnityEngine.Ray> struct Nullable_1_t5C6FF4BB8DD1DB0820894DBF35EE86A3A7BE3779 { public: // T System.Nullable`1::value Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t5C6FF4BB8DD1DB0820894DBF35EE86A3A7BE3779, ___value_0)); } inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 get_value_0() const { return ___value_0; } inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * get_address_of_value_0() { return &___value_0; } inline void set_value_0(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t5C6FF4BB8DD1DB0820894DBF35EE86A3A7BE3779, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // TMPro.TMP_CharacterInfo struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 { public: // System.Char TMPro.TMP_CharacterInfo::character Il2CppChar ___character_0; // System.Int32 TMPro.TMP_CharacterInfo::index int32_t ___index_1; // System.Int32 TMPro.TMP_CharacterInfo::stringLength int32_t ___stringLength_2; // TMPro.TMP_TextElementType TMPro.TMP_CharacterInfo::elementType int32_t ___elementType_3; // TMPro.TMP_TextElement TMPro.TMP_CharacterInfo::textElement TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4; // TMPro.TMP_FontAsset TMPro.TMP_CharacterInfo::fontAsset TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5; // TMPro.TMP_SpriteAsset TMPro.TMP_CharacterInfo::spriteAsset TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6; // System.Int32 TMPro.TMP_CharacterInfo::spriteIndex int32_t ___spriteIndex_7; // UnityEngine.Material TMPro.TMP_CharacterInfo::material Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8; // System.Int32 TMPro.TMP_CharacterInfo::materialReferenceIndex int32_t ___materialReferenceIndex_9; // System.Boolean TMPro.TMP_CharacterInfo::isUsingAlternateTypeface bool ___isUsingAlternateTypeface_10; // System.Single TMPro.TMP_CharacterInfo::pointSize float ___pointSize_11; // System.Int32 TMPro.TMP_CharacterInfo::lineNumber int32_t ___lineNumber_12; // System.Int32 TMPro.TMP_CharacterInfo::pageNumber int32_t ___pageNumber_13; // System.Int32 TMPro.TMP_CharacterInfo::vertexIndex int32_t ___vertexIndex_14; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BL TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TL TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TR TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BR TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topLeft Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomLeft Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topRight Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomRight Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22; // System.Single TMPro.TMP_CharacterInfo::origin float ___origin_23; // System.Single TMPro.TMP_CharacterInfo::ascender float ___ascender_24; // System.Single TMPro.TMP_CharacterInfo::baseLine float ___baseLine_25; // System.Single TMPro.TMP_CharacterInfo::descender float ___descender_26; // System.Single TMPro.TMP_CharacterInfo::xAdvance float ___xAdvance_27; // System.Single TMPro.TMP_CharacterInfo::aspectRatio float ___aspectRatio_28; // System.Single TMPro.TMP_CharacterInfo::scale float ___scale_29; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::color Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::underlineColor Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::strikethroughColor Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::highlightColor Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33; // TMPro.FontStyles TMPro.TMP_CharacterInfo::style int32_t ___style_34; // System.Boolean TMPro.TMP_CharacterInfo::isVisible bool ___isVisible_35; public: inline static int32_t get_offset_of_character_0() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___character_0)); } inline Il2CppChar get_character_0() const { return ___character_0; } inline Il2CppChar* get_address_of_character_0() { return &___character_0; } inline void set_character_0(Il2CppChar value) { ___character_0 = value; } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_stringLength_2() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___stringLength_2)); } inline int32_t get_stringLength_2() const { return ___stringLength_2; } inline int32_t* get_address_of_stringLength_2() { return &___stringLength_2; } inline void set_stringLength_2(int32_t value) { ___stringLength_2 = value; } inline static int32_t get_offset_of_elementType_3() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___elementType_3)); } inline int32_t get_elementType_3() const { return ___elementType_3; } inline int32_t* get_address_of_elementType_3() { return &___elementType_3; } inline void set_elementType_3(int32_t value) { ___elementType_3 = value; } inline static int32_t get_offset_of_textElement_4() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___textElement_4)); } inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * get_textElement_4() const { return ___textElement_4; } inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 ** get_address_of_textElement_4() { return &___textElement_4; } inline void set_textElement_4(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * value) { ___textElement_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___textElement_4), (void*)value); } inline static int32_t get_offset_of_fontAsset_5() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___fontAsset_5)); } inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_fontAsset_5() const { return ___fontAsset_5; } inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_fontAsset_5() { return &___fontAsset_5; } inline void set_fontAsset_5(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value) { ___fontAsset_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___fontAsset_5), (void*)value); } inline static int32_t get_offset_of_spriteAsset_6() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___spriteAsset_6)); } inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_spriteAsset_6() const { return ___spriteAsset_6; } inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_spriteAsset_6() { return &___spriteAsset_6; } inline void set_spriteAsset_6(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value) { ___spriteAsset_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___spriteAsset_6), (void*)value); } inline static int32_t get_offset_of_spriteIndex_7() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___spriteIndex_7)); } inline int32_t get_spriteIndex_7() const { return ___spriteIndex_7; } inline int32_t* get_address_of_spriteIndex_7() { return &___spriteIndex_7; } inline void set_spriteIndex_7(int32_t value) { ___spriteIndex_7 = value; } inline static int32_t get_offset_of_material_8() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___material_8)); } inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_material_8() const { return ___material_8; } inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_material_8() { return &___material_8; } inline void set_material_8(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value) { ___material_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___material_8), (void*)value); } inline static int32_t get_offset_of_materialReferenceIndex_9() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___materialReferenceIndex_9)); } inline int32_t get_materialReferenceIndex_9() const { return ___materialReferenceIndex_9; } inline int32_t* get_address_of_materialReferenceIndex_9() { return &___materialReferenceIndex_9; } inline void set_materialReferenceIndex_9(int32_t value) { ___materialReferenceIndex_9 = value; } inline static int32_t get_offset_of_isUsingAlternateTypeface_10() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___isUsingAlternateTypeface_10)); } inline bool get_isUsingAlternateTypeface_10() const { return ___isUsingAlternateTypeface_10; } inline bool* get_address_of_isUsingAlternateTypeface_10() { return &___isUsingAlternateTypeface_10; } inline void set_isUsingAlternateTypeface_10(bool value) { ___isUsingAlternateTypeface_10 = value; } inline static int32_t get_offset_of_pointSize_11() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___pointSize_11)); } inline float get_pointSize_11() const { return ___pointSize_11; } inline float* get_address_of_pointSize_11() { return &___pointSize_11; } inline void set_pointSize_11(float value) { ___pointSize_11 = value; } inline static int32_t get_offset_of_lineNumber_12() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___lineNumber_12)); } inline int32_t get_lineNumber_12() const { return ___lineNumber_12; } inline int32_t* get_address_of_lineNumber_12() { return &___lineNumber_12; } inline void set_lineNumber_12(int32_t value) { ___lineNumber_12 = value; } inline static int32_t get_offset_of_pageNumber_13() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___pageNumber_13)); } inline int32_t get_pageNumber_13() const { return ___pageNumber_13; } inline int32_t* get_address_of_pageNumber_13() { return &___pageNumber_13; } inline void set_pageNumber_13(int32_t value) { ___pageNumber_13 = value; } inline static int32_t get_offset_of_vertexIndex_14() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertexIndex_14)); } inline int32_t get_vertexIndex_14() const { return ___vertexIndex_14; } inline int32_t* get_address_of_vertexIndex_14() { return &___vertexIndex_14; } inline void set_vertexIndex_14(int32_t value) { ___vertexIndex_14 = value; } inline static int32_t get_offset_of_vertex_BL_15() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_BL_15)); } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_BL_15() const { return ___vertex_BL_15; } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_BL_15() { return &___vertex_BL_15; } inline void set_vertex_BL_15(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value) { ___vertex_BL_15 = value; } inline static int32_t get_offset_of_vertex_TL_16() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_TL_16)); } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_TL_16() const { return ___vertex_TL_16; } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_TL_16() { return &___vertex_TL_16; } inline void set_vertex_TL_16(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value) { ___vertex_TL_16 = value; } inline static int32_t get_offset_of_vertex_TR_17() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_TR_17)); } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_TR_17() const { return ___vertex_TR_17; } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_TR_17() { return &___vertex_TR_17; } inline void set_vertex_TR_17(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value) { ___vertex_TR_17 = value; } inline static int32_t get_offset_of_vertex_BR_18() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_BR_18)); } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_BR_18() const { return ___vertex_BR_18; } inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_BR_18() { return &___vertex_BR_18; } inline void set_vertex_BR_18(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value) { ___vertex_BR_18 = value; } inline static int32_t get_offset_of_topLeft_19() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___topLeft_19)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_topLeft_19() const { return ___topLeft_19; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_topLeft_19() { return &___topLeft_19; } inline void set_topLeft_19(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___topLeft_19 = value; } inline static int32_t get_offset_of_bottomLeft_20() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___bottomLeft_20)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_bottomLeft_20() const { return ___bottomLeft_20; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_bottomLeft_20() { return &___bottomLeft_20; } inline void set_bottomLeft_20(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___bottomLeft_20 = value; } inline static int32_t get_offset_of_topRight_21() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___topRight_21)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_topRight_21() const { return ___topRight_21; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_topRight_21() { return &___topRight_21; } inline void set_topRight_21(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___topRight_21 = value; } inline static int32_t get_offset_of_bottomRight_22() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___bottomRight_22)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_bottomRight_22() const { return ___bottomRight_22; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_bottomRight_22() { return &___bottomRight_22; } inline void set_bottomRight_22(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___bottomRight_22 = value; } inline static int32_t get_offset_of_origin_23() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___origin_23)); } inline float get_origin_23() const { return ___origin_23; } inline float* get_address_of_origin_23() { return &___origin_23; } inline void set_origin_23(float value) { ___origin_23 = value; } inline static int32_t get_offset_of_ascender_24() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___ascender_24)); } inline float get_ascender_24() const { return ___ascender_24; } inline float* get_address_of_ascender_24() { return &___ascender_24; } inline void set_ascender_24(float value) { ___ascender_24 = value; } inline static int32_t get_offset_of_baseLine_25() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___baseLine_25)); } inline float get_baseLine_25() const { return ___baseLine_25; } inline float* get_address_of_baseLine_25() { return &___baseLine_25; } inline void set_baseLine_25(float value) { ___baseLine_25 = value; } inline static int32_t get_offset_of_descender_26() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___descender_26)); } inline float get_descender_26() const { return ___descender_26; } inline float* get_address_of_descender_26() { return &___descender_26; } inline void set_descender_26(float value) { ___descender_26 = value; } inline static int32_t get_offset_of_xAdvance_27() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___xAdvance_27)); } inline float get_xAdvance_27() const { return ___xAdvance_27; } inline float* get_address_of_xAdvance_27() { return &___xAdvance_27; } inline void set_xAdvance_27(float value) { ___xAdvance_27 = value; } inline static int32_t get_offset_of_aspectRatio_28() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___aspectRatio_28)); } inline float get_aspectRatio_28() const { return ___aspectRatio_28; } inline float* get_address_of_aspectRatio_28() { return &___aspectRatio_28; } inline void set_aspectRatio_28(float value) { ___aspectRatio_28 = value; } inline static int32_t get_offset_of_scale_29() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___scale_29)); } inline float get_scale_29() const { return ___scale_29; } inline float* get_address_of_scale_29() { return &___scale_29; } inline void set_scale_29(float value) { ___scale_29 = value; } inline static int32_t get_offset_of_color_30() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___color_30)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_30() const { return ___color_30; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_30() { return &___color_30; } inline void set_color_30(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___color_30 = value; } inline static int32_t get_offset_of_underlineColor_31() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___underlineColor_31)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_underlineColor_31() const { return ___underlineColor_31; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_underlineColor_31() { return &___underlineColor_31; } inline void set_underlineColor_31(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___underlineColor_31 = value; } inline static int32_t get_offset_of_strikethroughColor_32() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___strikethroughColor_32)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_strikethroughColor_32() const { return ___strikethroughColor_32; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_strikethroughColor_32() { return &___strikethroughColor_32; } inline void set_strikethroughColor_32(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___strikethroughColor_32 = value; } inline static int32_t get_offset_of_highlightColor_33() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___highlightColor_33)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_highlightColor_33() const { return ___highlightColor_33; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_highlightColor_33() { return &___highlightColor_33; } inline void set_highlightColor_33(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___highlightColor_33 = value; } inline static int32_t get_offset_of_style_34() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___style_34)); } inline int32_t get_style_34() const { return ___style_34; } inline int32_t* get_address_of_style_34() { return &___style_34; } inline void set_style_34(int32_t value) { ___style_34 = value; } inline static int32_t get_offset_of_isVisible_35() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___isVisible_35)); } inline bool get_isVisible_35() const { return ___isVisible_35; } inline bool* get_address_of_isVisible_35() { return &___isVisible_35; } inline void set_isVisible_35(bool value) { ___isVisible_35 = value; } }; // Native definition for P/Invoke marshalling of TMPro.TMP_CharacterInfo struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_marshaled_pinvoke { uint8_t ___character_0; int32_t ___index_1; int32_t ___stringLength_2; int32_t ___elementType_3; TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4; TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5; TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6; int32_t ___spriteIndex_7; Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8; int32_t ___materialReferenceIndex_9; int32_t ___isUsingAlternateTypeface_10; float ___pointSize_11; int32_t ___lineNumber_12; int32_t ___pageNumber_13; int32_t ___vertexIndex_14; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22; float ___origin_23; float ___ascender_24; float ___baseLine_25; float ___descender_26; float ___xAdvance_27; float ___aspectRatio_28; float ___scale_29; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33; int32_t ___style_34; int32_t ___isVisible_35; }; // Native definition for COM marshalling of TMPro.TMP_CharacterInfo struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_marshaled_com { uint8_t ___character_0; int32_t ___index_1; int32_t ___stringLength_2; int32_t ___elementType_3; TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4; TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5; TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6; int32_t ___spriteIndex_7; Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8; int32_t ___materialReferenceIndex_9; int32_t ___isUsingAlternateTypeface_10; float ___pointSize_11; int32_t ___lineNumber_12; int32_t ___pageNumber_13; int32_t ___vertexIndex_14; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17; TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22; float ___origin_23; float ___ascender_24; float ___baseLine_25; float ___descender_26; float ___xAdvance_27; float ___aspectRatio_28; float ___scale_29; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33; int32_t ___style_34; int32_t ___isVisible_35; }; // TMPro.TMP_MeshInfo struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E { public: // UnityEngine.Mesh TMPro.TMP_MeshInfo::mesh Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4; // System.Int32 TMPro.TMP_MeshInfo::vertexCount int32_t ___vertexCount_5; // UnityEngine.Vector3[] TMPro.TMP_MeshInfo::vertices Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___vertices_6; // UnityEngine.Vector3[] TMPro.TMP_MeshInfo::normals Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___normals_7; // UnityEngine.Vector4[] TMPro.TMP_MeshInfo::tangents Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___tangents_8; // UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs0 Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___uvs0_9; // UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs2 Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___uvs2_10; // UnityEngine.Color32[] TMPro.TMP_MeshInfo::colors32 Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___colors32_11; // System.Int32[] TMPro.TMP_MeshInfo::triangles Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___triangles_12; public: inline static int32_t get_offset_of_mesh_4() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___mesh_4)); } inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_mesh_4() const { return ___mesh_4; } inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_mesh_4() { return &___mesh_4; } inline void set_mesh_4(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value) { ___mesh_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___mesh_4), (void*)value); } inline static int32_t get_offset_of_vertexCount_5() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___vertexCount_5)); } inline int32_t get_vertexCount_5() const { return ___vertexCount_5; } inline int32_t* get_address_of_vertexCount_5() { return &___vertexCount_5; } inline void set_vertexCount_5(int32_t value) { ___vertexCount_5 = value; } inline static int32_t get_offset_of_vertices_6() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___vertices_6)); } inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_vertices_6() const { return ___vertices_6; } inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_vertices_6() { return &___vertices_6; } inline void set_vertices_6(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value) { ___vertices_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___vertices_6), (void*)value); } inline static int32_t get_offset_of_normals_7() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___normals_7)); } inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_normals_7() const { return ___normals_7; } inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_normals_7() { return &___normals_7; } inline void set_normals_7(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value) { ___normals_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___normals_7), (void*)value); } inline static int32_t get_offset_of_tangents_8() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___tangents_8)); } inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* get_tangents_8() const { return ___tangents_8; } inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** get_address_of_tangents_8() { return &___tangents_8; } inline void set_tangents_8(Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* value) { ___tangents_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___tangents_8), (void*)value); } inline static int32_t get_offset_of_uvs0_9() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___uvs0_9)); } inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_uvs0_9() const { return ___uvs0_9; } inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_uvs0_9() { return &___uvs0_9; } inline void set_uvs0_9(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value) { ___uvs0_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___uvs0_9), (void*)value); } inline static int32_t get_offset_of_uvs2_10() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___uvs2_10)); } inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_uvs2_10() const { return ___uvs2_10; } inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_uvs2_10() { return &___uvs2_10; } inline void set_uvs2_10(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value) { ___uvs2_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___uvs2_10), (void*)value); } inline static int32_t get_offset_of_colors32_11() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___colors32_11)); } inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* get_colors32_11() const { return ___colors32_11; } inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** get_address_of_colors32_11() { return &___colors32_11; } inline void set_colors32_11(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* value) { ___colors32_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___colors32_11), (void*)value); } inline static int32_t get_offset_of_triangles_12() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___triangles_12)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_triangles_12() const { return ___triangles_12; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_triangles_12() { return &___triangles_12; } inline void set_triangles_12(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___triangles_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___triangles_12), (void*)value); } }; struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields { public: // UnityEngine.Color32 TMPro.TMP_MeshInfo::s_DefaultColor Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_0; // UnityEngine.Vector3 TMPro.TMP_MeshInfo::s_DefaultNormal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___s_DefaultNormal_1; // UnityEngine.Vector4 TMPro.TMP_MeshInfo::s_DefaultTangent Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_2; // UnityEngine.Bounds TMPro.TMP_MeshInfo::s_DefaultBounds Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___s_DefaultBounds_3; public: inline static int32_t get_offset_of_s_DefaultColor_0() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultColor_0)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_0() const { return ___s_DefaultColor_0; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_0() { return &___s_DefaultColor_0; } inline void set_s_DefaultColor_0(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___s_DefaultColor_0 = value; } inline static int32_t get_offset_of_s_DefaultNormal_1() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultNormal_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_s_DefaultNormal_1() const { return ___s_DefaultNormal_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_s_DefaultNormal_1() { return &___s_DefaultNormal_1; } inline void set_s_DefaultNormal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___s_DefaultNormal_1 = value; } inline static int32_t get_offset_of_s_DefaultTangent_2() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultTangent_2)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_2() const { return ___s_DefaultTangent_2; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_2() { return &___s_DefaultTangent_2; } inline void set_s_DefaultTangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___s_DefaultTangent_2 = value; } inline static int32_t get_offset_of_s_DefaultBounds_3() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultBounds_3)); } inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_s_DefaultBounds_3() const { return ___s_DefaultBounds_3; } inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_s_DefaultBounds_3() { return &___s_DefaultBounds_3; } inline void set_s_DefaultBounds_3(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value) { ___s_DefaultBounds_3 = value; } }; // Native definition for P/Invoke marshalling of TMPro.TMP_MeshInfo struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_marshaled_pinvoke { Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4; int32_t ___vertexCount_5; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___vertices_6; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___normals_7; Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * ___tangents_8; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs0_9; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs2_10; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * ___colors32_11; Il2CppSafeArray/*NONE*/* ___triangles_12; }; // Native definition for COM marshalling of TMPro.TMP_MeshInfo struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_marshaled_com { Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4; int32_t ___vertexCount_5; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___vertices_6; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___normals_7; Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * ___tangents_8; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs0_9; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs2_10; Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * ___colors32_11; Il2CppSafeArray/*NONE*/* ___triangles_12; }; // Windows.Foundation.IPropertyValue struct NOVTABLE IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) = 0; virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Metadata.MarshalingType> struct NOVTABLE IReference_1_tAED774804E022955C705DD94598B4447B0142C06 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m1DF83BE7461C683CF165E03BC4915F4FFC2690C6(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Metadata.ThreadingModel> struct NOVTABLE IReference_1_tA168AABD94AF22150BA9FF1C22BB9D589944D6FD : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m7AA4C5DD3527F1B19462C726F511D88FC12FBE6B(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.PropertyType> struct NOVTABLE IReference_1_t13454E63971AE5A60B6BCF6FF56A963D17B7DFB1 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m03DA6CDF5117537DE41F422D686269BF50DA50C6(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Graphics.Holographic.HolographicViewConfigurationKind> struct NOVTABLE IReference_1_t4A64C896CF2288B6686C7D1BC6291F0D4235DFB4 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mB500DD4EC51CF23CA8B4D79F9CBF5E4C254AB0E1(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Perception.People.HandJointKind> struct NOVTABLE IReference_1_t780BBB80E92AF8378F3A92CFF2EF960067492AFA : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mAE5A8F99060F1DC39B04303111B9B0936CF2EE59(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Perception.People.HandMeshVertex> struct NOVTABLE IReference_1_t0D003B77C43341B97E803664305892C337680D66 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mE6C0B7EE13DDE444F05495C7D1FB93F46BD4B1A9(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Perception.People.JointPoseAccuracy> struct NOVTABLE IReference_1_t3507A4A6F8BCB1E6CC3304154FC8E98C281B9E89 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m1CF326D0DC7E3C56CE53356E28D6DB71110F7928(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Perception.Spatial.SpatialRay> struct NOVTABLE IReference_1_t86600D3AF8A08C86C54864E09EABBE5FDDD8D699 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m6C23125A016E1F5E4169DEDCBDCC3031D03BE8DD(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Storage.CreationCollisionOption> struct NOVTABLE IReference_1_tF7295EBC968A80454550BB2DFEBDE7FDA5F935F6 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mD022CF12AFA037E3A391C619D1DF5926221967A4(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Storage.Streams.InputStreamOptions> struct NOVTABLE IReference_1_t4D805BBA32CE3FB48729C326E9DCD206E80E52DC : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m29DABAFAF45FE5B35150EB56DB1AC7608AC04108(uint32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.UI.Input.GazeInputAccessStatus> struct NOVTABLE IReference_1_tBBC4EF47CF4A6A0E2BD1866D2AE894B995663CE0 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m9952B601AF3C6D205C72E5DA9AEDDB03A369E4EF(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.UI.Input.Spatial.SpatialInteractionSourceKind> struct NOVTABLE IReference_1_tD7D4DF1EB42B5D52DD9D400814D7D3093F09B8DA : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mF64790DEC6FF93C719750283EA8C9CFB1EA82AE0(int32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.UI.Xaml.Interop.TypeKind> struct NOVTABLE IReference_1_tC5997DB9C48F0D04F8FD9B6E0E05E0D1AD700882 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m36783109B74EB29CB28AF73DD7E207957146F018(int32_t* comReturnValue) = 0; }; // Windows.Foundation.Metadata.AttributeTargets struct AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7 { public: // System.UInt32 Windows.Foundation.Metadata.AttributeTargets::value__ uint32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7, ___value___2)); } inline uint32_t get_value___2() const { return ___value___2; } inline uint32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint32_t value) { ___value___2 = value; } }; // Windows.Perception.People.JointPose struct JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE { public: // System.Numerics.Quaternion Windows.Perception.People.JointPose::Orientation Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A ___Orientation_0; // System.Numerics.Vector3 Windows.Perception.People.JointPose::Position Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Position_1; // System.Single Windows.Perception.People.JointPose::Radius float ___Radius_2; // Windows.Perception.People.JointPoseAccuracy Windows.Perception.People.JointPose::Accuracy int32_t ___Accuracy_3; public: inline static int32_t get_offset_of_Orientation_0() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Orientation_0)); } inline Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A get_Orientation_0() const { return ___Orientation_0; } inline Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A * get_address_of_Orientation_0() { return &___Orientation_0; } inline void set_Orientation_0(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A value) { ___Orientation_0 = value; } inline static int32_t get_offset_of_Position_1() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Position_1)); } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Position_1() const { return ___Position_1; } inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Position_1() { return &___Position_1; } inline void set_Position_1(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value) { ___Position_1 = value; } inline static int32_t get_offset_of_Radius_2() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Radius_2)); } inline float get_Radius_2() const { return ___Radius_2; } inline float* get_address_of_Radius_2() { return &___Radius_2; } inline void set_Radius_2(float value) { ___Radius_2 = value; } inline static int32_t get_offset_of_Accuracy_3() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Accuracy_3)); } inline int32_t get_Accuracy_3() const { return ___Accuracy_3; } inline int32_t* get_address_of_Accuracy_3() { return &___Accuracy_3; } inline void set_Accuracy_3(int32_t value) { ___Accuracy_3 = value; } }; // Windows.UI.Xaml.Interop.TypeName struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC { public: // System.String Windows.UI.Xaml.Interop.TypeName::Name String_t* ___Name_0; // Windows.UI.Xaml.Interop.TypeKind Windows.UI.Xaml.Interop.TypeName::Kind int32_t ___Kind_1; public: inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC, ___Name_0)); } inline String_t* get_Name_0() const { return ___Name_0; } inline String_t** get_address_of_Name_0() { return &___Name_0; } inline void set_Name_0(String_t* value) { ___Name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value); } inline static int32_t get_offset_of_Kind_1() { return static_cast<int32_t>(offsetof(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC, ___Kind_1)); } inline int32_t get_Kind_1() const { return ___Kind_1; } inline int32_t* get_address_of_Kind_1() { return &___Kind_1; } inline void set_Kind_1(int32_t value) { ___Kind_1 = value; } }; // Native definition for P/Invoke marshalling of Windows.UI.Xaml.Interop.TypeName struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_pinvoke { char* ___Name_0; int32_t ___Kind_1; }; // Native definition for COM marshalling of Windows.UI.Xaml.Interop.TypeName struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_com { Il2CppChar* ___Name_0; int32_t ___Kind_1; }; // Native definition for Windows Runtime marshalling of Windows.UI.Xaml.Interop.TypeName struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime { Il2CppHString ___Name_0; int32_t ___Kind_1; }; // Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem struct MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3 : public BaseDataProviderAccessCoreSystem_tC631B03A0E5D5616C151D727C004752FB667964A { public: // System.String Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_14; // System.UInt32 Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem::<SourceId>k__BackingField uint32_t ___U3CSourceIdU3Ek__BackingField_15; // System.String Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem::<SourceName>k__BackingField String_t* ___U3CSourceNameU3Ek__BackingField_16; // Microsoft.MixedReality.Toolkit.CameraSystem.DisplayType Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem::currentDisplayType int32_t ___currentDisplayType_17; // System.Boolean Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem::cameraOpaqueLastFrame bool ___cameraOpaqueLastFrame_18; // System.Boolean Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem::useFallbackBehavior bool ___useFallbackBehavior_19; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3, ___U3CNameU3Ek__BackingField_14)); } inline String_t* get_U3CNameU3Ek__BackingField_14() const { return ___U3CNameU3Ek__BackingField_14; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_14() { return &___U3CNameU3Ek__BackingField_14; } inline void set_U3CNameU3Ek__BackingField_14(String_t* value) { ___U3CNameU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_14), (void*)value); } inline static int32_t get_offset_of_U3CSourceIdU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3, ___U3CSourceIdU3Ek__BackingField_15)); } inline uint32_t get_U3CSourceIdU3Ek__BackingField_15() const { return ___U3CSourceIdU3Ek__BackingField_15; } inline uint32_t* get_address_of_U3CSourceIdU3Ek__BackingField_15() { return &___U3CSourceIdU3Ek__BackingField_15; } inline void set_U3CSourceIdU3Ek__BackingField_15(uint32_t value) { ___U3CSourceIdU3Ek__BackingField_15 = value; } inline static int32_t get_offset_of_U3CSourceNameU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3, ___U3CSourceNameU3Ek__BackingField_16)); } inline String_t* get_U3CSourceNameU3Ek__BackingField_16() const { return ___U3CSourceNameU3Ek__BackingField_16; } inline String_t** get_address_of_U3CSourceNameU3Ek__BackingField_16() { return &___U3CSourceNameU3Ek__BackingField_16; } inline void set_U3CSourceNameU3Ek__BackingField_16(String_t* value) { ___U3CSourceNameU3Ek__BackingField_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSourceNameU3Ek__BackingField_16), (void*)value); } inline static int32_t get_offset_of_currentDisplayType_17() { return static_cast<int32_t>(offsetof(MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3, ___currentDisplayType_17)); } inline int32_t get_currentDisplayType_17() const { return ___currentDisplayType_17; } inline int32_t* get_address_of_currentDisplayType_17() { return &___currentDisplayType_17; } inline void set_currentDisplayType_17(int32_t value) { ___currentDisplayType_17 = value; } inline static int32_t get_offset_of_cameraOpaqueLastFrame_18() { return static_cast<int32_t>(offsetof(MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3, ___cameraOpaqueLastFrame_18)); } inline bool get_cameraOpaqueLastFrame_18() const { return ___cameraOpaqueLastFrame_18; } inline bool* get_address_of_cameraOpaqueLastFrame_18() { return &___cameraOpaqueLastFrame_18; } inline void set_cameraOpaqueLastFrame_18(bool value) { ___cameraOpaqueLastFrame_18 = value; } inline static int32_t get_offset_of_useFallbackBehavior_19() { return static_cast<int32_t>(offsetof(MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3, ___useFallbackBehavior_19)); } inline bool get_useFallbackBehavior_19() const { return ___useFallbackBehavior_19; } inline bool* get_address_of_useFallbackBehavior_19() { return &___useFallbackBehavior_19; } inline void set_useFallbackBehavior_19(bool value) { ___useFallbackBehavior_19 = value; } }; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem struct MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC : public BaseDataProviderAccessCoreSystem_tC631B03A0E5D5616C151D727C004752FB667964A { public: // System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_14; // System.Action Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::InputEnabled Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___InputEnabled_15; // System.Action Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::InputDisabled Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___InputDisabled_16; // System.Collections.Generic.HashSet`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputSource> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::<DetectedInputSources>k__BackingField HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE * ___U3CDetectedInputSourcesU3Ek__BackingField_17; // System.Collections.Generic.HashSet`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityController> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::<DetectedControllers>k__BackingField HashSet_1_t1D8C2DF20A0F70B7591B7AB01568F4E468BB5AF4 * ___U3CDetectedControllersU3Ek__BackingField_18; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystemProfile Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::inputSystemProfile MixedRealityInputSystemProfile_tAA40D456DE1359305601539F80E0D8CDFEEE9519 * ___inputSystemProfile_19; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityGazeProvider Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::<GazeProvider>k__BackingField RuntimeObject* ___U3CGazeProviderU3Ek__BackingField_20; // Microsoft.MixedReality.Toolkit.Input.IMixedRealityEyeGazeProvider Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::<EyeGazeProvider>k__BackingField RuntimeObject* ___U3CEyeGazeProviderU3Ek__BackingField_21; // System.Collections.Generic.Stack`1<UnityEngine.GameObject> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::modalInputStack Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC * ___modalInputStack_22; // System.Collections.Generic.Stack`1<UnityEngine.GameObject> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::fallbackInputStack Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC * ___fallbackInputStack_23; // System.Int32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::disabledRefCount int32_t ___disabledRefCount_24; // System.Boolean Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::isInputModuleAdded bool ___isInputModuleAdded_25; // Microsoft.MixedReality.Toolkit.Input.SourceStateEventData Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::sourceStateEventData SourceStateEventData_t16ECCDFFE1814B1AC194D6F993989B07935CF5EA * ___sourceStateEventData_26; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<Microsoft.MixedReality.Toolkit.TrackingState> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::sourceTrackingEventData SourcePoseEventData_1_tAA99CFE0B9D7AFB1BEB9015484F7A252CB009AA4 * ___sourceTrackingEventData_27; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<UnityEngine.Vector2> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::sourceVector2EventData SourcePoseEventData_1_tCDBBEBD47B2BFC8C2633ADE116950B18D1CFF1CB * ___sourceVector2EventData_28; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<UnityEngine.Vector3> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::sourcePositionEventData SourcePoseEventData_1_t48DF5031DB6E9038DFD20E552341C32098D3194C * ___sourcePositionEventData_29; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<UnityEngine.Quaternion> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::sourceRotationEventData SourcePoseEventData_1_t16464F0E3DBA87489D0BFD4F5245FF0C6B784A29 * ___sourceRotationEventData_30; // Microsoft.MixedReality.Toolkit.Input.SourcePoseEventData`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::sourcePoseEventData SourcePoseEventData_1_t61BF2975099D9EA57368187A24694A0D4930C3B1 * ___sourcePoseEventData_31; // Microsoft.MixedReality.Toolkit.Input.FocusEventData Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::focusEventData FocusEventData_t91249691522BA4DB3766F932D45A932D7EFAF893 * ___focusEventData_32; // Microsoft.MixedReality.Toolkit.Input.InputEventData Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::inputEventData InputEventData_tA8150C91AA91A8818A4B2198FAEA40758D7FA43C * ___inputEventData_33; // Microsoft.MixedReality.Toolkit.Input.MixedRealityPointerEventData Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::pointerEventData MixedRealityPointerEventData_t374A33C967ADF2F8C86742A246D5EB05969AAE5A * ___pointerEventData_34; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<System.Single> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::floatInputEventData InputEventData_1_t6D3CE4DE46748052EF8131D75337DD21365869F6 * ___floatInputEventData_35; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<UnityEngine.Vector2> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::vector2InputEventData InputEventData_1_t461B64C1E912DC090A4816E16627FAD022A92F66 * ___vector2InputEventData_36; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<UnityEngine.Vector3> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::positionInputEventData InputEventData_1_t0B4DCED891788FDA7558846E82F2E218895882F2 * ___positionInputEventData_37; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<UnityEngine.Quaternion> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::rotationInputEventData InputEventData_1_t5EEC0E129CAE8215347F788048320FD1D8E30BD9 * ___rotationInputEventData_38; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::poseInputEventData InputEventData_1_tEB6B24096D7E69FCA95428FB4F330EFC3094D053 * ___poseInputEventData_39; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<System.Collections.Generic.IDictionary`2<Microsoft.MixedReality.Toolkit.Utilities.TrackedHandJoint,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::jointPoseInputEventData InputEventData_1_t344495BA8CD035C2577A5822C4E2B94476907A39 * ___jointPoseInputEventData_40; // Microsoft.MixedReality.Toolkit.Input.InputEventData`1<Microsoft.MixedReality.Toolkit.Input.HandMeshInfo> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::handMeshInputEventData InputEventData_1_t0D86AE930E071F7A2D5B38A39C0685C41A765C47 * ___handMeshInputEventData_41; // Microsoft.MixedReality.Toolkit.Input.SpeechEventData Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::speechEventData SpeechEventData_tB4DE65AA03637CF14771BBF054409107ADDE24CC * ___speechEventData_42; // Microsoft.MixedReality.Toolkit.Input.DictationEventData Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::dictationEventData DictationEventData_t219F19EA61B790AAA7F4BA2CAA9C171C674EABAB * ___dictationEventData_43; // Microsoft.MixedReality.Toolkit.Input.HandTrackingInputEventData Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::handTrackingInputEventData HandTrackingInputEventData_tC1438ED6CE58976EF61D89A898683DBE876939F7 * ___handTrackingInputEventData_44; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputActionRulesProfile Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::<CurrentInputActionRulesProfile>k__BackingField MixedRealityInputActionRulesProfile_t6A800A4673BEBAED284A7E5ECC05EBB823796D11 * ___U3CCurrentInputActionRulesProfileU3Ek__BackingField_45; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___U3CNameU3Ek__BackingField_14)); } inline String_t* get_U3CNameU3Ek__BackingField_14() const { return ___U3CNameU3Ek__BackingField_14; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_14() { return &___U3CNameU3Ek__BackingField_14; } inline void set_U3CNameU3Ek__BackingField_14(String_t* value) { ___U3CNameU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_14), (void*)value); } inline static int32_t get_offset_of_InputEnabled_15() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___InputEnabled_15)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_InputEnabled_15() const { return ___InputEnabled_15; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_InputEnabled_15() { return &___InputEnabled_15; } inline void set_InputEnabled_15(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___InputEnabled_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___InputEnabled_15), (void*)value); } inline static int32_t get_offset_of_InputDisabled_16() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___InputDisabled_16)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_InputDisabled_16() const { return ___InputDisabled_16; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_InputDisabled_16() { return &___InputDisabled_16; } inline void set_InputDisabled_16(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___InputDisabled_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___InputDisabled_16), (void*)value); } inline static int32_t get_offset_of_U3CDetectedInputSourcesU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___U3CDetectedInputSourcesU3Ek__BackingField_17)); } inline HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE * get_U3CDetectedInputSourcesU3Ek__BackingField_17() const { return ___U3CDetectedInputSourcesU3Ek__BackingField_17; } inline HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE ** get_address_of_U3CDetectedInputSourcesU3Ek__BackingField_17() { return &___U3CDetectedInputSourcesU3Ek__BackingField_17; } inline void set_U3CDetectedInputSourcesU3Ek__BackingField_17(HashSet_1_t9656828C0203E9F46D677888E60070D3CA6D1CAE * value) { ___U3CDetectedInputSourcesU3Ek__BackingField_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDetectedInputSourcesU3Ek__BackingField_17), (void*)value); } inline static int32_t get_offset_of_U3CDetectedControllersU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___U3CDetectedControllersU3Ek__BackingField_18)); } inline HashSet_1_t1D8C2DF20A0F70B7591B7AB01568F4E468BB5AF4 * get_U3CDetectedControllersU3Ek__BackingField_18() const { return ___U3CDetectedControllersU3Ek__BackingField_18; } inline HashSet_1_t1D8C2DF20A0F70B7591B7AB01568F4E468BB5AF4 ** get_address_of_U3CDetectedControllersU3Ek__BackingField_18() { return &___U3CDetectedControllersU3Ek__BackingField_18; } inline void set_U3CDetectedControllersU3Ek__BackingField_18(HashSet_1_t1D8C2DF20A0F70B7591B7AB01568F4E468BB5AF4 * value) { ___U3CDetectedControllersU3Ek__BackingField_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDetectedControllersU3Ek__BackingField_18), (void*)value); } inline static int32_t get_offset_of_inputSystemProfile_19() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___inputSystemProfile_19)); } inline MixedRealityInputSystemProfile_tAA40D456DE1359305601539F80E0D8CDFEEE9519 * get_inputSystemProfile_19() const { return ___inputSystemProfile_19; } inline MixedRealityInputSystemProfile_tAA40D456DE1359305601539F80E0D8CDFEEE9519 ** get_address_of_inputSystemProfile_19() { return &___inputSystemProfile_19; } inline void set_inputSystemProfile_19(MixedRealityInputSystemProfile_tAA40D456DE1359305601539F80E0D8CDFEEE9519 * value) { ___inputSystemProfile_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputSystemProfile_19), (void*)value); } inline static int32_t get_offset_of_U3CGazeProviderU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___U3CGazeProviderU3Ek__BackingField_20)); } inline RuntimeObject* get_U3CGazeProviderU3Ek__BackingField_20() const { return ___U3CGazeProviderU3Ek__BackingField_20; } inline RuntimeObject** get_address_of_U3CGazeProviderU3Ek__BackingField_20() { return &___U3CGazeProviderU3Ek__BackingField_20; } inline void set_U3CGazeProviderU3Ek__BackingField_20(RuntimeObject* value) { ___U3CGazeProviderU3Ek__BackingField_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CGazeProviderU3Ek__BackingField_20), (void*)value); } inline static int32_t get_offset_of_U3CEyeGazeProviderU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___U3CEyeGazeProviderU3Ek__BackingField_21)); } inline RuntimeObject* get_U3CEyeGazeProviderU3Ek__BackingField_21() const { return ___U3CEyeGazeProviderU3Ek__BackingField_21; } inline RuntimeObject** get_address_of_U3CEyeGazeProviderU3Ek__BackingField_21() { return &___U3CEyeGazeProviderU3Ek__BackingField_21; } inline void set_U3CEyeGazeProviderU3Ek__BackingField_21(RuntimeObject* value) { ___U3CEyeGazeProviderU3Ek__BackingField_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEyeGazeProviderU3Ek__BackingField_21), (void*)value); } inline static int32_t get_offset_of_modalInputStack_22() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___modalInputStack_22)); } inline Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC * get_modalInputStack_22() const { return ___modalInputStack_22; } inline Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC ** get_address_of_modalInputStack_22() { return &___modalInputStack_22; } inline void set_modalInputStack_22(Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC * value) { ___modalInputStack_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___modalInputStack_22), (void*)value); } inline static int32_t get_offset_of_fallbackInputStack_23() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___fallbackInputStack_23)); } inline Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC * get_fallbackInputStack_23() const { return ___fallbackInputStack_23; } inline Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC ** get_address_of_fallbackInputStack_23() { return &___fallbackInputStack_23; } inline void set_fallbackInputStack_23(Stack_1_tC02709ACE540EF1B798420EEAA99B467885E23FC * value) { ___fallbackInputStack_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___fallbackInputStack_23), (void*)value); } inline static int32_t get_offset_of_disabledRefCount_24() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___disabledRefCount_24)); } inline int32_t get_disabledRefCount_24() const { return ___disabledRefCount_24; } inline int32_t* get_address_of_disabledRefCount_24() { return &___disabledRefCount_24; } inline void set_disabledRefCount_24(int32_t value) { ___disabledRefCount_24 = value; } inline static int32_t get_offset_of_isInputModuleAdded_25() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___isInputModuleAdded_25)); } inline bool get_isInputModuleAdded_25() const { return ___isInputModuleAdded_25; } inline bool* get_address_of_isInputModuleAdded_25() { return &___isInputModuleAdded_25; } inline void set_isInputModuleAdded_25(bool value) { ___isInputModuleAdded_25 = value; } inline static int32_t get_offset_of_sourceStateEventData_26() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___sourceStateEventData_26)); } inline SourceStateEventData_t16ECCDFFE1814B1AC194D6F993989B07935CF5EA * get_sourceStateEventData_26() const { return ___sourceStateEventData_26; } inline SourceStateEventData_t16ECCDFFE1814B1AC194D6F993989B07935CF5EA ** get_address_of_sourceStateEventData_26() { return &___sourceStateEventData_26; } inline void set_sourceStateEventData_26(SourceStateEventData_t16ECCDFFE1814B1AC194D6F993989B07935CF5EA * value) { ___sourceStateEventData_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceStateEventData_26), (void*)value); } inline static int32_t get_offset_of_sourceTrackingEventData_27() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___sourceTrackingEventData_27)); } inline SourcePoseEventData_1_tAA99CFE0B9D7AFB1BEB9015484F7A252CB009AA4 * get_sourceTrackingEventData_27() const { return ___sourceTrackingEventData_27; } inline SourcePoseEventData_1_tAA99CFE0B9D7AFB1BEB9015484F7A252CB009AA4 ** get_address_of_sourceTrackingEventData_27() { return &___sourceTrackingEventData_27; } inline void set_sourceTrackingEventData_27(SourcePoseEventData_1_tAA99CFE0B9D7AFB1BEB9015484F7A252CB009AA4 * value) { ___sourceTrackingEventData_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceTrackingEventData_27), (void*)value); } inline static int32_t get_offset_of_sourceVector2EventData_28() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___sourceVector2EventData_28)); } inline SourcePoseEventData_1_tCDBBEBD47B2BFC8C2633ADE116950B18D1CFF1CB * get_sourceVector2EventData_28() const { return ___sourceVector2EventData_28; } inline SourcePoseEventData_1_tCDBBEBD47B2BFC8C2633ADE116950B18D1CFF1CB ** get_address_of_sourceVector2EventData_28() { return &___sourceVector2EventData_28; } inline void set_sourceVector2EventData_28(SourcePoseEventData_1_tCDBBEBD47B2BFC8C2633ADE116950B18D1CFF1CB * value) { ___sourceVector2EventData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceVector2EventData_28), (void*)value); } inline static int32_t get_offset_of_sourcePositionEventData_29() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___sourcePositionEventData_29)); } inline SourcePoseEventData_1_t48DF5031DB6E9038DFD20E552341C32098D3194C * get_sourcePositionEventData_29() const { return ___sourcePositionEventData_29; } inline SourcePoseEventData_1_t48DF5031DB6E9038DFD20E552341C32098D3194C ** get_address_of_sourcePositionEventData_29() { return &___sourcePositionEventData_29; } inline void set_sourcePositionEventData_29(SourcePoseEventData_1_t48DF5031DB6E9038DFD20E552341C32098D3194C * value) { ___sourcePositionEventData_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourcePositionEventData_29), (void*)value); } inline static int32_t get_offset_of_sourceRotationEventData_30() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___sourceRotationEventData_30)); } inline SourcePoseEventData_1_t16464F0E3DBA87489D0BFD4F5245FF0C6B784A29 * get_sourceRotationEventData_30() const { return ___sourceRotationEventData_30; } inline SourcePoseEventData_1_t16464F0E3DBA87489D0BFD4F5245FF0C6B784A29 ** get_address_of_sourceRotationEventData_30() { return &___sourceRotationEventData_30; } inline void set_sourceRotationEventData_30(SourcePoseEventData_1_t16464F0E3DBA87489D0BFD4F5245FF0C6B784A29 * value) { ___sourceRotationEventData_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceRotationEventData_30), (void*)value); } inline static int32_t get_offset_of_sourcePoseEventData_31() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___sourcePoseEventData_31)); } inline SourcePoseEventData_1_t61BF2975099D9EA57368187A24694A0D4930C3B1 * get_sourcePoseEventData_31() const { return ___sourcePoseEventData_31; } inline SourcePoseEventData_1_t61BF2975099D9EA57368187A24694A0D4930C3B1 ** get_address_of_sourcePoseEventData_31() { return &___sourcePoseEventData_31; } inline void set_sourcePoseEventData_31(SourcePoseEventData_1_t61BF2975099D9EA57368187A24694A0D4930C3B1 * value) { ___sourcePoseEventData_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourcePoseEventData_31), (void*)value); } inline static int32_t get_offset_of_focusEventData_32() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___focusEventData_32)); } inline FocusEventData_t91249691522BA4DB3766F932D45A932D7EFAF893 * get_focusEventData_32() const { return ___focusEventData_32; } inline FocusEventData_t91249691522BA4DB3766F932D45A932D7EFAF893 ** get_address_of_focusEventData_32() { return &___focusEventData_32; } inline void set_focusEventData_32(FocusEventData_t91249691522BA4DB3766F932D45A932D7EFAF893 * value) { ___focusEventData_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___focusEventData_32), (void*)value); } inline static int32_t get_offset_of_inputEventData_33() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___inputEventData_33)); } inline InputEventData_tA8150C91AA91A8818A4B2198FAEA40758D7FA43C * get_inputEventData_33() const { return ___inputEventData_33; } inline InputEventData_tA8150C91AA91A8818A4B2198FAEA40758D7FA43C ** get_address_of_inputEventData_33() { return &___inputEventData_33; } inline void set_inputEventData_33(InputEventData_tA8150C91AA91A8818A4B2198FAEA40758D7FA43C * value) { ___inputEventData_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputEventData_33), (void*)value); } inline static int32_t get_offset_of_pointerEventData_34() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___pointerEventData_34)); } inline MixedRealityPointerEventData_t374A33C967ADF2F8C86742A246D5EB05969AAE5A * get_pointerEventData_34() const { return ___pointerEventData_34; } inline MixedRealityPointerEventData_t374A33C967ADF2F8C86742A246D5EB05969AAE5A ** get_address_of_pointerEventData_34() { return &___pointerEventData_34; } inline void set_pointerEventData_34(MixedRealityPointerEventData_t374A33C967ADF2F8C86742A246D5EB05969AAE5A * value) { ___pointerEventData_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___pointerEventData_34), (void*)value); } inline static int32_t get_offset_of_floatInputEventData_35() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___floatInputEventData_35)); } inline InputEventData_1_t6D3CE4DE46748052EF8131D75337DD21365869F6 * get_floatInputEventData_35() const { return ___floatInputEventData_35; } inline InputEventData_1_t6D3CE4DE46748052EF8131D75337DD21365869F6 ** get_address_of_floatInputEventData_35() { return &___floatInputEventData_35; } inline void set_floatInputEventData_35(InputEventData_1_t6D3CE4DE46748052EF8131D75337DD21365869F6 * value) { ___floatInputEventData_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___floatInputEventData_35), (void*)value); } inline static int32_t get_offset_of_vector2InputEventData_36() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___vector2InputEventData_36)); } inline InputEventData_1_t461B64C1E912DC090A4816E16627FAD022A92F66 * get_vector2InputEventData_36() const { return ___vector2InputEventData_36; } inline InputEventData_1_t461B64C1E912DC090A4816E16627FAD022A92F66 ** get_address_of_vector2InputEventData_36() { return &___vector2InputEventData_36; } inline void set_vector2InputEventData_36(InputEventData_1_t461B64C1E912DC090A4816E16627FAD022A92F66 * value) { ___vector2InputEventData_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___vector2InputEventData_36), (void*)value); } inline static int32_t get_offset_of_positionInputEventData_37() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___positionInputEventData_37)); } inline InputEventData_1_t0B4DCED891788FDA7558846E82F2E218895882F2 * get_positionInputEventData_37() const { return ___positionInputEventData_37; } inline InputEventData_1_t0B4DCED891788FDA7558846E82F2E218895882F2 ** get_address_of_positionInputEventData_37() { return &___positionInputEventData_37; } inline void set_positionInputEventData_37(InputEventData_1_t0B4DCED891788FDA7558846E82F2E218895882F2 * value) { ___positionInputEventData_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___positionInputEventData_37), (void*)value); } inline static int32_t get_offset_of_rotationInputEventData_38() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___rotationInputEventData_38)); } inline InputEventData_1_t5EEC0E129CAE8215347F788048320FD1D8E30BD9 * get_rotationInputEventData_38() const { return ___rotationInputEventData_38; } inline InputEventData_1_t5EEC0E129CAE8215347F788048320FD1D8E30BD9 ** get_address_of_rotationInputEventData_38() { return &___rotationInputEventData_38; } inline void set_rotationInputEventData_38(InputEventData_1_t5EEC0E129CAE8215347F788048320FD1D8E30BD9 * value) { ___rotationInputEventData_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___rotationInputEventData_38), (void*)value); } inline static int32_t get_offset_of_poseInputEventData_39() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___poseInputEventData_39)); } inline InputEventData_1_tEB6B24096D7E69FCA95428FB4F330EFC3094D053 * get_poseInputEventData_39() const { return ___poseInputEventData_39; } inline InputEventData_1_tEB6B24096D7E69FCA95428FB4F330EFC3094D053 ** get_address_of_poseInputEventData_39() { return &___poseInputEventData_39; } inline void set_poseInputEventData_39(InputEventData_1_tEB6B24096D7E69FCA95428FB4F330EFC3094D053 * value) { ___poseInputEventData_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___poseInputEventData_39), (void*)value); } inline static int32_t get_offset_of_jointPoseInputEventData_40() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___jointPoseInputEventData_40)); } inline InputEventData_1_t344495BA8CD035C2577A5822C4E2B94476907A39 * get_jointPoseInputEventData_40() const { return ___jointPoseInputEventData_40; } inline InputEventData_1_t344495BA8CD035C2577A5822C4E2B94476907A39 ** get_address_of_jointPoseInputEventData_40() { return &___jointPoseInputEventData_40; } inline void set_jointPoseInputEventData_40(InputEventData_1_t344495BA8CD035C2577A5822C4E2B94476907A39 * value) { ___jointPoseInputEventData_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___jointPoseInputEventData_40), (void*)value); } inline static int32_t get_offset_of_handMeshInputEventData_41() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___handMeshInputEventData_41)); } inline InputEventData_1_t0D86AE930E071F7A2D5B38A39C0685C41A765C47 * get_handMeshInputEventData_41() const { return ___handMeshInputEventData_41; } inline InputEventData_1_t0D86AE930E071F7A2D5B38A39C0685C41A765C47 ** get_address_of_handMeshInputEventData_41() { return &___handMeshInputEventData_41; } inline void set_handMeshInputEventData_41(InputEventData_1_t0D86AE930E071F7A2D5B38A39C0685C41A765C47 * value) { ___handMeshInputEventData_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___handMeshInputEventData_41), (void*)value); } inline static int32_t get_offset_of_speechEventData_42() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___speechEventData_42)); } inline SpeechEventData_tB4DE65AA03637CF14771BBF054409107ADDE24CC * get_speechEventData_42() const { return ___speechEventData_42; } inline SpeechEventData_tB4DE65AA03637CF14771BBF054409107ADDE24CC ** get_address_of_speechEventData_42() { return &___speechEventData_42; } inline void set_speechEventData_42(SpeechEventData_tB4DE65AA03637CF14771BBF054409107ADDE24CC * value) { ___speechEventData_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___speechEventData_42), (void*)value); } inline static int32_t get_offset_of_dictationEventData_43() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___dictationEventData_43)); } inline DictationEventData_t219F19EA61B790AAA7F4BA2CAA9C171C674EABAB * get_dictationEventData_43() const { return ___dictationEventData_43; } inline DictationEventData_t219F19EA61B790AAA7F4BA2CAA9C171C674EABAB ** get_address_of_dictationEventData_43() { return &___dictationEventData_43; } inline void set_dictationEventData_43(DictationEventData_t219F19EA61B790AAA7F4BA2CAA9C171C674EABAB * value) { ___dictationEventData_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictationEventData_43), (void*)value); } inline static int32_t get_offset_of_handTrackingInputEventData_44() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___handTrackingInputEventData_44)); } inline HandTrackingInputEventData_tC1438ED6CE58976EF61D89A898683DBE876939F7 * get_handTrackingInputEventData_44() const { return ___handTrackingInputEventData_44; } inline HandTrackingInputEventData_tC1438ED6CE58976EF61D89A898683DBE876939F7 ** get_address_of_handTrackingInputEventData_44() { return &___handTrackingInputEventData_44; } inline void set_handTrackingInputEventData_44(HandTrackingInputEventData_tC1438ED6CE58976EF61D89A898683DBE876939F7 * value) { ___handTrackingInputEventData_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___handTrackingInputEventData_44), (void*)value); } inline static int32_t get_offset_of_U3CCurrentInputActionRulesProfileU3Ek__BackingField_45() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC, ___U3CCurrentInputActionRulesProfileU3Ek__BackingField_45)); } inline MixedRealityInputActionRulesProfile_t6A800A4673BEBAED284A7E5ECC05EBB823796D11 * get_U3CCurrentInputActionRulesProfileU3Ek__BackingField_45() const { return ___U3CCurrentInputActionRulesProfileU3Ek__BackingField_45; } inline MixedRealityInputActionRulesProfile_t6A800A4673BEBAED284A7E5ECC05EBB823796D11 ** get_address_of_U3CCurrentInputActionRulesProfileU3Ek__BackingField_45() { return &___U3CCurrentInputActionRulesProfileU3Ek__BackingField_45; } inline void set_U3CCurrentInputActionRulesProfileU3Ek__BackingField_45(MixedRealityInputActionRulesProfile_t6A800A4673BEBAED284A7E5ECC05EBB823796D11 * value) { ___U3CCurrentInputActionRulesProfileU3Ek__BackingField_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCurrentInputActionRulesProfileU3Ek__BackingField_45), (void*)value); } }; struct MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields { public: // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourceStateHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSourceDetectedEventHandler EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 * ___OnSourceDetectedEventHandler_46; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourceStateHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSourceLostEventHandler EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 * ___OnSourceLostEventHandler_47; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourcePoseHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSourceTrackingChangedEventHandler EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * ___OnSourceTrackingChangedEventHandler_48; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourcePoseHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSourcePoseVector2ChangedEventHandler EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * ___OnSourcePoseVector2ChangedEventHandler_49; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourcePoseHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSourcePositionChangedEventHandler EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * ___OnSourcePositionChangedEventHandler_50; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourcePoseHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSourceRotationChangedEventHandler EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * ___OnSourceRotationChangedEventHandler_51; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySourcePoseHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSourcePoseChangedEventHandler EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * ___OnSourcePoseChangedEventHandler_52; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityFocusChangedHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnPreFocusChangedHandler EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A * ___OnPreFocusChangedHandler_53; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityFocusChangedHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnFocusChangedHandler EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A * ___OnFocusChangedHandler_54; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityFocusHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnFocusEnterEventHandler EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D * ___OnFocusEnterEventHandler_55; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityFocusHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnFocusExitEventHandler EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D * ___OnFocusExitEventHandler_56; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnPointerDownEventHandler EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * ___OnPointerDownEventHandler_57; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnPointerDraggedEventHandler EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * ___OnPointerDraggedEventHandler_58; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnInputClickedEventHandler EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * ___OnInputClickedEventHandler_59; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnPointerUpEventHandler EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * ___OnPointerUpEventHandler_60; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnInputDownEventHandler EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF * ___OnInputDownEventHandler_61; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityBaseInputHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnInputDownWithActionEventHandler EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * ___OnInputDownWithActionEventHandler_62; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnInputUpEventHandler EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF * ___OnInputUpEventHandler_63; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityBaseInputHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnInputUpWithActionEventHandler EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * ___OnInputUpWithActionEventHandler_64; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<System.Single>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnFloatInputChanged EventFunction_1_t60B6A8A5E23390341767A320326CFCBDD0906F9B * ___OnFloatInputChanged_65; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<UnityEngine.Vector2>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnTwoDoFInputChanged EventFunction_1_t2EB7A86FAD8D1102145538CA64F91309A07D14FA * ___OnTwoDoFInputChanged_66; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<UnityEngine.Vector3>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnPositionInputChanged EventFunction_1_tB79678BB1BB73E2B30F6BDC706B4DD804D42EF2C * ___OnPositionInputChanged_67; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<UnityEngine.Quaternion>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnRotationInputChanged EventFunction_1_t7458C3A623F78CEAB385AD577FA46150E68AEA08 * ___OnRotationInputChanged_68; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityInputHandler`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnPoseInputChanged EventFunction_1_tDCFC7996E2B97EB5312A7DCB087AA16ECFAA4712 * ___OnPoseInputChanged_69; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureStarted EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * ___OnGestureStarted_70; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityBaseInputHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureStartedWithAction EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * ___OnGestureStartedWithAction_71; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureUpdated EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * ___OnGestureUpdated_72; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Vector2>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureVector2PositionUpdated EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 * ___OnGestureVector2PositionUpdated_73; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Vector3>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGesturePositionUpdated EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC * ___OnGesturePositionUpdated_74; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Quaternion>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureRotationUpdated EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A * ___OnGestureRotationUpdated_75; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGesturePoseUpdated EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 * ___OnGesturePoseUpdated_76; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureCompleted EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * ___OnGestureCompleted_77; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityBaseInputHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureCompletedWithAction EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * ___OnGestureCompletedWithAction_78; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Vector2>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureVector2PositionCompleted EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 * ___OnGestureVector2PositionCompleted_79; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Vector3>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGesturePositionCompleted EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC * ___OnGesturePositionCompleted_80; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<UnityEngine.Quaternion>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureRotationCompleted EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A * ___OnGestureRotationCompleted_81; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGesturePoseCompleted EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 * ___OnGesturePoseCompleted_82; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnGestureCanceled EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * ___OnGestureCanceled_83; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealitySpeechHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSpeechKeywordRecognizedEventHandler EventFunction_1_t876F8E08C1920DE6C297A650967F6B9B6C6DBAA8 * ___OnSpeechKeywordRecognizedEventHandler_84; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityBaseInputHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnSpeechKeywordRecognizedWithActionEventHandler EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * ___OnSpeechKeywordRecognizedWithActionEventHandler_85; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityDictationHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnDictationHypothesisEventHandler EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * ___OnDictationHypothesisEventHandler_86; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityDictationHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnDictationResultEventHandler EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * ___OnDictationResultEventHandler_87; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityDictationHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnDictationCompleteEventHandler EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * ___OnDictationCompleteEventHandler_88; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityDictationHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnDictationErrorEventHandler EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * ___OnDictationErrorEventHandler_89; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityHandJointHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnHandJointsUpdatedEventHandler EventFunction_1_t3561006DFAC5A7EB3C26A1F81ED9AFAA62826564 * ___OnHandJointsUpdatedEventHandler_90; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityHandMeshHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnHandMeshUpdatedEventHandler EventFunction_1_t2F8921FE20FCDB73071295BBD26D1D37A01733AC * ___OnHandMeshUpdatedEventHandler_91; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityTouchHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnTouchStartedEventHandler EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * ___OnTouchStartedEventHandler_92; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityTouchHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnTouchCompletedEventHandler EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * ___OnTouchCompletedEventHandler_93; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.Input.IMixedRealityTouchHandler> Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem::OnTouchUpdatedEventHandler EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * ___OnTouchUpdatedEventHandler_94; public: inline static int32_t get_offset_of_OnSourceDetectedEventHandler_46() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSourceDetectedEventHandler_46)); } inline EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 * get_OnSourceDetectedEventHandler_46() const { return ___OnSourceDetectedEventHandler_46; } inline EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 ** get_address_of_OnSourceDetectedEventHandler_46() { return &___OnSourceDetectedEventHandler_46; } inline void set_OnSourceDetectedEventHandler_46(EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 * value) { ___OnSourceDetectedEventHandler_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSourceDetectedEventHandler_46), (void*)value); } inline static int32_t get_offset_of_OnSourceLostEventHandler_47() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSourceLostEventHandler_47)); } inline EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 * get_OnSourceLostEventHandler_47() const { return ___OnSourceLostEventHandler_47; } inline EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 ** get_address_of_OnSourceLostEventHandler_47() { return &___OnSourceLostEventHandler_47; } inline void set_OnSourceLostEventHandler_47(EventFunction_1_t15F56ABB4B71DE217FEA013FEC9DB9F62A7276B1 * value) { ___OnSourceLostEventHandler_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSourceLostEventHandler_47), (void*)value); } inline static int32_t get_offset_of_OnSourceTrackingChangedEventHandler_48() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSourceTrackingChangedEventHandler_48)); } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * get_OnSourceTrackingChangedEventHandler_48() const { return ___OnSourceTrackingChangedEventHandler_48; } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 ** get_address_of_OnSourceTrackingChangedEventHandler_48() { return &___OnSourceTrackingChangedEventHandler_48; } inline void set_OnSourceTrackingChangedEventHandler_48(EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * value) { ___OnSourceTrackingChangedEventHandler_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSourceTrackingChangedEventHandler_48), (void*)value); } inline static int32_t get_offset_of_OnSourcePoseVector2ChangedEventHandler_49() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSourcePoseVector2ChangedEventHandler_49)); } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * get_OnSourcePoseVector2ChangedEventHandler_49() const { return ___OnSourcePoseVector2ChangedEventHandler_49; } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 ** get_address_of_OnSourcePoseVector2ChangedEventHandler_49() { return &___OnSourcePoseVector2ChangedEventHandler_49; } inline void set_OnSourcePoseVector2ChangedEventHandler_49(EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * value) { ___OnSourcePoseVector2ChangedEventHandler_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSourcePoseVector2ChangedEventHandler_49), (void*)value); } inline static int32_t get_offset_of_OnSourcePositionChangedEventHandler_50() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSourcePositionChangedEventHandler_50)); } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * get_OnSourcePositionChangedEventHandler_50() const { return ___OnSourcePositionChangedEventHandler_50; } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 ** get_address_of_OnSourcePositionChangedEventHandler_50() { return &___OnSourcePositionChangedEventHandler_50; } inline void set_OnSourcePositionChangedEventHandler_50(EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * value) { ___OnSourcePositionChangedEventHandler_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSourcePositionChangedEventHandler_50), (void*)value); } inline static int32_t get_offset_of_OnSourceRotationChangedEventHandler_51() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSourceRotationChangedEventHandler_51)); } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * get_OnSourceRotationChangedEventHandler_51() const { return ___OnSourceRotationChangedEventHandler_51; } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 ** get_address_of_OnSourceRotationChangedEventHandler_51() { return &___OnSourceRotationChangedEventHandler_51; } inline void set_OnSourceRotationChangedEventHandler_51(EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * value) { ___OnSourceRotationChangedEventHandler_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSourceRotationChangedEventHandler_51), (void*)value); } inline static int32_t get_offset_of_OnSourcePoseChangedEventHandler_52() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSourcePoseChangedEventHandler_52)); } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * get_OnSourcePoseChangedEventHandler_52() const { return ___OnSourcePoseChangedEventHandler_52; } inline EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 ** get_address_of_OnSourcePoseChangedEventHandler_52() { return &___OnSourcePoseChangedEventHandler_52; } inline void set_OnSourcePoseChangedEventHandler_52(EventFunction_1_tC21024C7BB3EF376C8FAE7838FBACBE65092FBE9 * value) { ___OnSourcePoseChangedEventHandler_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSourcePoseChangedEventHandler_52), (void*)value); } inline static int32_t get_offset_of_OnPreFocusChangedHandler_53() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnPreFocusChangedHandler_53)); } inline EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A * get_OnPreFocusChangedHandler_53() const { return ___OnPreFocusChangedHandler_53; } inline EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A ** get_address_of_OnPreFocusChangedHandler_53() { return &___OnPreFocusChangedHandler_53; } inline void set_OnPreFocusChangedHandler_53(EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A * value) { ___OnPreFocusChangedHandler_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnPreFocusChangedHandler_53), (void*)value); } inline static int32_t get_offset_of_OnFocusChangedHandler_54() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnFocusChangedHandler_54)); } inline EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A * get_OnFocusChangedHandler_54() const { return ___OnFocusChangedHandler_54; } inline EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A ** get_address_of_OnFocusChangedHandler_54() { return &___OnFocusChangedHandler_54; } inline void set_OnFocusChangedHandler_54(EventFunction_1_tC2DDAE033AD0120252DB897AB2A24AEB21441E1A * value) { ___OnFocusChangedHandler_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnFocusChangedHandler_54), (void*)value); } inline static int32_t get_offset_of_OnFocusEnterEventHandler_55() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnFocusEnterEventHandler_55)); } inline EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D * get_OnFocusEnterEventHandler_55() const { return ___OnFocusEnterEventHandler_55; } inline EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D ** get_address_of_OnFocusEnterEventHandler_55() { return &___OnFocusEnterEventHandler_55; } inline void set_OnFocusEnterEventHandler_55(EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D * value) { ___OnFocusEnterEventHandler_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnFocusEnterEventHandler_55), (void*)value); } inline static int32_t get_offset_of_OnFocusExitEventHandler_56() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnFocusExitEventHandler_56)); } inline EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D * get_OnFocusExitEventHandler_56() const { return ___OnFocusExitEventHandler_56; } inline EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D ** get_address_of_OnFocusExitEventHandler_56() { return &___OnFocusExitEventHandler_56; } inline void set_OnFocusExitEventHandler_56(EventFunction_1_t98AD1C19071B23081E264063334A6EF223FE326D * value) { ___OnFocusExitEventHandler_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnFocusExitEventHandler_56), (void*)value); } inline static int32_t get_offset_of_OnPointerDownEventHandler_57() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnPointerDownEventHandler_57)); } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * get_OnPointerDownEventHandler_57() const { return ___OnPointerDownEventHandler_57; } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F ** get_address_of_OnPointerDownEventHandler_57() { return &___OnPointerDownEventHandler_57; } inline void set_OnPointerDownEventHandler_57(EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * value) { ___OnPointerDownEventHandler_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnPointerDownEventHandler_57), (void*)value); } inline static int32_t get_offset_of_OnPointerDraggedEventHandler_58() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnPointerDraggedEventHandler_58)); } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * get_OnPointerDraggedEventHandler_58() const { return ___OnPointerDraggedEventHandler_58; } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F ** get_address_of_OnPointerDraggedEventHandler_58() { return &___OnPointerDraggedEventHandler_58; } inline void set_OnPointerDraggedEventHandler_58(EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * value) { ___OnPointerDraggedEventHandler_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnPointerDraggedEventHandler_58), (void*)value); } inline static int32_t get_offset_of_OnInputClickedEventHandler_59() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnInputClickedEventHandler_59)); } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * get_OnInputClickedEventHandler_59() const { return ___OnInputClickedEventHandler_59; } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F ** get_address_of_OnInputClickedEventHandler_59() { return &___OnInputClickedEventHandler_59; } inline void set_OnInputClickedEventHandler_59(EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * value) { ___OnInputClickedEventHandler_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnInputClickedEventHandler_59), (void*)value); } inline static int32_t get_offset_of_OnPointerUpEventHandler_60() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnPointerUpEventHandler_60)); } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * get_OnPointerUpEventHandler_60() const { return ___OnPointerUpEventHandler_60; } inline EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F ** get_address_of_OnPointerUpEventHandler_60() { return &___OnPointerUpEventHandler_60; } inline void set_OnPointerUpEventHandler_60(EventFunction_1_t976A6C37264A92070C364A8FCD319BCE66B10A8F * value) { ___OnPointerUpEventHandler_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnPointerUpEventHandler_60), (void*)value); } inline static int32_t get_offset_of_OnInputDownEventHandler_61() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnInputDownEventHandler_61)); } inline EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF * get_OnInputDownEventHandler_61() const { return ___OnInputDownEventHandler_61; } inline EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF ** get_address_of_OnInputDownEventHandler_61() { return &___OnInputDownEventHandler_61; } inline void set_OnInputDownEventHandler_61(EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF * value) { ___OnInputDownEventHandler_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnInputDownEventHandler_61), (void*)value); } inline static int32_t get_offset_of_OnInputDownWithActionEventHandler_62() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnInputDownWithActionEventHandler_62)); } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * get_OnInputDownWithActionEventHandler_62() const { return ___OnInputDownWithActionEventHandler_62; } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 ** get_address_of_OnInputDownWithActionEventHandler_62() { return &___OnInputDownWithActionEventHandler_62; } inline void set_OnInputDownWithActionEventHandler_62(EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * value) { ___OnInputDownWithActionEventHandler_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnInputDownWithActionEventHandler_62), (void*)value); } inline static int32_t get_offset_of_OnInputUpEventHandler_63() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnInputUpEventHandler_63)); } inline EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF * get_OnInputUpEventHandler_63() const { return ___OnInputUpEventHandler_63; } inline EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF ** get_address_of_OnInputUpEventHandler_63() { return &___OnInputUpEventHandler_63; } inline void set_OnInputUpEventHandler_63(EventFunction_1_tD3F5FBDD8FACAAB7EADF181496CD920F912185EF * value) { ___OnInputUpEventHandler_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnInputUpEventHandler_63), (void*)value); } inline static int32_t get_offset_of_OnInputUpWithActionEventHandler_64() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnInputUpWithActionEventHandler_64)); } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * get_OnInputUpWithActionEventHandler_64() const { return ___OnInputUpWithActionEventHandler_64; } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 ** get_address_of_OnInputUpWithActionEventHandler_64() { return &___OnInputUpWithActionEventHandler_64; } inline void set_OnInputUpWithActionEventHandler_64(EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * value) { ___OnInputUpWithActionEventHandler_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnInputUpWithActionEventHandler_64), (void*)value); } inline static int32_t get_offset_of_OnFloatInputChanged_65() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnFloatInputChanged_65)); } inline EventFunction_1_t60B6A8A5E23390341767A320326CFCBDD0906F9B * get_OnFloatInputChanged_65() const { return ___OnFloatInputChanged_65; } inline EventFunction_1_t60B6A8A5E23390341767A320326CFCBDD0906F9B ** get_address_of_OnFloatInputChanged_65() { return &___OnFloatInputChanged_65; } inline void set_OnFloatInputChanged_65(EventFunction_1_t60B6A8A5E23390341767A320326CFCBDD0906F9B * value) { ___OnFloatInputChanged_65 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnFloatInputChanged_65), (void*)value); } inline static int32_t get_offset_of_OnTwoDoFInputChanged_66() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnTwoDoFInputChanged_66)); } inline EventFunction_1_t2EB7A86FAD8D1102145538CA64F91309A07D14FA * get_OnTwoDoFInputChanged_66() const { return ___OnTwoDoFInputChanged_66; } inline EventFunction_1_t2EB7A86FAD8D1102145538CA64F91309A07D14FA ** get_address_of_OnTwoDoFInputChanged_66() { return &___OnTwoDoFInputChanged_66; } inline void set_OnTwoDoFInputChanged_66(EventFunction_1_t2EB7A86FAD8D1102145538CA64F91309A07D14FA * value) { ___OnTwoDoFInputChanged_66 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTwoDoFInputChanged_66), (void*)value); } inline static int32_t get_offset_of_OnPositionInputChanged_67() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnPositionInputChanged_67)); } inline EventFunction_1_tB79678BB1BB73E2B30F6BDC706B4DD804D42EF2C * get_OnPositionInputChanged_67() const { return ___OnPositionInputChanged_67; } inline EventFunction_1_tB79678BB1BB73E2B30F6BDC706B4DD804D42EF2C ** get_address_of_OnPositionInputChanged_67() { return &___OnPositionInputChanged_67; } inline void set_OnPositionInputChanged_67(EventFunction_1_tB79678BB1BB73E2B30F6BDC706B4DD804D42EF2C * value) { ___OnPositionInputChanged_67 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnPositionInputChanged_67), (void*)value); } inline static int32_t get_offset_of_OnRotationInputChanged_68() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnRotationInputChanged_68)); } inline EventFunction_1_t7458C3A623F78CEAB385AD577FA46150E68AEA08 * get_OnRotationInputChanged_68() const { return ___OnRotationInputChanged_68; } inline EventFunction_1_t7458C3A623F78CEAB385AD577FA46150E68AEA08 ** get_address_of_OnRotationInputChanged_68() { return &___OnRotationInputChanged_68; } inline void set_OnRotationInputChanged_68(EventFunction_1_t7458C3A623F78CEAB385AD577FA46150E68AEA08 * value) { ___OnRotationInputChanged_68 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnRotationInputChanged_68), (void*)value); } inline static int32_t get_offset_of_OnPoseInputChanged_69() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnPoseInputChanged_69)); } inline EventFunction_1_tDCFC7996E2B97EB5312A7DCB087AA16ECFAA4712 * get_OnPoseInputChanged_69() const { return ___OnPoseInputChanged_69; } inline EventFunction_1_tDCFC7996E2B97EB5312A7DCB087AA16ECFAA4712 ** get_address_of_OnPoseInputChanged_69() { return &___OnPoseInputChanged_69; } inline void set_OnPoseInputChanged_69(EventFunction_1_tDCFC7996E2B97EB5312A7DCB087AA16ECFAA4712 * value) { ___OnPoseInputChanged_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnPoseInputChanged_69), (void*)value); } inline static int32_t get_offset_of_OnGestureStarted_70() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureStarted_70)); } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * get_OnGestureStarted_70() const { return ___OnGestureStarted_70; } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F ** get_address_of_OnGestureStarted_70() { return &___OnGestureStarted_70; } inline void set_OnGestureStarted_70(EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * value) { ___OnGestureStarted_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureStarted_70), (void*)value); } inline static int32_t get_offset_of_OnGestureStartedWithAction_71() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureStartedWithAction_71)); } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * get_OnGestureStartedWithAction_71() const { return ___OnGestureStartedWithAction_71; } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 ** get_address_of_OnGestureStartedWithAction_71() { return &___OnGestureStartedWithAction_71; } inline void set_OnGestureStartedWithAction_71(EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * value) { ___OnGestureStartedWithAction_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureStartedWithAction_71), (void*)value); } inline static int32_t get_offset_of_OnGestureUpdated_72() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureUpdated_72)); } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * get_OnGestureUpdated_72() const { return ___OnGestureUpdated_72; } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F ** get_address_of_OnGestureUpdated_72() { return &___OnGestureUpdated_72; } inline void set_OnGestureUpdated_72(EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * value) { ___OnGestureUpdated_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureUpdated_72), (void*)value); } inline static int32_t get_offset_of_OnGestureVector2PositionUpdated_73() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureVector2PositionUpdated_73)); } inline EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 * get_OnGestureVector2PositionUpdated_73() const { return ___OnGestureVector2PositionUpdated_73; } inline EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 ** get_address_of_OnGestureVector2PositionUpdated_73() { return &___OnGestureVector2PositionUpdated_73; } inline void set_OnGestureVector2PositionUpdated_73(EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 * value) { ___OnGestureVector2PositionUpdated_73 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureVector2PositionUpdated_73), (void*)value); } inline static int32_t get_offset_of_OnGesturePositionUpdated_74() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGesturePositionUpdated_74)); } inline EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC * get_OnGesturePositionUpdated_74() const { return ___OnGesturePositionUpdated_74; } inline EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC ** get_address_of_OnGesturePositionUpdated_74() { return &___OnGesturePositionUpdated_74; } inline void set_OnGesturePositionUpdated_74(EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC * value) { ___OnGesturePositionUpdated_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGesturePositionUpdated_74), (void*)value); } inline static int32_t get_offset_of_OnGestureRotationUpdated_75() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureRotationUpdated_75)); } inline EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A * get_OnGestureRotationUpdated_75() const { return ___OnGestureRotationUpdated_75; } inline EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A ** get_address_of_OnGestureRotationUpdated_75() { return &___OnGestureRotationUpdated_75; } inline void set_OnGestureRotationUpdated_75(EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A * value) { ___OnGestureRotationUpdated_75 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureRotationUpdated_75), (void*)value); } inline static int32_t get_offset_of_OnGesturePoseUpdated_76() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGesturePoseUpdated_76)); } inline EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 * get_OnGesturePoseUpdated_76() const { return ___OnGesturePoseUpdated_76; } inline EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 ** get_address_of_OnGesturePoseUpdated_76() { return &___OnGesturePoseUpdated_76; } inline void set_OnGesturePoseUpdated_76(EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 * value) { ___OnGesturePoseUpdated_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGesturePoseUpdated_76), (void*)value); } inline static int32_t get_offset_of_OnGestureCompleted_77() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureCompleted_77)); } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * get_OnGestureCompleted_77() const { return ___OnGestureCompleted_77; } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F ** get_address_of_OnGestureCompleted_77() { return &___OnGestureCompleted_77; } inline void set_OnGestureCompleted_77(EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * value) { ___OnGestureCompleted_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureCompleted_77), (void*)value); } inline static int32_t get_offset_of_OnGestureCompletedWithAction_78() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureCompletedWithAction_78)); } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * get_OnGestureCompletedWithAction_78() const { return ___OnGestureCompletedWithAction_78; } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 ** get_address_of_OnGestureCompletedWithAction_78() { return &___OnGestureCompletedWithAction_78; } inline void set_OnGestureCompletedWithAction_78(EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * value) { ___OnGestureCompletedWithAction_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureCompletedWithAction_78), (void*)value); } inline static int32_t get_offset_of_OnGestureVector2PositionCompleted_79() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureVector2PositionCompleted_79)); } inline EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 * get_OnGestureVector2PositionCompleted_79() const { return ___OnGestureVector2PositionCompleted_79; } inline EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 ** get_address_of_OnGestureVector2PositionCompleted_79() { return &___OnGestureVector2PositionCompleted_79; } inline void set_OnGestureVector2PositionCompleted_79(EventFunction_1_t42F5002A32889DDAE9E512C892DE9E82BDDEBE60 * value) { ___OnGestureVector2PositionCompleted_79 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureVector2PositionCompleted_79), (void*)value); } inline static int32_t get_offset_of_OnGesturePositionCompleted_80() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGesturePositionCompleted_80)); } inline EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC * get_OnGesturePositionCompleted_80() const { return ___OnGesturePositionCompleted_80; } inline EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC ** get_address_of_OnGesturePositionCompleted_80() { return &___OnGesturePositionCompleted_80; } inline void set_OnGesturePositionCompleted_80(EventFunction_1_tA78B914F3673E7648567DD1BB3481C002874FCFC * value) { ___OnGesturePositionCompleted_80 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGesturePositionCompleted_80), (void*)value); } inline static int32_t get_offset_of_OnGestureRotationCompleted_81() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureRotationCompleted_81)); } inline EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A * get_OnGestureRotationCompleted_81() const { return ___OnGestureRotationCompleted_81; } inline EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A ** get_address_of_OnGestureRotationCompleted_81() { return &___OnGestureRotationCompleted_81; } inline void set_OnGestureRotationCompleted_81(EventFunction_1_tA588FB806D2480626B1514F4F3657BC43BF0A59A * value) { ___OnGestureRotationCompleted_81 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureRotationCompleted_81), (void*)value); } inline static int32_t get_offset_of_OnGesturePoseCompleted_82() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGesturePoseCompleted_82)); } inline EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 * get_OnGesturePoseCompleted_82() const { return ___OnGesturePoseCompleted_82; } inline EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 ** get_address_of_OnGesturePoseCompleted_82() { return &___OnGesturePoseCompleted_82; } inline void set_OnGesturePoseCompleted_82(EventFunction_1_tB241246E8010830DB2CB7782AF26144228A0E0D3 * value) { ___OnGesturePoseCompleted_82 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGesturePoseCompleted_82), (void*)value); } inline static int32_t get_offset_of_OnGestureCanceled_83() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnGestureCanceled_83)); } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * get_OnGestureCanceled_83() const { return ___OnGestureCanceled_83; } inline EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F ** get_address_of_OnGestureCanceled_83() { return &___OnGestureCanceled_83; } inline void set_OnGestureCanceled_83(EventFunction_1_t36CD34A9193049748CEF2D3D9D46C9CCCF72442F * value) { ___OnGestureCanceled_83 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnGestureCanceled_83), (void*)value); } inline static int32_t get_offset_of_OnSpeechKeywordRecognizedEventHandler_84() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSpeechKeywordRecognizedEventHandler_84)); } inline EventFunction_1_t876F8E08C1920DE6C297A650967F6B9B6C6DBAA8 * get_OnSpeechKeywordRecognizedEventHandler_84() const { return ___OnSpeechKeywordRecognizedEventHandler_84; } inline EventFunction_1_t876F8E08C1920DE6C297A650967F6B9B6C6DBAA8 ** get_address_of_OnSpeechKeywordRecognizedEventHandler_84() { return &___OnSpeechKeywordRecognizedEventHandler_84; } inline void set_OnSpeechKeywordRecognizedEventHandler_84(EventFunction_1_t876F8E08C1920DE6C297A650967F6B9B6C6DBAA8 * value) { ___OnSpeechKeywordRecognizedEventHandler_84 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSpeechKeywordRecognizedEventHandler_84), (void*)value); } inline static int32_t get_offset_of_OnSpeechKeywordRecognizedWithActionEventHandler_85() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnSpeechKeywordRecognizedWithActionEventHandler_85)); } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * get_OnSpeechKeywordRecognizedWithActionEventHandler_85() const { return ___OnSpeechKeywordRecognizedWithActionEventHandler_85; } inline EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 ** get_address_of_OnSpeechKeywordRecognizedWithActionEventHandler_85() { return &___OnSpeechKeywordRecognizedWithActionEventHandler_85; } inline void set_OnSpeechKeywordRecognizedWithActionEventHandler_85(EventFunction_1_t2FD40EC05E1B3D825EB283384DE2E36C9422C258 * value) { ___OnSpeechKeywordRecognizedWithActionEventHandler_85 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSpeechKeywordRecognizedWithActionEventHandler_85), (void*)value); } inline static int32_t get_offset_of_OnDictationHypothesisEventHandler_86() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnDictationHypothesisEventHandler_86)); } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * get_OnDictationHypothesisEventHandler_86() const { return ___OnDictationHypothesisEventHandler_86; } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 ** get_address_of_OnDictationHypothesisEventHandler_86() { return &___OnDictationHypothesisEventHandler_86; } inline void set_OnDictationHypothesisEventHandler_86(EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * value) { ___OnDictationHypothesisEventHandler_86 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnDictationHypothesisEventHandler_86), (void*)value); } inline static int32_t get_offset_of_OnDictationResultEventHandler_87() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnDictationResultEventHandler_87)); } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * get_OnDictationResultEventHandler_87() const { return ___OnDictationResultEventHandler_87; } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 ** get_address_of_OnDictationResultEventHandler_87() { return &___OnDictationResultEventHandler_87; } inline void set_OnDictationResultEventHandler_87(EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * value) { ___OnDictationResultEventHandler_87 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnDictationResultEventHandler_87), (void*)value); } inline static int32_t get_offset_of_OnDictationCompleteEventHandler_88() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnDictationCompleteEventHandler_88)); } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * get_OnDictationCompleteEventHandler_88() const { return ___OnDictationCompleteEventHandler_88; } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 ** get_address_of_OnDictationCompleteEventHandler_88() { return &___OnDictationCompleteEventHandler_88; } inline void set_OnDictationCompleteEventHandler_88(EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * value) { ___OnDictationCompleteEventHandler_88 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnDictationCompleteEventHandler_88), (void*)value); } inline static int32_t get_offset_of_OnDictationErrorEventHandler_89() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnDictationErrorEventHandler_89)); } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * get_OnDictationErrorEventHandler_89() const { return ___OnDictationErrorEventHandler_89; } inline EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 ** get_address_of_OnDictationErrorEventHandler_89() { return &___OnDictationErrorEventHandler_89; } inline void set_OnDictationErrorEventHandler_89(EventFunction_1_tE1B6A632E9252DE73C8F8F782F5FFEDC660E4881 * value) { ___OnDictationErrorEventHandler_89 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnDictationErrorEventHandler_89), (void*)value); } inline static int32_t get_offset_of_OnHandJointsUpdatedEventHandler_90() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnHandJointsUpdatedEventHandler_90)); } inline EventFunction_1_t3561006DFAC5A7EB3C26A1F81ED9AFAA62826564 * get_OnHandJointsUpdatedEventHandler_90() const { return ___OnHandJointsUpdatedEventHandler_90; } inline EventFunction_1_t3561006DFAC5A7EB3C26A1F81ED9AFAA62826564 ** get_address_of_OnHandJointsUpdatedEventHandler_90() { return &___OnHandJointsUpdatedEventHandler_90; } inline void set_OnHandJointsUpdatedEventHandler_90(EventFunction_1_t3561006DFAC5A7EB3C26A1F81ED9AFAA62826564 * value) { ___OnHandJointsUpdatedEventHandler_90 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnHandJointsUpdatedEventHandler_90), (void*)value); } inline static int32_t get_offset_of_OnHandMeshUpdatedEventHandler_91() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnHandMeshUpdatedEventHandler_91)); } inline EventFunction_1_t2F8921FE20FCDB73071295BBD26D1D37A01733AC * get_OnHandMeshUpdatedEventHandler_91() const { return ___OnHandMeshUpdatedEventHandler_91; } inline EventFunction_1_t2F8921FE20FCDB73071295BBD26D1D37A01733AC ** get_address_of_OnHandMeshUpdatedEventHandler_91() { return &___OnHandMeshUpdatedEventHandler_91; } inline void set_OnHandMeshUpdatedEventHandler_91(EventFunction_1_t2F8921FE20FCDB73071295BBD26D1D37A01733AC * value) { ___OnHandMeshUpdatedEventHandler_91 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnHandMeshUpdatedEventHandler_91), (void*)value); } inline static int32_t get_offset_of_OnTouchStartedEventHandler_92() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnTouchStartedEventHandler_92)); } inline EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * get_OnTouchStartedEventHandler_92() const { return ___OnTouchStartedEventHandler_92; } inline EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E ** get_address_of_OnTouchStartedEventHandler_92() { return &___OnTouchStartedEventHandler_92; } inline void set_OnTouchStartedEventHandler_92(EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * value) { ___OnTouchStartedEventHandler_92 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTouchStartedEventHandler_92), (void*)value); } inline static int32_t get_offset_of_OnTouchCompletedEventHandler_93() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnTouchCompletedEventHandler_93)); } inline EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * get_OnTouchCompletedEventHandler_93() const { return ___OnTouchCompletedEventHandler_93; } inline EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E ** get_address_of_OnTouchCompletedEventHandler_93() { return &___OnTouchCompletedEventHandler_93; } inline void set_OnTouchCompletedEventHandler_93(EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * value) { ___OnTouchCompletedEventHandler_93 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTouchCompletedEventHandler_93), (void*)value); } inline static int32_t get_offset_of_OnTouchUpdatedEventHandler_94() { return static_cast<int32_t>(offsetof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_StaticFields, ___OnTouchUpdatedEventHandler_94)); } inline EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * get_OnTouchUpdatedEventHandler_94() const { return ___OnTouchUpdatedEventHandler_94; } inline EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E ** get_address_of_OnTouchUpdatedEventHandler_94() { return &___OnTouchUpdatedEventHandler_94; } inline void set_OnTouchUpdatedEventHandler_94(EventFunction_1_t4D0186F70B42F90489A7867AFF204B472C994E3E * value) { ___OnTouchUpdatedEventHandler_94 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnTouchUpdatedEventHandler_94), (void*)value); } }; // Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystem struct MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A : public BaseDataProviderAccessCoreSystem_tC631B03A0E5D5616C151D727C004752FB667964A { public: // System.String Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystem::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_14; // Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessEventData`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject> Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystem::meshEventData MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 * ___meshEventData_15; // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystem::spatialAwarenessObjectParent GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___spatialAwarenessObjectParent_16; // System.UInt32 Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystem::nextSourceId uint32_t ___nextSourceId_17; // Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfile Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystem::spatialAwarenessSystemProfile MixedRealitySpatialAwarenessSystemProfile_t0490CE710B8333019A89B8EEEADFD70A97B4901B * ___spatialAwarenessSystemProfile_18; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A, ___U3CNameU3Ek__BackingField_14)); } inline String_t* get_U3CNameU3Ek__BackingField_14() const { return ___U3CNameU3Ek__BackingField_14; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_14() { return &___U3CNameU3Ek__BackingField_14; } inline void set_U3CNameU3Ek__BackingField_14(String_t* value) { ___U3CNameU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_14), (void*)value); } inline static int32_t get_offset_of_meshEventData_15() { return static_cast<int32_t>(offsetof(MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A, ___meshEventData_15)); } inline MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 * get_meshEventData_15() const { return ___meshEventData_15; } inline MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 ** get_address_of_meshEventData_15() { return &___meshEventData_15; } inline void set_meshEventData_15(MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 * value) { ___meshEventData_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___meshEventData_15), (void*)value); } inline static int32_t get_offset_of_spatialAwarenessObjectParent_16() { return static_cast<int32_t>(offsetof(MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A, ___spatialAwarenessObjectParent_16)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_spatialAwarenessObjectParent_16() const { return ___spatialAwarenessObjectParent_16; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_spatialAwarenessObjectParent_16() { return &___spatialAwarenessObjectParent_16; } inline void set_spatialAwarenessObjectParent_16(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___spatialAwarenessObjectParent_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___spatialAwarenessObjectParent_16), (void*)value); } inline static int32_t get_offset_of_nextSourceId_17() { return static_cast<int32_t>(offsetof(MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A, ___nextSourceId_17)); } inline uint32_t get_nextSourceId_17() const { return ___nextSourceId_17; } inline uint32_t* get_address_of_nextSourceId_17() { return &___nextSourceId_17; } inline void set_nextSourceId_17(uint32_t value) { ___nextSourceId_17 = value; } inline static int32_t get_offset_of_spatialAwarenessSystemProfile_18() { return static_cast<int32_t>(offsetof(MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A, ___spatialAwarenessSystemProfile_18)); } inline MixedRealitySpatialAwarenessSystemProfile_t0490CE710B8333019A89B8EEEADFD70A97B4901B * get_spatialAwarenessSystemProfile_18() const { return ___spatialAwarenessSystemProfile_18; } inline MixedRealitySpatialAwarenessSystemProfile_t0490CE710B8333019A89B8EEEADFD70A97B4901B ** get_address_of_spatialAwarenessSystemProfile_18() { return &___spatialAwarenessSystemProfile_18; } inline void set_spatialAwarenessSystemProfile_18(MixedRealitySpatialAwarenessSystemProfile_t0490CE710B8333019A89B8EEEADFD70A97B4901B * value) { ___spatialAwarenessSystemProfile_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___spatialAwarenessSystemProfile_18), (void*)value); } }; // Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager struct WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // System.Collections.Generic.Dictionary`2<System.UInt32,Microsoft.MixedReality.Toolkit.Input.IMixedRealityController> Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::activeControllers Dictionary_2_t3484B067E3D1A03543590C3E99605EDAD82CF231 * ___activeControllers_10; // UnityEngine.XR.WSA.Input.InteractionSourceState[] Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::interactionManagerStates InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA* ___interactionManagerStates_11; // System.Int32 Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::numInteractionManagerStates int32_t ___numInteractionManagerStates_12; // UnityEngine.XR.WSA.Input.InteractionSourceState[] Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::<LastInteractionManagerStateReading>k__BackingField InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA* ___U3CLastInteractionManagerStateReadingU3Ek__BackingField_13; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::holdAction MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___holdAction_20; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::navigationAction MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___navigationAction_21; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::manipulationAction MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___manipulationAction_22; // Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::selectAction MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___selectAction_23; public: inline static int32_t get_offset_of_activeControllers_10() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___activeControllers_10)); } inline Dictionary_2_t3484B067E3D1A03543590C3E99605EDAD82CF231 * get_activeControllers_10() const { return ___activeControllers_10; } inline Dictionary_2_t3484B067E3D1A03543590C3E99605EDAD82CF231 ** get_address_of_activeControllers_10() { return &___activeControllers_10; } inline void set_activeControllers_10(Dictionary_2_t3484B067E3D1A03543590C3E99605EDAD82CF231 * value) { ___activeControllers_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___activeControllers_10), (void*)value); } inline static int32_t get_offset_of_interactionManagerStates_11() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___interactionManagerStates_11)); } inline InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA* get_interactionManagerStates_11() const { return ___interactionManagerStates_11; } inline InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA** get_address_of_interactionManagerStates_11() { return &___interactionManagerStates_11; } inline void set_interactionManagerStates_11(InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA* value) { ___interactionManagerStates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___interactionManagerStates_11), (void*)value); } inline static int32_t get_offset_of_numInteractionManagerStates_12() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___numInteractionManagerStates_12)); } inline int32_t get_numInteractionManagerStates_12() const { return ___numInteractionManagerStates_12; } inline int32_t* get_address_of_numInteractionManagerStates_12() { return &___numInteractionManagerStates_12; } inline void set_numInteractionManagerStates_12(int32_t value) { ___numInteractionManagerStates_12 = value; } inline static int32_t get_offset_of_U3CLastInteractionManagerStateReadingU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___U3CLastInteractionManagerStateReadingU3Ek__BackingField_13)); } inline InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA* get_U3CLastInteractionManagerStateReadingU3Ek__BackingField_13() const { return ___U3CLastInteractionManagerStateReadingU3Ek__BackingField_13; } inline InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA** get_address_of_U3CLastInteractionManagerStateReadingU3Ek__BackingField_13() { return &___U3CLastInteractionManagerStateReadingU3Ek__BackingField_13; } inline void set_U3CLastInteractionManagerStateReadingU3Ek__BackingField_13(InteractionSourceStateU5BU5D_tB8FF9D808295324B506769A009A5BD2C5CD671EA* value) { ___U3CLastInteractionManagerStateReadingU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CLastInteractionManagerStateReadingU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_holdAction_20() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___holdAction_20)); } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_holdAction_20() const { return ___holdAction_20; } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_holdAction_20() { return &___holdAction_20; } inline void set_holdAction_20(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value) { ___holdAction_20 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___holdAction_20))->___description_2), (void*)NULL); } inline static int32_t get_offset_of_navigationAction_21() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___navigationAction_21)); } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_navigationAction_21() const { return ___navigationAction_21; } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_navigationAction_21() { return &___navigationAction_21; } inline void set_navigationAction_21(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value) { ___navigationAction_21 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___navigationAction_21))->___description_2), (void*)NULL); } inline static int32_t get_offset_of_manipulationAction_22() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___manipulationAction_22)); } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_manipulationAction_22() const { return ___manipulationAction_22; } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_manipulationAction_22() { return &___manipulationAction_22; } inline void set_manipulationAction_22(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value) { ___manipulationAction_22 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___manipulationAction_22))->___description_2), (void*)NULL); } inline static int32_t get_offset_of_selectAction_23() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193, ___selectAction_23)); } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_selectAction_23() const { return ___selectAction_23; } inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_selectAction_23() { return &___selectAction_23; } inline void set_selectAction_23(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value) { ___selectAction_23 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___selectAction_23))->___description_2), (void*)NULL); } }; struct WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields { public: // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::gestureRecognizerEnabled bool ___gestureRecognizerEnabled_14; // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::navigationRecognizerEnabled bool ___navigationRecognizerEnabled_15; // Microsoft.MixedReality.Toolkit.Windows.Input.WindowsGestureSettings Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::gestureSettings int32_t ___gestureSettings_16; // Microsoft.MixedReality.Toolkit.Windows.Input.WindowsGestureSettings Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::navigationSettings int32_t ___navigationSettings_17; // Microsoft.MixedReality.Toolkit.Windows.Input.WindowsGestureSettings Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::railsNavigationSettings int32_t ___railsNavigationSettings_18; // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::useRailsNavigation bool ___useRailsNavigation_19; // UnityEngine.XR.WSA.Input.GestureRecognizer Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::gestureRecognizer GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE * ___gestureRecognizer_24; // UnityEngine.XR.WSA.Input.GestureRecognizer Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager::navigationGestureRecognizer GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE * ___navigationGestureRecognizer_25; public: inline static int32_t get_offset_of_gestureRecognizerEnabled_14() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___gestureRecognizerEnabled_14)); } inline bool get_gestureRecognizerEnabled_14() const { return ___gestureRecognizerEnabled_14; } inline bool* get_address_of_gestureRecognizerEnabled_14() { return &___gestureRecognizerEnabled_14; } inline void set_gestureRecognizerEnabled_14(bool value) { ___gestureRecognizerEnabled_14 = value; } inline static int32_t get_offset_of_navigationRecognizerEnabled_15() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___navigationRecognizerEnabled_15)); } inline bool get_navigationRecognizerEnabled_15() const { return ___navigationRecognizerEnabled_15; } inline bool* get_address_of_navigationRecognizerEnabled_15() { return &___navigationRecognizerEnabled_15; } inline void set_navigationRecognizerEnabled_15(bool value) { ___navigationRecognizerEnabled_15 = value; } inline static int32_t get_offset_of_gestureSettings_16() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___gestureSettings_16)); } inline int32_t get_gestureSettings_16() const { return ___gestureSettings_16; } inline int32_t* get_address_of_gestureSettings_16() { return &___gestureSettings_16; } inline void set_gestureSettings_16(int32_t value) { ___gestureSettings_16 = value; } inline static int32_t get_offset_of_navigationSettings_17() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___navigationSettings_17)); } inline int32_t get_navigationSettings_17() const { return ___navigationSettings_17; } inline int32_t* get_address_of_navigationSettings_17() { return &___navigationSettings_17; } inline void set_navigationSettings_17(int32_t value) { ___navigationSettings_17 = value; } inline static int32_t get_offset_of_railsNavigationSettings_18() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___railsNavigationSettings_18)); } inline int32_t get_railsNavigationSettings_18() const { return ___railsNavigationSettings_18; } inline int32_t* get_address_of_railsNavigationSettings_18() { return &___railsNavigationSettings_18; } inline void set_railsNavigationSettings_18(int32_t value) { ___railsNavigationSettings_18 = value; } inline static int32_t get_offset_of_useRailsNavigation_19() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___useRailsNavigation_19)); } inline bool get_useRailsNavigation_19() const { return ___useRailsNavigation_19; } inline bool* get_address_of_useRailsNavigation_19() { return &___useRailsNavigation_19; } inline void set_useRailsNavigation_19(bool value) { ___useRailsNavigation_19 = value; } inline static int32_t get_offset_of_gestureRecognizer_24() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___gestureRecognizer_24)); } inline GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE * get_gestureRecognizer_24() const { return ___gestureRecognizer_24; } inline GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE ** get_address_of_gestureRecognizer_24() { return &___gestureRecognizer_24; } inline void set_gestureRecognizer_24(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE * value) { ___gestureRecognizer_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___gestureRecognizer_24), (void*)value); } inline static int32_t get_offset_of_navigationGestureRecognizer_25() { return static_cast<int32_t>(offsetof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_StaticFields, ___navigationGestureRecognizer_25)); } inline GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE * get_navigationGestureRecognizer_25() const { return ___navigationGestureRecognizer_25; } inline GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE ** get_address_of_navigationGestureRecognizer_25() { return &___navigationGestureRecognizer_25; } inline void set_navigationGestureRecognizer_25(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE * value) { ___navigationGestureRecognizer_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___navigationGestureRecognizer_25), (void*)value); } }; // Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider struct WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244 : public BaseInputDeviceManager_tF5473695E639505E9493EA443A6C653CAE9DA9FD { public: // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::<SmoothEyeTracking>k__BackingField bool ___U3CSmoothEyeTrackingU3Ek__BackingField_8; // System.Single Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::smoothFactorNormalized float ___smoothFactorNormalized_9; // System.Single Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::saccadeThreshInDegree float ___saccadeThreshInDegree_10; // System.Nullable`1<UnityEngine.Ray> Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::oldGaze Nullable_1_t5C6FF4BB8DD1DB0820894DBF35EE86A3A7BE3779 ___oldGaze_11; // System.Int32 Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::confidenceOfSaccade int32_t ___confidenceOfSaccade_12; // System.Int32 Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::confidenceOfSaccadeThreshold int32_t ___confidenceOfSaccadeThreshold_13; // UnityEngine.Ray Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::saccade_initialGazePoint Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___saccade_initialGazePoint_14; // System.Collections.Generic.List`1<UnityEngine.Ray> Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::saccade_newGazeCluster List_1_tDBFFB28EA2DB808522ECEF439E08351254619124 * ___saccade_newGazeCluster_15; // System.Action Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::OnSaccade Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___OnSaccade_16; // System.Action Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::OnSaccadeX Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___OnSaccadeX_17; // System.Action Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::OnSaccadeY Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___OnSaccadeY_18; // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::eyesApiAvailable bool ___eyesApiAvailable_19; public: inline static int32_t get_offset_of_U3CSmoothEyeTrackingU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___U3CSmoothEyeTrackingU3Ek__BackingField_8)); } inline bool get_U3CSmoothEyeTrackingU3Ek__BackingField_8() const { return ___U3CSmoothEyeTrackingU3Ek__BackingField_8; } inline bool* get_address_of_U3CSmoothEyeTrackingU3Ek__BackingField_8() { return &___U3CSmoothEyeTrackingU3Ek__BackingField_8; } inline void set_U3CSmoothEyeTrackingU3Ek__BackingField_8(bool value) { ___U3CSmoothEyeTrackingU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_smoothFactorNormalized_9() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___smoothFactorNormalized_9)); } inline float get_smoothFactorNormalized_9() const { return ___smoothFactorNormalized_9; } inline float* get_address_of_smoothFactorNormalized_9() { return &___smoothFactorNormalized_9; } inline void set_smoothFactorNormalized_9(float value) { ___smoothFactorNormalized_9 = value; } inline static int32_t get_offset_of_saccadeThreshInDegree_10() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___saccadeThreshInDegree_10)); } inline float get_saccadeThreshInDegree_10() const { return ___saccadeThreshInDegree_10; } inline float* get_address_of_saccadeThreshInDegree_10() { return &___saccadeThreshInDegree_10; } inline void set_saccadeThreshInDegree_10(float value) { ___saccadeThreshInDegree_10 = value; } inline static int32_t get_offset_of_oldGaze_11() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___oldGaze_11)); } inline Nullable_1_t5C6FF4BB8DD1DB0820894DBF35EE86A3A7BE3779 get_oldGaze_11() const { return ___oldGaze_11; } inline Nullable_1_t5C6FF4BB8DD1DB0820894DBF35EE86A3A7BE3779 * get_address_of_oldGaze_11() { return &___oldGaze_11; } inline void set_oldGaze_11(Nullable_1_t5C6FF4BB8DD1DB0820894DBF35EE86A3A7BE3779 value) { ___oldGaze_11 = value; } inline static int32_t get_offset_of_confidenceOfSaccade_12() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___confidenceOfSaccade_12)); } inline int32_t get_confidenceOfSaccade_12() const { return ___confidenceOfSaccade_12; } inline int32_t* get_address_of_confidenceOfSaccade_12() { return &___confidenceOfSaccade_12; } inline void set_confidenceOfSaccade_12(int32_t value) { ___confidenceOfSaccade_12 = value; } inline static int32_t get_offset_of_confidenceOfSaccadeThreshold_13() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___confidenceOfSaccadeThreshold_13)); } inline int32_t get_confidenceOfSaccadeThreshold_13() const { return ___confidenceOfSaccadeThreshold_13; } inline int32_t* get_address_of_confidenceOfSaccadeThreshold_13() { return &___confidenceOfSaccadeThreshold_13; } inline void set_confidenceOfSaccadeThreshold_13(int32_t value) { ___confidenceOfSaccadeThreshold_13 = value; } inline static int32_t get_offset_of_saccade_initialGazePoint_14() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___saccade_initialGazePoint_14)); } inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 get_saccade_initialGazePoint_14() const { return ___saccade_initialGazePoint_14; } inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * get_address_of_saccade_initialGazePoint_14() { return &___saccade_initialGazePoint_14; } inline void set_saccade_initialGazePoint_14(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 value) { ___saccade_initialGazePoint_14 = value; } inline static int32_t get_offset_of_saccade_newGazeCluster_15() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___saccade_newGazeCluster_15)); } inline List_1_tDBFFB28EA2DB808522ECEF439E08351254619124 * get_saccade_newGazeCluster_15() const { return ___saccade_newGazeCluster_15; } inline List_1_tDBFFB28EA2DB808522ECEF439E08351254619124 ** get_address_of_saccade_newGazeCluster_15() { return &___saccade_newGazeCluster_15; } inline void set_saccade_newGazeCluster_15(List_1_tDBFFB28EA2DB808522ECEF439E08351254619124 * value) { ___saccade_newGazeCluster_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___saccade_newGazeCluster_15), (void*)value); } inline static int32_t get_offset_of_OnSaccade_16() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___OnSaccade_16)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_OnSaccade_16() const { return ___OnSaccade_16; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_OnSaccade_16() { return &___OnSaccade_16; } inline void set_OnSaccade_16(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___OnSaccade_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSaccade_16), (void*)value); } inline static int32_t get_offset_of_OnSaccadeX_17() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___OnSaccadeX_17)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_OnSaccadeX_17() const { return ___OnSaccadeX_17; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_OnSaccadeX_17() { return &___OnSaccadeX_17; } inline void set_OnSaccadeX_17(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___OnSaccadeX_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSaccadeX_17), (void*)value); } inline static int32_t get_offset_of_OnSaccadeY_18() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___OnSaccadeY_18)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_OnSaccadeY_18() const { return ___OnSaccadeY_18; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_OnSaccadeY_18() { return &___OnSaccadeY_18; } inline void set_OnSaccadeY_18(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___OnSaccadeY_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnSaccadeY_18), (void*)value); } inline static int32_t get_offset_of_eyesApiAvailable_19() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244, ___eyesApiAvailable_19)); } inline bool get_eyesApiAvailable_19() const { return ___eyesApiAvailable_19; } inline bool* get_address_of_eyesApiAvailable_19() { return &___eyesApiAvailable_19; } inline void set_eyesApiAvailable_19(bool value) { ___eyesApiAvailable_19 = value; } }; struct WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_StaticFields { public: // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider::askedForETAccessAlready bool ___askedForETAccessAlready_20; public: inline static int32_t get_offset_of_askedForETAccessAlready_20() { return static_cast<int32_t>(offsetof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_StaticFields, ___askedForETAccessAlready_20)); } inline bool get_askedForETAccessAlready_20() const { return ___askedForETAccessAlready_20; } inline bool* get_address_of_askedForETAccessAlready_20() { return &___askedForETAccessAlready_20; } inline void set_askedForETAccessAlready_20(bool value) { ___askedForETAccessAlready_20 = value; } }; // Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver struct WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D : public BaseSpatialObserver_tAAAAD2941F48EE42E70A94E7A4CA2AFA675F11B9 { public: // UnityEngine.GameObject Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::observedObjectParent GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___observedObjectParent_19; // UnityEngine.XR.WSA.SurfaceObserver Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::observer SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864 * ___observer_20; // System.Collections.Generic.Queue`1<UnityEngine.XR.WSA.SurfaceId> Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::meshWorkQueue Queue_1_tA6C11EBF8FDE095B3E1145561094C8C2F7D35EDE * ___meshWorkQueue_21; // Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::outstandingMeshObject SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 * ___outstandingMeshObject_22; // Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::spareMeshObject SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 * ___spareMeshObject_23; // System.Single Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::lastUpdated float ___lastUpdated_24; // Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshDisplayOptions Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::displayOption int32_t ___displayOption_25; // Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshLevelOfDetail Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::levelOfDetail int32_t ___levelOfDetail_26; // System.Collections.Generic.Dictionary`2<System.Int32,Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject> Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::meshes Dictionary_2_t175CE23EB7718FA6D3014B4F9EC0676977DCBB0E * ___meshes_27; // System.Int32 Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::meshPhysicsLayer int32_t ___meshPhysicsLayer_28; // UnityEngine.Material Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::occlusionMaterial Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___occlusionMaterial_29; // System.Boolean Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::<RecalculateNormals>k__BackingField bool ___U3CRecalculateNormalsU3Ek__BackingField_30; // System.Int32 Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::<TrianglesPerCubicMeter>k__BackingField int32_t ___U3CTrianglesPerCubicMeterU3Ek__BackingField_31; // UnityEngine.Material Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::visibleMaterial Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___visibleMaterial_32; // Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessEventData`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject> Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::meshEventData MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 * ___meshEventData_33; public: inline static int32_t get_offset_of_observedObjectParent_19() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___observedObjectParent_19)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_observedObjectParent_19() const { return ___observedObjectParent_19; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_observedObjectParent_19() { return &___observedObjectParent_19; } inline void set_observedObjectParent_19(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___observedObjectParent_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___observedObjectParent_19), (void*)value); } inline static int32_t get_offset_of_observer_20() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___observer_20)); } inline SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864 * get_observer_20() const { return ___observer_20; } inline SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864 ** get_address_of_observer_20() { return &___observer_20; } inline void set_observer_20(SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864 * value) { ___observer_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___observer_20), (void*)value); } inline static int32_t get_offset_of_meshWorkQueue_21() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___meshWorkQueue_21)); } inline Queue_1_tA6C11EBF8FDE095B3E1145561094C8C2F7D35EDE * get_meshWorkQueue_21() const { return ___meshWorkQueue_21; } inline Queue_1_tA6C11EBF8FDE095B3E1145561094C8C2F7D35EDE ** get_address_of_meshWorkQueue_21() { return &___meshWorkQueue_21; } inline void set_meshWorkQueue_21(Queue_1_tA6C11EBF8FDE095B3E1145561094C8C2F7D35EDE * value) { ___meshWorkQueue_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___meshWorkQueue_21), (void*)value); } inline static int32_t get_offset_of_outstandingMeshObject_22() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___outstandingMeshObject_22)); } inline SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 * get_outstandingMeshObject_22() const { return ___outstandingMeshObject_22; } inline SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 ** get_address_of_outstandingMeshObject_22() { return &___outstandingMeshObject_22; } inline void set_outstandingMeshObject_22(SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 * value) { ___outstandingMeshObject_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___outstandingMeshObject_22), (void*)value); } inline static int32_t get_offset_of_spareMeshObject_23() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___spareMeshObject_23)); } inline SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 * get_spareMeshObject_23() const { return ___spareMeshObject_23; } inline SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 ** get_address_of_spareMeshObject_23() { return &___spareMeshObject_23; } inline void set_spareMeshObject_23(SpatialAwarenessMeshObject_t2ED8997D9F62A85C10336C777A4D6F7361B60A17 * value) { ___spareMeshObject_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___spareMeshObject_23), (void*)value); } inline static int32_t get_offset_of_lastUpdated_24() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___lastUpdated_24)); } inline float get_lastUpdated_24() const { return ___lastUpdated_24; } inline float* get_address_of_lastUpdated_24() { return &___lastUpdated_24; } inline void set_lastUpdated_24(float value) { ___lastUpdated_24 = value; } inline static int32_t get_offset_of_displayOption_25() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___displayOption_25)); } inline int32_t get_displayOption_25() const { return ___displayOption_25; } inline int32_t* get_address_of_displayOption_25() { return &___displayOption_25; } inline void set_displayOption_25(int32_t value) { ___displayOption_25 = value; } inline static int32_t get_offset_of_levelOfDetail_26() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___levelOfDetail_26)); } inline int32_t get_levelOfDetail_26() const { return ___levelOfDetail_26; } inline int32_t* get_address_of_levelOfDetail_26() { return &___levelOfDetail_26; } inline void set_levelOfDetail_26(int32_t value) { ___levelOfDetail_26 = value; } inline static int32_t get_offset_of_meshes_27() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___meshes_27)); } inline Dictionary_2_t175CE23EB7718FA6D3014B4F9EC0676977DCBB0E * get_meshes_27() const { return ___meshes_27; } inline Dictionary_2_t175CE23EB7718FA6D3014B4F9EC0676977DCBB0E ** get_address_of_meshes_27() { return &___meshes_27; } inline void set_meshes_27(Dictionary_2_t175CE23EB7718FA6D3014B4F9EC0676977DCBB0E * value) { ___meshes_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___meshes_27), (void*)value); } inline static int32_t get_offset_of_meshPhysicsLayer_28() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___meshPhysicsLayer_28)); } inline int32_t get_meshPhysicsLayer_28() const { return ___meshPhysicsLayer_28; } inline int32_t* get_address_of_meshPhysicsLayer_28() { return &___meshPhysicsLayer_28; } inline void set_meshPhysicsLayer_28(int32_t value) { ___meshPhysicsLayer_28 = value; } inline static int32_t get_offset_of_occlusionMaterial_29() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___occlusionMaterial_29)); } inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_occlusionMaterial_29() const { return ___occlusionMaterial_29; } inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_occlusionMaterial_29() { return &___occlusionMaterial_29; } inline void set_occlusionMaterial_29(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value) { ___occlusionMaterial_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___occlusionMaterial_29), (void*)value); } inline static int32_t get_offset_of_U3CRecalculateNormalsU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___U3CRecalculateNormalsU3Ek__BackingField_30)); } inline bool get_U3CRecalculateNormalsU3Ek__BackingField_30() const { return ___U3CRecalculateNormalsU3Ek__BackingField_30; } inline bool* get_address_of_U3CRecalculateNormalsU3Ek__BackingField_30() { return &___U3CRecalculateNormalsU3Ek__BackingField_30; } inline void set_U3CRecalculateNormalsU3Ek__BackingField_30(bool value) { ___U3CRecalculateNormalsU3Ek__BackingField_30 = value; } inline static int32_t get_offset_of_U3CTrianglesPerCubicMeterU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___U3CTrianglesPerCubicMeterU3Ek__BackingField_31)); } inline int32_t get_U3CTrianglesPerCubicMeterU3Ek__BackingField_31() const { return ___U3CTrianglesPerCubicMeterU3Ek__BackingField_31; } inline int32_t* get_address_of_U3CTrianglesPerCubicMeterU3Ek__BackingField_31() { return &___U3CTrianglesPerCubicMeterU3Ek__BackingField_31; } inline void set_U3CTrianglesPerCubicMeterU3Ek__BackingField_31(int32_t value) { ___U3CTrianglesPerCubicMeterU3Ek__BackingField_31 = value; } inline static int32_t get_offset_of_visibleMaterial_32() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___visibleMaterial_32)); } inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_visibleMaterial_32() const { return ___visibleMaterial_32; } inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_visibleMaterial_32() { return &___visibleMaterial_32; } inline void set_visibleMaterial_32(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value) { ___visibleMaterial_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___visibleMaterial_32), (void*)value); } inline static int32_t get_offset_of_meshEventData_33() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D, ___meshEventData_33)); } inline MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 * get_meshEventData_33() const { return ___meshEventData_33; } inline MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 ** get_address_of_meshEventData_33() { return &___meshEventData_33; } inline void set_meshEventData_33(MixedRealitySpatialAwarenessEventData_1_t47FAB12AA05CEF4824F355A360A34CAEA530E942 * value) { ___meshEventData_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___meshEventData_33), (void*)value); } }; struct WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_StaticFields { public: // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessObservationHandler`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject>> Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::OnMeshRemoved EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * ___OnMeshRemoved_34; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessObservationHandler`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject>> Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::OnMeshAdded EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * ___OnMeshAdded_35; // UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.IMixedRealitySpatialAwarenessObservationHandler`1<Microsoft.MixedReality.Toolkit.SpatialAwareness.SpatialAwarenessMeshObject>> Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver::OnMeshUpdated EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * ___OnMeshUpdated_36; public: inline static int32_t get_offset_of_OnMeshRemoved_34() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_StaticFields, ___OnMeshRemoved_34)); } inline EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * get_OnMeshRemoved_34() const { return ___OnMeshRemoved_34; } inline EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 ** get_address_of_OnMeshRemoved_34() { return &___OnMeshRemoved_34; } inline void set_OnMeshRemoved_34(EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * value) { ___OnMeshRemoved_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnMeshRemoved_34), (void*)value); } inline static int32_t get_offset_of_OnMeshAdded_35() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_StaticFields, ___OnMeshAdded_35)); } inline EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * get_OnMeshAdded_35() const { return ___OnMeshAdded_35; } inline EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 ** get_address_of_OnMeshAdded_35() { return &___OnMeshAdded_35; } inline void set_OnMeshAdded_35(EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * value) { ___OnMeshAdded_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnMeshAdded_35), (void*)value); } inline static int32_t get_offset_of_OnMeshUpdated_36() { return static_cast<int32_t>(offsetof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_StaticFields, ___OnMeshUpdated_36)); } inline EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * get_OnMeshUpdated_36() const { return ___OnMeshUpdated_36; } inline EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 ** get_address_of_OnMeshUpdated_36() { return &___OnMeshUpdated_36; } inline void set_OnMeshUpdated_36(EventFunction_1_t8AA45DD57EF7EF53098AFE324FD01CB70B56E883 * value) { ___OnMeshUpdated_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnMeshUpdated_36), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo> struct Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t5C91A9AB04749854BD3D1F315F09CE414B49BCF4 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559, ___list_0)); } inline List_1_t5C91A9AB04749854BD3D1F315F09CE414B49BCF4 * get_list_0() const { return ___list_0; } inline List_1_t5C91A9AB04749854BD3D1F315F09CE414B49BCF4 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t5C91A9AB04749854BD3D1F315F09CE414B49BCF4 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559, ___current_3)); } inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE get_current_3() const { return ___current_3; } inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE * get_address_of_current_3() { return &___current_3; } inline void set_current_3(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___Name_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___Path_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___Tag_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___Asset_6), (void*)NULL); #endif } }; // TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7 struct U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC : public RuntimeObject { public: // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<>1__state int32_t ___U3CU3E1__state_0; // System.Object TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<>2__current RuntimeObject * ___U3CU3E2__current_1; // TMPro.TMP_SpriteAnimator TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<>4__this TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 * ___U3CU3E4__this_2; // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::start int32_t ___start_3; // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::end int32_t ___end_4; // TMPro.TMP_SpriteAsset TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::spriteAsset TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_5; // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::currentCharacter int32_t ___currentCharacter_6; // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::framerate int32_t ___framerate_7; // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<currentFrame>5__2 int32_t ___U3CcurrentFrameU3E5__2_8; // TMPro.TMP_CharacterInfo TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<charInfo>5__3 TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 ___U3CcharInfoU3E5__3_9; // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<materialIndex>5__4 int32_t ___U3CmaterialIndexU3E5__4_10; // System.Int32 TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<vertexIndex>5__5 int32_t ___U3CvertexIndexU3E5__5_11; // TMPro.TMP_MeshInfo TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<meshInfo>5__6 TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E ___U3CmeshInfoU3E5__6_12; // System.Single TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<elapsedTime>5__7 float ___U3CelapsedTimeU3E5__7_13; // System.Single TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7::<targetTime>5__8 float ___U3CtargetTimeU3E5__8_14; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CU3E4__this_2)); } inline TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_start_3() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___start_3)); } inline int32_t get_start_3() const { return ___start_3; } inline int32_t* get_address_of_start_3() { return &___start_3; } inline void set_start_3(int32_t value) { ___start_3 = value; } inline static int32_t get_offset_of_end_4() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___end_4)); } inline int32_t get_end_4() const { return ___end_4; } inline int32_t* get_address_of_end_4() { return &___end_4; } inline void set_end_4(int32_t value) { ___end_4 = value; } inline static int32_t get_offset_of_spriteAsset_5() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___spriteAsset_5)); } inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_spriteAsset_5() const { return ___spriteAsset_5; } inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_spriteAsset_5() { return &___spriteAsset_5; } inline void set_spriteAsset_5(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value) { ___spriteAsset_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___spriteAsset_5), (void*)value); } inline static int32_t get_offset_of_currentCharacter_6() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___currentCharacter_6)); } inline int32_t get_currentCharacter_6() const { return ___currentCharacter_6; } inline int32_t* get_address_of_currentCharacter_6() { return &___currentCharacter_6; } inline void set_currentCharacter_6(int32_t value) { ___currentCharacter_6 = value; } inline static int32_t get_offset_of_framerate_7() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___framerate_7)); } inline int32_t get_framerate_7() const { return ___framerate_7; } inline int32_t* get_address_of_framerate_7() { return &___framerate_7; } inline void set_framerate_7(int32_t value) { ___framerate_7 = value; } inline static int32_t get_offset_of_U3CcurrentFrameU3E5__2_8() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CcurrentFrameU3E5__2_8)); } inline int32_t get_U3CcurrentFrameU3E5__2_8() const { return ___U3CcurrentFrameU3E5__2_8; } inline int32_t* get_address_of_U3CcurrentFrameU3E5__2_8() { return &___U3CcurrentFrameU3E5__2_8; } inline void set_U3CcurrentFrameU3E5__2_8(int32_t value) { ___U3CcurrentFrameU3E5__2_8 = value; } inline static int32_t get_offset_of_U3CcharInfoU3E5__3_9() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CcharInfoU3E5__3_9)); } inline TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 get_U3CcharInfoU3E5__3_9() const { return ___U3CcharInfoU3E5__3_9; } inline TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 * get_address_of_U3CcharInfoU3E5__3_9() { return &___U3CcharInfoU3E5__3_9; } inline void set_U3CcharInfoU3E5__3_9(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 value) { ___U3CcharInfoU3E5__3_9 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CcharInfoU3E5__3_9))->___textElement_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CcharInfoU3E5__3_9))->___fontAsset_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CcharInfoU3E5__3_9))->___spriteAsset_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CcharInfoU3E5__3_9))->___material_8), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CmaterialIndexU3E5__4_10() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CmaterialIndexU3E5__4_10)); } inline int32_t get_U3CmaterialIndexU3E5__4_10() const { return ___U3CmaterialIndexU3E5__4_10; } inline int32_t* get_address_of_U3CmaterialIndexU3E5__4_10() { return &___U3CmaterialIndexU3E5__4_10; } inline void set_U3CmaterialIndexU3E5__4_10(int32_t value) { ___U3CmaterialIndexU3E5__4_10 = value; } inline static int32_t get_offset_of_U3CvertexIndexU3E5__5_11() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CvertexIndexU3E5__5_11)); } inline int32_t get_U3CvertexIndexU3E5__5_11() const { return ___U3CvertexIndexU3E5__5_11; } inline int32_t* get_address_of_U3CvertexIndexU3E5__5_11() { return &___U3CvertexIndexU3E5__5_11; } inline void set_U3CvertexIndexU3E5__5_11(int32_t value) { ___U3CvertexIndexU3E5__5_11 = value; } inline static int32_t get_offset_of_U3CmeshInfoU3E5__6_12() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CmeshInfoU3E5__6_12)); } inline TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E get_U3CmeshInfoU3E5__6_12() const { return ___U3CmeshInfoU3E5__6_12; } inline TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E * get_address_of_U3CmeshInfoU3E5__6_12() { return &___U3CmeshInfoU3E5__6_12; } inline void set_U3CmeshInfoU3E5__6_12(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E value) { ___U3CmeshInfoU3E5__6_12 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___mesh_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___vertices_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___normals_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___tangents_8), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___uvs0_9), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___uvs2_10), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___colors32_11), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CmeshInfoU3E5__6_12))->___triangles_12), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CelapsedTimeU3E5__7_13() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CelapsedTimeU3E5__7_13)); } inline float get_U3CelapsedTimeU3E5__7_13() const { return ___U3CelapsedTimeU3E5__7_13; } inline float* get_address_of_U3CelapsedTimeU3E5__7_13() { return &___U3CelapsedTimeU3E5__7_13; } inline void set_U3CelapsedTimeU3E5__7_13(float value) { ___U3CelapsedTimeU3E5__7_13 = value; } inline static int32_t get_offset_of_U3CtargetTimeU3E5__8_14() { return static_cast<int32_t>(offsetof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC, ___U3CtargetTimeU3E5__8_14)); } inline float get_U3CtargetTimeU3E5__8_14() const { return ___U3CtargetTimeU3E5__8_14; } inline float* get_address_of_U3CtargetTimeU3E5__8_14() { return &___U3CtargetTimeU3E5__8_14; } inline void set_U3CtargetTimeU3E5__8_14(float value) { ___U3CtargetTimeU3E5__8_14 = value; } }; // Windows.Foundation.Collections.IVectorView`1<System.Type> struct NOVTABLE IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m6965CEA3FF4FD7BAD091061A3FCB132604F47142(uint32_t ___index0, Il2CppWindowsRuntimeTypeName* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mD0663E7385B5FC9416AC9F0F6B9827285830CCC4(uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m9AFBCFCF2DA1FB76DA3FC209FA7B840609459D74(Il2CppWindowsRuntimeTypeName ___value0, uint32_t* ___index1, bool* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m19A7973D213566841BC30D081C554FC099AF7D01(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppWindowsRuntimeTypeName* ___items1, uint32_t* comReturnValue) = 0; }; // Windows.Foundation.Collections.IVector`1<System.Type> struct NOVTABLE IVector_1_t69FD2625E88151AA72D15A3EC18DA0AF5B403A0C : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m753F84B2B58A069E1926F7547ED499FC04C34B7C(uint32_t ___index0, Il2CppWindowsRuntimeTypeName* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m76A30C4F94F26EBF19C7F8B112FF82780846017C(uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m50EC3AB4A7FE4002629EFC9CEF9CE773ABB92E2D(IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171** comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mCDC03996801ACE4699A794C40B5F156DEAC0DCD4(Il2CppWindowsRuntimeTypeName ___value0, uint32_t* ___index1, bool* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mFD8286C417181E62449D0A26CA97A61744AF9AC9(uint32_t ___index0, Il2CppWindowsRuntimeTypeName ___value1) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m5753B2A40337D907E4E2FF7D71E5E7CD8819A7F7(uint32_t ___index0, Il2CppWindowsRuntimeTypeName ___value1) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m0E8A64B4E7CF5E6D000B5DF44E18688E73CFF872(uint32_t ___index0) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_Append_mE11CB215F729BC9A7A61B57BE191837B69EEDE75(Il2CppWindowsRuntimeTypeName ___value0) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mBF7DD662DFCC69801FF634A95369DB334FD17AF7() = 0; virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m3AFEA5A44BAF9CB90AA70C07BE31841999F4EB7A() = 0; virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mDCEA26B2F642A423C49CF156CB93442BCC132DE7(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppWindowsRuntimeTypeName* ___items1, uint32_t* comReturnValue) = 0; virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m8E31DAA9F521E443155FF5AD9FEF14D10D41ECAD(uint32_t ___items0ArraySize, Il2CppWindowsRuntimeTypeName* ___items0) = 0; }; // Windows.Foundation.IReference`1<Windows.Foundation.Metadata.AttributeTargets> struct NOVTABLE IReference_1_t14DAE467685CF0D26BDDDFEEF8C8793E49BE3256 : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m0F953FE55F90100B2381188B132B5FAA7D5A4929(uint32_t* comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.Perception.People.JointPose> struct NOVTABLE IReference_1_t20F75434E9A39E107D795462E73230FC877DB3FC : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m5C473856F84B9723FF4AFFA39ACD3BC9FB2FE6EF(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE * comReturnValue) = 0; }; // Windows.Foundation.IReference`1<Windows.UI.Xaml.Interop.TypeName> struct NOVTABLE IReference_1_t05125DEBFACCF631533E1BB325E91CC8E587D7AD : Il2CppIInspectable { static const Il2CppGuid IID; virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mAD21B0BAD0AA9FB92F7A686B1DEE50AB61A0B5A3(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime* comReturnValue) = 0; }; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36 struct U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759 : public RuntimeObject { public: // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36::<>1__state int32_t ___U3CU3E1__state_0; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36::<>2__current String_t* ___U3CU3E2__current_1; // System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36::<>4__this MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B * ___U3CU3E4__this_3; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36::tag String_t* ___tag_4; // System.String Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36::<>3__tag String_t* ___U3CU3E3__tag_5; // System.Collections.Generic.List`1_Enumerator<Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo> Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36::<>7__wrap1 Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559 ___U3CU3E7__wrap1_6; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759, ___U3CU3E2__current_1)); } inline String_t* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline String_t** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(String_t* value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759, ___U3CU3E4__this_3)); } inline MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(MixedRealitySceneSystemProfile_t4935B6D46C62EBCC04F9509831F9FED8E434288B * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } inline static int32_t get_offset_of_tag_4() { return static_cast<int32_t>(offsetof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759, ___tag_4)); } inline String_t* get_tag_4() const { return ___tag_4; } inline String_t** get_address_of_tag_4() { return &___tag_4; } inline void set_tag_4(String_t* value) { ___tag_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___tag_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__tag_5() { return static_cast<int32_t>(offsetof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759, ___U3CU3E3__tag_5)); } inline String_t* get_U3CU3E3__tag_5() const { return ___U3CU3E3__tag_5; } inline String_t** get_address_of_U3CU3E3__tag_5() { return &___U3CU3E3__tag_5; } inline void set_U3CU3E3__tag_5(String_t* value) { ___U3CU3E3__tag_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__tag_5), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_6() { return static_cast<int32_t>(offsetof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759, ___U3CU3E7__wrap1_6)); } inline Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559 get_U3CU3E7__wrap1_6() const { return ___U3CU3E7__wrap1_6; } inline Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559 * get_address_of_U3CU3E7__wrap1_6() { return &___U3CU3E7__wrap1_6; } inline void set_U3CU3E7__wrap1_6(Enumerator_tFC386B40DC60D6C7D47282E91D7F1DE9C5CFF559 value) { ___U3CU3E7__wrap1_6 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_6))->___list_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap1_6))->___current_3))->___Name_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap1_6))->___current_3))->___Path_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap1_6))->___current_3))->___Tag_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap1_6))->___current_3))->___Asset_6), (void*)NULL); #endif } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28 : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // System.UInt16[] struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : public RuntimeArray { public: ALIGN_FIELD (8) uint32_t m_Items[1]; public: inline uint32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value) { m_Items[index] = value; } }; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray { public: ALIGN_FIELD (8) uint64_t m_Items[1]; public: inline uint64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value) { m_Items[index] = value; } }; // System.Single[] struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5 : public RuntimeArray { public: ALIGN_FIELD (8) float m_Items[1]; public: inline float GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline float* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, float value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline float GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline float* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, float value) { m_Items[index] = value; } }; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray { public: ALIGN_FIELD (8) double m_Items[1]; public: inline double GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline double* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, double value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline double GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline double* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, double value) { m_Items[index] = value; } }; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray { public: ALIGN_FIELD (8) Guid_t m_Items[1]; public: inline Guid_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Guid_t * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Guid_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; IL2CPP_EXTERN_C void TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshal_windows_runtime(const TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC& unmarshaled, TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime& marshaled); IL2CPP_EXTERN_C void TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshal_windows_runtime_back(const TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime& marshaled, TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC& unmarshaled); IL2CPP_EXTERN_C void TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshal_windows_runtime_cleanup(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime& marshaled); il2cpp_hresult_t IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(RuntimeObject* __this); il2cpp_hresult_t IIterable_1_First_m040BDF89865ADD81E4589B6F4D5E3FFD516CCEAE_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t7D121DD54685B5C3A67B4FBEBDB34A8EBACD6E4C** comReturnValue); il2cpp_hresult_t IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue); il2cpp_hresult_t IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue); il2cpp_hresult_t IIterable_1_First_m83409326985343D364AFE4A5C738D93A279AEAA1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t0979D6AE40DD58B191FD848FE224608112B69237** comReturnValue); il2cpp_hresult_t IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue); il2cpp_hresult_t IIterable_1_First_m44403577D0A7FC49C192EC087DF22DC82ABD1BEC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t2B21213FEB0A065EE8EE08505D4993A125B94604** comReturnValue); il2cpp_hresult_t IVector_1_GetAt_m753F84B2B58A069E1926F7547ED499FC04C34B7C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppWindowsRuntimeTypeName* comReturnValue); il2cpp_hresult_t IVector_1_get_Size_m76A30C4F94F26EBF19C7F8B112FF82780846017C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue); il2cpp_hresult_t IVector_1_GetView_m50EC3AB4A7FE4002629EFC9CEF9CE773ABB92E2D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171** comReturnValue); il2cpp_hresult_t IVector_1_IndexOf_mCDC03996801ACE4699A794C40B5F156DEAC0DCD4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppWindowsRuntimeTypeName ___value0, uint32_t* ___index1, bool* comReturnValue); il2cpp_hresult_t IVector_1_SetAt_mFD8286C417181E62449D0A26CA97A61744AF9AC9_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppWindowsRuntimeTypeName ___value1); il2cpp_hresult_t IVector_1_InsertAt_m5753B2A40337D907E4E2FF7D71E5E7CD8819A7F7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppWindowsRuntimeTypeName ___value1); il2cpp_hresult_t IVector_1_RemoveAt_m0E8A64B4E7CF5E6D000B5DF44E18688E73CFF872_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0); il2cpp_hresult_t IVector_1_Append_mE11CB215F729BC9A7A61B57BE191837B69EEDE75_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppWindowsRuntimeTypeName ___value0); il2cpp_hresult_t IVector_1_RemoveAtEnd_mBF7DD662DFCC69801FF634A95369DB334FD17AF7_ComCallableWrapperProjectedMethod(RuntimeObject* __this); il2cpp_hresult_t IVector_1_Clear_m3AFEA5A44BAF9CB90AA70C07BE31841999F4EB7A_ComCallableWrapperProjectedMethod(RuntimeObject* __this); il2cpp_hresult_t IVector_1_GetMany_mDCEA26B2F642A423C49CF156CB93442BCC132DE7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppWindowsRuntimeTypeName* ___items1, uint32_t* comReturnValue); il2cpp_hresult_t IVector_1_ReplaceAll_m8E31DAA9F521E443155FF5AD9FEF14D10D41ECAD_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, Il2CppWindowsRuntimeTypeName* ___items0); il2cpp_hresult_t IVectorView_1_GetAt_m6965CEA3FF4FD7BAD091061A3FCB132604F47142_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppWindowsRuntimeTypeName* comReturnValue); il2cpp_hresult_t IVectorView_1_get_Size_mD0663E7385B5FC9416AC9F0F6B9827285830CCC4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue); il2cpp_hresult_t IVectorView_1_IndexOf_m9AFBCFCF2DA1FB76DA3FC209FA7B840609459D74_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppWindowsRuntimeTypeName ___value0, uint32_t* ___index1, bool* comReturnValue); il2cpp_hresult_t IVectorView_1_GetMany_m19A7973D213566841BC30D081C554FC099AF7D01_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppWindowsRuntimeTypeName* ___items1, uint32_t* comReturnValue); il2cpp_hresult_t IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable** comReturnValue); il2cpp_hresult_t IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue); il2cpp_hresult_t IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue); il2cpp_hresult_t IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue); il2cpp_hresult_t IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable** comReturnValue); il2cpp_hresult_t IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue); il2cpp_hresult_t IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue); il2cpp_hresult_t IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue); il2cpp_hresult_t IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable* ___value1); il2cpp_hresult_t IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable* ___value1); il2cpp_hresult_t IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0); il2cpp_hresult_t IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0); il2cpp_hresult_t IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(RuntimeObject* __this); il2cpp_hresult_t IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(RuntimeObject* __this); il2cpp_hresult_t IVector_1_GetAt_mF1C28A39CB196A6558872EF51C7BBA27345A0577_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable** comReturnValue); il2cpp_hresult_t IVector_1_get_Size_mF67ADD732EE6887FDB6C6FA10423E3A17E70F907_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue); il2cpp_hresult_t IVector_1_GetView_m74563BA39B42A410531686B0E575591BB1B6783B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356** comReturnValue); il2cpp_hresult_t IVector_1_IndexOf_m5D285CE815AEA392A54B1B8DB0DB87AE7A11E9F1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue); il2cpp_hresult_t IVector_1_SetAt_m2DBCED7F76180810B1A8913EC60326C225EC8928_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable* ___value1); il2cpp_hresult_t IVector_1_InsertAt_m8E26C2891B8B514689C8598799F065DF5787A033_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable* ___value1); il2cpp_hresult_t IVector_1_RemoveAt_mE57C73814C5CE91212890C68FB5024CA38CF1336_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0); il2cpp_hresult_t IVector_1_Append_mE03D632B5C8AE9BF9D0D19B2DF47B14D9AEA63ED_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0); il2cpp_hresult_t IVector_1_RemoveAtEnd_m2BE9E5FF5D4F73D5F4E26F1E8B74789A79009EB2_ComCallableWrapperProjectedMethod(RuntimeObject* __this); il2cpp_hresult_t IVector_1_Clear_mCE8AE5382949CD2CFD3A9B40EF02A3897FD77698_ComCallableWrapperProjectedMethod(RuntimeObject* __this); il2cpp_hresult_t IVector_1_GetMany_mBCA555ECFB3AC3D8FEFCD39368DF88BE5642352E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue); il2cpp_hresult_t IVector_1_ReplaceAll_m627D66FCD1A06ED4C5AA428B4EA3514E34F52A3A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, Il2CppIInspectable** ___items0); // System.Byte System.UInt32::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t UInt32_System_IConvertible_ToByte_m9386861ED644D7B5E76BD0D7FB86DEEB0173A0A5 (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.UInt32::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t UInt32_System_IConvertible_ToInt16_mC8FA3B04E544531449665298BE73AB2F486AE393 (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.UInt32::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t UInt32_System_IConvertible_ToUInt16_mBEE9936EF6F5D9D150E507F28CDA17A8C1C92E1C (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.UInt32::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt32_System_IConvertible_ToInt32_mB0FCB9A9ACF700AAD49333618A4B819E24F0F0B9 (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.UInt32::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UInt32_System_IConvertible_ToInt64_m6E1441BF4C3D5FDFCAEEED65CFE96E6D9F08007B (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.UInt32::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UInt32_System_IConvertible_ToUInt64_m659A2E594AAC8E26152B3EAAF1D80CECD2F43120 (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.UInt32::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UInt32_System_IConvertible_ToSingle_m2B438F2707D2FB9C8FDC6D79B263677FA3C37096 (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.UInt32::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double UInt32_System_IConvertible_ToDouble_m4A3EDEA2044FAA202D4ED3C81672CF0308FAE7E8 (uint32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Byte System.Int32::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.Int32::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.Int32::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt32 System.Int32::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.Int32::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.Int32::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.Int32::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.Int32::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // COM Callable Wrapper for Windows.Foundation.DateTime struct DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper>, IReference_1_tDB374689D094BEB200D3B354DC916CA5889930B4, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tDB374689D094BEB200D3B354DC916CA5889930B4::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tDB374689D094BEB200D3B354DC916CA5889930B4*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tDB374689D094BEB200D3B354DC916CA5889930B4::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m8A2147DBABB963656671ACB6C0BC03A06A02DA4A(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m8A2147DBABB963656671ACB6C0BC03A06A02DA4A_CCW_DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 returnValue; try { returnValue = *static_cast<DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 *>(UnBox(GetManagedObjectInline(), DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.EventRegistrationToken struct EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper>, IReference_1_t2743E3BA6B940A699EE49615FBA484964C9B8B44, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t2743E3BA6B940A699EE49615FBA484964C9B8B44::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t2743E3BA6B940A699EE49615FBA484964C9B8B44*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t2743E3BA6B940A699EE49615FBA484964C9B8B44::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m93D0577BA82B2418EB4B2DCF81F86934016908A7(EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m93D0577BA82B2418EB4B2DCF81F86934016908A7_CCW_EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 returnValue; try { returnValue = *static_cast<EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 *>(UnBox(GetManagedObjectInline(), EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.FoundationContract struct FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper>, IReference_1_t5A6F21153F46184B91D3803A669C812309053C2E, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t5A6F21153F46184B91D3803A669C812309053C2E::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t5A6F21153F46184B91D3803A669C812309053C2E*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t5A6F21153F46184B91D3803A669C812309053C2E::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m4F109C5DA2FF9F7BD3F605BB09430CA3F936807A(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m4F109C5DA2FF9F7BD3F605BB09430CA3F936807A_CCW_FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 returnValue; try { returnValue = *static_cast<FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 *>(UnBox(GetManagedObjectInline(), FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.HResult struct HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper>, IReference_1_t9BBCE4CCCD926DFB5670735553DCC34756C5BF9E, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t9BBCE4CCCD926DFB5670735553DCC34756C5BF9E::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t9BBCE4CCCD926DFB5670735553DCC34756C5BF9E*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t9BBCE4CCCD926DFB5670735553DCC34756C5BF9E::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m310ABD51534A3ABADF2474DAC870D26B1706D4A1(HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m310ABD51534A3ABADF2474DAC870D26B1706D4A1_CCW_HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB returnValue; try { returnValue = *static_cast<HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB *>(UnBox(GetManagedObjectInline(), HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Metadata.AttributeTargets struct AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper>, IReference_1_t14DAE467685CF0D26BDDDFEEF8C8793E49BE3256, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t14DAE467685CF0D26BDDDFEEF8C8793E49BE3256::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t14DAE467685CF0D26BDDDFEEF8C8793E49BE3256*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t14DAE467685CF0D26BDDDFEEF8C8793E49BE3256::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m0F953FE55F90100B2381188B132B5FAA7D5A4929(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m0F953FE55F90100B2381188B132B5FAA7D5A4929_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { returnValue = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToByte_m9386861ED644D7B5E76BD0D7FB86DEEB0173A0A5((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToInt16_mC8FA3B04E544531449665298BE73AB2F486AE393((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToUInt16_mBEE9936EF6F5D9D150E507F28CDA17A8C1C92E1C((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToInt32_mB0FCB9A9ACF700AAD49333618A4B819E24F0F0B9((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { returnValue = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToInt64_m6E1441BF4C3D5FDFCAEEED65CFE96E6D9F08007B((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToUInt64_m659A2E594AAC8E26152B3EAAF1D80CECD2F43120((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToSingle_m2B438F2707D2FB9C8FDC6D79B263677FA3C37096((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToDouble_m4A3EDEA2044FAA202D4ED3C81672CF0308FAE7E8((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AttributeTargets_tA7256AD263010BF992D3949CE57A314716980FA7_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Metadata.MarshalingType struct MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper>, IReference_1_tAED774804E022955C705DD94598B4447B0142C06, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tAED774804E022955C705DD94598B4447B0142C06::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tAED774804E022955C705DD94598B4447B0142C06*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tAED774804E022955C705DD94598B4447B0142C06::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m1DF83BE7461C683CF165E03BC4915F4FFC2690C6(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m1DF83BE7461C683CF165E03BC4915F4FFC2690C6_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MarshalingType_t9A5D090418F1AFA7DCD94B9E03E909E7A1B169B6_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Metadata.ThreadingModel struct ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper>, IReference_1_tA168AABD94AF22150BA9FF1C22BB9D589944D6FD, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tA168AABD94AF22150BA9FF1C22BB9D589944D6FD::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tA168AABD94AF22150BA9FF1C22BB9D589944D6FD*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tA168AABD94AF22150BA9FF1C22BB9D589944D6FD::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m7AA4C5DD3527F1B19462C726F511D88FC12FBE6B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m7AA4C5DD3527F1B19462C726F511D88FC12FBE6B_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ThreadingModel_tE658033D954DB5DFFE88703D1FA993679892B9DE_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Numerics.Matrix4x4 struct Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper>, IReference_1_t83324F52C6450F1C6DEDB644D38367FCE61372E1, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t83324F52C6450F1C6DEDB644D38367FCE61372E1::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t83324F52C6450F1C6DEDB644D38367FCE61372E1*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t83324F52C6450F1C6DEDB644D38367FCE61372E1::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m2492E30E817B6A78C5A7C728CD3DFFA25D4608BF(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m2492E30E817B6A78C5A7C728CD3DFFA25D4608BF_CCW_Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 returnValue; try { returnValue = *static_cast<Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 *>(UnBox(GetManagedObjectInline(), Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Numerics.Quaternion struct Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper>, IReference_1_t926809CC0C2BCDF32D15E8A86885B7F4BE14A59F, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t926809CC0C2BCDF32D15E8A86885B7F4BE14A59F::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t926809CC0C2BCDF32D15E8A86885B7F4BE14A59F*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t926809CC0C2BCDF32D15E8A86885B7F4BE14A59F::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mB4F86E26F7843886681B8F2CF9CDA79DC74827E7(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mB4F86E26F7843886681B8F2CF9CDA79DC74827E7_CCW_Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C returnValue; try { returnValue = *static_cast<Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C *>(UnBox(GetManagedObjectInline(), Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Numerics.Vector3 struct Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper>, IReference_1_t02F02891CF2473BD3395C94005BD0A1BE2757EA8, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t02F02891CF2473BD3395C94005BD0A1BE2757EA8::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t02F02891CF2473BD3395C94005BD0A1BE2757EA8*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t02F02891CF2473BD3395C94005BD0A1BE2757EA8::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m5A5957990F5156FC2709CA1F6E406C6A0C4AD6A3(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m5A5957990F5156FC2709CA1F6E406C6A0C4AD6A3_CCW_Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD returnValue; try { returnValue = *static_cast<Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD *>(UnBox(GetManagedObjectInline(), Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Point struct Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper>, IReference_1_t7773DF4951EE2956BB52F40107CA99EB3AC18121, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t7773DF4951EE2956BB52F40107CA99EB3AC18121::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t7773DF4951EE2956BB52F40107CA99EB3AC18121*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t7773DF4951EE2956BB52F40107CA99EB3AC18121::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m12AEB76C9C84E98E8BEE7E909CE268F95A05E899(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m12AEB76C9C84E98E8BEE7E909CE268F95A05E899_CCW_Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 returnValue; try { returnValue = *static_cast<Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 *>(UnBox(GetManagedObjectInline(), Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 17; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Point", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.PropertyType struct PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper>, IReference_1_t13454E63971AE5A60B6BCF6FF56A963D17B7DFB1, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t13454E63971AE5A60B6BCF6FF56A963D17B7DFB1::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t13454E63971AE5A60B6BCF6FF56A963D17B7DFB1*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t13454E63971AE5A60B6BCF6FF56A963D17B7DFB1::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m03DA6CDF5117537DE41F422D686269BF50DA50C6(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m03DA6CDF5117537DE41F422D686269BF50DA50C6_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) PropertyType_t57C754BCEE8B174F474AB6298CFD8E2B02AE3B2C_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Rect struct Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper>, IReference_1_t0383D46BD689BDB48118BCC40E516D48E99AC9C9, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t0383D46BD689BDB48118BCC40E516D48E99AC9C9::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t0383D46BD689BDB48118BCC40E516D48E99AC9C9*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t0383D46BD689BDB48118BCC40E516D48E99AC9C9::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mD70DC394007AE06DD463C810C4A6C833AE4F83CB(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mD70DC394007AE06DD463C810C4A6C833AE4F83CB_CCW_Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA returnValue; try { returnValue = *static_cast<Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA *>(UnBox(GetManagedObjectInline(), Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 19; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Rect", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.Size struct Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper>, IReference_1_t1C3EFAED54D294F78A828A79443DD579F84600A5, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t1C3EFAED54D294F78A828A79443DD579F84600A5::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t1C3EFAED54D294F78A828A79443DD579F84600A5*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t1C3EFAED54D294F78A828A79443DD579F84600A5::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mEEA056935DABABBA8E17B0CBDA7AF3596AF5E825(Size_t4766FF009097CE547F699B69250246058DA664D9 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mEEA056935DABABBA8E17B0CBDA7AF3596AF5E825_CCW_Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation Size_t4766FF009097CE547F699B69250246058DA664D9 returnValue; try { returnValue = *static_cast<Size_t4766FF009097CE547F699B69250246058DA664D9 *>(UnBox(GetManagedObjectInline(), Size_t4766FF009097CE547F699B69250246058DA664D9_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 18; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Size", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Size_t4766FF009097CE547F699B69250246058DA664D9(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Size_t4766FF009097CE547F699B69250246058DA664D9_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.TimeSpan struct TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper>, IReference_1_t3C2FDD60AAF84C14D98EE687F95A2FE316F1D921, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t3C2FDD60AAF84C14D98EE687F95A2FE316F1D921::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t3C2FDD60AAF84C14D98EE687F95A2FE316F1D921*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t3C2FDD60AAF84C14D98EE687F95A2FE316F1D921::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mC6234E02A201EAFB66846D1AA800201A51B2CDF7(TimeSpan_tD18885B289077804D4E82931E68E84181C072755 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mC6234E02A201EAFB66846D1AA800201A51B2CDF7_CCW_TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation TimeSpan_tD18885B289077804D4E82931E68E84181C072755 returnValue; try { returnValue = *static_cast<TimeSpan_tD18885B289077804D4E82931E68E84181C072755 *>(UnBox(GetManagedObjectInline(), TimeSpan_tD18885B289077804D4E82931E68E84181C072755_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TimeSpan_tD18885B289077804D4E82931E68E84181C072755(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TimeSpan_tD18885B289077804D4E82931E68E84181C072755_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Foundation.UniversalApiContract struct UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper>, IReference_1_tC752D5284F00B4397E95E715F07700B7C452DA32, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tC752D5284F00B4397E95E715F07700B7C452DA32::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tC752D5284F00B4397E95E715F07700B7C452DA32*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tC752D5284F00B4397E95E715F07700B7C452DA32::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m2269DCAE519508A042AD9A68C026B7AA70901042(UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m2269DCAE519508A042AD9A68C026B7AA70901042_CCW_UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 returnValue; try { returnValue = *static_cast<UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 *>(UnBox(GetManagedObjectInline(), UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Graphics.Holographic.HolographicViewConfigurationKind struct HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper>, IReference_1_t4A64C896CF2288B6686C7D1BC6291F0D4235DFB4, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t4A64C896CF2288B6686C7D1BC6291F0D4235DFB4::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t4A64C896CF2288B6686C7D1BC6291F0D4235DFB4*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t4A64C896CF2288B6686C7D1BC6291F0D4235DFB4::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mB500DD4EC51CF23CA8B4D79F9CBF5E4C254AB0E1(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mB500DD4EC51CF23CA8B4D79F9CBF5E4C254AB0E1_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HolographicViewConfigurationKind_t5271E336ECAD7EFB1957597EE39B66675364536E_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Perception.People.HandJointKind struct HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper>, IReference_1_t780BBB80E92AF8378F3A92CFF2EF960067492AFA, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t780BBB80E92AF8378F3A92CFF2EF960067492AFA::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t780BBB80E92AF8378F3A92CFF2EF960067492AFA*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t780BBB80E92AF8378F3A92CFF2EF960067492AFA::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mAE5A8F99060F1DC39B04303111B9B0936CF2EE59(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mAE5A8F99060F1DC39B04303111B9B0936CF2EE59_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HandJointKind_t459313DB8FB9919DA3565D3A693449187E5CF7CA_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Perception.People.HandMeshVertex struct HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper>, IReference_1_t0D003B77C43341B97E803664305892C337680D66, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t0D003B77C43341B97E803664305892C337680D66::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t0D003B77C43341B97E803664305892C337680D66*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t0D003B77C43341B97E803664305892C337680D66::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mE6C0B7EE13DDE444F05495C7D1FB93F46BD4B1A9(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mE6C0B7EE13DDE444F05495C7D1FB93F46BD4B1A9_CCW_HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 returnValue; try { returnValue = *static_cast<HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 *>(UnBox(GetManagedObjectInline(), HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Perception.People.JointPose struct JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper>, IReference_1_t20F75434E9A39E107D795462E73230FC877DB3FC, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t20F75434E9A39E107D795462E73230FC877DB3FC::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t20F75434E9A39E107D795462E73230FC877DB3FC*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t20F75434E9A39E107D795462E73230FC877DB3FC::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m5C473856F84B9723FF4AFFA39ACD3BC9FB2FE6EF(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m5C473856F84B9723FF4AFFA39ACD3BC9FB2FE6EF_CCW_JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE returnValue; try { returnValue = *static_cast<JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE *>(UnBox(GetManagedObjectInline(), JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Perception.People.JointPoseAccuracy struct JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper>, IReference_1_t3507A4A6F8BCB1E6CC3304154FC8E98C281B9E89, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t3507A4A6F8BCB1E6CC3304154FC8E98C281B9E89::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t3507A4A6F8BCB1E6CC3304154FC8E98C281B9E89*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t3507A4A6F8BCB1E6CC3304154FC8E98C281B9E89::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m1CF326D0DC7E3C56CE53356E28D6DB71110F7928(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m1CF326D0DC7E3C56CE53356E28D6DB71110F7928_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Perception.Spatial.SpatialRay struct SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper>, IReference_1_t86600D3AF8A08C86C54864E09EABBE5FDDD8D699, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t86600D3AF8A08C86C54864E09EABBE5FDDD8D699::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t86600D3AF8A08C86C54864E09EABBE5FDDD8D699*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t86600D3AF8A08C86C54864E09EABBE5FDDD8D699::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m6C23125A016E1F5E4169DEDCBDCC3031D03BE8DD(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B * comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m6C23125A016E1F5E4169DEDCBDCC3031D03BE8DD_CCW_SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B returnValue; try { returnValue = *static_cast<SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B *>(UnBox(GetManagedObjectInline(), SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Storage.CreationCollisionOption struct CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper>, IReference_1_tF7295EBC968A80454550BB2DFEBDE7FDA5F935F6, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tF7295EBC968A80454550BB2DFEBDE7FDA5F935F6::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tF7295EBC968A80454550BB2DFEBDE7FDA5F935F6*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tF7295EBC968A80454550BB2DFEBDE7FDA5F935F6::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mD022CF12AFA037E3A391C619D1DF5926221967A4(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mD022CF12AFA037E3A391C619D1DF5926221967A4_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) CreationCollisionOption_t446166DBF156CCE4C7C7E16D78B3E9A2877E5538_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.Storage.Streams.InputStreamOptions struct InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper>, IReference_1_t4D805BBA32CE3FB48729C326E9DCD206E80E52DC, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t4D805BBA32CE3FB48729C326E9DCD206E80E52DC::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t4D805BBA32CE3FB48729C326E9DCD206E80E52DC*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t4D805BBA32CE3FB48729C326E9DCD206E80E52DC::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m29DABAFAF45FE5B35150EB56DB1AC7608AC04108(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m29DABAFAF45FE5B35150EB56DB1AC7608AC04108_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { returnValue = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToByte_m9386861ED644D7B5E76BD0D7FB86DEEB0173A0A5((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToInt16_mC8FA3B04E544531449665298BE73AB2F486AE393((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToUInt16_mBEE9936EF6F5D9D150E507F28CDA17A8C1C92E1C((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToInt32_mB0FCB9A9ACF700AAD49333618A4B819E24F0F0B9((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { returnValue = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToInt64_m6E1441BF4C3D5FDFCAEEED65CFE96E6D9F08007B((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToUInt64_m659A2E594AAC8E26152B3EAAF1D80CECD2F43120((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToSingle_m2B438F2707D2FB9C8FDC6D79B263677FA3C37096((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { uint32_t value = *static_cast<uint32_t*>(UnBox(GetManagedObjectInline(), InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_il2cpp_TypeInfo_var)); try { returnValue = UInt32_System_IConvertible_ToDouble_m4A3EDEA2044FAA202D4ED3C81672CF0308FAE7E8((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InputStreamOptions_t84A663CC3616A0D05994D54C1DA6B2E877F7FF82_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.UI.Input.GazeInputAccessStatus struct GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper>, IReference_1_tBBC4EF47CF4A6A0E2BD1866D2AE894B995663CE0, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tBBC4EF47CF4A6A0E2BD1866D2AE894B995663CE0::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tBBC4EF47CF4A6A0E2BD1866D2AE894B995663CE0*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tBBC4EF47CF4A6A0E2BD1866D2AE894B995663CE0::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m9952B601AF3C6D205C72E5DA9AEDDB03A369E4EF(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m9952B601AF3C6D205C72E5DA9AEDDB03A369E4EF_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GazeInputAccessStatus_tE56B1134F343E06D19FF224683D91598329BA7A0_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.UI.Input.Spatial.SpatialInteractionSourceKind struct SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper>, IReference_1_tD7D4DF1EB42B5D52DD9D400814D7D3093F09B8DA, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tD7D4DF1EB42B5D52DD9D400814D7D3093F09B8DA::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tD7D4DF1EB42B5D52DD9D400814D7D3093F09B8DA*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tD7D4DF1EB42B5D52DD9D400814D7D3093F09B8DA::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mF64790DEC6FF93C719750283EA8C9CFB1EA82AE0(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mF64790DEC6FF93C719750283EA8C9CFB1EA82AE0_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) SpatialInteractionSourceKind_tD4B307AD5130D2B3658A0A6A8FA2DAA7051F9222_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.UI.Xaml.Interop.TypeKind struct TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper>, IReference_1_tC5997DB9C48F0D04F8FD9B6E0E05E0D1AD700882, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_tC5997DB9C48F0D04F8FD9B6E0E05E0D1AD700882::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_tC5997DB9C48F0D04F8FD9B6E0E05E0D1AD700882*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_tC5997DB9C48F0D04F8FD9B6E0E05E0D1AD700882::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_m36783109B74EB29CB28AF73DD7E207957146F018(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_m36783109B74EB29CB28AF73DD7E207957146F018_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = true; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint8_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } try { returnValue = Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Byte"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint16_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } try { returnValue = Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt16"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint32_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } try { returnValue = Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt32"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Int64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation uint64_t returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); if (value < 0) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } try { returnValue = Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "UInt64"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation float returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Single"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869_CCW_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation double returnValue; try { int32_t value = *static_cast<int32_t*>(UnBox(GetManagedObjectInline(), TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_il2cpp_TypeInfo_var)); try { returnValue = Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E((&value), NULL, NULL); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_iproperty_conversion(GetManagedObjectInline(), "Other", "Double"); return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C_ComCallableWrapper(obj)); } // COM Callable Wrapper for Windows.UI.Xaml.Interop.TypeName struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper>, IReference_1_t05125DEBFACCF631533E1BB325E91CC8E587D7AD, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReference_1_t05125DEBFACCF631533E1BB325E91CC8E587D7AD::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReference_1_t05125DEBFACCF631533E1BB325E91CC8E587D7AD*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IReference_1_t05125DEBFACCF631533E1BB325E91CC8E587D7AD::IID; interfaceIds[1] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IReference_1_get_Value_mAD21B0BAD0AA9FB92F7A686B1DEE50AB61A0B5A3(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReference_1_get_Value_mAD21B0BAD0AA9FB92F7A686B1DEE50AB61A0B5A3_CCW_TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC returnValue; try { returnValue = *static_cast<TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC *>(UnBox(GetManagedObjectInline(), TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_il2cpp_TypeInfo_var)); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of return value back from managed representation TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime _returnValue_marshaled = {}; TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshal_windows_runtime(returnValue, _returnValue_marshaled); *comReturnValue = _returnValue_marshaled; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 20; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Byte[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt32[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Int64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "UInt64[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Single[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Double[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "String[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Guid[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("Other", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.BaseGenericInputSource struct BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) BaseGenericInputSource_t83AFCFEBD4EADC97046D53DAF22E26AC3172ACEB_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.HandJointService struct HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HandJointService_tBE222EFE58F96D139D34FE59818B0A5B5ADA4699_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.UnityInput.MouseDeviceManager struct MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MouseDeviceManager_tB3C655A77EDC28D1CFF4FCB3EFA46D9AF898BB38_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityJoystickManager struct UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) UnityJoystickManager_t613C26772C8BB8706034B06AEC5B6FD0A4D32488_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.UnityInput.UnityTouchDeviceManager struct UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) UnityTouchDeviceManager_t678C449FCD69610CA31AFD5B64E41094AFA1F1B9_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<GetContentSceneNamesByTag>d__36 struct U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759_ComCallableWrapper>, IIterable_1_t3D3C61499BF616A0FC79BBE99A667948ED4235BC, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_t7AD27FF97F3631C2A53221E237A532F8259212D5, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_t3D3C61499BF616A0FC79BBE99A667948ED4235BC::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_t3D3C61499BF616A0FC79BBE99A667948ED4235BC*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_t7AD27FF97F3631C2A53221E237A532F8259212D5::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_t7AD27FF97F3631C2A53221E237A532F8259212D5*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(6); interfaceIds[0] = IIterable_1_t3D3C61499BF616A0FC79BBE99A667948ED4235BC::IID; interfaceIds[1] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID; interfaceIds[3] = IIterable_1_t7AD27FF97F3631C2A53221E237A532F8259212D5::IID; interfaceIds[4] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[5] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 6; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m040BDF89865ADD81E4589B6F4D5E3FFD516CCEAE(IIterator_1_t7D121DD54685B5C3A67B4FBEBDB34A8EBACD6E4C** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m040BDF89865ADD81E4589B6F4D5E3FFD516CCEAE_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m83409326985343D364AFE4A5C738D93A279AEAA1(IIterator_1_t0979D6AE40DD58B191FD848FE224608112B69237** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m83409326985343D364AFE4A5C738D93A279AEAA1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CGetContentSceneNamesByTagU3Ed__36_tC6E9D2C37B1E200A2F1E13B021D2A45E4540B759_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystemProfile_<get_PermittedLightingSceneComponentTypes>d__20 struct U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6_ComCallableWrapper>, IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4); interfaceIds[0] = IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45::IID; interfaceIds[1] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[3] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 4; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m44403577D0A7FC49C192EC087DF22DC82ABD1BEC(IIterator_1_t2B21213FEB0A065EE8EE08505D4993A125B94604** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m44403577D0A7FC49C192EC087DF22DC82ABD1BEC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3Cget_PermittedLightingSceneComponentTypesU3Ed__20_t331DAEFB8A007AC18200EC504EE26611981837C6_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateAncestors>d__8 struct U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4); interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID; interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[3] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 4; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CEnumerateAncestorsU3Ed__8_tD46B786F96B79E1C0DA03752AB855421CF31814E_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.TransformExtensions_<EnumerateHierarchyCore>d__4 struct U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4); interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID; interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[3] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 4; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CEnumerateHierarchyCoreU3Ed__4_tCC29DF52EB050A6F21ACF2CCE1D4C52EFB176579_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.MixedRealityLineRenderer_<FadeLine>d__35 struct U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CFadeLineU3Ed__35_t6D2056918BDF195C80AEA009B540985FD6AFE3D3_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.OBJWriterUtility_<CreateOBJFileContentAsync>d__1 struct U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CCreateOBJFileContentAsyncU3Ed__1_t8A94D7940804C14E4DF74BB8FB8EA6BAA1945CEE_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.ProximityLight_<PulseRoutine>d__22 struct U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CPulseRoutineU3Ed__22_tB820B5CDF12E4A4CCB48AEAFCD3665C1A2F60E02_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.RuntimeSceneUtils_<GetRootGameObjectsInLoadedScenes>d__2 struct U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(3); interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[2] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 3; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CGetRootGameObjectsInLoadedScenesU3Ed__2_tB8FDE89BC1AB3135AFCEC24A236E1458AEA36028_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable struct AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7 { inline AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AnimationCurveEnumerable_t666B401CF0B121B941C842825A23A0888A5F43D9_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.InputAnimation_AnimationCurveEnumerable_<GetEnumerator>d__2 struct U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CGetEnumeratorU3Ed__2_t2D8FFF09730B15BBF93F924CD366B931FC452678_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.InputRecordingService struct InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InputRecordingService_t3358FA455D466CD834CBC7EE0D70824C48708001_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.DefaultRaycastProvider struct DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) DefaultRaycastProvider_tFDC8375656B499BE12EAF97B54E4C40D6689434F_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.FocusProvider struct FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) FocusProvider_t87BF2ADF149DEC4C57396AA3176795D100AD5A09_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.MixedRealityInputModule_<get_ActiveMixedRealityPointers>d__8 struct U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[1] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3Cget_ActiveMixedRealityPointersU3Ed__8_tF8088A7EB33A5199FA9A101BBCB0F67DDA76E9C2_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.MixedRealityInputSystem struct MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MixedRealityInputSystem_tDBC8FA900996E1124889AC982468EB3C2082F7BC_ComCallableWrapper(obj)); } // COM Callable Wrapper for TMPro.TMP_Dropdown_<DelayedDestroyDropdownList>d__72 struct U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CDelayedDestroyDropdownListU3Ed__72_tAE1F1266B1A976E76923EEE0E4CC5F21AF95D4C8_ComCallableWrapper(obj)); } // COM Callable Wrapper for TMPro.TMP_InputField_<CaretBlink>d__267 struct U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CCaretBlinkU3Ed__267_t080BB9CF3BA7B7CAC3F6ECD171BDDA7D4A323E8D_ComCallableWrapper(obj)); } // COM Callable Wrapper for TMPro.TMP_InputField_<MouseDragOutsideRect>d__285 struct U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CMouseDragOutsideRectU3Ed__285_t10E487F2C99305D19BD1CCA15FCDA664213EEFF1_ComCallableWrapper(obj)); } // COM Callable Wrapper for TMPro.TMP_SpriteAnimator_<DoSpriteAnimationInternal>d__7 struct U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CDoSpriteAnimationInternalU3Ed__7_t31ADE0DE24AE64EC437AED7B01D5749E9248C2AC_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.XR.WSA.Input.GestureRecognizer struct GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GestureRecognizer_tE4A3B36C495289B1DF1011E12394116A91E361DE_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.XR.WSA.Persistence.WorldAnchorStore struct WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WorldAnchorStore_tD361F689FE6F087AD3F38BA8724398992434E225_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.XR.WSA.Sharing.WorldAnchorTransferBatch struct WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WorldAnchorTransferBatch_t7BF25F7D67684AD6C02C3162A81797BC9045BF96_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.XR.WSA.SurfaceObserver struct SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) SurfaceObserver_tE97E43137858D5F6A417980ECDABAC2BB4CF1864_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoAnimatePulse>d__22 struct U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CCoAnimatePulseU3Ed__22_t85D87ED4F048F28CAB4F58CB54FBF435E4B7689D_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoRepeatPulse>d__21 struct U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CCoRepeatPulseU3Ed__21_t90D84F0552C214BC6E009FCE83330CCBD9B1CCDA_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoSinglePulse>d__20 struct U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CCoSinglePulseU3Ed__20_tE75F7EF08DD174C5D6A160F537AE5F5ECFD640ED_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Experimental.SurfacePulse.SurfacePulse_<CoWaitForRepeatDelay>d__23 struct U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CCoWaitForRepeatDelayU3Ed__23_t21547E4BEC0214C124A6423C963E7D4166A32A96_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Experimental.UI.ScrollingObjectCollection_<AnimateTo>d__149 struct U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CAnimateToU3Ed__149_t1330F76DB9F62896BFCD040CF2FFF961775E6B26_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Input.PointerUtils_<GetPointers>d__7 struct U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[1] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CGetPointersU3Ed__7_t018ED84B628BBF6B2F27714E7DC08A37B90DFACE_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.SpatialAwareness.Utilities.SpatialMeshExporter_<SaveInternal>d__2 struct U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CSaveInternalU3Ed__2_tD939114EB2F4E35FE34CF9F6181318FC555FE5D0_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.UI.FollowMeToggle_<AutoFollowDistanceCheck>d__26 struct U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CAutoFollowDistanceCheckU3Ed__26_tF44C460B6283FB977309648241ECE4DDC1A37812_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.UI.GazeHandHelper_<GetAllHandPositions>d__11 struct U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[1] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CGetAllHandPositionsU3Ed__11_t937BCC88BDAD064357E63ACCE98CF5DB2F2EB36B_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.UI.Interactable_<GlobalVisualReset>d__156 struct U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CGlobalVisualResetU3Ed__156_t811845EDC51A329611391BBBA15722D3C43DC6D8_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.UI.Interactable_<InputDownTimer>d__146 struct U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CInputDownTimerU3Ed__146_tD077A2579F58D411E20D68E621F24425B2D13EBA_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.UI.PressableButtonHoloLens2_<AnimateHighlightPlate>d__23 struct U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CAnimateHighlightPlateU3Ed__23_t9D19632E6206C57725A65DF7103B85F70FB78398_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Solvers.HandConstraint_<ToggleCursors>d__46 struct U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CToggleCursorsU3Ed__46_t604C7F8252800EE263D73B88C14CDBF6C76F6622_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.AndroidJavaClass struct AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AndroidJavaClass_t799D386229C77D27C7E129BEF7A79AFD426084EE_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.AndroidJavaObject struct AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AndroidJavaObject_t31F4DD4D4523A77B8AF16FE422B7426248E3093D_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainGroups struct TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7 { inline TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TerrainGroups_t88B87E7C8DA6A97E904D74167C43D631796ECBC5_ComCallableWrapper(obj)); } // COM Callable Wrapper for UnityEngine.Experimental.VFX.VFXSpawnerState struct VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) VFXSpawnerState_t614A1AADC2EDB20E82A625BE053A22DB31D89AC7_ComCallableWrapper(obj)); } // COM Callable Wrapper for I18N.CJK.CodeTable struct CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) CodeTable_tA164DCD93E031DA92DCA7F91EE00046E35B26B1F_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<ClickTimer>d__14 struct U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CClickTimerU3Ed__14_t3CF9B303C5760CFD4A9AFE055656E4FAF71F2680_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.UI.CustomInteractablesReceiver_<VoiceTimer>d__15 struct U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CVoiceTimerU3Ed__15_t2AAC9D54317D4B2DAE5CC858094F17046FBF569B_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<Sequence>d__12 struct U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CSequenceU3Ed__12_tC307D95A9DE5919C223CB1F81451BCA80C2CA451_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.BoundingBoxExampleTest_<WaitForSpeechCommand>d__14 struct U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CWaitForSpeechCommandU3Ed__14_t779302C965BAC3082AE9788700FC707EF9A4A568_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<ComputeHeatmapAt>d__20 struct U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CComputeHeatmapAtU3Ed__20_tF3ECE50AE1AD42E1C06EBD279863CD44EDB3C2CC_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.DrawOnTexture_<DrawAt>d__19 struct U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CDrawAtU3Ed__19_tCBBECE1E7518F97229DD44AC7435938D56264458_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.EyeTrackingDemoUtils_<LoadNewScene>d__8 struct U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CLoadNewSceneU3Ed__8_tE22C603E088D27AD5E095B9C39C50E7D021DDABE_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.LoadAdditiveScene_<LoadNewScene>d__6 struct U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CLoadNewSceneU3Ed__6_t163D8D76B1652A8A25B4B9B4F43AC5A1FA1991ED_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<AddToCounter>d__44 struct U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CAddToCounterU3Ed__44_t4AB8E43698272D835B55F7D1EA9A12D0FA3A53C4_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<PopulateHeatmap>d__42 struct U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CPopulateHeatmapU3Ed__42_t04146B84577040FB370FB4B253A954FE0C86EC88_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.Logging.UserInputPlayback_<UpdateStatus>d__43 struct U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CUpdateStatusU3Ed__43_t4476A885031342A0BCD1F037C1B2AE149AF28ED1_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.EyeTracking.PanZoomBase_<ZoomAndStop>d__78 struct U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CZoomAndStopU3Ed__78_t97C2B4AF8ED8D8D6E5A5176E336383075F6883FE_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Examples.Demos.GridObjectLayoutControl_<TestAnchors>d__7 struct U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CTestAnchorsU3Ed__7_t87EB68165C7DA3BBF271F459FF01A9F463F50FB2_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Experimental.Examples.ScrollableListPopulator_<UpdateListOverTime>d__26 struct U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CUpdateListOverTimeU3Ed__26_tA68ECB7A9BF1334567F1260971A38629D13949EF_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Extensions.SceneTransitions.SceneTransitionService struct SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) SceneTransitionService_t3D379CB148C4493C7EBBE2A4CEF26CE368F81BF9_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Extensions.Tracking.LostTrackingService struct LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LostTrackingService_t07B784DD852E82F33FEC7FCA4392148557A8CC2C_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityDeviceManager struct WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WindowsMixedRealityDeviceManager_tFFBF389DA4018EBD58F6455981675B8B24C5A193_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input.WindowsMixedRealityEyeGazeDataProvider struct WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WindowsMixedRealityEyeGazeDataProvider_tFF1E5E3B73D0D33FB3AC9C04A8054C754A39A244_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.WindowsMixedReality.SpatialAwareness.WindowsMixedRealitySpatialMeshObserver struct WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WindowsMixedRealitySpatialMeshObserver_t63BDB99448F7DEFE8F58E92E962E14A68C72F08D_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.WindowsMixedReality.WindowsMixedRealityCameraSettings struct WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WindowsMixedRealityCameraSettings_t7BDBFDD6121928A90D2EE9AAEA81F519C400CC99_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Windows.Input.WindowsDictationInputProvider struct WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WindowsDictationInputProvider_t48A6BAC82B0DF4FFE92CF5F921B51CD10E6F35D8_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Windows.Input.WindowsSpeechInputProvider struct WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WindowsSpeechInputProvider_t526BB01BD919914978190903A90A347AC0A14479_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Boundary.MixedRealityBoundarySystem struct MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MixedRealityBoundarySystem_t8F27087AD324C9F20658EC439D920D34D5438896_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSystem struct MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MixedRealityCameraSystem_t4692134ACA95C3D578B3BEBF090579DC7601A3C3_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityDiagnosticsSystem struct MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MixedRealityDiagnosticsSystem_tC99B255D17831767FA80BE1799661218B15B02D4_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem struct MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MixedRealitySceneSystem_t2D60C8CB19D2DB96461F94F1389851957DB78EDA_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.SceneSystem.MixedRealitySceneSystem_<GetScenes>d__122 struct U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2); interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[1] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 2; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CGetScenesU3Ed__122_t2E603C4CBA1BB8818949D71DB975D39D23D8D6BF_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialAwarenessSystem struct MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MixedRealitySpatialAwarenessSystem_tBE0F7205EE25E13D3E944FD653703F676AAFCB2A_ComCallableWrapper(obj)); } // COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Teleport.MixedRealityTeleportSystem struct MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 { inline MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IClosable_t5808AF951019E4388C66F7A88AC569F52F581167*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(1); interfaceIds[0] = IClosable_t5808AF951019E4388C66F7A88AC569F52F581167::IID; *iidCount = 1; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() IL2CPP_OVERRIDE { return IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MixedRealityTeleportSystem_t0323B433B6DE68C08628A0A86834CFDFDD347042_ComCallableWrapper(obj)); } // COM Callable Wrapper for System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper>, IVector_1_t69FD2625E88151AA72D15A3EC18DA0AF5B403A0C, IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IReferenceArray_1_tAF5C268A5AF981224627FF530FA49915B8755802, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IVector_1_t69FD2625E88151AA72D15A3EC18DA0AF5B403A0C::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IVector_1_t69FD2625E88151AA72D15A3EC18DA0AF5B403A0C*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReferenceArray_1_tAF5C268A5AF981224627FF530FA49915B8755802::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReferenceArray_1_tAF5C268A5AF981224627FF530FA49915B8755802*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(9); interfaceIds[0] = IVector_1_t69FD2625E88151AA72D15A3EC18DA0AF5B403A0C::IID; interfaceIds[1] = IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45::IID; interfaceIds[2] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[4] = IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171::IID; interfaceIds[5] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID; interfaceIds[6] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID; interfaceIds[7] = IReferenceArray_1_tAF5C268A5AF981224627FF530FA49915B8755802::IID; interfaceIds[8] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 9; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m753F84B2B58A069E1926F7547ED499FC04C34B7C(uint32_t ___index0, Il2CppWindowsRuntimeTypeName* comReturnValue) IL2CPP_OVERRIDE { return IVector_1_GetAt_m753F84B2B58A069E1926F7547ED499FC04C34B7C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m76A30C4F94F26EBF19C7F8B112FF82780846017C(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVector_1_get_Size_m76A30C4F94F26EBF19C7F8B112FF82780846017C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m50EC3AB4A7FE4002629EFC9CEF9CE773ABB92E2D(IVectorView_1_tCB708887158E8CCF67CBB03885A9D7CB9FA56171** comReturnValue) IL2CPP_OVERRIDE { return IVector_1_GetView_m50EC3AB4A7FE4002629EFC9CEF9CE773ABB92E2D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mCDC03996801ACE4699A794C40B5F156DEAC0DCD4(Il2CppWindowsRuntimeTypeName ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE { return IVector_1_IndexOf_mCDC03996801ACE4699A794C40B5F156DEAC0DCD4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mFD8286C417181E62449D0A26CA97A61744AF9AC9(uint32_t ___index0, Il2CppWindowsRuntimeTypeName ___value1) IL2CPP_OVERRIDE { return IVector_1_SetAt_mFD8286C417181E62449D0A26CA97A61744AF9AC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m5753B2A40337D907E4E2FF7D71E5E7CD8819A7F7(uint32_t ___index0, Il2CppWindowsRuntimeTypeName ___value1) IL2CPP_OVERRIDE { return IVector_1_InsertAt_m5753B2A40337D907E4E2FF7D71E5E7CD8819A7F7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m0E8A64B4E7CF5E6D000B5DF44E18688E73CFF872(uint32_t ___index0) IL2CPP_OVERRIDE { return IVector_1_RemoveAt_m0E8A64B4E7CF5E6D000B5DF44E18688E73CFF872_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0); } virtual il2cpp_hresult_t STDCALL IVector_1_Append_mE11CB215F729BC9A7A61B57BE191837B69EEDE75(Il2CppWindowsRuntimeTypeName ___value0) IL2CPP_OVERRIDE { return IVector_1_Append_mE11CB215F729BC9A7A61B57BE191837B69EEDE75_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0); } virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mBF7DD662DFCC69801FF634A95369DB334FD17AF7() IL2CPP_OVERRIDE { return IVector_1_RemoveAtEnd_mBF7DD662DFCC69801FF634A95369DB334FD17AF7_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m3AFEA5A44BAF9CB90AA70C07BE31841999F4EB7A() IL2CPP_OVERRIDE { return IVector_1_Clear_m3AFEA5A44BAF9CB90AA70C07BE31841999F4EB7A_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mDCEA26B2F642A423C49CF156CB93442BCC132DE7(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppWindowsRuntimeTypeName* ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVector_1_GetMany_mDCEA26B2F642A423C49CF156CB93442BCC132DE7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m8E31DAA9F521E443155FF5AD9FEF14D10D41ECAD(uint32_t ___items0ArraySize, Il2CppWindowsRuntimeTypeName* ___items0) IL2CPP_OVERRIDE { return IVector_1_ReplaceAll_m8E31DAA9F521E443155FF5AD9FEF14D10D41ECAD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m44403577D0A7FC49C192EC087DF22DC82ABD1BEC(IIterator_1_t2B21213FEB0A065EE8EE08505D4993A125B94604** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m44403577D0A7FC49C192EC087DF22DC82ABD1BEC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m6965CEA3FF4FD7BAD091061A3FCB132604F47142(uint32_t ___index0, Il2CppWindowsRuntimeTypeName* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_GetAt_m6965CEA3FF4FD7BAD091061A3FCB132604F47142_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mD0663E7385B5FC9416AC9F0F6B9827285830CCC4(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_get_Size_mD0663E7385B5FC9416AC9F0F6B9827285830CCC4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m9AFBCFCF2DA1FB76DA3FC209FA7B840609459D74(Il2CppWindowsRuntimeTypeName ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_IndexOf_m9AFBCFCF2DA1FB76DA3FC209FA7B840609459D74_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m19A7973D213566841BC30D081C554FC099AF7D01(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppWindowsRuntimeTypeName* ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_GetMany_m19A7973D213566841BC30D081C554FC099AF7D01_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE { return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE { return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE { return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0); } virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE { return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0); } virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE { return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE { return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IReferenceArray_1_get_Value_m085ABBDED729E7C8E332FDD90292AAAFB1267309(uint32_t* comReturnValueArraySize, Il2CppWindowsRuntimeTypeName** comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReferenceArray_1_get_Value_m085ABBDED729E7C8E332FDD90292AAAFB1267309_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* returnValue; try { returnValue = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of return value back from managed representation uint32_t _returnValue_marshaledArraySize = 0; Il2CppWindowsRuntimeTypeName* _returnValue_marshaled = NULL; if (returnValue != NULL) { _returnValue_marshaledArraySize = static_cast<uint32_t>((returnValue)->max_length); _returnValue_marshaled = il2cpp_codegen_marshal_allocate_array<Il2CppWindowsRuntimeTypeName>(static_cast<int32_t>(_returnValue_marshaledArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(_returnValue_marshaledArraySize)); i++) { il2cpp_codegen_marshal_type_to_native((returnValue)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), (_returnValue_marshaled)[i]); } } else { _returnValue_marshaledArraySize = 0; _returnValue_marshaled = NULL; } *comReturnValueArraySize = _returnValue_marshaledArraySize; *comReturnValue = _returnValue_marshaled; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 1044; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "Byte", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint8_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "Int16", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<int16_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "UInt16", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint16_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "Int32", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<int32_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "UInt32", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint32_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "Int64", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<int64_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "UInt64", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint64_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "Single", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<float>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "Double", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<double>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "String", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<Il2CppHString>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { if ((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)) == NULL) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_null_exception("value"), NULL, NULL); } (*___value0)[i] = il2cpp_codegen_create_hstring((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i))); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Inspectable[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6_CCW_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____value0_empty = NULL; // Managed method invocation try { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* managedArray = static_cast<TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("OtherArray", "Other", "Guid", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<Guid_t >(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("OtherArray", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_ComCallableWrapper(obj)); } // COM Callable Wrapper for System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper>, IVector_1_t4AB9C9A64B093834D6FAE1CB577829FE2EA347AD, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IReferenceArray_1_t1E66560BE2F95224CD3DDD53D0E4F57D944AADF7, IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B { inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper>(obj) {} virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE { if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0 || ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0) { *object = GetIdentity(); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIManagedObjectHolder*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IVector_1_t4AB9C9A64B093834D6FAE1CB577829FE2EA347AD::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IVector_1_t4AB9C9A64B093834D6FAE1CB577829FE2EA347AD*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IReferenceArray_1_t1E66560BE2F95224CD3DDD53D0E4F57D944AADF7::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IReferenceArray_1_t1E66560BE2F95224CD3DDD53D0E4F57D944AADF7*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIMarshal*>(this); AddRefImpl(); return IL2CPP_S_OK; } if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0) { *object = static_cast<Il2CppIWeakReferenceSource*>(this); AddRefImpl(); return IL2CPP_S_OK; } *object = NULL; return IL2CPP_E_NOINTERFACE; } virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE { return AddRefImpl(); } virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE { return ReleaseImpl(); } virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE { Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(7); interfaceIds[0] = IVector_1_t4AB9C9A64B093834D6FAE1CB577829FE2EA347AD::IID; interfaceIds[1] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID; interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID; interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID; interfaceIds[4] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID; interfaceIds[5] = IReferenceArray_1_t1E66560BE2F95224CD3DDD53D0E4F57D944AADF7::IID; interfaceIds[6] = IPropertyValue_t239390018B885BE640A1051E103B64696F623C7B::IID; *iidCount = 7; *iids = interfaceIds; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE { return ComObjectBase::GetRuntimeClassName(className); } virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE { return ComObjectBase::GetTrustLevel(trustLevel); } virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mF1C28A39CB196A6558872EF51C7BBA27345A0577(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE { return IVector_1_GetAt_mF1C28A39CB196A6558872EF51C7BBA27345A0577_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mF67ADD732EE6887FDB6C6FA10423E3A17E70F907(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVector_1_get_Size_mF67ADD732EE6887FDB6C6FA10423E3A17E70F907_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m74563BA39B42A410531686B0E575591BB1B6783B(IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356** comReturnValue) IL2CPP_OVERRIDE { return IVector_1_GetView_m74563BA39B42A410531686B0E575591BB1B6783B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m5D285CE815AEA392A54B1B8DB0DB87AE7A11E9F1(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE { return IVector_1_IndexOf_m5D285CE815AEA392A54B1B8DB0DB87AE7A11E9F1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m2DBCED7F76180810B1A8913EC60326C225EC8928(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE { return IVector_1_SetAt_m2DBCED7F76180810B1A8913EC60326C225EC8928_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m8E26C2891B8B514689C8598799F065DF5787A033(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE { return IVector_1_InsertAt_m8E26C2891B8B514689C8598799F065DF5787A033_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mE57C73814C5CE91212890C68FB5024CA38CF1336(uint32_t ___index0) IL2CPP_OVERRIDE { return IVector_1_RemoveAt_mE57C73814C5CE91212890C68FB5024CA38CF1336_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0); } virtual il2cpp_hresult_t STDCALL IVector_1_Append_mE03D632B5C8AE9BF9D0D19B2DF47B14D9AEA63ED(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE { return IVector_1_Append_mE03D632B5C8AE9BF9D0D19B2DF47B14D9AEA63ED_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0); } virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m2BE9E5FF5D4F73D5F4E26F1E8B74789A79009EB2() IL2CPP_OVERRIDE { return IVector_1_RemoveAtEnd_m2BE9E5FF5D4F73D5F4E26F1E8B74789A79009EB2_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mCE8AE5382949CD2CFD3A9B40EF02A3897FD77698() IL2CPP_OVERRIDE { return IVector_1_Clear_mCE8AE5382949CD2CFD3A9B40EF02A3897FD77698_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mBCA555ECFB3AC3D8FEFCD39368DF88BE5642352E(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVector_1_GetMany_mBCA555ECFB3AC3D8FEFCD39368DF88BE5642352E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m627D66FCD1A06ED4C5AA428B4EA3514E34F52A3A(uint32_t ___items0ArraySize, Il2CppIInspectable** ___items0) IL2CPP_OVERRIDE { return IVector_1_ReplaceAll_m627D66FCD1A06ED4C5AA428B4EA3514E34F52A3A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0); } virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE { return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE { return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE { return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue); } virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE { return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE { return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1); } virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE { return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0); } virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE { return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0); } virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE { return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE { return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline()); } virtual il2cpp_hresult_t STDCALL IReferenceArray_1_get_Value_mA8AE791F44230344C847AF9155D2F6144318D062(uint32_t* comReturnValueArraySize, Il2CppIInspectable*** comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IReferenceArray_1_get_Value_mA8AE791F44230344C847AF9155D2F6144318D062_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* returnValue; try { returnValue = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of return value back from managed representation uint32_t _returnValue_marshaledArraySize = 0; Il2CppIInspectable** _returnValue_marshaled = NULL; if (returnValue != NULL) { _returnValue_marshaledArraySize = static_cast<uint32_t>((returnValue)->max_length); _returnValue_marshaled = il2cpp_codegen_marshal_allocate_array<Il2CppIInspectable*>(static_cast<int32_t>(_returnValue_marshaledArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(_returnValue_marshaledArraySize)); i++) { if ((returnValue)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)) != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime((returnValue)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)))) { (_returnValue_marshaled)[i] = il2cpp_codegen_com_query_interface<Il2CppIInspectable>(static_cast<Il2CppComObject*>((returnValue)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)))); ((_returnValue_marshaled)[i])->AddRef(); } else { (_returnValue_marshaled)[i] = il2cpp_codegen_com_get_or_create_ccw<Il2CppIInspectable>((returnValue)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i))); } } else { (_returnValue_marshaled)[i] = NULL; } } } else { _returnValue_marshaledArraySize = 0; _returnValue_marshaled = NULL; } *comReturnValueArraySize = _returnValue_marshaledArraySize; *comReturnValue = _returnValue_marshaled; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB(int32_t* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_Type_mB7A711F071E38F3BAEC1862D436AC4AC6DC07FAB_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation int32_t returnValue; try { returnValue = 1037; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F(bool* comReturnValue) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_get_IsNumericScalar_m1C1F22011064BCF30C5B7E675AC389AF33EC8E5F_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Managed method invocation bool returnValue; try { returnValue = false; } catch (const Il2CppExceptionWrapper& ex) { memset(comReturnValue, 0, sizeof(*comReturnValue)); String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } *comReturnValue = returnValue; return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8_m6E0FA81F823A7980FDBE76ECAFF20E57EB6666F6(uint8_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Byte"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16_m33B5D0C3CF38BC633A0085AE70DB332CCBE396DF(int16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Int16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16_mEE71D2389CCEFB98E952C00FB8D6BEC588335A57(uint16_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "UInt16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32_m9D0D781ED2D0EFCFD725E9126184AB423EA45C2B(int32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Int32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32_m9186A8BA0E36E15EF0AC2BA14D050DED85699C6E(uint32_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "UInt32"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64_mFBA4443B87A23C4162616CE67978E15CC32A158E(int64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Int64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64_m01C60E6EA36BD050254AEFE6AF99D1D4977CD15F(uint64_t* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "UInt64"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingle_m7DA893EAE56B29828034B018B0844208FF80CCDD(float* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Single"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDouble_m34EF323F40F8971CD414DFB38CB6719F071BC869(double* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Double"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16_mA1539B0EDFFFD74BBCDB28C1FAC9487811D48386(Il2CppChar* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Char16"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBoolean_m0F0CE0E65CD9E983BCC7DBA628CF546547DAC005(bool* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Boolean"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetString_m03CC616B8EFD87A5023AB25FC20F934D2F09E169(Il2CppHString* comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "String"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuid_mE05F5B0248EA98B227F69B2E02D9B10A7B946FC2(Guid_t * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Guid"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTime_m509277C336754537642EEC6D3A68750DDFABA56E(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "DateTime"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpan_mE29774C717C9B4EC735C20A8CED6796CDF4E91E5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "TimeSpan"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPoint_m9E32A5CC948BB3572CD3FF6CA2F5B78F26596E73(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Point"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSize_m7212C32E319B8F552ED909C1287C6786B706A659(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Size"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRect_mFB23B562FCD514351684F706405000203ADFD829(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Rect"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553(uint32_t* ___value0ArraySize, uint8_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt8Array_m7348AAFD3D46CD731DD94146E5E60CFBD1F10553_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "Byte", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "Byte", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint8_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE(uint32_t* ___value0ArraySize, int16_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt16Array_m9E714AF77215627B9C8119AF3FA6508C50D206FE_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28*)SZArrayNew(Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "Int16", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "Int16", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<int16_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B(uint32_t* ___value0ArraySize, uint16_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt16Array_m4D5B5FB0A7FC0A22E80141B159783C2A0B0FBD0B_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "UInt16", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "UInt16", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint16_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03(uint32_t* ___value0ArraySize, int32_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt32Array_m799E55885F6A13610A5051F1C2917A0234B9AC03_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "Int32", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "Int32", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<int32_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF(uint32_t* ___value0ArraySize, uint32_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt32Array_m335BBA978CD7ACD928B58B3D525C68E2B4DE99FF_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "UInt32", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "UInt32", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint32_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B(uint32_t* ___value0ArraySize, int64_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInt64Array_m2A3152938A9BBA08D7357BC63F400F8C4FD7C76B_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)SZArrayNew(Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "Int64", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "Int64", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<int64_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7(uint32_t* ___value0ArraySize, uint64_t** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetUInt64Array_m9B9E15BA794B247E403386503A1F31881DA86BF7_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)SZArrayNew(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "UInt64", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "UInt64", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<uint64_t>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F(uint32_t* ___value0ArraySize, float** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetSingleArray_m641609788D53A6254B05EC12B73EC7BACB56D33F_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)SZArrayNew(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "Single", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "Single", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<float>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B(uint32_t* ___value0ArraySize, double** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetDoubleArray_m796ECF392FE47A8F5AF69F16B1B6694666B13D6B_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; ____value0_empty = (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)SZArrayNew(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var, static_cast<uint32_t>(arrayLength)); for (il2cpp_array_size_t i = 0; i < arrayLength; i++) { RuntimeObject * item = (managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); try { (____value0_empty)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, item, NULL)); } catch (const Il2CppExceptionWrapper& ex) { if (IsInst((RuntimeObject*)ex.ex, OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var)) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion((managedArray)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)), "InspectableArray", "Inspectable", "Double", i); } return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "Double", i); } } } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<double>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetChar16Array_mA72D84594CACE711C869C39FC47BCE332FC8A618(uint32_t* ___value0ArraySize, Il2CppChar** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Char16[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetBooleanArray_m32F829C6CA7AE67D42E0D58D9AB28A14AF056517(uint32_t* ___value0ArraySize, bool** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Boolean[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6(uint32_t* ___value0ArraySize, Il2CppHString** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetStringArray_mC5D40C9E740A5FB497BDB39B81487A5DDB3129B6_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "String", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<Il2CppHString>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { if ((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)) == NULL) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_null_exception("value"), NULL, NULL); } (*___value0)[i] = il2cpp_codegen_create_hstring((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i))); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3(uint32_t* ___value0ArraySize, Il2CppIInspectable*** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetInspectableArray_m259D5ED0D3880F47B2AE4C4AC1AA310FAC2662D3_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____value0_empty = NULL; // Managed method invocation try { ____value0_empty = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<Il2CppIInspectable*>(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { if ((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)) != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)))) { (*___value0)[i] = il2cpp_codegen_com_query_interface<Il2CppIInspectable>(static_cast<Il2CppComObject*>((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)))); ((*___value0)[i])->AddRef(); } else { (*___value0)[i] = il2cpp_codegen_com_get_or_create_ccw<Il2CppIInspectable>((____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i))); } } else { (*___value0)[i] = NULL; } } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6(uint32_t* ___value0ArraySize, Guid_t ** ___value0) IL2CPP_OVERRIDE { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IPropertyValue_GetGuidArray_m0147631B0DD882717A53BA395C30E070B164BBF6_CCW_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper_MetadataUsageId); s_Il2CppMethodInitialized = true; } il2cpp::vm::ScopedThreadAttacher _vmThreadHelper; // Marshaling of parameter '___value0' to managed representation GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____value0_empty = NULL; // Managed method invocation try { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* managedArray = static_cast<ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*>(GetManagedObjectInline()); il2cpp_array_size_t arrayLength = managedArray->max_length; if (arrayLength > 0) { return il2cpp_codegen_com_handle_invalid_ipropertyarray_conversion("InspectableArray", "Inspectable", "Guid", 0); } ____value0_empty = NULL; } catch (const Il2CppExceptionWrapper& ex) { String_t* exceptionStr = NULL; try { exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex); } catch (const Il2CppExceptionWrapper&) { exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); } il2cpp_codegen_store_exception_info(ex.ex, exceptionStr); return ex.ex->hresult; } // Marshaling of parameter '___value0' back from managed representation if (____value0_empty != NULL) { *___value0ArraySize = static_cast<uint32_t>((____value0_empty)->max_length); *___value0 = il2cpp_codegen_marshal_allocate_array<Guid_t >(static_cast<int32_t>(*___value0ArraySize)); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(static_cast<int32_t>(*___value0ArraySize)); i++) { (*___value0)[i] = (____value0_empty)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); } } else { *___value0ArraySize = 0; *___value0 = NULL; } return IL2CPP_S_OK; } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetDateTimeArray_m6034A0D68EC7E2BD093A76C45BC15F8A2C4A9399(uint32_t* ___value0ArraySize, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "DateTimeOffset[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetTimeSpanArray_m9DA46A07FE5FDC63435A13AB6D0ED4BFC27D6937(uint32_t* ___value0ArraySize, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "TimeSpan[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetPointArray_mAA9D45EF50AD3D78B725BD20460FFE87205C4DB3(uint32_t* ___value0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Point[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetSizeArray_m82A3EF5E089F7CD94188D15910F78F8DD7445FFB(uint32_t* ___value0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Size[]"); } virtual il2cpp_hresult_t STDCALL IPropertyValue_GetRectArray_m6D1A32BFF9FA7E6C3DBB9200322BDE50CF1196F3(uint32_t* ___value0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ** ___value0) IL2CPP_OVERRIDE { return il2cpp_codegen_com_handle_invalid_iproperty_conversion("InspectableArray", "Rect[]"); } }; IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A(RuntimeObject* obj) { void* memory = il2cpp::utils::Memory::Malloc(sizeof(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper)); if (memory == NULL) { il2cpp_codegen_raise_out_of_memory_exception(); } return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_ComCallableWrapper(obj)); }
[ "eckertl@oregonstate.edu" ]
eckertl@oregonstate.edu
a10376a7420fd15fe6454253218d18aaa28a3f67
67c810f88498336f7b5eb7c2f2aea35f10adbe87
/TeleNoggin/TNLibOVR.cpp
4a5c7ef9e29f3152aa532e4dc0544452db9c8d06
[]
no_license
jaffob/TeleNoggin
9dfe6db1b5c8afc4d8735c6cbe1d3143eca429db
7a4e17b4d7e1473861657c79748cfde74953fa80
refs/heads/master
2021-01-25T11:02:55.513984
2018-03-01T03:52:07
2018-03-01T03:52:07
123,379,332
0
0
null
null
null
null
UTF-8
C++
false
false
407
cpp
#include "TNLibOVR.h" TNLibOVR::TNLibOVR() { } TNLibOVR::~TNLibOVR() { } bool TNLibOVR::init() { ovrInitParams params = { 0 }; err = ovr_Initialize(&params); if (OVR_SUCCESS(err)) { err = ovr_Create(&hmd, nullptr); return OVR_SUCCESS(err); } return false; } void TNLibOVR::shutdown() { } char * TNLibOVR::getLastErrorString() { ovr_GetLastErrorInfo(&errinf); return errinf.ErrorString; }
[ "jaffob77@gmail.com" ]
jaffob77@gmail.com
fc05e355badbff1ed445a8ad26f5f8fffb8cbd75
480e33f95eec2e471c563d4c0661784c92396368
/GeneratorInterface/Pythia8Interface/src/MultiUserHook.cc
0457768a834e4a5598a71abd46b986e77e10c4a0
[ "Apache-2.0" ]
permissive
cms-nanoAOD/cmssw
4d836e5b76ae5075c232de5e062d286e2026e8bd
4eccb8a758b605875003124dd55ea58552b86af1
refs/heads/master-cmsswmaster
2021-01-23T21:19:52.295420
2020-08-27T08:01:20
2020-08-27T08:01:20
102,867,729
7
14
Apache-2.0
2022-05-23T07:58:09
2017-09-08T14:03:57
C++
UTF-8
C++
false
false
127
cc
#include "Pythia8/Pythia.h" #include "GeneratorInterface/Pythia8Interface/interface/MultiUserHook.h" using namespace Pythia8;
[ "cmsbuild@cern.ch" ]
cmsbuild@cern.ch
2f7c8669e0c81a6fcf3e275301dd205ebadd2561
453294184a57a236c56067184d6c5de892d33e65
/src/process.cpp
e87eccb6e75ef3ad75b3086fbadd2e137f439d8d
[ "MIT" ]
permissive
WinCanton/CppND-System-Monitor
414e09781b38252aa04616a90e518b8f0107155e
d010d3d41545a2ba454adccb70a588eeabe318c0
refs/heads/master
2020-07-01T08:16:28.221140
2019-08-08T15:46:14
2019-08-08T15:46:14
201,104,587
0
0
null
null
null
null
UTF-8
C++
false
false
1,126
cpp
#include <unistd.h> #include <cctype> #include <sstream> #include <string> #include <vector> #include "process.h" void Process::setPid(int pid) { this->pid = pid; } std::string Process::getPid() const { return this->pid; } std::string Process::getUser() const { return this->user; } std::string Process::getCmd() const { return this->cmd; } int Process::getCpu() const { return stoi(this->cmd); } int Process::getMem() const { return stoi(this->mem); } std::string Process::getUpTime() const { return this->upTime; } std::vector<string> Process::getProcess() { std::vector<string> processData; this->mem = ProcessParser::getVmSize(this->pid); this->upTime = ProcessParser::getProcUpTime(this->pid); this->cpu = ProcessParser::getCpuPercent(this->pid); processData.push_back(this->pid); processData.push_back(this->user); processData.push_back(this->cpu.substr(0,5)); processData.push_back(this->mem.substr(0,5)); processData.push_back(this->upTime.substr(0,5)); processData.push_back(this->cmd.substr(0,30)); return processData; }
[ "martin_mac@icloud.com" ]
martin_mac@icloud.com
57a2b2b4bf373fd481b801d9e4ee905152d918c1
7930700bef44acdc9b25d7253a49683a6657e251
/GameRandomStrike/Header.h
cb58c640c5ca1c18f4b29848560900cc35820304
[]
no_license
Linkova-T/GameRandomStrike
de69a06cdfffc17361891e6e8fe3a4e7095a5f0e
a282af7ff13355fb926d34afec7186ec88517acf
refs/heads/master
2023-03-23T11:31:22.994727
2021-03-20T22:46:37
2021-03-20T22:46:37
349,832,752
0
0
null
null
null
null
UTF-8
C++
false
false
368
h
#pragma once #include<iostream> class Hero { public: Hero(std::string nameinp); std::string getName(); int getStr(); void setStr(int a); int getLev(); void setLev(); int getHealth(); void setHealth(int a); void strike(Hero& otherHero); void chekParam(); protected: int strength = 10; int health = 15; int level = 1; std::string name; };
[ "Linkova Tanya@DESKTOP-BGMEJG7" ]
Linkova Tanya@DESKTOP-BGMEJG7
012a164aef5d832d60c4bae8f7fe2d401c5ccfb8
5c209f260337fd080bccd8b3a60fee6cf5243635
/Test/UnitTest/TestRational/TestRational.cpp
b44b1ffd5e794b8d1a5170a6abd40b210b3a9cc6
[]
no_license
Sopel97/Big-Numbers
c1b22458c166fcde54c8532b8489534bf88a6839
a83dfaaf1d19eee5c075a20bf270b28c770f2d35
refs/heads/master
2020-07-26T03:06:26.093330
2018-10-28T13:49:11
2018-10-28T13:49:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,428
cpp
#include "stdafx.h" #include "CppUnitTest.h" #include <math.h> #include <Random.h> #include <Math/MathLib.h> #include <Math/Rational.h> using namespace Microsoft::VisualStudio::CppUnitTestFramework; #define VERIFYOP(op, maxError) { \ const Rational rBinResult = (r1) op (r2); \ const double dBinResult = (d1) op (d2); \ const double dFromR = getDouble(rBinResult); \ const double error = fabs(dFromR - dBinResult); \ if(error > maxError) { \ throwException(_T("%s %s %s = %s = %23.16le. %23.16le %s %23.16le = %23.16le. Error:%le > %le") \ ,toString(r1).cstr(), _T(#op), toString(r2).cstr() \ ,toString(rBinResult).cstr(), dFromR \ ,d1, _T(#op), d2, dBinResult \ ,error, maxError \ ); \ } \ } namespace TestRational { #include <UnitTestTraits.h> template<class OUTSTREAM> OUTSTREAM &setFormat(OUTSTREAM &os, ios::_Fmtflags baseFlag, unsigned int width, int showPos, int showBase, int uppercase, ios::_Fmtflags adjustFlag) { os.setf(baseFlag , ios::basefield); os.setf(adjustFlag, ios::adjustfield); os.width(width); if(showBase) { os.setf(ios::showbase); } if(showPos) { os.setf(ios::showpos); } if(uppercase) { os.setf(ios::uppercase); } return os; } TEST_CLASS(TestRational) { public: TEST_METHOD(BasicOperations) { randomize(); // double maxTotalError = 0; for(int i = 0; i < 100000; i++) { /* if(i % 100 == 99) { printf("i:%10d. maxTotalError:%le\r", i, maxTotalError); } */ const int nm1 = randInt(-1000, 1000); const int dn1 = randInt(1, 1000000); const int nm2 = randInt(-1000, 1000); const int dn2 = randInt(1, 1000000); const Rational r1(nm1, dn1); const Rational r2(nm2, dn2); const double d1 = getDouble(r1); const double d2 = getDouble(r2); const bool rgt = r1 > r2, dgt = d1 > d2; const bool rge = r1 >= r2, dge = d1 >= d2; const bool rlt = r1 < r2, dlt = d1 < d2; const bool rle = r1 <= r2, dle = d1 <= d2; const bool req = r1 == r2, deq = d1 == d2; const bool rne = r1 != r2, dne = d1 != d2; verify(rgt == dgt); verify(rge == dge); verify(rlt == dlt); verify(rle == dle); verify(req == deq); verify(rne == dne); VERIFYOP(+, 1e-13) VERIFYOP(-, 1e-13) VERIFYOP(*, 1e-14) if (!r2.isZero()) { VERIFYOP(/ , 3e-9) } const int expo = r1.isZero() ? randInt(0, 4) : randInt(-3, 3); const Rational r1Pe = pow(r1, expo); const Real d1Pe = mypow(d1, expo); Real error = fabs(getReal(r1Pe) - d1Pe); if (d1Pe != 0) error /= d1Pe; verify(error < 1e-15); const Rational rfd(d1); const double dfr = getDouble(rfd); error = fabs(dfr - d1); verify(error < 1e-13); } } TEST_METHOD(RationalIO) { try { CompactArray<Rational> sa; for(INT64 d = 1; d >= 0; d = (d + 1) * 31) { for(INT64 n = 0; n >= 0; n = (n + 1) * 29) { sa.add(Rational(n,d)); sa.add(-sa.last()); } } const ios::_Fmtflags baseFlags[] = { ios::dec ,ios::hex ,ios::oct }; const ios::_Fmtflags adjustFlags[] = { ios::left ,ios::right }; // try all(almost) combinations of output format flags for(int b = 0; b < ARRAYSIZE(baseFlags); b++) { const ios::_Fmtflags baseFlag = baseFlags[b]; int maxShowPos, maxShowBase, maxUpper; switch(baseFlag) { case ios::dec: maxShowPos = 1; maxShowBase = 0; maxUpper = 0; break; case ios::hex: maxShowPos = 0; maxShowBase = 1; maxUpper = 1; break; case ios::oct: maxShowPos = 0; maxShowBase = 1; maxUpper = 0; break; } for(int showPos = 1; showPos <= maxShowPos; showPos++) { for(int showBase = 0; showBase <= maxShowBase; showBase++) { for(int uppercase = 0; uppercase <= maxUpper; uppercase++) { for(int a = 0; a < ARRAYSIZE(adjustFlags); a++) { for(UINT width = 0; width < 20; width += 3) { ostringstream ostr; wostringstream wostr; const ios::_Fmtflags adjustFlag = adjustFlags[a]; for(size_t i = 0; i < sa.size(); i++) { // write signed setFormat<ostream>(ostr, baseFlag, width, showPos, showBase, uppercase, adjustFlag); setFormat<wostream>(wostr, baseFlag, width, showPos, showBase, uppercase, adjustFlag); ostr << sa[i] << "\n"; wostr << sa[i] << "\n"; } string str = ostr.str(); wstring wstr = wostr.str(); for(Tokenizer tok(wstr.c_str(), _T("\n")); tok.hasNext();) { const String s = tok.next(); verify(s.length() >= width); const TCHAR *np; if(adjustFlag == ios::right) { for(np = s.cstr(); *np == _T(' '); np++); verify(s.last() != _T(' ')); } else { np = s.cstr(); verify(s[0] != _T(' ')); } if(baseFlag == ios::dec) { if(showPos) { verify((np[0] == _T('-')) || (np[0] == _T('+'))); } } else if (showBase) { verify(np[0] == _T('0')); if(baseFlag == ios::hex) { verify(np[1] == _T('x')); } } if(uppercase) { for(const TCHAR *cp = np; *cp; cp++) { verify(!_istlower(*cp)); } } else { for(const TCHAR *cp = np; *cp; cp++) { verify(!_istupper(*cp)); } } } istringstream istr; wistringstream wistr; istr.str(str); wistr.str(wstr); for(size_t i = 0; i < sa.size(); i++) { // read signed Rational x; istr.setf(baseFlag, ios::basefield); istr >> x; verify(x == sa[i]); Rational wx; wistr.setf(baseFlag, ios::basefield); wistr >> wx; verify(wx == sa[i]); } } // for width=[0..20] } // for all AdjustFlags } // for lower/uppercase } // for all showBase } // for all showPos } // for all baseFlags } catch(Exception e) { OUTPUT(_T("Exception:%s"), e.what()); verify(false); } } template<class T> void verifyRationalNanTypes(const T &f) { const bool fisNan = isnan( f); const bool fisInf = isinf( f); const bool fisPInf = isPInfinity(f); const bool fisNInf = isNInfinity(f); const Rational r(f); verify(isnan( r) == fisNan ); verify(isinf( r) == fisInf ); verify(isPInfinity(r) == fisPInf); verify(isNInfinity(r) == fisNInf); const float f1 = getFloat( r); const double d1 = getDouble( r); const Double80 d80 = getDouble80(r); verify(isnan( f1 ) == fisNan ); verify(isinf( f1 ) == fisInf ); verify(isPInfinity(f1 ) == fisPInf); verify(isNInfinity(f1 ) == fisNInf); verify(isnan( d1 ) == fisNan ); verify(isinf( d1 ) == fisInf ); verify(isPInfinity(d1 ) == fisPInf); verify(isNInfinity(d1 ) == fisNInf); verify(isnan( d80) == fisNan ); verify(isinf( d80) == fisInf ); verify(isPInfinity(d80) == fisPInf); verify(isNInfinity(d80) == fisNInf); } #pragma warning(disable : 4723) // Potential divide by 0 template<class T> void rationalNanTest(const T m) { T f = (T)sqrt(-1); verifyRationalNanTypes(f); f = m; f *= 2; verifyRationalNanTypes(f); f = m; f *= -2; verifyRationalNanTypes(f); f = 1; T g = 0; f /= g; verifyRationalNanTypes(f); f = -1; f /= g; verifyRationalNanTypes(f); f = 0; f /= g; verifyRationalNanTypes(f); } TEST_METHOD(RationalNaN) { try { rationalNanTest(FLT_MAX ); rationalNanTest(DBL_MAX ); rationalNanTest(DBL80_MAX); } catch(Exception e) { OUTPUT(_T("Exception:%s"), e.what()); verify(false); } } TEST_METHOD(RationalPowers) { try { const Rational b(46656,12167000); const Rational e(2,3); Rational p; verify(Rational::isRationalPow(b,e,&p)); const double pd = pow(getDouble(b),getDouble(e)); const double error = pd - getDouble(p); const double relError = fabs(error / pd); verify(relError < 1e-15); } catch(Exception e) { OUTPUT(_T("Exception:%s"), e.what()); verify(false); } } }; }
[ "jesper.gr.mikkelsen@gmail.com" ]
jesper.gr.mikkelsen@gmail.com
9395ce787b4775c439e0e877872d57316c2e918d
e8334b6b7e8870373652c993df3f9a89b58ace03
/lab4/List.h
1d32825333f19d5ddca7dcda4efaf13864b8aa33
[]
no_license
NGrogs/lab4
5f684dbc61b883c43a3f7b8f1ee85cadc6fc2ba7
19db27d6347220dae2982cf827ff0e938e214bc8
refs/heads/master
2021-04-30T14:43:05.155925
2018-02-12T09:50:53
2018-02-12T09:50:53
121,224,143
0
0
null
null
null
null
UTF-8
C++
false
false
851
h
#pragma once #include "Node.h" #include "SimpleString.h" #include <iostream> using namespace std; class List { Node *head; public: List(); ~List(); // insert a copy of d void insertBefore(Node *loc, const SimpleString &d); void insertAfter(Node *loc, const SimpleString &d); //push a copy of d void push_back(const SimpleString &d); void push_front(const SimpleString &d); //retrurns true if pop_back/pop_front successful and delete from memory. d now has a copy of the contents of the popped element. bool pop_back(SimpleString &d); bool pop_front(SimpleString &d); // erase the node and delete it from memory void erase(Node *loc); //return a pointer the searched node. If nullptr is returned then the node is not found Node *search(const SimpleString &d); //print list method void displayToConsole(); void Print(); };
[ "ngrogan15@gmail.com" ]
ngrogan15@gmail.com
f42205abea2ac9dd649eed6a3cc85adb3ea03cf5
7188b4741e0a3c3c7b3137e7d04367de6855350c
/appOne/gmain.cpp
0c4d94feaad2b7653d0ca512979c204ab3c73b57
[]
no_license
Coding-Ocean/cpp_vector
2f64fdecf480a662ca658d648ef60f88a3bfa906
1ad0d4d16881fcd404c3467756ab0646f2fd5451
refs/heads/master
2023-07-01T15:52:31.912294
2021-08-10T04:13:29
2021-08-10T04:13:29
394,521,351
0
0
null
null
null
null
UTF-8
C++
false
false
108
cpp
#include"libOne.h" void gmain() { window(1000, 1000); while (notQuit) { clear(180); } }
[ "eijo524@gmail.com" ]
eijo524@gmail.com
12e4b9fc66f076dcfc495bd4a9ce9434649e3b94
4a4c1dcd29abe87745bb30adfbdf5205eb39f3b5
/havok/Source/Physics/Utilities/CharacterControl/StateMachine/OnGround/hkpCharacterStateOnGround.h
af13a799a988b27e51e0f991d347866751a99c54
[]
no_license
Hengle/ThirdParty
e7c4d794088712ec88bcea28a27f3acb71b6208c
a7ebed87d43e9cc58ec50836a2cc747bc539fd93
refs/heads/master
2023-03-16T04:24:59.905476
2014-01-20T16:54:54
2014-01-20T16:54:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,818
h
/* * * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok. * Product and Trade Secret source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2012 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement. * */ #ifndef HK_CHARACTER_STATE_ON_GROUND #define HK_CHARACTER_STATE_ON_GROUND #include <Physics/Utilities/CharacterControl/StateMachine/hkpCharacterState.h> /// This state controls character movement when on the ground. /// The implementation uses a feedback controller. The controller attempts /// to bring the velocity of the character to the walking speed. All measurements /// are taken in the coordinate frame specified by the character input - this /// means that the character will maintain the same speed when travelling up and down /// slopes as it will when running on the flat. class hkpCharacterStateOnGround : public hkpCharacterState { public: HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE); hkpCharacterStateOnGround(); /// Returns the state type virtual hkpCharacterStateType getType() const; /// Process the user input - causes state actions. virtual void update(hkpCharacterContext& context, const hkpCharacterInput& input, hkpCharacterOutput& output); /// Process the user input - causes state transitions. virtual void change(hkpCharacterContext& context, const hkpCharacterInput& input, hkpCharacterOutput& output); /// Gets the gain for this feedback controller hkReal getGain() const; /// Sets the gain for this feedback controller void setGain(hkReal newGain); /// Gets the walking speed for this state hkReal getSpeed() const; /// Sets the walking speed for this state void setSpeed(hkReal newGain); /// Gets the maximal linear acceleration for this state hkReal getMaxLinearAcceleration() const; /// Set the maximal linear acceleration for this state void setMaxLinearAcceleration(hkReal newMaxAcceleration); /// Returns the state of the ground hugging flag. By default this is set to true. /// If this flag is set then the character will automatically clamp it's vertical velocity /// to zero when transitioning from onGround to inAir. As the state transition happens /// when the character is no longer supported, it cannot use the surface velocity, so this /// only works effectively on static or slow moving surfaces. hkBool getGroundHugging() const; /// Sets the state of the ground hugging flag. /// If this flag is set then the character will automatically clamp it's vertical velocity /// to zero when transitioning from onGround to inAir. As the state transition happens /// when the character is no longer supported, it cannot use the surface velocity, so this /// only works effectively on static or slow moving surfaces. void setGroundHugging(hkBool newVal); /// Returns the state of the limit downward velocity flag. By default this value is false. /// If this flag is set then vertical velocity of the character will be clamped to never /// exceed character gravity. This means that if you are running down a steep slope /// the vertical component of the character velocity will be clamped against gravity. /// Similarly if you are on an elevator moving downward you will move away from the elevator /// as its velocity exceeds gravity. hkBool getLimitDownwardVelocity() const; /// Sets the state of the limit downward velocity flag. /// If this flag is set then vertical velocity of the character will be clamped to never /// exceed character gravity. This means that if you are running down a steep slope /// the vertical component of the character velocity will be clamped against gravity. /// Similarly if you are on an elevator moving downward you will move away from the elevator /// as its velocity exceeds gravity. void setLimitDownwardVelocity(hkBool newVal); /// When the character is walking up a slope, a velocity is calculated on the surface /// of the slope that keeps the character moving as though it was on level ground. i.e /// the character does not slow down, or change direction as it walks up a slope. /// However this upwards velocity can cause the character to jitter in certain circumstances. /// For example when moving up a slope and hitting a wall, the character will rise slightly /// up the wall due to its upwards velocity. /// The solution for this is to project this upwards velocity into the horizontal plane, which /// is done by default (new to 3.1). The behavior change should be imperceptible (apart from the /// removed jitter), however you can disable this projection if you wish to keep the 3.0 behavior /// using this flag. hkBool getDisableHorizontalProjection() const; /// When the character is walking up a slope, a velocity is calculated on the surface /// of the slope that keeps the character moving as though it was on level ground. i.e /// the character does not slow down, or change direction as it walks up a slope. /// However this upwards velocity can cause the character to jitter in certain circumstances. /// For example when moving up a slope and hitting a wall, the character will rise slightly /// up the wall due to its upwards velocity. /// The solution for this is to project this upwards velocity into the horizontal plane, which /// is done by default (new to 3.1). The behavior change should be imperceptible (apart from the /// removed jitter), however you can disable this projection if you wish to keep the 3.0 behavior /// using this flag. void setDisableHorizontalProjection( hkBool newVal ); protected: hkReal m_gain; hkReal m_walkSpeed; hkReal m_maxLinearAcceleration; hkBool m_killVelocityOnLaunch; hkBool m_limitVerticalVelocity; hkBool m_disableHorizontalProjection; }; #endif // HK_CHARACTER_STATE_ON_GROUND /* * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20120831) * * Confidential Information of Havok. (C) Copyright 1999-2012 * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok * Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership * rights, and intellectual property rights in the Havok software remain in * Havok and/or its suppliers. * * Use of this software for evaluation purposes is subject to and indicates * acceptance of the End User licence Agreement for this product. A copy of * the license is included with this software and is also available at www.havok.com/tryhavok. * */
[ "evg.gamedev@gmail.com" ]
evg.gamedev@gmail.com
3d0e2d7f3a9af717ed2e7f485517192ceb5165c4
f812cbcfba682dd3c2bc973bcb2c2d4cd5930524
/IDE/compiler/modules/C/core/CompilerCPreProcMacros.cxx
8cf24417c06be2e78009b80f5bb9e8ba71b21957
[]
no_license
AbyssAbbeba/MDS-picoblaze-AVR-ide
bceb4bd3e300fcdb4213a0880a5c7e6f6433704e
afc0cf7fd115ce063303f27d0bc03dc9f146e19b
refs/heads/master
2020-03-22T00:32:42.982094
2018-07-06T09:05:37
2018-07-06T09:05:37
139,251,486
4
1
null
null
null
null
UTF-8
C++
false
false
28,466
cxx
// ============================================================================= /** * @brief * C++ Implementation: ... * * ... * * (C) copyright 2014, 2015 Moravia Microsystems, s.r.o. * * @ingroup CompilerC * @file CompilerCPreProcMacros.cxx */ // ============================================================================= #include "CompilerCPreProcMacros.h" // Common compiler header files. #include "CompilerOptions.h" #include "CompilerParserInterface.h" // OS compatibility. #include "utilities/os/os.h" // Standard headers. #include <ctime> #include <cstdio> #include <cctype> #include <cstdlib> #include <cstring> #include<iostream>//DEBUG #define IS_IDENTIFIER(str, i) \ ( \ ( ( 0 != i ) && ( str[i] >= '0' ) && ( str[i] <= '9' ) ) \ || ( ( str[i] >= 'a' ) && ( str[i] <= 'z' ) ) \ || ( ( str[i] >= 'A' ) && ( str[i] <= 'Z' ) ) \ || ( '_' == str[i] ) \ ) #define IS_SPACE(i) ( ( ' ' == i ) || ( '\t' == i ) ) #define IS_BLANK(i) \ ( \ IS_SPACE(i) || ( '\0' == i ) || ( '\f' == i ) \ || ( '\n' == i ) || ( '\v' == i ) || ( '\r' == i ) \ ) const char * CompilerCPreProcMacros::STDC_VERSION = "201104L"; const std::set<std::string> CompilerCPreProcMacros::KEYWORDS = { "defined", "break", "case", "continue", "default", "do", "else", "for", "goto", "if", "inline", "return", "restrict", "sizeof", "switch", "while", "auto", "char", "const", "double", "extern", "float", "enum", "int", "long", "register", "short", "signed", "static", "struct", "typedef", "union", "unsigned", "void", "volatile", "_Bool", "_Complex", "_Imaginary", "_Alignas", "_Thread_local", "_Atomic", "_Generic", "_Noreturn", "__at__", "_Static_assert", "asm", "_Alignof", "__critical__" }; const std::map<std::string, std::string> CompilerCPreProcMacros::NAMED_OPERATORS = { { "and", "&&" }, { "and_eq", "&=" }, { "bitand", "&" }, { "bitor", "|" }, { "compl", "~" }, { "not", "!" }, { "not_eq", "!=" }, { "or", "||" }, { "or_eq", "|=" }, { "xor", "^" }, { "xor_eq", "^=" } }; const std::map<std::string, std::pair<bool, CompilerCPreProcMacros::PredefinedMacro>> CompilerCPreProcMacros::PREDEFINED_MACROS = { // Mandatory { "__DATE__", { true, PRE_DEF__DATE } }, { "__TIME__", { true, PRE_DEF__TIME } }, { "__FILE__", { true, PRE_DEF__FILE } }, { "__LINE__", { true, PRE_DEF__LINE } }, { "__STDC_VERSION__", { true, PRE_DEF__STDC_VERSION } }, // Optional { "__STDC__", { true, PRE_DEF__STDC } }, { "__STDC_HOSTED__", { false, PRE_DEF__STDC_HOSTED } }, { "__STDC_IEC_559__", { false, PRE_DEF__STDC_IEC_559 } }, { "__STDC_IEC_559_COMPLEX__", { false, PRE_DEF__STDC_IEC_559_COMPLEX } }, { "__STDC_ISO_10646__", { false, PRE_DEF__STDC_ISO_10646 } }, { "__STDC_MB_MIGHT_NEQ_WC__", { false, PRE_DEF__STDC_MB_MIGHT_NEQ_WC } }, { "__STDC_UTF_16__", { false, PRE_DEF__STDC_UTF_16 } }, { "__STDC_UTF_32__", { false, PRE_DEF__STDC_UTF_32 } }, { "__STDC_ANALYZABLE__", { false, PRE_DEF__STDC_ANALYZABLE } }, { "__STDC_LIB_EXT1__", { false, PRE_DEF__STDC_LIB_EXT1 } }, { "__STDC_NO_ATOMICS__", { true, PRE_DEF__STDC_NO_ATOMICS } }, { "__STDC_NO_COMPLEX__", { true, PRE_DEF__STDC_NO_COMPLEX } }, { "__STDC_NO_THREADS__ ", { true, PRE_DEF__STDC_NO_THREADS } }, { "__STDC_NO_VLA__", { false, PRE_DEF__STDC_NO_VLA } }, }; CompilerCPreProcMacros::CompilerCPreProcMacros ( CompilerParserInterface * compilerCore, const CompilerOptions * opts, CompilerCBackend * backend, std::vector<CompilerSourceLocation> & locationStack ) : m_compilerCore ( compilerCore ), m_opts ( opts ), m_backend ( backend ), m_locationStack ( locationStack ) { for ( const auto & def : m_opts->m_define ) { std::string name; std::string value = "1"; size_t pos = def.find('='); if ( std::string::npos == pos ) { name = def; } else { name = def.substr(0, pos); value = def.substr(pos + 1); } bool validName = ( PREDEFINED_MACROS.cend() == PREDEFINED_MACROS.find(name) ); for ( unsigned int i = 0; ( i < name.size() ) && ( true == validName ); i++ ) { validName = IS_IDENTIFIER(name, i); } if ( false == validName ) { m_compilerCore -> preprocessorMessage ( CompilerSourceLocation(), CompilerBase::MT_ERROR, QObject::tr ( "invalid name: " ).toStdString() + '`' + name + '\'' ); continue; } m_table[name] = { value, std::vector<std::string>() }; } } bool CompilerCPreProcMacros::isDefined ( const std::string & name ) { if ( NAMED_OPERATORS.cend() != NAMED_OPERATORS.find(name) ) { return true; } const auto macro = PREDEFINED_MACROS.find(name); if ( ( PREDEFINED_MACROS.cend() != macro ) && ( true == macro->second.first ) ) { return true; } return ( m_table.cend() != m_table.find(name) ); } void CompilerCPreProcMacros::define ( char * macro, const int length ) { char * paramList = nullptr; char * body; int i = 0; while ( ( ++i < length ) && IS_IDENTIFIER(macro, i) ); if ( '(' == macro[i] ) { macro[i] = '\0'; paramList = macro + i + 1; while ( ( ++i < length ) && ( ')' != macro[i] ) ); if ( length == i ) { throw MacroException("unmatched ()"); } } else if ( ! IS_BLANK(macro[i]) ) { throw MacroException(std::string("invalid name of macro: ") + macro[i]); } macro[i] = '\0'; while ( ( ++i < length ) && isblank(macro[i]) ); body = macro + i; if ( '\0' == macro[0] ) { throw MacroException("no name for macro provided"); } if ( m_table.cend() != m_table.find(macro) ) { m_compilerCore->preprocessorMessage ( locationCorrection(m_locationStack.back()), CompilerBase::MT_WARNING, std::string("redefining macro: ") + macro ); } switch ( isReserved(macro) ) { case -1: throw MacroException("this macro cannot be redefined"); case 1: m_compilerCore->preprocessorMessage ( locationCorrection(m_locationStack.back()), CompilerBase::MT_WARNING, std::string("macro name is language keyword: ") + macro ); } m_table[macro] = { body, std::vector<std::string>() }; if ( nullptr == paramList ) { return; } std::vector<std::string> & parameters = m_table[macro].m_parameters; char * param = paramList; int dots = 0; int size = strlen(paramList); for ( i = 0; i <= size; i++ ) { if ( ( ',' != paramList[i] ) && ( i != size ) ) { continue; } paramList[i] = '\0'; for ( int pos = ( i - 1 ); IS_SPACE(paramList[pos]); pos-- ) { paramList[pos] = '\0'; } while ( IS_SPACE(param[0]) ) { param++; } if ( 0 != dots ) { throw MacroException("variadic specifier (`...') must appear last in the parameter list"); } for ( int pos = 0; '\0' != param[pos]; pos++ ) { if ( ( !IS_IDENTIFIER(param, pos) || ( 0 != dots ) ) && ( ( '.' != param[pos] ) || ( ++dots > 3 ) ) ) { throw MacroException("macro parameter must be identifier"); } } if ( ( 0 != dots ) && ( 3 != dots ) ) { throw MacroException("macro parameter must be identifier, maybe you forgot a dot in `...' expression"); } switch ( isReserved(param) ) { case -1: throw MacroException(std::string("cannot use macro parameter with that name: ") + param); case 1: m_compilerCore->preprocessorMessage ( locationCorrection(m_locationStack.back()), CompilerBase::MT_WARNING, std::string("macro parameter is language keyword: ") + param ); } parameters.push_back(param); param = paramList + i + 1; } for ( i = 0; i < (int) parameters.size(); i++ ) { for ( int j = i + 1; j < (int) parameters.size(); j++ ) { if ( parameters[i] == parameters[j] ) { throw MacroException(std::string("duplicite parameter name: ") + parameters[i]); } } } } void CompilerCPreProcMacros::undef ( char * macro ) { if ( -1 == isReserved(macro) ) { throw MacroException("this macro cannot be undefined"); } const auto iter = m_table.find(macro); if ( m_table.cend() == iter ) { throw MacroException ( std::string("macro not defined: ") + macro ); } m_table.erase(iter); } inline int CompilerCPreProcMacros::isReserved ( const char * word ) const { if ( ( PREDEFINED_MACROS.cend() != PREDEFINED_MACROS.find(word) ) || ( ( true == m_opts->m_enableNamedOperators ) && ( NAMED_OPERATORS.cend() != NAMED_OPERATORS.find(word) ) ) ) { return -1; } return ( ( KEYWORDS.cend() == KEYWORDS.find(word) ) ? 0 : 1 ); } void CompilerCPreProcMacros::expand ( Buffer & out, const Buffer & in, ExpansionMode expMode ) { Buffer expansionBuffer; int outpos = 0; int start = -1; InMode mode = MODE_NORMAL; for ( int pos = 0; pos <= in.m_pos; pos++ ) { char input = in.m_data[pos]; bool backslash = ( ( 0 != pos ) && ( '\\' == in.m_data[pos - 1] ) ); if ( ( ( MODE_STRING == mode ) && ( '"' == input ) ) || ( ( MODE_CHAR == mode ) && ( '\'' == input) ) ) { if ( false == backslash ) { mode = MODE_NORMAL; } continue; } else if ( MODE_NORMAL != mode ) { continue; } if ( false == backslash ) { if ( '"' == in.m_data[pos] ) { mode = MODE_STRING; continue; } else if ( '\'' == in.m_data[pos] ) { mode = MODE_CHAR; continue; } } if ( ( isalnum(input) ) || ( '_' == input ) ) { if ( -1 == start ) { start = pos; } continue; } if ( -1 == start ) { continue; } std::string name(in.m_data + start, pos - start); if ( ( EXP_EXPRESSION & expMode ) && ( "defined" == name ) ) { std::string argument; pos += getArgument ( argument, in.m_data + pos ); if ( true == argument.empty() ) { throw MacroException("missing argument for operator defined()"); } out.append(Buffer(in.m_data+outpos, start-outpos)); out.append(isDefined(argument) ? "1" : "0"); outpos = pos; start = -1; continue; } if ( true == prefinedMacro(out, in, name, start, outpos) ) { outpos = pos; start = -1; continue; } const auto macro = m_table.find(name); if ( ( m_table.cend() == macro ) || ( m_status.m_macros.cend() != m_status.m_macros.find(name) ) ) { start = -1; continue; } std::vector<std::string> argVector; if ( false == macro->second.m_parameters.empty() ) { int argLen = getArgVector(argVector, in.m_data + pos, expMode); if ( -1 == argLen ) { start = -1; continue; } if ( macro->second.m_parameters.size() != argVector.size() ) { const std::string & lastParam = macro->second.m_parameters.back(); const size_t paramSize = lastParam.size(); if ( ( paramSize >= 3 ) && ( "..." == lastParam.substr(paramSize - 3, 3) ) ) { if ( argVector.size() < ( macro->second.m_parameters.size() - 1) ) { m_compilerCore->preprocessorMessage ( locationCorrection(m_locationStack.back()), CompilerBase::MT_WARNING, "possible variadic macro expansion, too little arguments " "provided"); start = -1; continue; } } else { m_compilerCore->preprocessorMessage ( locationCorrection(m_locationStack.back()), CompilerBase::MT_WARNING, "possible macro expansion, invalid number of argument(s)"); start = -1; continue; } } pos += argLen; } if ( ++m_status.m_depth > m_opts->m_maxMacroExp ) { throw MacroException("maximum expansion depth exceeded"); } m_status.m_macros.insert(name); out.append(Buffer(in.m_data+outpos, start-outpos)); expansionBuffer.m_pos = 0; substitute(expansionBuffer, macro->second, argVector); expand(out, expansionBuffer, ExpansionMode(expMode | EXP_RECURSIVE)); m_status.m_macros.erase(name); m_status.m_depth--; outpos = pos; start = -1; } out.append(Buffer(in.m_data + outpos, in.m_pos - outpos)); } inline unsigned int CompilerCPreProcMacros::getArgument ( std::string & argument, const char * string ) { unsigned int start; for ( start = 0; ( '\0' != string[start] ) && ( '_' != string[start] ) && ( !isalnum(string[start]) ); start++ ); unsigned int end; for ( end = start; ( '\0' != string[end] ) && ( ( '_' == string[end] ) || ( isalnum(string[end]) ) ); end++ ); argument.append(string + start, end - start); return end; } inline bool CompilerCPreProcMacros::prefinedMacro ( Buffer & out, const Buffer & in, const std::string & name, int start, int outpos ) { if ( true == m_opts->m_enableNamedOperators ) { const auto oper = NAMED_OPERATORS.find(name); if ( NAMED_OPERATORS.cend() != oper ) { out.append(Buffer(in.m_data+outpos, start-outpos)); out.append(oper->second); return true; } } const auto macro = PREDEFINED_MACROS.find(name); if ( PREDEFINED_MACROS.cend() != macro ) { out.append(Buffer(in.m_data+outpos, start-outpos)); switch ( macro->second.second ) { case PRE_DEF__FILE: getFileOrLine(out, true); break; case PRE_DEF__LINE: getFileOrLine(out, false); break; case PRE_DEF__DATE: getTimeOrDate(out, true); break; case PRE_DEF__TIME: getTimeOrDate(out, false); break; case PRE_DEF__STDC_VERSION: out.append(STDC_VERSION); break; default: if ( false == macro->second.first ) { return false; } out.m_data[out.m_pos++] = '1'; } return true; } return false; } inline void CompilerCPreProcMacros::getFileOrLine ( Buffer & out, bool file ) { using namespace boost::filesystem; if ( true == file ) { out.m_data[out.m_pos++] = '"'; std::string filename = m_compilerCore->getFileName ( m_locationStack.back().m_fileNumber ); if ( true == path(filename).is_absolute() ) { out.append ( make_relative ( m_compilerCore->getBasePath(), filename ).string() ); } else { out.append(filename); } out.m_data[out.m_pos++] = '"'; } else { char buffer[16]; sprintf(buffer, "%d", ( m_locationStack.back().m_lineStart - 1 ) ); out.append(buffer); } } inline void CompilerCPreProcMacros::getTimeOrDate ( Buffer & out, bool date ) { time_t rawtime; struct tm * timeinfo; time(&rawtime); timeinfo = localtime(&rawtime); char buffer[16]; strftime(buffer, 16, ( ( true == date ) ? "\"%b %e %Y\"" : "\"%T\"" ), timeinfo ); out.append(buffer); } inline int CompilerCPreProcMacros::getArgVector ( std::vector<std::string> & argVector, const char * string, ExpansionMode expMode ) { if ( '(' != string[0] ) { m_compilerCore->preprocessorMessage ( locationCorrection(m_locationStack.back()), CompilerBase::MT_WARNING, "possible macro expansion, missing argument(s)"); return -1; } int end = 1; int start = 0; int parentheses = 1; InMode mode = MODE_NORMAL; for ( char input = string[end]; 0 != parentheses; input = string[++end] ) { if ( '\0' == input ) { m_compilerCore->preprocessorMessage ( locationCorrection(m_locationStack.back()), CompilerBase::MT_WARNING, "possible macro expansion, unmatched `()'"); return -1; } if ( ( 0 != end ) && ( '\\' == string[end - 1] ) ) { continue; } if ( ( ( MODE_STRING == mode ) && ( '"' == input ) ) || ( ( MODE_CHAR == mode ) && ( '\'' == input ) ) ) { mode = MODE_NORMAL; continue; } else if ( MODE_NORMAL != mode ) { continue; } switch ( input ) { case '"': mode = MODE_STRING; break; case '\'': mode = MODE_CHAR; break; case '(': parentheses++; break; case ')': parentheses--; break; } if ( ( 0 == parentheses ) || ( ( 1 == parentheses ) && ( ',' == input ) ) ) { while ( IS_SPACE(string[++start]) ); start--; size_t length = end - start; for ( int j = ( end - 1 ); ( j >= 0 ) && IS_SPACE(string[j]); j-- ) { length--; } argVector.push_back({string + start, length}); start = end; } } if ( EXP_RECURSIVE & expMode ) { for ( unsigned int i = 0; i < argVector.size(); i++ ) { Buffer out; expand(out, argVector[i], EXP_NORMAL); argVector[i] = out.m_data; } } return end; } inline void CompilerCPreProcMacros::substitute ( Buffer & out, const Macro & macro, const std::vector<std::string> & argVector ) const { int outpos = 0; int start = -1; int strf = -1; InMode mode = MODE_NORMAL; const Buffer in(macro.m_body); bool concat = false; bool hasParameters = !macro.m_parameters.empty(); std::string vaArgsString; if ( true == hasParameters ) { const std::string & lastParam = macro.m_parameters.back(); const size_t paramSize = lastParam.size(); if ( ( paramSize >= 3 ) && ( "..." == lastParam.substr(paramSize - 3, 3) ) ) { if ( paramSize > 3 ) { vaArgsString = lastParam.substr(0, paramSize - 3); } else { vaArgsString = "__VA_ARGS__"; } } } for ( int pos = 0; pos <= in.m_pos; pos++ ) { bool backslash = ( ( 0 != pos ) && ( '\\' == in.m_data[pos - 1] ) ); if ( ( ( MODE_STRING == mode ) && ( '"' == in.m_data[pos] ) ) || ( ( MODE_CHAR == mode ) && ( '\'' == in.m_data[pos]) ) ) { if ( false == backslash ) { start = -1; strf = -1; concat = false; mode = MODE_NORMAL; } continue; } if ( MODE_NORMAL != mode ) { continue; } if ( false == backslash ) { if ( '"' == in.m_data[pos] ) { mode = MODE_STRING; continue; } else if ( '\'' == in.m_data[pos] ) { mode = MODE_CHAR; continue; } } if ( ( isalnum(in.m_data[pos]) ) || ( '_' == in.m_data[pos] ) ) { if ( -1 == start ) { start = pos; } continue; } if ( ( true == hasParameters ) && ( -1 != start ) ) { std::string word(in.m_data + start, pos - start); int idx = ( macro.m_parameters.size() - 1 ); bool varArg = ( vaArgsString == word ); if ( false == varArg ) { for ( ; ( idx >= 0 ) && ( macro.m_parameters[idx] != word ); idx-- ); } if ( -1 == idx ) { start = pos; } else if ( -1 != strf ) { start = strf; } out.append(Buffer(in.m_data+outpos, start-outpos)); if ( -1 != idx ) { substArg(out, argVector, idx, varArg, ( -1 != strf ), concat); } outpos = pos; start = -1; strf = -1; } concat = false; if ( '#' == in.m_data[pos] ) { strf = pos; if ( '#' == in.m_data[ pos + 1 ] ) { if ( ( 0 == pos ) || ( ( in.m_pos - 2 ) == pos ) ) { throw MacroException("invalid use of preprocessing operator `##'"); } strf = -1; concat = true; int i = pos; while ( ( --i >= outpos ) && IS_SPACE(in.m_data[i]) ); out.append(Buffer(in.m_data + outpos, 1 + i - outpos)); for ( pos += 2; IS_SPACE(in.m_data[pos]); pos++ ); outpos = pos--; } } else if ( !IS_SPACE(in.m_data[pos]) ) { strf = -1; } } out.append(Buffer(in.m_data + outpos, in.m_pos - outpos)); } inline void CompilerCPreProcMacros::substArg ( Buffer & out, const std::vector<std::string> & argVector, int idx, bool varArg, bool strf, bool concat ) const { Buffer tmpBuffer; Buffer * target; if ( true == strf ) { target = &tmpBuffer; } else { target = &out; } if ( true == varArg ) { if ( ( true == concat ) && ( ',' == target->m_data[target->m_pos-1] ) ) { target->m_pos--; } // Variable argument. bool first = true; for ( ; idx < (int) argVector.size(); idx++ ) { if ( false == first ) { target->append(", "); } target->append(argVector[idx]); first = false; } } else { target->append(argVector[idx]); } if ( true == strf ) { // Stringification. stringify(out, tmpBuffer); } } inline void CompilerCPreProcMacros::stringify ( Buffer & out, const Buffer & in ) const { unsigned int start = 0; unsigned int end = 0; InMode mode = MODE_NORMAL; out.m_data[out.m_pos++] = '"'; for ( ; end < in.m_pos; end++ ) { bool backslash = ( ( 0 != end ) && ( '\\' == in.m_data[end - 1] ) ); if ( MODE_NORMAL == mode ) { if ( false == backslash ) { switch ( in.m_data[end] ) { case '"': mode = MODE_STRING; strEscape(out, in, start, end); break; case '\'': mode = MODE_CHAR; break; } } } else if ( MODE_STRING == mode ) { switch ( in.m_data[end] ) { case '"': if ( false == backslash ) { mode = MODE_NORMAL; } case '\\': strEscape(out, in, start, end); break; } } else if ( MODE_CHAR == mode ) { switch ( in.m_data[end] ) { case '\'': if ( false == backslash ) { mode = MODE_NORMAL; break; } case '\\': strEscape(out, in, start, end); break; } } } out.append(Buffer(in.m_data + start, end - start)); out.m_data[out.m_pos++] = '"'; } inline void CompilerCPreProcMacros::strEscape ( Buffer & out, const Buffer & in, unsigned int & start, unsigned int & end ) const { out.append(Buffer(in.m_data + start, end - start)); out.m_data[out.m_pos++] = '\\'; start = end; }
[ "martin.osmera@moravia-microsystems.com" ]
martin.osmera@moravia-microsystems.com
99c6b219d582d86e002044dac30ae47c0e047ce9
c95669db15af9a30426c32822589a239e430dc61
/vtkRobotProbeNavLogic.cxx
a9018339ddf6f7bfadf95d512f11b5d719c40fbc
[]
no_license
SNRLab/IGTNavigator
06c8b65d1af7ff96276056d624829343c0eb146a
fa01bb018851832a3248f079c569dbab9217ab04
refs/heads/master
2020-12-24T15:58:38.957417
2013-02-07T02:42:19
2013-02-07T02:42:19
8,040,513
0
0
null
null
null
null
UTF-8
C++
false
false
69,159
cxx
/*=auto========================================================================= Portions (c) Copyright 2007 Brigham and Women's Hospital (BWH) All Rights Reserved. See Doc/copyright/copyright.txt or http://www.slicer.org/copyright/copyright.txt for details. Program: 3D Slicer Module: $RCSfile: $ Date: $Date: $ this is the test data Version: $Revision: $ =========================================================================auto=*/ #include "vtkObjectFactory.h" #include "vtkCallbackCommand.h" #include "vtkRobotProbeNavLogic.h" #include "vtkMRMLModelDisplayNode.h" #include "vtkMRMLScalarVolumeNode.h" #include "vtkMRMLLinearTransformNode.h" #include "vtkSlicerApplication.h" #include "vtkSlicerApplicationGUI.h" #include "vtkSlicerFiducialsGUI.h" #include "vtkSlicerColorLogic.h" #include "vtkMRMLLabelMapVolumeDisplayNode.h" #include "vtkMRMLRobotProbeNavManagerNode.h" #include "vtkMRMLRobotNode.h" #include "vtkKWRadioButton.h" // for DICOM read #include "itkImageFileReader.h" #include "itkImageFileWriter.h" #include "itkImage.h" #include "itkMetaDataDictionary.h" #include "itkMetaDataObject.h" #include "itkGDCMImageIO.h" #include "itkSpatialOrientationAdapter.h" #include "vtkMRMLBrpRobotCommandNode.h" #include "vtkRobotProbeNavGUI.h" #include "RobotProbeNavMath.h" // 9/13/2011 ayamada #include "vtkMRMLIGTProbeRobotNode.h" #include "math.h" // 7/1/2012 ayamada #define PI 3.14159 vtkCxxRevisionMacro(vtkRobotProbeNavLogic, "$Revision: 1.9.12.1 $"); vtkStandardNewMacro(vtkRobotProbeNavLogic); //--------------------------------------------------------------------------- vtkRobotProbeNavLogic::vtkRobotProbeNavLogic() { // Timer Handling this->DataCallbackCommand = vtkCallbackCommand::New(); this->DataCallbackCommand->SetClientData( reinterpret_cast<void *> (this) ); this->DataCallbackCommand->SetCallback(vtkRobotProbeNavLogic::DataCallback); this->TimerOn = 0; // 10/28/2011 ayamada this->magnitudeOfDirectionVector = 0.0; // 7/5/2012 ayamada this->magnitudeOfDirectionVector2 = 0.0; // 11/20/2011 ayamada this->tmpDis = 0.0; this->tmpDisRef = 0.0; this->tmpVectorOP[0] = 0.0; this->tmpVectorOP[1] = 0.0; this->tmpVectorOP[2] = 0.0; this->leftNeedleContactPosition[0] = 0.0; this->leftNeedleContactPosition[1] = 0.0; this->leftNeedleContactPosition[2] = 0.0; // 12/9/2011 ayamada this->centerDirectionVector[0] = 0.0; this->centerDirectionVector[1] = 0.0; this->centerDirectionVector[2] = 0.0; this->centerPassingPoint[0] = 0.0; this->centerPassingPoint[1] = 0.0; this->centerPassingPoint[2] = 0.0; this->centerVariableK = 2.0; this->centerVariableK2 = 2.0; this->parametrizedDirectionVector[0] = 0.0; this->parametrizedDirectionVector[1] = 0.0; this->parametrizedDirectionVector[2] = 0.0; this->parametrizedDirectionVector2[0] = 0.0; this->parametrizedDirectionVector2[1] = 0.0; this->parametrizedDirectionVector2[2] = 0.0; this->adjusterSign = 1.0; this->adjusterSign2 = 1.0; // 12/22/2011 ayamada this->Pat2ImgReg = vtkIGTPat2ImgRegistration::New(); // 12/25/2011 ayamada this->RelativeTrackingTransform = vtkMRMLLinearTransformNode::New();//NULL; // 12/26/2011 ayamada this->workPhaseStatus = 0; this->workPhaseInitialFlag = 0; // 7/5/2012 ayamada this->carriagePositionForOrder = 0.0; // 2/11/2012 ayamada this->existanceOfTarget1 = 0; this->existanceOfTarget2 = 0; this->existanceOfTarget3 = 0; this->getRow = 0; for(int i = 0; i < 3; i++) { for(int j = 0; j < 3; j++) { this->linearP[i][j]; this->linearV[i][j]; } } // 3/8/2012 ayamada this->imageFilePath = NULL; this->TargetPositionXYZ[0] = 0.0; this->TargetPositionXYZ[1] = 0.0; this->TargetPositionXYZ[2] = 0.0; this->AbdoNavNode = vtkMRMLAbdoNavNode::New(); this->RegistrationTransform = vtkMRMLLinearTransformNode::New(); this->RegistrationPerformed = NULL; this->node = vtkMRMLAbdoNavNode::New(); this->GUI = vtkRobotProbeNavGUI::New(); } //--------------------------------------------------------------------------- vtkRobotProbeNavLogic::~vtkRobotProbeNavLogic() { if (this->DataCallbackCommand) { this->DataCallbackCommand->Delete(); } // 12/25/2011 ayamada if (this->RelativeTrackingTransform) { this->RelativeTrackingTransform->Delete(); } // 12/26/2011 ayamada this->workPhaseStatus = NULL; this->workPhaseInitialFlag = NULL; } //--------------------------------------------------------------------------- void vtkRobotProbeNavLogic::PrintSelf(ostream& os, vtkIndent indent) { this->vtkObject::PrintSelf(os, indent); os << indent << "vtkRobotProbeNavLogic: " << this->GetClassName() << "\n"; } //--------------------------------------------------------------------------- void vtkRobotProbeNavLogic::DataCallback(vtkObject *caller, unsigned long eid, void *clientData, void *callData) { vtkRobotProbeNavLogic *self = reinterpret_cast<vtkRobotProbeNavLogic *>(clientData); vtkDebugWithObjectMacro(self, "In vtkRobotProbeNavLogic DataCallback"); self->UpdateAll(); } //--------------------------------------------------------------------------- void vtkRobotProbeNavLogic::UpdateAll() { } int vtkRobotProbeNavLogic::Enter() { vtkKWTkUtilities::CreateTimerHandler(this->GetGUI()->GetApplication(), 200, this, "TimerHandler"); return 1; } //---------------------------------------------------------------------------- void vtkRobotProbeNavLogic::TimerHandler() { if (this->TimerOn) { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot!=NULL) { robot->OnTimer(); } } } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::RobotStop() { std::cerr << "vtkRobotProbeNavLogic::RobotStop()" << std::endl; return 1; } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::RobotMoveTo(float px, float py, float pz, float nx, float ny, float nz, float tx, float ty, float tz) { std::cerr << "vtkRobotProbeNavLogic::RobotMoveTo()" << std::endl; return 1; } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::RobotMoveTo(float position[3], float orientation[3]) { std::cerr << "vtkRobotProbeNavLogic::RobotMoveTo()" << std::endl; return 1; } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::RobotMoveTo() { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { return 0; // failed } return robot->MoveTo(robot->GetTargetTransformNodeID()); } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ScanStart() { return 1; } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ScanPause() { return 1; } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ScanStop() { return 1; } //--------------------------------------------------------------------------- void vtkRobotProbeNavLogic::SetSliceViewFromVolume(vtkMRMLVolumeNode *volumeNode) { if (!volumeNode) { return; } vtkSmartPointer<vtkMatrix4x4> matrix = vtkSmartPointer<vtkMatrix4x4>::New(); vtkSmartPointer<vtkMatrix4x4> permutationMatrix = vtkSmartPointer<vtkMatrix4x4>::New(); vtkSmartPointer<vtkMatrix4x4> rotationMatrix = vtkSmartPointer<vtkMatrix4x4>::New(); volumeNode->GetIJKToRASDirectionMatrix(matrix); vtkMRMLTransformNode *transformNode = volumeNode->GetParentTransformNode(); if ( transformNode ) { vtkSmartPointer<vtkMatrix4x4> rasToRAS = vtkSmartPointer<vtkMatrix4x4>::New(); transformNode->GetMatrixTransformToWorld(rasToRAS); vtkMatrix4x4::Multiply4x4 (rasToRAS, matrix, matrix); } int permutation[3]; int flip[3]; RobotProbeNavMath::ComputePermutationFromOrientation(matrix, permutation, flip); permutationMatrix->SetElement(0,0,0); permutationMatrix->SetElement(1,1,0); permutationMatrix->SetElement(2,2,0); permutationMatrix->SetElement(0, permutation[0], (flip[permutation[0]] ? -1 : 1)); permutationMatrix->SetElement(1, permutation[1], (flip[permutation[1]] ? -1 : 1)); permutationMatrix->SetElement(2, permutation[2], (flip[permutation[2]] ? -1 : 1)); permutationMatrix->Invert(); vtkMatrix4x4::Multiply4x4(matrix, permutationMatrix, rotationMatrix); vtkSlicerApplicationLogic *appLogic = this->GetGUI()->GetApplicationLogic(); // Set the slice views to match the volume slice orientation for (int i = 0; i < 3; i++) { static const char *panes[3] = { "Red", "Yellow", "Green" }; vtkMatrix4x4 *newMatrix = vtkMatrix4x4::New(); vtkSlicerSliceLogic *slice = appLogic->GetSliceLogic( const_cast<char *>(panes[i])); vtkMRMLSliceNode *sliceNode = slice->GetSliceNode(); // Need to find window center and rotate around that // Default matrix orientation for slice newMatrix->SetElement(0, 0, 0.0); newMatrix->SetElement(1, 1, 0.0); newMatrix->SetElement(2, 2, 0.0); if (i == 0) { newMatrix->SetElement(0, 0, -1.0); newMatrix->SetElement(1, 1, 1.0); newMatrix->SetElement(2, 2, 1.0); } else if (i == 1) { newMatrix->SetElement(1, 0, -1.0); newMatrix->SetElement(2, 1, 1.0); newMatrix->SetElement(0, 2, 1.0); } else if (i == 2) { newMatrix->SetElement(0, 0, -1.0); newMatrix->SetElement(2, 1, 1.0); newMatrix->SetElement(1, 2, 1.0); } // Next, set the orientation to match the volume sliceNode->SetOrientationToReformat(); vtkMatrix4x4::Multiply4x4(rotationMatrix, newMatrix, newMatrix); sliceNode->SetSliceToRAS(newMatrix); sliceNode->UpdateMatrices(); newMatrix->Delete(); } } //--------------------------------------------------------------------------- vtkMRMLScalarVolumeNode *vtkRobotProbeNavLogic::AddVolumeToScene(const char *fileName, VolumeType volumeType/*=VOL_GENERIC*/) { if (fileName==0) { vtkErrorMacro("AddVolumeToScene: invalid filename"); return 0; } vtksys_stl::string volumeNameString = vtksys::SystemTools::GetFilenameName(fileName); vtkMRMLScalarVolumeNode *volumeNode = this->AddArchetypeVolume(fileName, volumeNameString.c_str()); if (volumeNode==NULL) { vtkErrorMacro("Error adding volume to the scene"); return NULL; } vtkMRMLRobotProbeNavManagerNode* manager=this->GUI->GetRobotProbeNavManagerNode(); if (manager==NULL) { vtkErrorMacro("Error adding volume to the scene, manager is invalid"); return NULL; } this->SetSliceViewFromVolume(volumeNode); switch (volumeType) { case VOL_GENERIC: // don't store a reference in the manager node break; case VOL_TARGETING: manager->SetTargetingVolumeNodeRef(volumeNode->GetID()); break; case VOL_VERIFICATION: manager->SetVerificationVolumeNodeRef(volumeNode->GetID()); break; default: vtkErrorMacro("AddVolumeToScene: unknown volume type: " << volumeType); } volumeNode->Modified(); this->Modified(); return volumeNode; } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::SelectVolumeInScene(vtkMRMLScalarVolumeNode* volumeNode, VolumeType volumeType) { if (volumeNode==0) { vtkErrorMacro("SelectVolumeInScene: invalid volume"); return 0; } vtkMRMLRobotProbeNavManagerNode* manager=this->GUI->GetRobotProbeNavManagerNode(); if (manager==NULL) { vtkErrorMacro("Error adding volume to the scene, manager is invalid"); return 0; } this->SetSliceViewFromVolume(volumeNode); this->GetGUI()->GetApplicationLogic()->GetSelectionNode()->SetActiveVolumeID( volumeNode->GetID() ); this->GetGUI()->GetApplicationLogic()->PropagateVolumeSelection(); switch (volumeType) { case VOL_GENERIC: // don't store a reference in the manager node break; case VOL_TARGETING: manager->SetTargetingVolumeNodeRef(volumeNode->GetID()); break; case VOL_VERIFICATION: manager->SetVerificationVolumeNodeRef(volumeNode->GetID()); break; default: vtkErrorMacro("AddVolumeToScene: unknown volume type: " << volumeType); } //volumeNode->Modified(); this->Modified(); return 1; } //--------------------------------------------------------------------------- vtkMRMLScalarVolumeNode *vtkRobotProbeNavLogic::AddArchetypeVolume(const char* fileName, const char *volumeName) { // Set up storageNode vtkSmartPointer<vtkMRMLVolumeArchetypeStorageNode> storageNode = vtkSmartPointer<vtkMRMLVolumeArchetypeStorageNode>::New(); storageNode->SetFileName(fileName); // check to see if can read this type of file if (storageNode->SupportedFileType(fileName) == 0) { vtkErrorMacro("AddArchetypeVolume: can't read this kind of file: " << fileName); return 0; } storageNode->SetCenterImage(false); storageNode->SetSingleFile(false); storageNode->SetUseOrientationFromFile(true); // Set up scalarNode vtkSmartPointer<vtkMRMLScalarVolumeNode> scalarNode = vtkSmartPointer<vtkMRMLScalarVolumeNode>::New(); scalarNode->SetName(volumeName); scalarNode->SetLabelMap(false); // Set up displayNode vtkSmartPointer<vtkMRMLScalarVolumeDisplayNode> displayNode = vtkSmartPointer<vtkMRMLScalarVolumeDisplayNode>::New(); displayNode->SetAutoWindowLevel(false); displayNode->SetInterpolate(true); vtkSmartPointer<vtkSlicerColorLogic> colorLogic = vtkSmartPointer<vtkSlicerColorLogic>::New(); displayNode->SetAndObserveColorNodeID(colorLogic->GetDefaultVolumeColorNodeID()); // Add nodes to scene vtkDebugMacro("LoadArchetypeVolume: adding storage node to the scene"); storageNode->SetScene(this->GetMRMLScene()); this->GetMRMLScene()->AddNode(storageNode); vtkDebugMacro("LoadArchetypeVolume: adding display node to the scene"); displayNode->SetScene(this->GetMRMLScene()); this->GetMRMLScene()->AddNode(displayNode); vtkDebugMacro("LoadArchetypeVolume: adding scalar node to the scene"); scalarNode->SetScene(this->GetMRMLScene()); this->GetMRMLScene()->AddNode(scalarNode); scalarNode->SetAndObserveStorageNodeID(storageNode->GetID()); scalarNode->SetAndObserveDisplayNodeID(displayNode->GetID()); // Read the volume into the node vtkDebugMacro("AddArchetypeVolume: about to read data into scalar node " << scalarNode->GetName()); storageNode->AddObserver(vtkCommand::ProgressEvent, this->LogicCallbackCommand); if (this->GetDebug()) { storageNode->DebugOn(); } storageNode->ReadData(scalarNode); vtkDebugMacro("AddArchetypeVolume: finished reading data into scalarNode"); storageNode->RemoveObservers(vtkCommand::ProgressEvent, this->LogicCallbackCommand); return scalarNode; } //-------------------------------------------------------------------------------------- std::string vtkRobotProbeNavLogic::GetFoRStrFromVolumeNodeID(const char* volNodeID) { vtkMRMLScalarVolumeNode *volNode=vtkMRMLScalarVolumeNode::SafeDownCast(this->GetMRMLScene()->GetNodeByID(volNodeID)); if (volNode==NULL) { vtkErrorMacro("Cannot get FoR, VolumeNode is undefined"); return std::string(""); } // remaining information to be had from the meta data dictionary const itk::MetaDataDictionary &volDictionary = volNode->GetMetaDataDictionary(); std::string tagValue; // frame of reference uid tagValue.clear(); itk::ExposeMetaData<std::string>( volDictionary, "0020|0052", tagValue ); // Need to remove extra '0x00' characters that may be present at the end of the string if (!tagValue.empty()) { tagValue=tagValue.c_str(); } return tagValue; } void vtkRobotProbeNavLogic::UpdateTargetListFromMRML() { vtkMRMLRobotProbeNavManagerNode* manager=this->GUI->GetRobotProbeNavManagerNode(); if (manager==NULL) { vtkErrorMacro("Error updating targetlist from mrml, manager is invalid"); return; } vtkMRMLFiducialListNode* fidNode=manager->GetTargetPlanListNode(); if (fidNode==NULL) { vtkErrorMacro("Error updating targetlist from mrml, fiducial node is invalid"); return; } // True if we modified fiducials at all (typically the label has to be changed) bool fidNodeModified=false; // If we modified fiducials, then do it in one step, with Start/EndModify. For that we need to remember the previous state. int fidNodeModifyOld=0; LinkTargetsToFiducials(); // Remove fiducials in the manager that doesn't have a corresponding FiducialNode for (int i=0; i<manager->GetTotalNumberOfTargets(); i++) { vtkRobotProbeNavTargetDescriptor *t=manager->GetTargetDescriptorAtIndex(i); if (fidNode->GetFiducialIndex(t->GetFiducialID())<0) { // fiducial not found, need to delete it manager->RemoveTargetDescriptorAtIndex(i); i--; // repeat check on the i-th element } } for (int i=0; i<fidNode->GetNumberOfFiducials(); i++) { int targetIndex=GetTargetIndexFromFiducialID(fidNode->GetNthFiducialID(i)); if (targetIndex<0) { if (!fidNodeModified) { fidNodeModified=true; fidNodeModifyOld=fidNode->StartModify(); } // New fiducial, create associated target vtkSmartPointer<vtkRobotProbeNavTargetDescriptor> targetDesc=vtkSmartPointer<vtkRobotProbeNavTargetDescriptor>::New(); targetDesc->SetFiducialID(fidNode->GetNthFiducialID(i)); int needleIndex=manager->GetCurrentNeedleIndex(); NeedleDescriptorStruct needleDesc; if (!manager->GetNeedle(needleIndex, needleDesc)) { vtkErrorMacro("Failed to get info for needle "<<needleIndex); } targetDesc->SetNeedleID(needleDesc.mID); // just to make the passed target and needle info consistent needleDesc.mLastTargetIndex++; if (!manager->SetNeedle(needleIndex, needleDesc)) { vtkErrorMacro("Failed to set info for needle "<<needleIndex); } // Haiying: this fixes the issue of target name changes // when you switch among fiducial lists on the Targeting tab. //std::ostrstream strvalue; //strvalue << needleDesc.mTargetNamePrefix << needleDesc.mLastTargetIndex << std::ends; //fidNode->SetNthFiducialLabelText(i,strvalue.str()); //strvalue.rdbuf()->freeze(0); std::string FoR = this->GetFoRStrFromVolumeNodeID(manager->GetTargetingVolumeNodeRef()); targetDesc->SetTargetingVolumeFoR(FoR); manager->AddTargetDescriptor(targetDesc); } targetIndex=GetTargetIndexFromFiducialID(fidNode->GetNthFiducialID(i)); if (targetIndex>=0) { // Update fiducial vtkRobotProbeNavTargetDescriptor* targetDesc = manager->GetTargetDescriptorAtIndex(targetIndex); if (targetDesc!=NULL) { float *rasLocation=fidNode->GetNthFiducialXYZ(i); targetDesc->SetRASLocation(rasLocation[0], rasLocation[1], rasLocation[2]); float *rasOrientation=fidNode->GetNthFiducialOrientation(i); targetDesc->SetRASOrientation(rasOrientation[0], rasOrientation[1], rasOrientation[2], rasOrientation[3]); targetDesc->SetName(fidNode->GetNthFiducialLabelText(i)); // :TODO: update needle, etc. parameters ? } else { vtkErrorMacro("Invalid target descriptor"); } } else { vtkErrorMacro("Invalid Fiducial ID"); } } if (fidNodeModified) { fidNode->EndModify(fidNodeModifyOld); // StartModify/EndModify discarded vtkMRMLFiducialListNode::FiducialModifiedEvent-s, so we have to resubIGT them now fidNode->InvokeEvent(vtkMRMLFiducialListNode::FiducialModifiedEvent, NULL); } } //---------------------------------------------------------------------------- void vtkRobotProbeNavLogic::LinkTargetsToFiducials() { vtkMRMLRobotProbeNavManagerNode* manager=this->GUI->GetRobotProbeNavManagerNode(); if (manager==NULL) { vtkErrorMacro("Error in LinkTargetsToFiducials, manager is invalid"); return; } vtkMRMLFiducialListNode* fidNode=manager->GetTargetPlanListNode(); if (fidNode==NULL) { vtkErrorMacro("Error in LinkTargetsToFiducials, fiducial node is invalid"); return; } // if all the targets have empty FiducialID reference it means that the targets are not linked // to the fiducials yet for (int i=0; i<manager->GetTotalNumberOfTargets(); i++) { vtkRobotProbeNavTargetDescriptor *t=manager->GetTargetDescriptorAtIndex(i); if (!t->GetFiducialID().empty()) { // a non-empty FiducialID is found, it means that there is already existing linking return; } } const float rasTolerance=0.1; for (int targetInd=0; targetInd<manager->GetTotalNumberOfTargets(); targetInd++) { vtkRobotProbeNavTargetDescriptor *t=manager->GetTargetDescriptorAtIndex(targetInd); float targetXYZ[3]={0,0,0}; targetXYZ[0]=t->GetRASLocation()[0]; targetXYZ[1]=t->GetRASLocation()[1]; targetXYZ[2]=t->GetRASLocation()[2]; for (int fidIndex=0; fidNode->GetNumberOfFiducials(); fidIndex++) { float* fidXYZ=fidNode->GetNthFiducialXYZ(fidIndex); if ( (fabs(targetXYZ[0]-fidXYZ[0])<rasTolerance) && (fabs(targetXYZ[1]-fidXYZ[1])<rasTolerance) && (fabs(targetXYZ[2]-fidXYZ[2])<rasTolerance) && (t->GetName().compare(fidNode->GetNthFiducialLabelText(fidIndex))==0) ) { // matching fiducial found t->SetFiducialID(fidNode->GetNthFiducialID(fidIndex)); break; } } } } //---------------------------------------------------------------------------- int vtkRobotProbeNavLogic::GetTargetIndexFromFiducialID(const char* fiducialID) { if (fiducialID==NULL) { vtkWarningMacro("Fiducial ID is invalid"); return -1; } vtkMRMLRobotProbeNavManagerNode* manager=this->GUI->GetRobotProbeNavManagerNode(); if (manager==NULL) { vtkErrorMacro("Manager is invalid"); return -1; } for (int i=0; i<manager->GetTotalNumberOfTargets(); i++) { vtkRobotProbeNavTargetDescriptor *t=manager->GetTargetDescriptorAtIndex(i); if (t->GetFiducialID().compare(fiducialID)==0) { // found the target corresponding to the fiducialID return i; } } return -1; } //---------------------------------------------------------------------------- int vtkRobotProbeNavLogic::SetMouseInteractionMode(int mode) { if (GetApplicationLogic()==NULL) { vtkErrorMacro("Application logic is invalid"); return 0; } if (GetApplicationLogic()->GetMRMLScene()==NULL) { vtkErrorMacro("Scene is invalid"); return 0; } vtkMRMLInteractionNode *interactionNode = vtkMRMLInteractionNode::SafeDownCast(GetApplicationLogic()->GetMRMLScene()->GetNthNodeByClass(0, "vtkMRMLInteractionNode")); if (interactionNode==NULL) { vtkErrorMacro("Interaction node is invalid"); return 0; } if (this->GetGUI()==NULL) { vtkErrorMacro("GUI is invalid"); return 0; } vtkSlicerApplication* app=vtkSlicerApplication::SafeDownCast(this->GetGUI()->GetApplication()); if (app==NULL) { vtkErrorMacro("Application is invalid"); return 0; } vtkSlicerApplicationGUI* appGUI = app->GetApplicationGUI(); if (appGUI==NULL) { vtkErrorMacro("Application GUI is invalid"); return 0; } vtkSlicerToolbarGUI *tGUI = appGUI->GetApplicationToolbar(); if (tGUI==NULL) { vtkErrorMacro("Application toolbar GUI is invalid"); return 0; } // Set logic state interactionNode->SetCurrentInteractionMode(mode); // Set pick/place state to persistent (stay in the staet after picking/placing a fiducial) if (mode==vtkMRMLInteractionNode::Place) { interactionNode->SetPlaceModePersistence(1); } else if (mode==vtkMRMLInteractionNode::PickManipulate) { interactionNode->SetPickModePersistence(1); } return 1; } //---------------------------------------------------------------------------- int vtkRobotProbeNavLogic::SetCurrentFiducialList(vtkMRMLFiducialListNode* fidNode) { if (fidNode==NULL) { vtkErrorMacro("Fiducial node is invalid"); return 0; } if (this->GetGUI()==NULL) { vtkErrorMacro("GUI is invalid"); return 0; } vtkSlicerApplication* app=vtkSlicerApplication::SafeDownCast(this->GetGUI()->GetApplication()); if (app==NULL) { vtkErrorMacro("Application is invalid"); return 0; } vtkSlicerFiducialsGUI* fidGUI = vtkSlicerFiducialsGUI::SafeDownCast ( app->GetModuleGUIByName ("Fiducials")); if (fidGUI==NULL) { vtkErrorMacro("Fiducial GUI is invalid"); return 0; } // Activate target fiducials in the Fiducial GUI fidGUI->Enter(); fidGUI->SetFiducialListNodeID(fidNode->GetID()); return 1; } vtkMRMLRobotNode* vtkRobotProbeNavLogic::GetRobotNode() { if (this->GUI==NULL) { return NULL; } if (this->GUI->GetRobotProbeNavManagerNode()==NULL) { return NULL; } return this->GUI->GetRobotProbeNavManagerNode()->GetRobotNode(); { return NULL; } } //---------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ShowWorkspaceModel(bool show) { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { vtkWarningMacro("Cannot show workspace model, robot is invalid"); return 0; // failed } vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetWorkspaceObjectModelId())); if (modelNode==NULL) { vtkWarningMacro("Cannot show workspace model, workspace model node is invalid"); return 0; // failed } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show workspace model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); return 1; } // 10/19/2011 ayamada int vtkRobotProbeNavLogic::CorrectNeedlePosition(vtkKWMatrixWidget* matrix, vtkKWMatrixWidget* oMatrix, int numRows) { int flag = 0; vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { vtkWarningMacro("Cannot show workspace model, robot is invalid"); return 0; // failed } float position[3]={0,0,0}; // position parameters float positionRAS[3]={0,0,0}; float orientation[4]={1,0,0,0}; // orientation parameters // 10/20/2011 ayamada vtkMRMLNode* node = vtkMRMLNode::New(); if(numRows == 0) { node = vtkMRMLNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetNeedlePathTransform1ID())); }else if(numRows == 1) { node = vtkMRMLNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetNeedlePathTransform2ID())); }else if(numRows == 2) { node = vtkMRMLNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetNeedlePathTransform3ID())); }else{ flag = 1; } if(flag == 0) { vtkMRMLLinearTransformNode* transformNode = vtkMRMLLinearTransformNode::SafeDownCast(node); vtkMatrix4x4* transform = transformNode->GetMatrixTransformToParent(); // see vtkRobotProbeNavTargetingStep.cxx from l.545~ //igtl::Matrix4x4 igtlmatrix; //igtl::QuaternionToMatrix(orientation, igtlmatrix); vtkMatrix4x4* targetPositionMatrix = vtkMatrix4x4::New(); targetPositionMatrix->Identity(); targetPositionMatrix->SetElement(0,3,(float) matrix->GetElementValueAsDouble(0, 0)); targetPositionMatrix->SetElement(1,3,(float) matrix->GetElementValueAsDouble(0, 1)); targetPositionMatrix->SetElement(2,3,(float) matrix->GetElementValueAsDouble(0, 2)); positionRAS[0] = (float) matrix->GetElementValueAsDouble(0, 0); //-1.0;// x position of the target positionRAS[1] = (float) matrix->GetElementValueAsDouble(0, 1); //84.9;// y position of the target positionRAS[2] = (float) matrix->GetElementValueAsDouble(0, 2); //5.1;// z position of the target // 8/19/2012 ayamada std::cout << "positionRAS[0] = " << positionRAS[0] << std::endl; std::cout << "positionRAS[1] = " << positionRAS[1] << std::endl; std::cout << "positionRAS[2] = " << positionRAS[2] << std::endl; // 6/30/2012 ayamada // --------------------------------- // Inverse matrix from vtkAbdoNavLogic.cxx l.1124~ vtkMRMLNode* robotNode = vtkMRMLNode::New(); robotNode = vtkMRMLNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetCalibrationObjectTransformId())); vtkMRMLLinearTransformNode* robotTransformNode = vtkMRMLLinearTransformNode::SafeDownCast(robotNode); vtkMatrix4x4* robotTransform = robotTransformNode->GetMatrixTransformToParent(); // get matrix that converts RAS coordinates to XY vtkMatrix4x4* RASToXY = vtkMatrix4x4::New(); RASToXY->DeepCopy(robotTransform); // invert it and convert registered tracking coordinates from RAS to XY RASToXY->Invert(); // 7/1/2012 ayamada // calculate target position on XYZ coordinate // RASToXY is inverse matrix of robot coordinate. // targetPositionMatrix is target position matrix of RAS coordinate. // targetXY is target position matrix of XY coordinate vtkMatrix4x4* targetXY = vtkMatrix4x4::New(); targetXY->Identity(); vtkMatrix4x4::Multiply4x4(RASToXY, targetPositionMatrix, targetXY); // 7/2/2012 ayamada // process for offset between CAD coordinate and robot coordinate since there are difference // between CAD and robot coordinates. // we have to consider CAD coordinate to display robot on 3D Slicer. vtkMatrix4x4* offsetMatrix = vtkMatrix4x4::New(); offsetMatrix->Identity(); vtkMatrix4x4* processedMatrix = vtkMatrix4x4::New(); processedMatrix->Identity(); vtkMatrix4x4* targetPositionMatrix2 = vtkMatrix4x4::New(); targetPositionMatrix2->Identity(); // 8/19/2012 ayamada targetPositionMatrix2->SetElement(0,3,(float) targetXY->GetElement(0, 3)); targetPositionMatrix2->SetElement(1,3,(float) targetXY->GetElement(1, 3)); targetPositionMatrix2->SetElement(2,3,(float) targetXY->GetElement(2, 3)); vtkMatrix4x4::Multiply4x4(offsetMatrix, targetPositionMatrix2, processedMatrix); position[0] = processedMatrix->GetElement(0,3); position[1] = processedMatrix->GetElement(1,3); position[2] = processedMatrix->GetElement(2,3); // 8/20/2012 ayamada: for displaying target position data in vtkRobotProbeNavTargetingStep.cxx this->TargetPositionXYZ[0] = position[0]; this->TargetPositionXYZ[1] = position[1]; this->TargetPositionXYZ[2] = position[2]; // 8/19/2012 ayamada std::cout << "positionXY[0] = " << position[0] << std::endl; std::cout << "positionXY[1] = " << position[1] << std::endl; std::cout << "positionXY[2] = " << position[2] << std::endl; // 11/8/2011 ayamada // Gram-Schmidt orthonormalization float u1[3] = {0,0,0}; float u2[3] = {0,0,0}; float u3[3] = {0,0,0}; float a1[3] = {0,0,0}; float a2[3] = {0,0,0}; float a3[3] = {0,0,0}; //float Sa1,Sa2,Sa3; float b1[3] = {0,0,0}; float b2[3] = {0,0,0}; float b3[3] = {0,0,0}; float Sb1,Sb2,Sb3; float b3temp1[3] = {0,0,0}; float b3temp2[3] = {0,0,0}; // 7/1/2012 ayamada // -------------------------------- // Robot kinematics // 7/1/2012 coded by ayamada // -------------------------------- // double outputVector[3]; double hooperPositionNewXY[3]; float hooperPositionNewRAS[3]; // Robot spec double d = 3.0;//3; // clearance between needles double R = 82.0;//84.0;//80; // radius of arc double xt2 = position[0]; double yt2 = position[1]; double zt2 = position[2]; // r = 7; // Pully's radius (mm) double r = sqrt(xt2*xt2+yt2*yt2+zt2*zt2); double delta_q2 = atan(d/r);// 7/23 updated. //2.0*asin(L/(2.0*r)); // Calc of q1 for the three needles: // 9/18/2012 ayamada double q1_track2 = atan(yt2/zt2); // 8/20/2012 ayamada std::cout << "q1_track2 = " << q1_track2/PI*180.0 << endl; // Calc of q2 for each of the three needles: double q2_track = 0.0; if(numRows == 0) { q2_track = asin(-xt2/r); // in radian }else if(numRows == 1) { q2_track = asin(-xt2/r) + delta_q2; // in radian }else if(numRows == 2) { q2_track = asin(-xt2/r) - delta_q2; // in radian } // 8/20/2012 ayamada std::cout << "q2_track = " << q2_track/PI*180.0 << endl; // 7/26/2012 ayamada // q2 from Java UI // double q1comp = Math.abs(q1p-q1); // q2=((180/Math.PI)*Math.asin(-xTarget/insLength)+(track-2)*dq2)*R/r-q1comp; // hooper position on RAS coordinate hooperPositionNewXY[0] = R*sin(q2_track); hooperPositionNewXY[1] = R*cos(q2_track)*sin(q1_track2); hooperPositionNewXY[2] = R*cos(q2_track)*cos(q1_track2); // 8/19/2012 ayamada std::cout << "hooperPositionNewXY[0] = " << hooperPositionNewXY[0] << std::endl; std::cout << "hooperPositionNewXY[1] = " << hooperPositionNewXY[1] << std::endl; std::cout << "hooperPositionNewXY[2] = " << hooperPositionNewXY[2] << std::endl; // 7/24/2012 Faye's comment // Just to clarify, by hopper you mean the carriage that rides on the hoop, right? // This calculates the x-y-z coordinate of the center of the carriage. // The actual needle would be 14 deg off in q1 direction and 3 mm off in q2 // (depending on the track number). // --------------------------- // 7/5/2012 ayamada: // save the carriage y position to decide the order of needle insertion // --------------------------- this->carriagePositionForOrder = hooperPositionNewXY[1]; // --------------------------- // 7/5/2012 ayamada: // calculate 1) distance from carriage to target point // 2) distance from carriage to skin entry point // --------------------------- // 1) distance from carriage to target point float linea, lineb, linec, lined, linee,linef; linea = hooperPositionNewXY[0]; lineb = hooperPositionNewXY[1]; linec = hooperPositionNewXY[2]; lined = linea-xt2; linee = lineb-yt2; linef = linec-zt2; this->magnitudeOfDirectionVector = sqrt(lined*lined + linee*linee + linef*linef); // 2) distance from carriage to skin entry point float plainA, plainB, plainC, plainD; float pointa, pointb, pointc, pointd, pointe, pointf; float plaint; float skinx, skiny, skinz; // introduce plain equation // point1 = (0,0,-21), point2 = (5,3,-21), point3 = (2,3,-21).... // There is a distance between skin entry point and Origin, that is an offset. // point2-point1 = (a,b,c), point3-point1 = (d,e,f) pointa = 5.0; pointb = 3.0; pointc = 0.0; pointd = 2.0; pointe = 3.0; pointf = 0.0; plainA = pointb*pointf - pointc*pointe; plainB = pointc*pointd - pointa*pointf; plainC = pointa*pointe - pointb*pointd; plainD = plainA*0.0+plainB*0.0+plainC*(-21.0); plaint = -1.0*(linea*plainA+lineb*plainB+linec*plainC+plainD)/(lined*plainA+linee*plainB+linef*plainC); skinx = linea+plaint*lined; skiny = lineb+plaint*linee; skinz = linec+plaint*linef; this->magnitudeOfDirectionVector2 = sqrt( (skinx-linea)*(skinx-linea)+(skiny-lineb)*(skiny-lineb)+(skinz-linec)*(skinz-linec) ); // --------------------------- // 7/2/2012 ayamada // process offset //offsetMatrix->SetElement(1,3,(float)(0.0)); //offsetMatrix->SetElement(2,3,(float)(4.0)); offsetMatrix->Invert(); vtkMatrix4x4* hooperPositionBeforeProcess = vtkMatrix4x4::New(); hooperPositionBeforeProcess->Identity(); vtkMatrix4x4* hooperPositionAfterProcess = vtkMatrix4x4::New(); hooperPositionAfterProcess->Identity(); hooperPositionBeforeProcess->SetElement(0,3,(float) hooperPositionNewXY[0]); hooperPositionBeforeProcess->SetElement(1,3,(float) hooperPositionNewXY[1]); hooperPositionBeforeProcess->SetElement(2,3,(float) hooperPositionNewXY[2]); vtkMatrix4x4::Multiply4x4(offsetMatrix, hooperPositionBeforeProcess, hooperPositionAfterProcess); // calculate hooper position on XYZ coordinate // RASToXY is inverse matrix of robot coordinate. // hooperPositionMatrixRAS is hooper position matrix of RAS coordinate. // hooperPositionMatrixXY is hooper position matrix of XY coordinate vtkMatrix4x4* hooperPositionMatrixRAS = vtkMatrix4x4::New(); hooperPositionMatrixRAS->Identity(); vtkMatrix4x4* hooperPositionMatrixXY = vtkMatrix4x4::New(); hooperPositionMatrixXY->Identity(); // 8/19/2012 ayamada hooperPositionMatrixXY->SetElement(0,3,(float) hooperPositionAfterProcess->GetElement(0,3)); hooperPositionMatrixXY->SetElement(1,3,(float) hooperPositionAfterProcess->GetElement(1,3)); hooperPositionMatrixXY->SetElement(2,3,(float) hooperPositionAfterProcess->GetElement(2,3)); vtkMatrix4x4::Multiply4x4(robotTransform, hooperPositionMatrixXY, hooperPositionMatrixRAS); hooperPositionNewRAS[0] = hooperPositionMatrixRAS->GetElement(0,3); hooperPositionNewRAS[1] = hooperPositionMatrixRAS->GetElement(1,3); hooperPositionNewRAS[2] = hooperPositionMatrixRAS->GetElement(2,3); // draw each needle // 7/1/2012 ayamada // ------------------------ a1[0] = hooperPositionNewRAS[0] - positionRAS[0]; a1[1] = hooperPositionNewRAS[1] - positionRAS[1]; a1[2] = hooperPositionNewRAS[2] - positionRAS[2]; // ------------------------ b1[0] = a1[0]; b1[1] = a1[1]; b1[2] = a1[2]; Sb1 = sqrt(b1[0]*b1[0]+b1[1]*b1[1]+b1[2]*b1[2]);//this->magnitudeOfDirectionVector; // 7/5/2012 ayamada: cut off and rewrite around l.1180~ // 12/8/2011 ayamada //this->magnitudeOfDirectionVector = Sb1; u1[0] = b1[0]/Sb1; u1[1] = b1[1]/Sb1; u1[2] = b1[2]/Sb1; // 11/8/2011 ayamada // Gram-Schmidt orthonormalization // calculate u2 a2[0] = 2.0*a1[0]; a2[1] = a1[1]; a2[2] = 5.0*a1[2]; b2[0] = a2[0] - (a2[0]*u1[0]+a2[1]*u1[1]+a2[2]*u1[2])*u1[0]; b2[1] = a2[1] - (a2[0]*u1[0]+a2[1]*u1[1]+a2[2]*u1[2])*u1[1]; b2[2] = a2[2] - (a2[0]*u1[0]+a2[1]*u1[1]+a2[2]*u1[2])*u1[2]; Sb2 = sqrt(b2[0]*b2[0]+b2[1]*b2[1]+b2[2]*b2[2]); u2[0] = b2[0]/Sb2; u2[1] = b2[1]/Sb2; u2[2] = b2[2]/Sb2; // calculate u3 a3[0] = -2.0*a1[0]; a3[1] = a1[1]; a3[2] = -5.0*a1[2]; b3temp1[0] = a3[0] - (a3[0]*u1[0]+a3[1]*u1[1]+a3[2]*u1[2])*u1[0]; b3temp1[1] = a3[1] - (a3[0]*u1[0]+a3[1]*u1[1]+a3[2]*u1[2])*u1[1]; b3temp1[2] = a3[2] - (a3[0]*u1[0]+a3[1]*u1[1]+a3[2]*u1[2])*u1[2]; b3temp2[0] = (a3[0]*u2[0]+a3[1]*u2[1]+a3[2]*u2[2])*u2[0]; b3temp2[1] = (a3[0]*u2[0]+a3[1]*u2[1]+a3[2]*u2[2])*u2[1]; b3temp2[2] = (a3[0]*u2[0]+a3[1]*u2[1]+a3[2]*u2[2])*u2[2]; b3[0] = b3temp1[0] - b3temp2[0]; b3[1] = b3temp1[1] - b3temp2[1]; b3[2] = b3temp1[2] - b3temp2[2]; Sb3 = sqrt(b3[0]*b3[0]+b3[1]*b3[1]+b3[2]*b3[2]); u3[0] = b3[0]/Sb3; u3[1] = b3[1]/Sb3; u3[2] = b3[2]/Sb3; // 10/25/2011 ayamada // about the element of orientation, we don't need to transfer data from l.1023 of vtkRobotProbeNavTargetingStep.cxx // in this test case, I used the transform of the robot element. But actually, you should use the product of calibration matrix and transform matrix. orientation[0] = (float) oMatrix->GetElementValueAsDouble(0, 0); orientation[1] = (float) oMatrix->GetElementValueAsDouble(0, 1); orientation[2] = (float) oMatrix->GetElementValueAsDouble(0, 2); orientation[3] = (float) oMatrix->GetElementValueAsDouble(0, 3); if (transformNode) { // see vtkRobotProbeNavTargetingStep.cxx from l.545~ igtl::Matrix4x4 igtlmatrix; igtlmatrix[0][3] = positionRAS[0]; igtlmatrix[1][3] = positionRAS[1]; igtlmatrix[2][3] = positionRAS[2]; // 11/4/2011 ayamada; modified igtlmatrix[0][0] = u2[0]; igtlmatrix[1][0] = u2[1]; igtlmatrix[2][0] = u2[2]; igtlmatrix[3][0] = 0.0; igtlmatrix[0][1] = u3[0]; igtlmatrix[1][1] = u3[1]; igtlmatrix[2][1] = u3[2]; igtlmatrix[3][1] = 0.0; igtlmatrix[0][2] = u1[0]; igtlmatrix[1][2] = u1[1]; igtlmatrix[2][2] = u1[2]; igtlmatrix[3][2] = 0.0; igtlmatrix[3][3] = 1.0; // 7/1/2012 ayamada // transform = needlePathTransform: see the above part of this function transform->SetElement(0, 3, igtlmatrix[0][3]); transform->SetElement(1, 3, igtlmatrix[1][3]); transform->SetElement(2, 3, igtlmatrix[2][3]); transform->SetElement(3, 3, igtlmatrix[3][3]); // 10/27/2011 ayamada transform->SetElement(0, 0, igtlmatrix[0][0]); transform->SetElement(1, 0, igtlmatrix[1][0]); transform->SetElement(2, 0, igtlmatrix[2][0]); transform->SetElement(3, 0, igtlmatrix[3][0]); transform->SetElement(0, 1, igtlmatrix[0][1]); transform->SetElement(1, 1, igtlmatrix[1][1]); transform->SetElement(2, 1, igtlmatrix[2][1]); transform->SetElement(3, 1, igtlmatrix[3][1]); transform->SetElement(0, 2, igtlmatrix[0][2]); transform->SetElement(1, 2, igtlmatrix[1][2]); transform->SetElement(2, 2, igtlmatrix[2][2]); transform->SetElement(3, 2, igtlmatrix[3][2]); } } //std::cerr << "CorrectNeedlePosition Function is working now!! numRows = " << numRows << std::endl; return 1; } // 9/24/2011 ayamada //---------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ShowNeedleModel(bool show) { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { vtkWarningMacro("Cannot show workspace model, robot is invalid"); return 0; // failed } // 0 vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetNeedleObjectModelId())); if (modelNode==NULL) { vtkWarningMacro("Cannot show workspace model, workspace model node is invalid"); return 0; // failed } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show workspace model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); // 1 modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetNeedleObjectModel1Id())); if (modelNode==NULL) { vtkWarningMacro("Cannot show workspace model, workspace model node is invalid"); return 0; // failed } displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show workspace model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); // 2 modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetNeedleObjectModel2Id())); if (modelNode==NULL) { vtkWarningMacro("Cannot show workspace model, workspace model node is invalid"); return 0; // failed } displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show workspace model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); return 1; } //---------------------------------------------------------------------------- bool vtkRobotProbeNavLogic::IsNeedleModelShown() { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { return false; } vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetNeedleObjectModelId())); if (modelNode==NULL) { return 0; } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { return 0; } return displayNode->GetVisibility(); } // 11/4/2011 ayamada //---------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ShowVirtualCenterModel(bool show) { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { vtkWarningMacro("Cannot show workspace model, robot is invalid"); return 0; // failed } // 0 vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetVirtualCenterObjectModelId())); if (modelNode==NULL) { vtkWarningMacro("Cannot show workspace model, workspace model node is invalid"); return 0; // failed } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show workspace model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); return 1; } //---------------------------------------------------------------------------- bool vtkRobotProbeNavLogic::IsVirtualCenterModelShown() { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { return false; } vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetVirtualCenterObjectModelId())); if (modelNode==NULL) { return 0; } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { return 0; } return displayNode->GetVisibility(); } //---------------------------------------------------------------------------- bool vtkRobotProbeNavLogic::IsWorkspaceModelShown() { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { return false; } vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetWorkspaceObjectModelId())); if (modelNode==NULL) { return 0; } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { return 0; } return displayNode->GetVisibility(); } // 9/23/2011 modified by ayamada //---------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ShowRobotModel(bool show) { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { vtkWarningMacro("Cannot show robot model, robot is invalid"); return 0; // failed } // 1 // 9/23/2011 ayamada vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetCalibrationObjectModel2Id())); if (modelNode==NULL) { vtkWarningMacro("Cannot show robot model, workspace model node is invalid"); return 0; // failed } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show robot model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); // 2 modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetCalibrationObjectModel3Id())); if (modelNode==NULL) { vtkWarningMacro("Cannot show robot model, workspace model node is invalid"); return 0; // failed } displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show robot model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); // 3 modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetCalibrationObjectModel4Id())); if (modelNode==NULL) { vtkWarningMacro("Cannot show robot model, workspace model node is invalid"); return 0; // failed } displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show robot model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); // 4 modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetCalibrationObjectModel5Id())); if (modelNode==NULL) { vtkWarningMacro("Cannot show robot model, workspace model node is invalid"); return 0; // failed } displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show robot model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); // 5 modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetCalibrationObjectModel6Id())); if (modelNode==NULL) { vtkWarningMacro("Cannot show robot model, workspace model node is invalid"); return 0; // failed } displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { vtkWarningMacro("Cannot show robot model, displayNode is invalid"); return 0; // failed } displayNode->SetVisibility(show); displayNode->SetSliceIntersectionVisibility(show); modelNode->Modified(); this->MRMLScene->Modified(); return 1; } // 9/25/2011 ayamada //---------------------------------------------------------------------------- bool vtkRobotProbeNavLogic::IsRobotModelShown() { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { return false; } // 1 vtkMRMLModelNode* modelNode = vtkMRMLModelNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetCalibrationObjectModelId())); if (modelNode==NULL) { return 0; } vtkMRMLDisplayNode* displayNode = modelNode->GetDisplayNode(); if (displayNode==NULL) { return 0; } // we will judge whether the robot was displaied or not by the part 1 of the robot. // 2 // 3 // 4 // 5 return displayNode->GetVisibility(); } // 8/4/2011 ayamada void vtkRobotProbeNavLogic::GetFiducialMarkersR(int n, float px, float py, float pz) { this->FiducialMarkersR[n][1][0][0] = px; this->FiducialMarkersR[n][0][1][0] = py; this->FiducialMarkersR[n][0][0][1] = pz; } // 9/8/2011 ayamada void vtkRobotProbeNavLogic::GetFiducialMarkersI(int n, float px, float py, float pz) { this->FiducialMarkersI[n][1][0][0] = px; this->FiducialMarkersI[n][0][1][0] = py; this->FiducialMarkersI[n][0][0][1] = pz; } // 9/13/2011 ayamada void vtkRobotProbeNavLogic::SendMarkersPosition(void) { vtkMRMLRobotNode* robot=GetRobotNode(); if (robot==NULL) { // return 0; // failed } //return robot->MoveTo(robot->GetTargetTransformNodeID()); } // 11/4/2011 ayamada // based on CorrectNeedlePosition on l.806~ void vtkRobotProbeNavLogic::CalculateVirtualCenterPosition(void) { vtkMRMLRobotNode* robot=GetRobotNode(); int flag = 0; if (robot==NULL) { vtkWarningMacro("Cannot show workspace model, robot is invalid"); flag = 1; // failed } if(flag == 0) { vtkMRMLNode* node = vtkMRMLNode::New(); node = vtkMRMLNode::SafeDownCast(this->MRMLScene->GetNodeByID(robot->GetVirtualCenterTransformId())); vtkMRMLLinearTransformNode* transformNode = vtkMRMLLinearTransformNode::SafeDownCast(node); vtkMatrix4x4* transform = transformNode->GetMatrixTransformToParent(); // based on Init in vtkMRMLIGTProbeRobotNode.cxx l.1012 transform->Identity(); transform->SetElement(0, 3, (float)0.0); transform->SetElement(1, 3, (float)0.0); transform->SetElement(2, 3, (float)0.0); // apply the registration matrix //transformNode->ApplyTransform(transform); } } // 12/22/2011 ayamada int vtkRobotProbeNavLogic::PerformRegistration() { vtkMRMLFiducialListNode* fnode; float* tipOffset = NULL; if (this->AbdoNavNode == NULL) { vtkErrorMacro("in vtkAbdoNavLogic::PerformRegistration(...): " "Couldn't retrieve AbdoNavNode!"); return EXIT_FAILURE; } else { fnode = vtkMRMLFiducialListNode::SafeDownCast(this->GetMRMLScene()->GetNodeByID(this->AbdoNavNode->GetRegistrationFiducialListID())); tipOffset = this->AbdoNavNode->GetGuidanceTipOffset(); if (fnode == NULL) { vtkErrorMacro("in vtkAbdoNavLogic::PerformRegistration(...): " "Couldn't retrieve registration fiducial list!"); return EXIT_FAILURE; } else if (fnode->GetNumberOfFiducials() < 3) { vtkErrorMacro("in vtkAbdoNavLogic::PerformRegistration(...): " "Need to identify at least three fiducials in image space!"); return EXIT_FAILURE; } } // initialize marker geometry definition depending on // which guidance needle tool type is being used //float tool[4][3]; float tool[5][3]; tool[0][0] = 0.0; tool[0][1] = 0.0; tool[0][2] = 0.0; tool[1][0] = 0.0; tool[1][1] = 0.0; tool[1][2] = 0.0; tool[2][0] = 0.0; tool[2][1] = 0.0; tool[2][2] = 0.0; tool[3][0] = 0.0; tool[3][1] = 0.0; tool[3][2] = 0.0; tool[4][0] = 0.0; tool[4][1] = 0.0; tool[4][2] = 0.0; // ----------------------------- // 12/28/2011 ayamada // receive input data and substitute into the initialized matrix // ----------------------------- tipOffset[0] = this->FiducialMarkersR[0][1][0][0]; tipOffset[1] = this->FiducialMarkersR[0][0][1][0]; tipOffset[2] = this->FiducialMarkersR[0][0][0][1]; tool[0][0] = this->FiducialMarkersR[1][1][0][0]; tool[0][1] = this->FiducialMarkersR[1][0][1][0]; tool[0][2] = this->FiducialMarkersR[1][0][0][1]; tool[1][0] = this->FiducialMarkersR[2][1][0][0]; tool[1][1] = this->FiducialMarkersR[2][0][1][0]; tool[1][2] = this->FiducialMarkersR[2][0][0][1]; tool[2][0] = this->FiducialMarkersR[3][1][0][0]; tool[2][1] = this->FiducialMarkersR[3][0][1][0]; tool[2][2] = this->FiducialMarkersR[3][0][0][1]; tool[3][0] = this->FiducialMarkersR[4][1][0][0]; tool[3][1] = this->FiducialMarkersR[4][0][1][0]; tool[3][2] = this->FiducialMarkersR[4][0][0][1]; tool[4][0] = this->FiducialMarkersR[5][1][0][0]; tool[4][1] = this->FiducialMarkersR[5][0][1][0]; tool[4][2] = this->FiducialMarkersR[5][0][0][1]; // ----------------------------- // Temporarily store source and target landmarks in order // to calculate the FRE (target == image cosy, source == // guidance cosy). // TODO: It would be better to implement Getters in class // vtkIGTPat2ImgRegistration and even better if the // FRE were calculated in there since it is just a // wrapper for class vtkLandmarkTransform anyway. // Another option might be to use vtkLandmarkTransform // directly. vtkPoints* targetLandmarks = vtkPoints::New(); targetLandmarks->SetDataTypeToFloat(); targetLandmarks->SetNumberOfPoints(fnode->GetNumberOfFiducials()); vtkPoints* sourceLandmarks = vtkPoints::New(); sourceLandmarks->SetDataTypeToFloat(); sourceLandmarks->SetNumberOfPoints(fnode->GetNumberOfFiducials()); // initialize least-squares solver this->Pat2ImgReg->SetNumberOfPoints(fnode->GetNumberOfFiducials()); // pass point-pairs to least-squares solver float* tmp = NULL; std::cout.setf(ios::scientific, ios::floatfield); std::cout.precision(8); std::cout << "===========================================================================" << std::endl; std::cout << "Registration input parameters:" << std::endl; for (int i = 0; i < fnode->GetNumberOfFiducials(); i++) { if (!strcmp(tip, fnode->GetNthFiducialLabelText(i))) { tmp = fnode->GetNthFiducialXYZ(i); this->Pat2ImgReg->AddPoint(i, tmp[0], tmp[1], tmp[2], tipOffset[0], tipOffset[1], tipOffset[2]); targetLandmarks->InsertPoint(i, tmp[0], tmp[1], tmp[2]); sourceLandmarks->InsertPoint(i, tipOffset[0], tipOffset[1], tipOffset[2]); std::cout << tip << ",," << tmp[0] << ",," << tmp[1] << ",," << tmp[2] << ",,[RAS]" << std::endl; std::cout << tip << ",," << tipOffset[0] << ",," << tipOffset[1] << ",," << tipOffset[2] << ",,[XYZ]" << std::endl; } else if (!strcmp(markerA, fnode->GetNthFiducialLabelText(i))) { tmp = fnode->GetNthFiducialXYZ(i); this->Pat2ImgReg->AddPoint(i, tmp[0], tmp[1], tmp[2], tool[0][0], tool[0][1], tool[0][2]); targetLandmarks->InsertPoint(i, tmp[0], tmp[1], tmp[2]); sourceLandmarks->InsertPoint(i, tool[0][0], tool[0][1], tool[0][2]); std::cout << markerA << ",," << tmp[0] << ",," << tmp[1] << ",," << tmp[2] << ",,[RAS]" << std::endl; std::cout << markerA << ",," << tool[0][0] << ",," << tool[0][1] << ",," << tool[0][2] << ",,[XYZ]" << std::endl; } else if (!strcmp(markerB, fnode->GetNthFiducialLabelText(i))) { tmp = fnode->GetNthFiducialXYZ(i); this->Pat2ImgReg->AddPoint(i, tmp[0], tmp[1], tmp[2], tool[1][0], tool[1][1], tool[1][2]); targetLandmarks->InsertPoint(i, tmp[0], tmp[1], tmp[2]); sourceLandmarks->InsertPoint(i, tool[1][0], tool[1][1], tool[1][2]); std::cout << markerB << ",," << tmp[0] << ",," << tmp[1] << ",," << tmp[2] << ",,[RAS]" << std::endl; std::cout << markerB << ",," << tool[1][0] << ",," << tool[1][1] << ",," << tool[1][2] << ",,[XYZ]" << std::endl; } else if (!strcmp(markerC, fnode->GetNthFiducialLabelText(i))) { tmp = fnode->GetNthFiducialXYZ(i); this->Pat2ImgReg->AddPoint(i, tmp[0], tmp[1], tmp[2], tool[2][0], tool[2][1], tool[2][2]); targetLandmarks->InsertPoint(i, tmp[0], tmp[1], tmp[2]); sourceLandmarks->InsertPoint(i, tool[2][0], tool[2][1], tool[2][2]); std::cout << markerC << ",," << tmp[0] << ",," << tmp[1] << ",," << tmp[2] << ",,[RAS]" << std::endl; std::cout << markerC << ",," << tool[2][0] << ",," << tool[2][1] << ",," << tool[2][2] << ",,[XYZ]" << std::endl; } else if (!strcmp(markerD, fnode->GetNthFiducialLabelText(i))) { tmp = fnode->GetNthFiducialXYZ(i); this->Pat2ImgReg->AddPoint(i, tmp[0], tmp[1], tmp[2], tool[3][0], tool[3][1], tool[3][2]); targetLandmarks->InsertPoint(i, tmp[0], tmp[1], tmp[2]); sourceLandmarks->InsertPoint(i, tool[3][0], tool[3][1], tool[3][2]); std::cout << markerD << ",," << tmp[0] << ",," << tmp[1] << ",," << tmp[2] << ",,[RAS]" << std::endl; std::cout << markerD << ",," << tool[3][0] << ",," << tool[3][1] << ",," << tool[3][2] << ",,[XYZ]" << std::endl; } // 1/15/2011 ayamada else if (!strcmp(markerE, fnode->GetNthFiducialLabelText(i))) { tmp = fnode->GetNthFiducialXYZ(i); this->Pat2ImgReg->AddPoint(i, tmp[0], tmp[1], tmp[2], tool[4][0], tool[4][1], tool[4][2]); targetLandmarks->InsertPoint(i, tmp[0], tmp[1], tmp[2]); sourceLandmarks->InsertPoint(i, tool[4][0], tool[4][1], tool[4][2]); std::cout << markerE << ",," << tmp[0] << ",," << tmp[1] << ",," << tmp[2] << ",,[RAS]" << std::endl; std::cout << markerE << ",," << tool[4][0] << ",," << tool[4][1] << ",," << tool[4][2] << ",,[XYZ]" << std::endl; } } // calculate registration matrix int error = this->Pat2ImgReg->DoRegistration(); if (error) { return EXIT_FAILURE; } // get registration matrix vtkMatrix4x4* registrationMatrix = vtkMatrix4x4::New(); registrationMatrix->DeepCopy(this->Pat2ImgReg->GetLandmarkTransformMatrix()); //---------------------------------------------------------------- // Calculate FRE. // // NOTE: FRE calculation *MUST* be performed before replacing the // translatory component of the registration matrix by the // guidance needle's tip offset! //---------------------------------------------------------------- // target == image cosy double target[3]; // source == guidance cosy double source3[3]; double source4[4]; double registeredSource4[4]; double sum = 0.0; for (int r = 0; r < fnode->GetNumberOfFiducials(); r++) { targetLandmarks->GetPoint(r, target); sourceLandmarks->GetPoint(r, source3); source4[0] = source3[0]; source4[1] = source3[1]; source4[2] = source3[2]; source4[3] = 1; registrationMatrix->MultiplyPoint(source4, registeredSource4); sum = sum + sqrt(( registeredSource4[0] - target[0] ) * ( registeredSource4[0] - target[0] ) + ( registeredSource4[1] - target[1] ) * ( registeredSource4[1] - target[1] ) + ( registeredSource4[2] - target[2] ) * ( registeredSource4[2] - target[2] )); } // 4/20/2012 ayamada sum = sum / fnode->GetNumberOfFiducials(); //sum = sum * sqrt(1.0-1.0/2.0/fnode->GetNumberOfFiducials()); // 4/20/2012 ayamada std::cout << "sum,," << sum << std::endl; std::cout << "fnode->GetNumberOfFiducials(),," << fnode->GetNumberOfFiducials() << std::endl; this->AbdoNavNode->SetFRE(sum); std::cout << "===========================================================================" << std::endl; std::cout << "FRE,," << this->AbdoNavNode->GetFRE() << std::endl; std::cout << "===========================================================================" << std::endl; std::cout << "Registration matrix *BEFORE* replacement:" << std::endl; std::cout << registrationMatrix->GetElement(0, 0) << ",," << registrationMatrix->GetElement(0, 1) << ",," << registrationMatrix->GetElement(0, 2) << ",," << registrationMatrix->GetElement(0, 3) << std::endl; std::cout << registrationMatrix->GetElement(1, 0) << ",," << registrationMatrix->GetElement(1, 1) << ",," << registrationMatrix->GetElement(1, 2) << ",," << registrationMatrix->GetElement(1, 3) << std::endl; std::cout << registrationMatrix->GetElement(2, 0) << ",," << registrationMatrix->GetElement(2, 1) << ",," << registrationMatrix->GetElement(2, 2) << ",," << registrationMatrix->GetElement(2, 3) << std::endl; std::cout << registrationMatrix->GetElement(3, 0) << ",," << registrationMatrix->GetElement(3, 1) << ",," << registrationMatrix->GetElement(3, 2) << ",," << registrationMatrix->GetElement(3, 3) << std::endl; // The calculated registration matrix describes the relationship between // the image coordinate system and the guidance needle's local coordinate // system at markerA. By performing the pivoting procedure, however, the // guidance needle's local coordinate system is translated from markerA // to the guidance needle's tip. Thus, the translatory component of the // registration matrix needs to be replaced by the guidance needle's tip // offset. // 12/28/2011 ayamada // cut these calculation because the offset never be used in our purpose. std::cout << "===========================================================================" << std::endl; std::cout << "Registration matrix *AFTER* replacement:" << std::endl; std::cout << registrationMatrix->GetElement(0, 0) << ",," << registrationMatrix->GetElement(0, 1) << ",," << registrationMatrix->GetElement(0, 2) << ",," << registrationMatrix->GetElement(0, 3) << std::endl; std::cout << registrationMatrix->GetElement(1, 0) << ",," << registrationMatrix->GetElement(1, 1) << ",," << registrationMatrix->GetElement(1, 2) << ",," << registrationMatrix->GetElement(1, 3) << std::endl; std::cout << registrationMatrix->GetElement(2, 0) << ",," << registrationMatrix->GetElement(2, 1) << ",," << registrationMatrix->GetElement(2, 2) << ",," << registrationMatrix->GetElement(2, 3) << std::endl; std::cout << registrationMatrix->GetElement(3, 0) << ",," << registrationMatrix->GetElement(3, 1) << ",," << registrationMatrix->GetElement(3, 2) << ",," << registrationMatrix->GetElement(3, 3) << std::endl; std::cout.unsetf(ios::floatfield); std::cout.precision(6); // create/retrieve registration transform node if (this->AbdoNavNode->GetRegistrationTransformID() == NULL) { // create a new registration transform node and add it to the scene this->RegistrationTransform = vtkMRMLLinearTransformNode::New(); this->RegistrationTransform->SetName("AbdoNav-RegistrationTransform"); this->RegistrationTransform->SetDescription("Created by AbdoNav"); this->GetMRMLScene()->AddNode(this->RegistrationTransform); this->RegistrationTransform->Delete(); // set registration transform node ID in AbdoNavNode this->AbdoNavNode->SetRegistrationTransformID(this->RegistrationTransform->GetID()); // get relative tracking transform node and make it observe the registration transform node if (this->AbdoNavNode->GetTrackingTransformID() != NULL) { vtkMRMLLinearTransformNode* relativeTrackingTransform = vtkMRMLLinearTransformNode::SafeDownCast(this->GetMRMLScene()->GetNodeByID(this->AbdoNavNode->GetTrackingTransformID())); relativeTrackingTransform->SetAndObserveTransformNodeID(this->RegistrationTransform->GetID()); } else { vtkErrorMacro("in vtkAbdoNavLogic::PerformRegistration(): " "Couldn't move relative tracking transform node below registration transform node " "because vtkMRMLAbdoNavNode::GetTrackingTransformID() returned NULL!"); } } else { this->RegistrationTransform = vtkMRMLLinearTransformNode::SafeDownCast(this->GetMRMLScene()->GetNodeByID(this->AbdoNavNode->GetRegistrationTransformID())); } // copy registration matrix into registration transform node this->RegistrationTransform->GetMatrixTransformToParent()->DeepCopy(registrationMatrix); // indicate that the Scene contains unsaved changes; make Slicer's save dialog list this transform as modified this->RegistrationTransform->SetModifiedSinceRead(1); // indicate that registration has been performed this->RegistrationPerformed = 1; // 12/27/2011 ayamada // copy the registration matrix to the z-frame matrix vtkMRMLRobotNode* robot=GetRobotNode(); // 1/20/2012 ayamada //vtkMRMLBrpRobotCommandNode* commandNode; if (robot/*commandNode*/==NULL) { //std::cerr << "matrix copy 1" << std::endl; return 0; // failed }else{ //std::cerr << "matrix copy 2" << std::endl; vtkMRMLLinearTransformNode* rTransformNode = vtkMRMLLinearTransformNode::SafeDownCast(this->GetMRMLScene()->GetNodeByID(robot->GetCalibrationObjectTransformId())); vtkMatrix4x4* rTransform = vtkMatrix4x4::New(); // copy registration matrix into registration transform node rTransformNode->GetMatrixTransformToParent()->DeepCopy(registrationMatrix); // indicate that the Scene contains unsaved changes; make Slicer's save dialog list this transform as modified rTransformNode->SetModifiedSinceRead(1); } // 12/28/2011 ayamada this->ShowRobotModel(0); this->ShowRobotModel(1); // 12/28/2011 ayamada this->CalculateVirtualCenterPosition(); // clean up registrationMatrix->Delete(); targetLandmarks->Delete(); sourceLandmarks->Delete(); return EXIT_SUCCESS; } //--------------------------------------------------------------------------- vtkMRMLAbdoNavNode* vtkRobotProbeNavLogic::CheckAndCreateAbdoNavNode() { } //--------------------------------------------------------------------------- int vtkRobotProbeNavLogic::ObserveTrackingTransformNode() { if (this->AbdoNavNode == NULL) { vtkErrorMacro("in vtkAbdoNavLogic::ObserveTrackingTransformNode(): " "Couldn't retrieve AbdoNavNode!"); return EXIT_FAILURE; } vtkMRMLLinearTransformNode* tnode = vtkMRMLLinearTransformNode::SafeDownCast(this->GetMRMLScene()->GetNodeByID(this->AbdoNavNode->GetTrackingTransformID())); if (tnode) { vtkIntArray* nodeEvents = vtkIntArray::New(); nodeEvents->InsertNextValue(vtkMRMLTransformableNode::TransformModifiedEvent); vtkSetAndObserveMRMLNodeEventsMacro(this->RelativeTrackingTransform, tnode, nodeEvents); nodeEvents->Delete(); tnode->InvokeEvent(vtkMRMLTransformableNode::TransformModifiedEvent); } else { vtkErrorMacro("in vtkAbdoNavLogic::ObserveTrackingTransformNode(): " "Couldn't retrieve tracking transform node!"); return EXIT_FAILURE; } return EXIT_SUCCESS; }
[ "ayamada0614@yahoo.co.jp" ]
ayamada0614@yahoo.co.jp
35380e0b87bbd1c3475bdeb884a55f0bdc96f9eb
844a2bae50e141915a8ebbcf97920af73718d880
/Final Demo 1.09.3.37/src/hardware/hw_glob.h
83ddb3a47fc06321ff4538c69021520813616c9d
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
KrazeeTobi/SRB2-OldSRC
0d5a79c9fe197141895a10acc65863c588da580f
a6be838f3f9668e20feb64ba224720805d25df47
refs/heads/main
2023-03-24T15:30:06.921308
2021-03-21T06:41:06
2021-03-21T06:41:06
349,902,734
0
0
null
null
null
null
UTF-8
C++
false
false
3,041
h
// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // Copyright (C) 1998-2000 by DooM Legacy Team. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // //----------------------------------------------------------------------------- /// \file /// \brief globals (shared data & code) for hw_ modules #ifndef _HWR_GLOB_H_ #define _HWR_GLOB_H_ #include "hw_defs.h" #include "hw_main.h" // the original aspect ratio of Doom graphics isn't square #define ORIGINAL_ASPECT (320.0f/200.0f) // ----------- // structures // ----------- // a vertex of a Doom 'plane' polygon typedef struct { float x; float y; //#ifdef SLOPENESS float z; //#endif } polyvertex_t; #ifdef _MSC_VER #pragma warning(disable : 4200) #endif // a convex 'plane' polygon, clockwise order typedef struct { int numpts; polyvertex_t pts[0]; } poly_t; #ifdef _MSC_VER #pragma warning(default : 4200) #endif // holds extra info for 3D render, for each subsector in subsectors[] typedef struct { poly_t *planepoly; // the generated convex polygon } extrasubsector_t; typedef struct { extrasubsector_t *xsub; fixed_t fixedheight; int lightlevel; int lumpnum; int alpha; sector_t *FOFSector; } planeinfo_t; // needed for sprite rendering // equivalent of the software renderer's vissprites typedef struct gr_vissprite_s { // Doubly linked list struct gr_vissprite_s *prev; struct gr_vissprite_s *next; float x1, x2; float tz, ty; int patchlumpnum; boolean flip; unsigned char translucency; //alpha level 0-255 unsigned char sectorlight; // ... mobj_t *mobj; boolean precip; // Tails 08-25-2002 //Hurdler: 25/04/2000: now support colormap in hardware mode byte *colormap; } gr_vissprite_t; // -------- // hw_bsp.c // -------- extern extrasubsector_t *extrasubsectors; extern int addsubsector; void HWR_InitPolyPool(void); void HWR_FreePolyPool(void); // -------- // hw_cache.c // -------- void HWR_InitTextureCache(void); void HWR_FreeTextureCache(void); void HWR_FreeExtraSubsectors(void); void HWR_GetFlat(int flatlumpnum); GlideTexture_t *HWR_GetTexture(int tex); void HWR_GetPatch(GlidePatch_t *gpatch); void HWR_GetMappedPatch(GlidePatch_t *gpatch, const byte *colormap); GlidePatch_t *HWR_GetPic(int lumpnum); void HWR_SetPalette(RGBA_t *palette); // -------- // hw_draw.c // -------- extern float gr_patch_scalex; extern float gr_patch_scaley; extern consvar_t cv_grrounddown; // on/off extern int patchformat; extern int textureformat; extern boolean firetranslucent; #endif //_HW_GLOB_
[ "67659553+KrazeeTobi@users.noreply.github.com" ]
67659553+KrazeeTobi@users.noreply.github.com
6a403ca9b61e8a3b90b4fab8567c7b5c1c5d2b22
0cdbd51c06a8385f928bcaea7ae58da5d5d635fa
/Solutions/LabW12/employee_main.cpp
0b70a9ab38aa71dfc361916a40f56af8c38c353e
[]
no_license
yilin2548/UIndy-CSCI-156-50
dc6f155d410570833d39e27891a38c3a84f81568
852065df15ab3d0352c1c481dc018636e9cef484
refs/heads/master
2021-05-05T10:17:41.195367
2018-04-30T19:53:49
2018-04-30T19:53:49
117,909,544
0
0
null
null
null
null
UTF-8
C++
false
false
4,576
cpp
/* Name: <fill me in> Date: <fill me in> Description: main class for employee program */ #include <iostream> #include <vector> #include <string> #include <cstdlib> #include "employee.h" using namespace std; Employee* findEmployeeByName(std::string name, std::vector<Employee*> employees){ for (unsigned int i = 0; i < employees.size(); i++){ // for each item in employees // This is how you do a string comparison, it returns 0 if they match if (name.compare(employees[i]->getName()) == 0){ return employees[i]; } } return NULL; } int getChoice(){ string input; cout << "Enter choice" << endl; cout << "1: Add Employee" << endl; cout << "2: Add Manager" << endl; cout << "3: Print Employees" << endl; cout << "4: Print Specific Employee" << endl; cout << "5: Print Specific Employee Compensation" << endl; cout << "6: Print Total Compensation" << endl; cout << "7: Exit" << endl; cin >> input; return atoi(input.c_str()); } Employee* getEmployee(){ Employee* e = new Employee(); string input; cout << "Employee Name: "; cin >> input; e->setName(input); cout << "Age: "; cin >> input; e->setAge(atoi(input.c_str())); cout << "Department: "; cin >> input; e->setDepartment(input); cout << "Salary: "; cin >> input; e->setSalary(atoi(input.c_str())); //cout << e->toString() << endl; //debug line return e; } Employee* getManager(vector<Employee*> employees){ Manager* m = new Manager(); string input; cout << "Manager Name: "; cin >> input; m->setName(input); cout << "Age: "; cin >> input; m->setAge(atoi(input.c_str())); cout << "Department: "; cin >> input; m->setDepartment(input); cout << "Salary: "; cin >> input; m->setSalary(atoi(input.c_str())); cout << "Bonus: "; cin >> input; m->setBonus(atoi(input.c_str())); // show all available employees // enter a name // add this name as the report // How to handle multiple input of same name? bool taken[employees.size()]; for (unsigned int i = 0; i < employees.size(); i++){ taken[i] = 0; } while(true){ cout << "What report would you like to add, or -1 to finish" << endl; for (unsigned int i = 0; i < employees.size(); i++){ if (taken[i] == 0) { cout << i << ": " << employees[i]->getName() << endl; } } cin >> input; if (input.compare("-1") == 0){ break; } int choice = atoi(input.c_str()); if(choice >= 0 && choice < (int)employees.size()){ m->addReport(employees[choice]); taken[choice] = 1; } else { cout << "Invalid Choice" << endl; } } //cout << m->toString() << endl; //debug line return m; } void printAllEmployees(vector<Employee*> employees){ for (unsigned int i = 0; i < employees.size(); i++){ cout << i << ": " << employees[i]->toString() << endl; } } void printInfoForName(vector<Employee*> employees){ // option: print all the names here to remind user who is // in the system string name; cout << "Enter the name that you want to print info for:" << endl; cin >> name; cout << findEmployeeByName(name, employees)->toString() << endl; } void printCompensationForName(vector<Employee*> employees){ string name; cout << "Enter the name that you want to print info for:" << endl; cin >> name; cout << findEmployeeByName(name, employees)->getTotalCompensation() << endl; } void printSumCompensation(vector<Employee*> employees){ long sum = 0; for (unsigned int i = 0; i < employees.size() ; i++){ sum += employees[i]->getTotalCompensation(); } cout << sum << endl; } int main(){ vector<Employee*> employees; int choice = getChoice(); while(choice != 7){ if (choice == 1){ employees.push_back(getEmployee()); } else if (choice == 2){ employees.push_back(getManager(employees)); } else if (choice == 3){ printAllEmployees(employees); } else if (choice == 4){ printInfoForName(employees); } else if (choice == 5){ printCompensationForName(employees); } else if (choice == 6){ printSumCompensation(employees); } else { cout << "Invalid Choice." << endl; } choice = getChoice(); } }
[ "yilin2548@gmail.com" ]
yilin2548@gmail.com
70a286c0d12ca97f3f8d96dbb5ec23f7b1e72dce
60bd79d18cf69c133abcb6b0d8b0a959f61b4d10
/libraries/CRC/examples/CRC32_test/CRC32_test.ino
fc277fd3c0f618d92897a09fc777f2202c1144c9
[ "MIT" ]
permissive
RobTillaart/Arduino
e75ae38fa6f043f1213c4c7adb310e91da59e4ba
48a7d9ec884e54fcc7323e340407e82fcc08ea3d
refs/heads/master
2023-09-01T03:32:38.474045
2023-08-31T20:07:39
2023-08-31T20:07:39
2,544,179
1,406
3,798
MIT
2022-10-27T08:28:51
2011-10-09T19:53:59
C++
UTF-8
C++
false
false
606
ino
// // FILE: CRC32_test.ino // AUTHOR: Rob Tillaart // PURPOSE: demo // DATE: 2021-01-20 // (c) : MIT #include "CRC32.h" char str[24] = "123456789"; CRC32 crc; void setup() { Serial.begin(115200); Serial.println(__FILE__); // Serial.println("Verified with - http://zorc.breitbandkatze.de/crc.html \n"); test(); } void loop() { } void test() { crc.add((uint8_t*)str, 9); Serial.println(crc.calc(), HEX); crc.restart(); for (int i = 0; i < 9; i++) { crc.add(str[i]); } Serial.println(crc.calc(), HEX); Serial.println(crc.count()); } // -- END OF FILE --
[ "rob.tillaart@gmail.com" ]
rob.tillaart@gmail.com
72d1cdb0b37cb2ef9f952e55d2320a79b902549a
8681fcf27316f7964efa506753af6075e16bb8eb
/floodit/source/Title.hpp
6fa3a0bf48af0e81102ff766ffaf5c970c3c8f7a
[]
no_license
notnotme/NotEngine_PSV
5854030b983e6d63ff7891f19a2abc6b823c3bde
2fbff9cf554824b172259bb082f2e80851e08ed5
refs/heads/master
2021-01-17T01:21:41.143076
2017-01-03T10:51:35
2017-01-03T10:51:35
39,076,058
14
1
null
null
null
null
UTF-8
C++
false
false
1,156
hpp
#pragma once #include <string> #include <psp2/ctrl.h> #include <glm/glm.hpp> #include <notengine/notengine.hpp> #include "GameContext.hpp" using namespace NotEngine::Graphics; using namespace NotEngine::Game; class Title : public GameState { private: Title(const Title& copy); void operator=(Title const&); SpriteLetter mScrollSprite; Sprite mOverlaySprite; Sprite mPlaySprite; Sprite mTitleSprite; float mScrollOffset; float mScrollTreshold; bool mTouchedFlag; int mTouchX; int mTouchY; SpriteBuffer* mSpriteBuffer; GraphicsBase* mGraphicsBase; Graphics2D* mGraphics2D; GameContext* mGameContext; Director* mDirector; enum Step { ENTER, EXIT_TO_GAME, IDLE, STOP }; Step mStep; static const unsigned int CHAR_SIZE = 48; static const int CHAR_OFFSET = 16; static const std::string sGreetStr; public: Title(); virtual ~Title(); virtual int enter (); virtual void exit (); virtual int update (const SceCtrlData& inputs, const SceTouchData& touchFront, const SceTouchData& touchBack, float elapsed); virtual const std::string getName(); enum ERROR { NO_ERROR = 0 }; };
[ "graillot.romain@gmail.com" ]
graillot.romain@gmail.com
947a6c22c581bdff2eaf4f94d62a779984140d84
123694995085a03d329c880510b050d7a54b88b5
/sketch_lcd_dht/sketch_lcd_dht.ino
3cbe3b2f620dc7e5118e51daed9448f025b37ee2
[]
no_license
gawadinc/ArduinO_projects
d8f4a5e64f611eeea1ba1f6b2cc9d30a217c4b7e
ba13b5f42a40de1da3c421c6c7c30771103d2e44
refs/heads/master
2020-06-13T19:46:44.683686
2016-12-04T19:45:35
2016-12-04T19:45:35
75,559,955
0
0
null
null
null
null
UTF-8
C++
false
false
2,073
ino
/* Measurement temperature and humidity Demonstrates the use a 16x2 LCD display. The LiquidCrystal library works with all LCD displays that are compatible with the Hitachi HD44780 driver. There are many of them out there, and you can usually tell them by the 16-pin interface. This sketch prints "Temp: 24.10 Hum: 50.05" to the LCD and shows the time. The circuit: * LCD RS pin to digital pin 12 * LCD Enable pin to digital pin 11 * LCD D4 pin to digital pin 5 * LCD D5 pin to digital pin 4 * LCD D6 pin to digital pin 3 * LCD D7 pin to digital pin 2 * LCD R/W pin to ground * LCD VSS pin to ground * LCD VCC pin to 5V * 10K resistor: * ends to +5V and ground * wiper to LCD VO pin (pin 3) Library originally added 18 Apr 2008 by David A. Mellis library modified 5 Jul 2009 by Limor Fried (http://www.ladyada.net) example added 9 Jul 2009 by Tom Igoe modified 22 Nov 2010 by Tom Igoe This example code is in the public domain. http://www.arduino.cc/en/Tutorial/LiquidCrystal */ // include the library code: #include <LiquidCrystal.h> #include <DHT.h> // initialize the library with the numbers of the interface pins LiquidCrystal lcd(12, 11, 5, 4, 3, 2); #define DHTPIN 7 // номер пина, к которому подсоединен датчик // Раскомментируйте в соответствии с используемым датчиком // Инициируем датчик DHT dht(DHTPIN, DHT22); //DHT dht(DHTPIN, DHT11); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. } void loop() { //Считываем влажность float h = dht.readHumidity(); // Считываем температуру float t = dht.readTemperature(); lcd.setCursor(0, 0); lcd.print("Temp: "); lcd.print(t); // set the cursor to column 0, line 1 // (note: line 1 is the second row, since counting begins with 0): lcd.setCursor(0, 1); lcd.print("Hum: "); // print the number of seconds since reset: lcd.print(h); }
[ "noreply@github.com" ]
noreply@github.com
c880d12e9ecac799806b32e10523c78af6bf08c3
43a2fbc77f5cea2487c05c7679a30e15db9a3a50
/Cpp/External (Offsets Only)/SDK/Maths_functions.cpp
72d7f7cc80f8e8d4b9906b57386d5d0c0b0a35d6
[]
no_license
zH4x/SoT-Insider-SDK
57e2e05ede34ca1fd90fc5904cf7a79f0259085c
6bff738a1b701c34656546e333b7e59c98c63ad7
refs/heads/main
2023-06-09T23:10:32.929216
2021-07-07T01:34:27
2021-07-07T01:34:27
383,638,719
0
0
null
null
null
null
UTF-8
C++
false
false
85,731
cpp
// Name: SoT-Insider, Version: 1.102.2382.0 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //--------------------------------------------------------------------------- void FOrientedPoint::AfterRead() { } void FOrientedPoint::BeforeDelete() { } void FRotationUpdateResult::AfterRead() { } void FRotationUpdateResult::BeforeDelete() { } void FTimedBuffer::AfterRead() { } void FTimedBuffer::BeforeDelete() { } void FWeightedProbabilityRange::AfterRead() { } void FWeightedProbabilityRange::BeforeDelete() { } void FWeightedProbabilityRangeOfRangesFloatPair::AfterRead() { } void FWeightedProbabilityRangeOfRangesFloatPair::BeforeDelete() { } void FWeightedProbabilityRangeOfRanges::AfterRead() { FWeightedProbabilityRange::AfterRead(); } void FWeightedProbabilityRangeOfRanges::BeforeDelete() { FWeightedProbabilityRange::BeforeDelete(); } void FFixedStepInterpCurvePointVector2D::AfterRead() { } void FFixedStepInterpCurvePointVector2D::BeforeDelete() { } void FFixedStepInterpCurveVector2D::AfterRead() { } void FFixedStepInterpCurveVector2D::BeforeDelete() { } void FInertialSmoothedFloat::AfterRead() { } void FInertialSmoothedFloat::BeforeDelete() { } void FSpatialOffset::AfterRead() { } void FSpatialOffset::BeforeDelete() { } // Function Maths.AngleMaths.CalculateEulerAngle // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float FromAngle (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ToAngle (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UAngleMaths::STATIC_CalculateEulerAngle(float FromAngle, float ToAngle) { static auto fn = UObject::FindObject<UFunction>("Function Maths.AngleMaths.CalculateEulerAngle"); UAngleMaths_CalculateEulerAngle_Params params; params.FromAngle = FromAngle; params.ToAngle = ToAngle; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.AngleMaths.AngleMoveTowardsMod180 // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float Angle (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float TargetAngle (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Rate (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UAngleMaths::STATIC_AngleMoveTowardsMod180(float Angle, float TargetAngle, float Rate) { static auto fn = UObject::FindObject<UFunction>("Function Maths.AngleMaths.AngleMoveTowardsMod180"); UAngleMaths_AngleMoveTowardsMod180_Params params; params.Angle = Angle; params.TargetAngle = TargetAngle; params.Rate = Rate; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.AngleMaths.AngleMod360 // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float Angle (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UAngleMaths::STATIC_AngleMod360(float Angle) { static auto fn = UObject::FindObject<UFunction>("Function Maths.AngleMaths.AngleMod360"); UAngleMaths_AngleMod360_Params params; params.Angle = Angle; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.AngleMaths.AngleMod180 // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float Angle (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UAngleMaths::STATIC_AngleMod180(float Angle) { static auto fn = UObject::FindObject<UFunction>("Function Maths.AngleMaths.AngleMod180"); UAngleMaths_AngleMod180_Params params; params.Angle = Angle; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.AngleMaths.AngleLerpShortest // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float Start (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float End (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Amount (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UAngleMaths::STATIC_AngleLerpShortest(float Start, float End, float Amount) { static auto fn = UObject::FindObject<UFunction>("Function Maths.AngleMaths.AngleLerpShortest"); UAngleMaths_AngleLerpShortest_Params params; params.Start = Start; params.End = End; params.Amount = Amount; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UAngleMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UAngleMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.BuoyancyMaths.CalculateMagnitude // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InSubmersedVolume (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InFluidDensity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InGravity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UBuoyancyMaths::STATIC_CalculateMagnitude(float InSubmersedVolume, float InFluidDensity, float InGravity) { static auto fn = UObject::FindObject<UFunction>("Function Maths.BuoyancyMaths.CalculateMagnitude"); UBuoyancyMaths_CalculateMagnitude_Params params; params.InSubmersedVolume = InSubmersedVolume; params.InFluidDensity = InFluidDensity; params.InGravity = InGravity; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.BuoyancyMaths.CalcBlendedProbeCurveBuoyancy // (Final, Native, Static, Public, BlueprintCallable) // Parameters: // class UCurveFloat* PrimaryBuoyancyCurve (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // class UCurveFloat* SecondaryBuoyancyCurve (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // class UCurveFloat* TertiaryBuoyancyCurve (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float UnaryDistUnderwater (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Blend (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // TEnumAsByte<Maths_EBuoyancyBlend> BlendType (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UBuoyancyMaths::STATIC_CalcBlendedProbeCurveBuoyancy(class UCurveFloat* PrimaryBuoyancyCurve, class UCurveFloat* SecondaryBuoyancyCurve, class UCurveFloat* TertiaryBuoyancyCurve, float UnaryDistUnderwater, float Blend, TEnumAsByte<Maths_EBuoyancyBlend> BlendType) { static auto fn = UObject::FindObject<UFunction>("Function Maths.BuoyancyMaths.CalcBlendedProbeCurveBuoyancy"); UBuoyancyMaths_CalcBlendedProbeCurveBuoyancy_Params params; params.PrimaryBuoyancyCurve = PrimaryBuoyancyCurve; params.SecondaryBuoyancyCurve = SecondaryBuoyancyCurve; params.TertiaryBuoyancyCurve = TertiaryBuoyancyCurve; params.UnaryDistUnderwater = UnaryDistUnderwater; params.Blend = Blend; params.BlendType = BlendType; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UBuoyancyMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UBuoyancyMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.CircleMaths.ConvertAngleToCircleSectorIndex // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float AngleInDegrees (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // int NumberOfSectors (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float IgnoredFraction (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // int ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) int UCircleMaths::STATIC_ConvertAngleToCircleSectorIndex(float AngleInDegrees, int NumberOfSectors, float IgnoredFraction) { static auto fn = UObject::FindObject<UFunction>("Function Maths.CircleMaths.ConvertAngleToCircleSectorIndex"); UCircleMaths_ConvertAngleToCircleSectorIndex_Params params; params.AngleInDegrees = AngleInDegrees; params.NumberOfSectors = NumberOfSectors; params.IgnoredFraction = IgnoredFraction; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.CircleMaths.Area // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InRadius (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UCircleMaths::STATIC_Area(float InRadius) { static auto fn = UObject::FindObject<UFunction>("Function Maths.CircleMaths.Area"); UCircleMaths_Area_Params params; params.InRadius = InRadius; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UCircleMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UCircleMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.CurveMaths.GetDistanceSquaredToCurve // (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector WorldSpacePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // class USplineComponent* Spline (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UCurveMaths::STATIC_GetDistanceSquaredToCurve(const struct FVector& WorldSpacePos, class USplineComponent* Spline) { static auto fn = UObject::FindObject<UFunction>("Function Maths.CurveMaths.GetDistanceSquaredToCurve"); UCurveMaths_GetDistanceSquaredToCurve_Params params; params.WorldSpacePos = WorldSpacePos; params.Spline = Spline; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.CurveMaths.GetClosestTimeOnCurve // (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector WorldSpacePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // class USplineComponent* Spline (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UCurveMaths::STATIC_GetClosestTimeOnCurve(const struct FVector& WorldSpacePos, class USplineComponent* Spline) { static auto fn = UObject::FindObject<UFunction>("Function Maths.CurveMaths.GetClosestTimeOnCurve"); UCurveMaths_GetClosestTimeOnCurve_Params params; params.WorldSpacePos = WorldSpacePos; params.Spline = Spline; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.CurveMaths.GetClosestPositionOnCurve // (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector WorldSpacePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // class USplineComponent* Spline (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) struct FVector UCurveMaths::STATIC_GetClosestPositionOnCurve(const struct FVector& WorldSpacePos, class USplineComponent* Spline) { static auto fn = UObject::FindObject<UFunction>("Function Maths.CurveMaths.GetClosestPositionOnCurve"); UCurveMaths_GetClosestPositionOnCurve_Params params; params.WorldSpacePos = WorldSpacePos; params.Spline = Spline; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.CurveMaths.GetClosestPointOnCurve // (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector WorldSpacePos (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // class USplineComponent* Spline (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UCurveMaths::STATIC_GetClosestPointOnCurve(const struct FVector& WorldSpacePos, class USplineComponent* Spline) { static auto fn = UObject::FindObject<UFunction>("Function Maths.CurveMaths.GetClosestPointOnCurve"); UCurveMaths_GetClosestPointOnCurve_Params params; params.WorldSpacePos = WorldSpacePos; params.Spline = Spline; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.CurveMaths.GetCentre // (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // class USplineComponent* Spline (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) struct FVector UCurveMaths::STATIC_GetCentre(class USplineComponent* Spline) { static auto fn = UObject::FindObject<UFunction>("Function Maths.CurveMaths.GetCentre"); UCurveMaths_GetCentre_Params params; params.Spline = Spline; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UCurveMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UCurveMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.Density.Water // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDensity::STATIC_Water() { static auto fn = UObject::FindObject<UFunction>("Function Maths.Density.Water"); UDensity_Water_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.Density.SeaWater // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDensity::STATIC_SeaWater() { static auto fn = UObject::FindObject<UFunction>("Function Maths.Density.SeaWater"); UDensity_SeaWater_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.Density.Min // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDensity::STATIC_Min() { static auto fn = UObject::FindObject<UFunction>("Function Maths.Density.Min"); UDensity_Min_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.Density.Max // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDensity::STATIC_Max() { static auto fn = UObject::FindObject<UFunction>("Function Maths.Density.Max"); UDensity_Max_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.Density.IsValid // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UDensity::STATIC_IsValid(float InValue) { static auto fn = UObject::FindObject<UFunction>("Function Maths.Density.IsValid"); UDensity_IsValid_Params params; params.InValue = InValue; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.Density.Air // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDensity::STATIC_Air() { static auto fn = UObject::FindObject<UFunction>("Function Maths.Density.Air"); UDensity_Air_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UDensity::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UDensity::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.DragCoefficients.Sphere // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDragCoefficients::STATIC_Sphere() { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragCoefficients.Sphere"); UDragCoefficients_Sphere_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.DragCoefficients.PlanePerpendicularToFlow // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDragCoefficients::STATIC_PlanePerpendicularToFlow() { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragCoefficients.PlanePerpendicularToFlow"); UDragCoefficients_PlanePerpendicularToFlow_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.DragCoefficients.PlaneParallelToFlow // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDragCoefficients::STATIC_PlaneParallelToFlow() { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragCoefficients.PlaneParallelToFlow"); UDragCoefficients_PlaneParallelToFlow_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.DragCoefficients.Min // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDragCoefficients::STATIC_Min() { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragCoefficients.Min"); UDragCoefficients_Min_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.DragCoefficients.Max // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDragCoefficients::STATIC_Max() { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragCoefficients.Max"); UDragCoefficients_Max_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.DragCoefficients.IsValid // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float Value (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UDragCoefficients::STATIC_IsValid(float Value) { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragCoefficients.IsValid"); UDragCoefficients_IsValid_Params params; params.Value = Value; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.DragCoefficients.Cube // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDragCoefficients::STATIC_Cube() { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragCoefficients.Cube"); UDragCoefficients_Cube_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UDragCoefficients::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UDragCoefficients::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.DragMaths.CalculateMagnitude // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InSurfaceArea (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InSpeedReltaiveToFluid (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InDragCoefficient (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InFluidDensity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UDragMaths::STATIC_CalculateMagnitude(float InSurfaceArea, float InSpeedReltaiveToFluid, float InDragCoefficient, float InFluidDensity) { static auto fn = UObject::FindObject<UFunction>("Function Maths.DragMaths.CalculateMagnitude"); UDragMaths_CalculateMagnitude_Params params; params.InSurfaceArea = InSurfaceArea; params.InSpeedReltaiveToFluid = InSpeedReltaiveToFluid; params.InDragCoefficient = InDragCoefficient; params.InFluidDensity = InFluidDensity; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UDragMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UDragMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.FloatMaths.WrapToRange // (Final, Native, Static, Public, BlueprintCallable) // Parameters: // float Input (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float LowerLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float UpperLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_WrapToRange(float Input, float LowerLimit, float UpperLimit) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.WrapToRange"); UFloatMaths_WrapToRange_Params params; params.Input = Input; params.LowerLimit = LowerLimit; params.UpperLimit = UpperLimit; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.FloatMaths.WrapToPositiveRange // (Final, Native, Static, Public, BlueprintCallable) // Parameters: // float Input (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float UpperLimit (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_WrapToPositiveRange(float Input, float UpperLimit) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.WrapToPositiveRange"); UFloatMaths_WrapToPositiveRange_Params params; params.Input = Input; params.UpperLimit = UpperLimit; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.FloatMaths.WrapAroundPivot // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float Input (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Pivot (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Range (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_WrapAroundPivot(float Input, float Pivot, float Range) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.WrapAroundPivot"); UFloatMaths_WrapAroundPivot_Params params; params.Input = Input; params.Pivot = Pivot; params.Range = Range; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.FloatMaths.MoveTowards // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float From (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float To (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Speed (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Time (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_MoveTowards(float From, float To, float Speed, float Time) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.MoveTowards"); UFloatMaths_MoveTowards_Params params; params.From = From; params.To = To; params.Speed = Speed; params.Time = Time; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.FloatMaths.Map // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ValueToMapFrom (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float FromRangeStart (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float FromRangeEnd (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ToRangeStart (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ToRangeEnd (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool Clamp (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_Map(float ValueToMapFrom, float FromRangeStart, float FromRangeEnd, float ToRangeStart, float ToRangeEnd, bool Clamp) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.Map"); UFloatMaths_Map_Params params; params.ValueToMapFrom = ValueToMapFrom; params.FromRangeStart = FromRangeStart; params.FromRangeEnd = FromRangeEnd; params.ToRangeStart = ToRangeStart; params.ToRangeEnd = ToRangeEnd; params.Clamp = Clamp; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.FloatMaths.IncrementCounter // (Final, Native, Static, Public, HasOutParms, BlueprintCallable) // Parameters: // float Counter (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Delta (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float CounterMax (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UFloatMaths::STATIC_IncrementCounter(float* Counter, float Delta, float CounterMax) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.IncrementCounter"); UFloatMaths_IncrementCounter_Params params; params.Delta = Delta; params.CounterMax = CounterMax; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (Counter != nullptr) *Counter = params.Counter; return params.ReturnValue; } // Function Maths.FloatMaths.GetShortestSignedDistanceBetweenPointsInWrappedRange // (Final, Native, Static, Public, BlueprintCallable) // Parameters: // float FromValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ToValue (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float LowerLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float UpperLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_GetShortestSignedDistanceBetweenPointsInWrappedRange(float FromValue, float ToValue, float LowerLimit, float UpperLimit) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.GetShortestSignedDistanceBetweenPointsInWrappedRange"); UFloatMaths_GetShortestSignedDistanceBetweenPointsInWrappedRange_Params params; params.FromValue = FromValue; params.ToValue = ToValue; params.LowerLimit = LowerLimit; params.UpperLimit = UpperLimit; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.FloatMaths.FindMidpointInWrappedRange // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float Value1 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Value2 (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float LowerLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float UpperLimit (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_FindMidpointInWrappedRange(float Value1, float Value2, float LowerLimit, float UpperLimit) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.FindMidpointInWrappedRange"); UFloatMaths_FindMidpointInWrappedRange_Params params; params.Value1 = Value1; params.Value2 = Value2; params.LowerLimit = LowerLimit; params.UpperLimit = UpperLimit; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.FloatMaths.Bound // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ValueToBound (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Bound1 (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Bound2 (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UFloatMaths::STATIC_Bound(float ValueToBound, float Bound1, float Bound2) { static auto fn = UObject::FindObject<UFunction>("Function Maths.FloatMaths.Bound"); UFloatMaths_Bound_Params params; params.ValueToBound = ValueToBound; params.Bound1 = Bound1; params.Bound2 = Bound2; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UFloatMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UFloatMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.Gravity.Earth // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UGravity::STATIC_Earth() { static auto fn = UObject::FindObject<UFunction>("Function Maths.Gravity.Earth"); UGravity_Earth_Params params; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UGravity::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UGravity::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.OrientedPointBlueprintFunctionLibrary.GetPointAsTransform // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FOrientedPoint Point (ConstParm, Parm, OutParm, ReferenceParm) // struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor) struct FTransform UOrientedPointBlueprintFunctionLibrary::STATIC_GetPointAsTransform(const struct FOrientedPoint& Point) { static auto fn = UObject::FindObject<UFunction>("Function Maths.OrientedPointBlueprintFunctionLibrary.GetPointAsTransform"); UOrientedPointBlueprintFunctionLibrary_GetPointAsTransform_Params params; params.Point = Point; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UOrientedPointBlueprintFunctionLibrary::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UOrientedPointBlueprintFunctionLibrary::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.PoissonDiscSampling.GeneratePoissonDiscDistributionAcrossPlane // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable) // Parameters: // struct FVector InCenter (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FQuat InOrientation (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor) // float InWidth (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InHeight (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InMinDistance (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // int InRNGSeed (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // TArray<struct FVector> ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm) TArray<struct FVector> UPoissonDiscSampling::STATIC_GeneratePoissonDiscDistributionAcrossPlane(const struct FVector& InCenter, const struct FQuat& InOrientation, float InWidth, float InHeight, float InMinDistance, int InRNGSeed) { static auto fn = UObject::FindObject<UFunction>("Function Maths.PoissonDiscSampling.GeneratePoissonDiscDistributionAcrossPlane"); UPoissonDiscSampling_GeneratePoissonDiscDistributionAcrossPlane_Params params; params.InCenter = InCenter; params.InOrientation = InOrientation; params.InWidth = InWidth; params.InHeight = InHeight; params.InMinDistance = InMinDistance; params.InRNGSeed = InRNGSeed; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UPoissonDiscSampling::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UPoissonDiscSampling::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.ProjectileMaths.PredictProjectileFlightTime // (Final, Native, Static, Public, BlueprintCallable) // Parameters: // float Speed (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Gravity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Pitch (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Height (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UProjectileMaths::STATIC_PredictProjectileFlightTime(float Speed, float Gravity, float Pitch, float Height) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ProjectileMaths.PredictProjectileFlightTime"); UProjectileMaths_PredictProjectileFlightTime_Params params; params.Speed = Speed; params.Gravity = Gravity; params.Pitch = Pitch; params.Height = Height; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.ProjectileMaths.FindProjectileSpeedModifierToHitTarget // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable) // Parameters: // struct FVector From (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector Target (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // float Pitch (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ProjectileSpeed (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Gravity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UProjectileMaths::STATIC_FindProjectileSpeedModifierToHitTarget(const struct FVector& From, const struct FVector& Target, float Pitch, float ProjectileSpeed, float Gravity) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ProjectileMaths.FindProjectileSpeedModifierToHitTarget"); UProjectileMaths_FindProjectileSpeedModifierToHitTarget_Params params; params.From = From; params.Target = Target; params.Pitch = Pitch; params.ProjectileSpeed = ProjectileSpeed; params.Gravity = Gravity; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.ProjectileMaths.FindAimDirectionToHitTarget // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable) // Parameters: // struct FRotator OutAimDirection (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector From (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector Target (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // float ProjectileSpeed (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Gravity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool PreferHigherAngles (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UProjectileMaths::STATIC_FindAimDirectionToHitTarget(struct FRotator* OutAimDirection, const struct FVector& From, const struct FVector& Target, float ProjectileSpeed, float Gravity, bool PreferHigherAngles) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ProjectileMaths.FindAimDirectionToHitTarget"); UProjectileMaths_FindAimDirectionToHitTarget_Params params; params.From = From; params.Target = Target; params.ProjectileSpeed = ProjectileSpeed; params.Gravity = Gravity; params.PreferHigherAngles = PreferHigherAngles; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (OutAimDirection != nullptr) *OutAimDirection = params.OutAimDirection; return params.ReturnValue; } // Function Maths.ProjectileMaths.CalculateLaunchVelocity // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable) // Parameters: // struct FVector OutLaunchVelocty (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor) // float OutFlightTime (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector From (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector Target (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector TargetVelocity (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // float ProjectileSpeed (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Gravity (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool PreferHigherAngles (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UProjectileMaths::STATIC_CalculateLaunchVelocity(struct FVector* OutLaunchVelocty, float* OutFlightTime, const struct FVector& From, const struct FVector& Target, const struct FVector& TargetVelocity, float ProjectileSpeed, float Gravity, bool PreferHigherAngles) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ProjectileMaths.CalculateLaunchVelocity"); UProjectileMaths_CalculateLaunchVelocity_Params params; params.From = From; params.Target = Target; params.TargetVelocity = TargetVelocity; params.ProjectileSpeed = ProjectileSpeed; params.Gravity = Gravity; params.PreferHigherAngles = PreferHigherAngles; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (OutLaunchVelocty != nullptr) *OutLaunchVelocty = params.OutLaunchVelocty; if (OutFlightTime != nullptr) *OutFlightTime = params.OutFlightTime; return params.ReturnValue; } void UProjectileMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UProjectileMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.RotationMaths.TransformAroundArbitraryPivot // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FTransform TargetTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor) // struct FTransform BaseTransform (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor) // struct FTransform TransformToApply (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor) // bool LockFinalOrientation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FTransform ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor) struct FTransform URotationMaths::STATIC_TransformAroundArbitraryPivot(const struct FTransform& TargetTransform, const struct FTransform& BaseTransform, const struct FTransform& TransformToApply, bool LockFinalOrientation) { static auto fn = UObject::FindObject<UFunction>("Function Maths.RotationMaths.TransformAroundArbitraryPivot"); URotationMaths_TransformAroundArbitraryPivot_Params params; params.TargetTransform = TargetTransform; params.BaseTransform = BaseTransform; params.TransformToApply = TransformToApply; params.LockFinalOrientation = LockFinalOrientation; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.RotationMaths.RotatorToQuat // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FRotator Rotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FQuat ReturnValue (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor) struct FQuat URotationMaths::STATIC_RotatorToQuat(const struct FRotator& Rotation) { static auto fn = UObject::FindObject<UFunction>("Function Maths.RotationMaths.RotatorToQuat"); URotationMaths_RotatorToQuat_Params params; params.Rotation = Rotation; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.RotationMaths.AreRotatorsTheSameRotation // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FRotator Rotator1 (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FRotator Rotator2 (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // float ErrorTolerance (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool URotationMaths::STATIC_AreRotatorsTheSameRotation(const struct FRotator& Rotator1, const struct FRotator& Rotator2, float ErrorTolerance) { static auto fn = UObject::FindObject<UFunction>("Function Maths.RotationMaths.AreRotatorsTheSameRotation"); URotationMaths_AreRotatorsTheSameRotation_Params params; params.Rotator1 = Rotator1; params.Rotator2 = Rotator2; params.ErrorTolerance = ErrorTolerance; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.RotationMaths.AdvanceRotationBySpinAndTiltSynced // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable) // Parameters: // struct FRotator StartRotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FRotator TargetRotation (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // float RotationRateDegrees (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float DeltaTime (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FRotationUpdateResult ReturnValue (Parm, OutParm, ReturnParm) struct FRotationUpdateResult URotationMaths::STATIC_AdvanceRotationBySpinAndTiltSynced(const struct FRotator& StartRotation, const struct FRotator& TargetRotation, float RotationRateDegrees, float DeltaTime) { static auto fn = UObject::FindObject<UFunction>("Function Maths.RotationMaths.AdvanceRotationBySpinAndTiltSynced"); URotationMaths_AdvanceRotationBySpinAndTiltSynced_Params params; params.StartRotation = StartRotation; params.TargetRotation = TargetRotation; params.RotationRateDegrees = RotationRateDegrees; params.DeltaTime = DeltaTime; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void URotationMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void URotationMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.ShapeMathsBlueprintLibrary.IsPointOnOrWithinABox // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // class UBoxComponent* BoxComponent (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector WorldSpaceReferencePoint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UShapeMathsBlueprintLibrary::STATIC_IsPointOnOrWithinABox(class UBoxComponent* BoxComponent, const struct FVector& WorldSpaceReferencePoint) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ShapeMathsBlueprintLibrary.IsPointOnOrWithinABox"); UShapeMathsBlueprintLibrary_IsPointOnOrWithinABox_Params params; params.BoxComponent = BoxComponent; params.WorldSpaceReferencePoint = WorldSpaceReferencePoint; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinASphere // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // class USphereComponent* SphereComponent (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector WorldSpaceReferencePoint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) struct FVector UShapeMathsBlueprintLibrary::STATIC_FindClosestPointWithinASphere(class USphereComponent* SphereComponent, const struct FVector& WorldSpaceReferencePoint) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinASphere"); UShapeMathsBlueprintLibrary_FindClosestPointWithinASphere_Params params; params.SphereComponent = SphereComponent; params.WorldSpaceReferencePoint = WorldSpaceReferencePoint; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinACylinder // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // class UCapsuleComponent* CylinderComponent (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector WorldSpaceReferencePoint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) struct FVector UShapeMathsBlueprintLibrary::STATIC_FindClosestPointWithinACylinder(class UCapsuleComponent* CylinderComponent, const struct FVector& WorldSpaceReferencePoint) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinACylinder"); UShapeMathsBlueprintLibrary_FindClosestPointWithinACylinder_Params params; params.CylinderComponent = CylinderComponent; params.WorldSpaceReferencePoint = WorldSpaceReferencePoint; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinACapsule // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // class UCapsuleComponent* CapsuleComponent (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector WorldSpaceReferencePoint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) struct FVector UShapeMathsBlueprintLibrary::STATIC_FindClosestPointWithinACapsule(class UCapsuleComponent* CapsuleComponent, const struct FVector& WorldSpaceReferencePoint) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinACapsule"); UShapeMathsBlueprintLibrary_FindClosestPointWithinACapsule_Params params; params.CapsuleComponent = CapsuleComponent; params.WorldSpaceReferencePoint = WorldSpaceReferencePoint; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinABox // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // class UBoxComponent* BoxComponent (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector WorldSpaceReferencePoint (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) struct FVector UShapeMathsBlueprintLibrary::STATIC_FindClosestPointWithinABox(class UBoxComponent* BoxComponent, const struct FVector& WorldSpaceReferencePoint) { static auto fn = UObject::FindObject<UFunction>("Function Maths.ShapeMathsBlueprintLibrary.FindClosestPointWithinABox"); UShapeMathsBlueprintLibrary_FindClosestPointWithinABox_Params params; params.BoxComponent = BoxComponent; params.WorldSpaceReferencePoint = WorldSpaceReferencePoint; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UShapeMathsBlueprintLibrary::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UShapeMathsBlueprintLibrary::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.SphereMaths.VolumeFromRadius // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InRadius (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float USphereMaths::STATIC_VolumeFromRadius(float InRadius) { static auto fn = UObject::FindObject<UFunction>("Function Maths.SphereMaths.VolumeFromRadius"); USphereMaths_VolumeFromRadius_Params params; params.InRadius = InRadius; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.SphereMaths.SurfaceAreaFromRadius // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InRadius (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float USphereMaths::STATIC_SurfaceAreaFromRadius(float InRadius) { static auto fn = UObject::FindObject<UFunction>("Function Maths.SphereMaths.SurfaceAreaFromRadius"); USphereMaths_SurfaceAreaFromRadius_Params params; params.InRadius = InRadius; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void USphereMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void USphereMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.SphericalCapMaths.Volume // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InRadius (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InHeight (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float USphericalCapMaths::STATIC_Volume(float InRadius, float InHeight) { static auto fn = UObject::FindObject<UFunction>("Function Maths.SphericalCapMaths.Volume"); USphericalCapMaths_Volume_Params params; params.InRadius = InRadius; params.InHeight = InHeight; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.SphericalCapMaths.CalculateGeometricCentroidOffsetRelativeToBoundingSphereCentroid // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InRadius (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InHeight (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float USphericalCapMaths::STATIC_CalculateGeometricCentroidOffsetRelativeToBoundingSphereCentroid(float InRadius, float InHeight) { static auto fn = UObject::FindObject<UFunction>("Function Maths.SphericalCapMaths.CalculateGeometricCentroidOffsetRelativeToBoundingSphereCentroid"); USphericalCapMaths_CalculateGeometricCentroidOffsetRelativeToBoundingSphereCentroid_Params params; params.InRadius = InRadius; params.InHeight = InHeight; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.SphericalCapMaths.BaseRadius // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float InRadius (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float InHeight (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float USphericalCapMaths::STATIC_BaseRadius(float InRadius, float InHeight) { static auto fn = UObject::FindObject<UFunction>("Function Maths.SphericalCapMaths.BaseRadius"); USphericalCapMaths_BaseRadius_Params params; params.InRadius = InRadius; params.InHeight = InHeight; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void USphericalCapMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void USphericalCapMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } void UStatisticsMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UStatisticsMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.TimedBufferFunctionLibrary.UpdateInterval // (Final, Native, Static, Public, HasOutParms, BlueprintCallable) // Parameters: // struct FTimedBuffer TimedBuffer (Parm, OutParm, ReferenceParm) // float DeltaTime (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float Value (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) void UTimedBufferFunctionLibrary::STATIC_UpdateInterval(struct FTimedBuffer* TimedBuffer, float DeltaTime, float Value) { static auto fn = UObject::FindObject<UFunction>("Function Maths.TimedBufferFunctionLibrary.UpdateInterval"); UTimedBufferFunctionLibrary_UpdateInterval_Params params; params.DeltaTime = DeltaTime; params.Value = Value; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (TimedBuffer != nullptr) *TimedBuffer = params.TimedBuffer; } // Function Maths.TimedBufferFunctionLibrary.GetValueRange // (Final, Native, Static, Public, HasOutParms, BlueprintCallable, BlueprintPure) // Parameters: // struct FTimedBuffer TimedBuffer (Parm, OutParm, ReferenceParm) // float MinWindowLength (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float ValueRange (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UTimedBufferFunctionLibrary::STATIC_GetValueRange(struct FTimedBuffer* TimedBuffer, float MinWindowLength, float* ValueRange) { static auto fn = UObject::FindObject<UFunction>("Function Maths.TimedBufferFunctionLibrary.GetValueRange"); UTimedBufferFunctionLibrary_GetValueRange_Params params; params.MinWindowLength = MinWindowLength; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (TimedBuffer != nullptr) *TimedBuffer = params.TimedBuffer; if (ValueRange != nullptr) *ValueRange = params.ValueRange; return params.ReturnValue; } // Function Maths.TimedBufferFunctionLibrary.CreateTimedBuffer // (Final, Native, Static, Public, BlueprintCallable, BlueprintPure) // Parameters: // float WindowLength (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FTimedBuffer ReturnValue (Parm, OutParm, ReturnParm) struct FTimedBuffer UTimedBufferFunctionLibrary::STATIC_CreateTimedBuffer(float WindowLength) { static auto fn = UObject::FindObject<UFunction>("Function Maths.TimedBufferFunctionLibrary.CreateTimedBuffer"); UTimedBufferFunctionLibrary_CreateTimedBuffer_Params params; params.WindowLength = WindowLength; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UTimedBufferFunctionLibrary::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UTimedBufferFunctionLibrary::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.TimeMaths.GetDifference // (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FDateTime A (Parm, ZeroConstructor) // struct FDateTime B (Parm, ZeroConstructor) // struct FTimespan ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm) struct FTimespan UTimeMaths::STATIC_GetDifference(const struct FDateTime& A, const struct FDateTime& B) { static auto fn = UObject::FindObject<UFunction>("Function Maths.TimeMaths.GetDifference"); UTimeMaths_GetDifference_Params params; params.A = A; params.B = B; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UTimeMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UTimeMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } // Function Maths.VectorMaths.LineIntersectsSphere // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector LineStart (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector LineDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector SphereCentre (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // float SphereRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector ClosestIntersectionPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UVectorMaths::STATIC_LineIntersectsSphere(const struct FVector& LineStart, const struct FVector& LineDir, const struct FVector& SphereCentre, float SphereRadius, struct FVector* ClosestIntersectionPoint) { static auto fn = UObject::FindObject<UFunction>("Function Maths.VectorMaths.LineIntersectsSphere"); UVectorMaths_LineIntersectsSphere_Params params; params.LineStart = LineStart; params.LineDir = LineDir; params.SphereCentre = SphereCentre; params.SphereRadius = SphereRadius; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (ClosestIntersectionPoint != nullptr) *ClosestIntersectionPoint = params.ClosestIntersectionPoint; return params.ReturnValue; } // Function Maths.VectorMaths.LineIntersectsCircleWithExitPoint // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector2D LineOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector2D LineDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector2D CircleOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // float CircleRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector2D OutClosestIntersectionPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector2D OutSecondaryIntersectionPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor) // float OutClosestIntersectionDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // float OutSecondaryIntersectionDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UVectorMaths::STATIC_LineIntersectsCircleWithExitPoint(const struct FVector2D& LineOrigin, const struct FVector2D& LineDir, const struct FVector2D& CircleOrigin, float CircleRadius, struct FVector2D* OutClosestIntersectionPoint, struct FVector2D* OutSecondaryIntersectionPoint, float* OutClosestIntersectionDistance, float* OutSecondaryIntersectionDistance) { static auto fn = UObject::FindObject<UFunction>("Function Maths.VectorMaths.LineIntersectsCircleWithExitPoint"); UVectorMaths_LineIntersectsCircleWithExitPoint_Params params; params.LineOrigin = LineOrigin; params.LineDir = LineDir; params.CircleOrigin = CircleOrigin; params.CircleRadius = CircleRadius; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (OutClosestIntersectionPoint != nullptr) *OutClosestIntersectionPoint = params.OutClosestIntersectionPoint; if (OutSecondaryIntersectionPoint != nullptr) *OutSecondaryIntersectionPoint = params.OutSecondaryIntersectionPoint; if (OutClosestIntersectionDistance != nullptr) *OutClosestIntersectionDistance = params.OutClosestIntersectionDistance; if (OutSecondaryIntersectionDistance != nullptr) *OutSecondaryIntersectionDistance = params.OutSecondaryIntersectionDistance; return params.ReturnValue; } // Function Maths.VectorMaths.LineIntersectsCircle // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector2D LineOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector2D LineDir (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector2D CircleOrigin (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // float CircleRadius (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector2D OutClosestIntersectionPoint (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor) // float OutIntersectionDistance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // bool ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor) bool UVectorMaths::STATIC_LineIntersectsCircle(const struct FVector2D& LineOrigin, const struct FVector2D& LineDir, const struct FVector2D& CircleOrigin, float CircleRadius, struct FVector2D* OutClosestIntersectionPoint, float* OutIntersectionDistance) { static auto fn = UObject::FindObject<UFunction>("Function Maths.VectorMaths.LineIntersectsCircle"); UVectorMaths_LineIntersectsCircle_Params params; params.LineOrigin = LineOrigin; params.LineDir = LineDir; params.CircleOrigin = CircleOrigin; params.CircleRadius = CircleRadius; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (OutClosestIntersectionPoint != nullptr) *OutClosestIntersectionPoint = params.OutClosestIntersectionPoint; if (OutIntersectionDistance != nullptr) *OutIntersectionDistance = params.OutIntersectionDistance; return params.ReturnValue; } // Function Maths.VectorMaths.IntersectLineSegmentWithPlane // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector LineStart (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector LineEnd (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector PlanePos (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector PlaneNormal (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // float PlaneThickness (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // struct FVector IntersectionPos (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor) // float NormalisedIntersectionTOnLineSegment (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) // TEnumAsByte<Maths_EPlaneLineIntersectionType> ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) TEnumAsByte<Maths_EPlaneLineIntersectionType> UVectorMaths::STATIC_IntersectLineSegmentWithPlane(const struct FVector& LineStart, const struct FVector& LineEnd, const struct FVector& PlanePos, const struct FVector& PlaneNormal, float PlaneThickness, struct FVector* IntersectionPos, float* NormalisedIntersectionTOnLineSegment) { static auto fn = UObject::FindObject<UFunction>("Function Maths.VectorMaths.IntersectLineSegmentWithPlane"); UVectorMaths_IntersectLineSegmentWithPlane_Params params; params.LineStart = LineStart; params.LineEnd = LineEnd; params.PlanePos = PlanePos; params.PlaneNormal = PlaneNormal; params.PlaneThickness = PlaneThickness; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (IntersectionPos != nullptr) *IntersectionPos = params.IntersectionPos; if (NormalisedIntersectionTOnLineSegment != nullptr) *NormalisedIntersectionTOnLineSegment = params.NormalisedIntersectionTOnLineSegment; return params.ReturnValue; } // Function Maths.VectorMaths.Distance // (Final, Native, Static, Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector A (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // struct FVector B (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UVectorMaths::STATIC_Distance(const struct FVector& A, const struct FVector& B) { static auto fn = UObject::FindObject<UFunction>("Function Maths.VectorMaths.Distance"); UVectorMaths_Distance_Params params; params.A = A; params.B = B; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function Maths.VectorMaths.Cross_Vector2DVector2D // (Final, Native, Static, Public, HasDefaults, BlueprintCallable, BlueprintPure) // Parameters: // struct FVector2D A (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // struct FVector2D B (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float UVectorMaths::STATIC_Cross_Vector2DVector2D(const struct FVector2D& A, const struct FVector2D& B) { static auto fn = UObject::FindObject<UFunction>("Function Maths.VectorMaths.Cross_Vector2DVector2D"); UVectorMaths_Cross_Vector2DVector2D_Params params; params.A = A; params.B = B; auto flags = fn->FunctionFlags; fn->FunctionFlags |= 0x00000400; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } void UVectorMaths::AfterRead() { UBlueprintFunctionLibrary::AfterRead(); } void UVectorMaths::BeforeDelete() { UBlueprintFunctionLibrary::BeforeDelete(); } } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
9d438fb2aee3c19e32282811b12c23bcd6835bc5
103751ccab80ebab7df0ea670d50c95a784f8223
/2016-10-26-2016-2017 ACM-ICPC NEERC Southern Subregional Contest/D/D.cpp
dbadf45f1b93b936087b7997e4292e1e0d90640f
[]
no_license
AnimismFudan/Animism
b451ee9d0b3710f6b568ecf2dc022cffdc065d82
db1fc16841f7eeb158cca8d0a8de087a795b97ec
refs/heads/master
2020-12-25T14:14:08.979003
2017-06-03T07:02:38
2017-06-03T07:02:38
67,414,706
1
0
null
null
null
null
UTF-8
C++
false
false
1,235
cpp
#include <bits/stdc++.h> using namespace std; #define ll long long const int MaxN = (int)2e5 + 7; int n; ll s,r,T,D; int l[MaxN],t[MaxN]; int d[MaxN],d_[MaxN]; int main() { int i,j; scanf("%d", &n); scanf("%lld", &r); for (i=1; i<=n; i++) scanf("%d", l+i); for (i=1; i<=n; i++) scanf("%d", t+i); for (i=1; i<=n; i++) if (t[i] < l[i]) { printf("-1\n"); return 0; } else { d[i] = max(l[i] + l[i] - t[i], 0); d_[i] = d[i]; } D = 0; for (i=1; i<=n; i++) { if (D >= l[i]) D -= l[i]; else { if (d[i] <= D) D = 0; else { d[i] -= D; s += d[i]/r; if (d[i] % r != 0) { s ++; D = r - d[i]%r; } else D = 0; } } } printf("%lld\n", s); if (s != 0 && s <= (int)1e5) { D = T = 0; for (i=1; i<=n; i++) { if (D >= l[i]) D -= l[i], T += l[i]; else { d[i] = d_[i]; if (d[i] <= D) {T += l[i] + l[i] - D; D = 0;} else { T += D; d[i] -= D; T += (t[i] - l[i]) * 2; for (j=1; j<=d[i]/r; j++) { printf("%lld ", T); T += r; } if (d[i] % r != 0) { printf("%lld ", T); T += d[i]%r; D = r - d[i]%r; } else D = 0; } } } printf("\n"); } return 0; }
[ "totoro97@outlook.com" ]
totoro97@outlook.com
2384bfd42c200622b15a458a61c35767156818b5
781964e465e1d49b3cd44eb69a333474916d159b
/gr/gr1/execution_queue.h
4a65c88f9b68bc09b9c177aa529befbd0bb97ca7
[]
no_license
aaalexandrov/Alex
3742d25c6d30c80c7929631b394e1387028edc01
7c7aed6cb3e5897fe91cf324c79425042ba3488a
refs/heads/master
2023-08-19T10:58:54.633930
2023-08-16T23:27:10
2023-08-16T23:27:10
3,391,809
2
0
null
2022-12-01T21:42:36
2012-02-08T21:55:15
C++
UTF-8
C++
false
false
2,820
h
#pragma once #include "definitions.h" #include "rttr/rttr_enable.h" #include "util/multithread.h" #include "util/utl.h" DISABLE_WARNING_PUSH DISABLE_WARNING_CONVERSION_TO_SMALLER_TYPE #include "taskflow/taskflow.hpp" DISABLE_WARNING_POP NAMESPACE_BEGIN(gr1) class OutputPass; class PassDependency { RTTR_ENABLE() public: PassDependency(OutputPass *srcPass, OutputPass *dstPass) : _srcPass(srcPass), _dstPass(dstPass) {} virtual ~PassDependency() {} OutputPass *_srcPass, *_dstPass; }; struct PassDependencyTracker { using PassDependencyCreateFunc = std::function<std::unique_ptr<PassDependency>(OutputPass*, OutputPass*)>; void SetPassDependencyCreator(PassDependencyCreateFunc creator); void AddDependency(OutputPass *srcPass, OutputPass *dstPass); void Clear(); void ForDependencies(OutputPass *pass, DependencyType dependencyType, std::function<void(PassDependency*)> dependencyFunc); bool HasDependencies(OutputPass *pass, DependencyType dependencyType); private: PassDependencyCreateFunc _passDependencyCreator = [](OutputPass *srcPass, OutputPass *dstPass) { return std::make_unique<PassDependency>(srcPass, dstPass); }; std::unordered_set<std::unique_ptr<PassDependency>> _dependencies; std::unordered_multimap<OutputPass*, PassDependency*> _srcToDependency, _dstToDependency; }; struct PassScheduler { void AddPass(OutputPass *pass, util::SharedQueue<OutputPass*> &doneQueue); void AddDependency(OutputPass *srcPass, OutputPass *dstPass); void Clear(); tf::Task GetPassTask(OutputPass *pass); PassDependencyTracker _passDependencies; std::unordered_map<OutputPass*, tf::Task> _pass2Task; tf::Taskflow _prepareTasks; }; class Device; class OutputPass; class Resource; class FinalPass; class ExecutionQueue { RTTR_ENABLE() public: ExecutionQueue(Device &device); virtual ~ExecutionQueue() {} virtual void EnqueuePass(std::shared_ptr<OutputPass> const &pass); virtual void ExecutePasses(); template<typename DeviceType> DeviceType *GetDevice() { return static_cast<DeviceType*>(_device); } protected: virtual void WaitExecutionFinished(); virtual void CleanupAfterExecution(); virtual void Prepare(); virtual void Submit(); void ProcessPassDependencies(OutputPass *pass); virtual void ProcessPassesDependencies(); struct ResourceStateData { ResourceState _state; OutputPass *_outputOfPass = nullptr; }; ResourceStateData &GetResourceStateData(Resource* resource); Device *_device; std::shared_ptr<FinalPass> _finalPass; tf::Executor _taskExecutor; bool _executing = false; util::SharedQueue<OutputPass*> _submitQueue; PassScheduler _passScheduler; std::vector<std::shared_ptr<OutputPass>> _passes; std::vector<std::shared_ptr<OutputPass>> _dependencyPasses; std::unordered_map<Resource*, ResourceStateData> _resourceStates; }; NAMESPACE_END(gr1)
[ "greyalex2003@yahoo.com" ]
greyalex2003@yahoo.com
67461b1c40b82d0917a4586285dc93918d06c80c
b28305dab0be0e03765c62b97bcd7f49a4f8073d
/chrome/browser/ssl/security_state_tab_helper.cc
1da4480f5a154920e38754d02e197835f82a94c3
[ "BSD-3-Clause" ]
permissive
svarvel/browser-android-tabs
9e5e27e0a6e302a12fe784ca06123e5ce090ced5
bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f
refs/heads/base-72.0.3626.105
2020-04-24T12:16:31.442851
2019-08-02T19:15:36
2019-08-02T19:15:36
171,950,555
1
2
NOASSERTION
2019-08-02T19:15:37
2019-02-21T21:47:44
null
UTF-8
C++
false
false
16,094
cc
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ssl/security_state_tab_helper.h" #include "base/bind.h" #include "base/command_line.h" #include "base/feature_list.h" #include "base/metrics/field_trial_params.h" #include "base/metrics/histogram_macros.h" #include "base/strings/pattern.h" #include "base/strings/string_util.h" #include "base/time/time.h" #include "build/build_config.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/safe_browsing/safe_browsing_service.h" #include "chrome/browser/safe_browsing/ui_manager.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" #include "chrome/common/secure_origin_whitelist.h" #include "components/omnibox/browser/omnibox_field_trial.h" #include "components/prefs/pref_service.h" #include "components/safe_browsing/features.h" #include "components/security_state/content/content_utils.h" #include "content/public/browser/browser_context.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/navigation_handle.h" #include "content/public/browser/render_frame_host.h" #include "content/public/browser/ssl_status.h" #include "content/public/browser/web_contents.h" #include "content/public/common/origin_util.h" #include "net/base/net_errors.h" #include "net/cert/x509_certificate.h" #include "net/ssl/ssl_cipher_suite_names.h" #include "net/ssl/ssl_connection_status_flags.h" #include "third_party/boringssl/src/include/openssl/ssl.h" #include "url/origin.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/policy/policy_cert_service.h" #include "chrome/browser/chromeos/policy/policy_cert_service_factory.h" #endif // defined(OS_CHROMEOS) #if defined(SAFE_BROWSING_DB_LOCAL) #include "chrome/browser/safe_browsing/chrome_password_protection_service.h" #endif namespace { void RecordSecurityLevel(const security_state::SecurityInfo& security_info) { if (security_info.scheme_is_cryptographic) { UMA_HISTOGRAM_ENUMERATION("Security.SecurityLevel.CryptographicScheme", security_info.security_level, security_state::SECURITY_LEVEL_COUNT); } else { UMA_HISTOGRAM_ENUMERATION("Security.SecurityLevel.NoncryptographicScheme", security_info.security_level, security_state::SECURITY_LEVEL_COUNT); } } bool IsOriginSecureWithWhitelist( const std::vector<std::string>& secure_origins_and_patterns, const GURL& url) { if (content::IsOriginSecure(url)) return true; url::Origin origin = url::Origin::Create(url); if (base::ContainsValue(secure_origins_and_patterns, origin.Serialize())) return true; for (const auto& origin_or_pattern : secure_origins_and_patterns) { if (base::MatchPattern(origin.host(), origin_or_pattern)) return true; } return false; } } // namespace using safe_browsing::SafeBrowsingUIManager; SecurityStateTabHelper::SecurityStateTabHelper( content::WebContents* web_contents) : content::WebContentsObserver(web_contents), logged_http_warning_on_current_navigation_(false), is_incognito_(false) { content::BrowserContext* context = web_contents->GetBrowserContext(); if (context->IsOffTheRecord() && !Profile::FromBrowserContext(context)->IsGuestSession()) { is_incognito_ = true; } } SecurityStateTabHelper::~SecurityStateTabHelper() {} void SecurityStateTabHelper::GetSecurityInfo( security_state::SecurityInfo* result) const { security_state::GetSecurityInfo( GetVisibleSecurityState(), UsedPolicyInstalledCertificate(), base::BindRepeating(&IsOriginSecureWithWhitelist, GetSecureOriginsAndPatterns()), result); } void SecurityStateTabHelper::DidStartNavigation( content::NavigationHandle* navigation_handle) { if (navigation_handle->IsFormSubmission()) { security_state::SecurityInfo info; GetSecurityInfo(&info); UMA_HISTOGRAM_ENUMERATION("Security.SecurityLevel.FormSubmission", info.security_level, security_state::SECURITY_LEVEL_COUNT); } if (time_of_http_warning_on_current_navigation_.is_null() || !navigation_handle->IsInMainFrame() || navigation_handle->IsSameDocument()) { return; } // Record how quickly a user leaves a site after encountering an // HTTP-bad warning. A navigation here only counts if it is a // main-frame, not-same-page navigation, since it aims to measure how // quickly a user leaves a site after seeing the HTTP warning. UMA_HISTOGRAM_LONG_TIMES( "Security.HTTPBad.NavigationStartedAfterUserWarnedAboutSensitiveInput", base::Time::Now() - time_of_http_warning_on_current_navigation_); // After recording the histogram, clear the time of the warning. A // timing histogram will not be recorded again on this page, because // the time is only set the first time the HTTP-bad warning is shown // per page. time_of_http_warning_on_current_navigation_ = base::Time(); } void SecurityStateTabHelper::DidFinishNavigation( content::NavigationHandle* navigation_handle) { // Ignore subframe navigations, same-document navigations, and navigations // that did not commit (e.g. HTTP/204 or file downloads). if (!navigation_handle->IsInMainFrame() || navigation_handle->IsSameDocument() || !navigation_handle->HasCommitted()) { return; } content::NavigationEntry* entry = web_contents()->GetController().GetLastCommittedEntry(); if (entry) { UMA_HISTOGRAM_ENUMERATION( "Security.CertificateTransparency.MainFrameNavigationCompliance", entry->GetSSL().ct_policy_compliance, net::ct::CTPolicyCompliance::CT_POLICY_COUNT); } logged_http_warning_on_current_navigation_ = false; security_state::SecurityInfo security_info; GetSecurityInfo(&security_info); if (security_info.incognito_downgraded_security_level) { web_contents()->GetMainFrame()->AddMessageToConsole( content::CONSOLE_MESSAGE_LEVEL_WARNING, "This page was loaded non-securely in an incognito mode browser. A " "warning has been added to the URL bar. For more information, see " "https://goo.gl/y8SRRv."); } if (net::IsCertStatusError(security_info.cert_status) && !net::IsCertStatusMinorError(security_info.cert_status) && !navigation_handle->IsErrorPage()) { // Record each time a user visits a site after having clicked through a // certificate warning interstitial. This is used as a baseline for // interstitial.ssl.did_user_revoke_decision2 in order to determine how // many times the re-enable warnings button is clicked, as a fraction of // the number of times it was available. UMA_HISTOGRAM_BOOLEAN("interstitial.ssl.visited_site_after_warning", true); } // Security indicator UI study (https://crbug.com/803501): Show a message in // the console to reduce developer confusion about the experimental UI // treatments for HTTPS pages with EV certificates. const std::string parameter = base::FeatureList::IsEnabled(omnibox::kSimplifyHttpsIndicator) ? base::GetFieldTrialParamValueByFeature( omnibox::kSimplifyHttpsIndicator, OmniboxFieldTrial::kSimplifyHttpsIndicatorParameterName) : std::string(); if (security_info.security_level == security_state::EV_SECURE) { if (parameter == OmniboxFieldTrial::kSimplifyHttpsIndicatorParameterEvToSecure) { web_contents()->GetMainFrame()->AddMessageToConsole( content::CONSOLE_MESSAGE_LEVEL_INFO, "As part of an experiment, Chrome temporarily shows only the " "\"Secure\" text in the address bar. Your SSL certificate with " "Extended Validation is still valid."); } if (parameter == OmniboxFieldTrial::kSimplifyHttpsIndicatorParameterBothToLock) { web_contents()->GetMainFrame()->AddMessageToConsole( content::CONSOLE_MESSAGE_LEVEL_INFO, "As part of an experiment, Chrome temporarily shows only the lock " "icon in the address bar. Your SSL certificate with Extended " "Validation is still valid."); } } } void SecurityStateTabHelper::DidChangeVisibleSecurityState() { security_state::SecurityInfo security_info; GetSecurityInfo(&security_info); RecordSecurityLevel(security_info); if (logged_http_warning_on_current_navigation_) return; if (!security_info.insecure_input_events.password_field_shown && !security_info.insecure_input_events.credit_card_field_edited) { return; } DCHECK(time_of_http_warning_on_current_navigation_.is_null()); time_of_http_warning_on_current_navigation_ = base::Time::Now(); logged_http_warning_on_current_navigation_ = true; web_contents()->GetMainFrame()->AddMessageToConsole( content::CONSOLE_MESSAGE_LEVEL_WARNING, "This page includes a password or credit card input in a non-secure " "context. A warning has been added to the URL bar. For more " "information, see https://goo.gl/zmWq3m."); // |warning_is_user_visible| will only be false if the user has set the flag // for marking HTTP pages as Dangerous. In that case, the page will be // flagged as Dangerous, but it isn't distinguished from other HTTP pages, // which is why this code records it as not-user-visible. bool warning_is_user_visible = (security_info.security_level == security_state::HTTP_SHOW_WARNING); if (security_info.insecure_input_events.credit_card_field_edited) { UMA_HISTOGRAM_BOOLEAN( "Security.HTTPBad.UserWarnedAboutSensitiveInput.CreditCard", warning_is_user_visible); } if (security_info.insecure_input_events.password_field_shown) { UMA_HISTOGRAM_BOOLEAN( "Security.HTTPBad.UserWarnedAboutSensitiveInput.Password", warning_is_user_visible); } } void SecurityStateTabHelper::WebContentsDestroyed() { if (time_of_http_warning_on_current_navigation_.is_null()) { return; } // Record how quickly the tab is closed after a user encounters an // HTTP-bad warning. This histogram will only be recorded if the // WebContents is destroyed before another navigation begins. UMA_HISTOGRAM_LONG_TIMES( "Security.HTTPBad.WebContentsDestroyedAfterUserWarnedAboutSensitiveInput", base::Time::Now() - time_of_http_warning_on_current_navigation_); } bool SecurityStateTabHelper::UsedPolicyInstalledCertificate() const { #if defined(OS_CHROMEOS) policy::PolicyCertService* service = policy::PolicyCertServiceFactory::GetForProfile( Profile::FromBrowserContext(web_contents()->GetBrowserContext())); if (service && service->UsedPolicyCertificates()) return true; #endif return false; } security_state::MaliciousContentStatus SecurityStateTabHelper::GetMaliciousContentStatus() const { content::NavigationEntry* entry = web_contents()->GetController().GetVisibleEntry(); if (!entry) return security_state::MALICIOUS_CONTENT_STATUS_NONE; safe_browsing::SafeBrowsingService* sb_service = g_browser_process->safe_browsing_service(); if (!sb_service) return security_state::MALICIOUS_CONTENT_STATUS_NONE; scoped_refptr<SafeBrowsingUIManager> sb_ui_manager = sb_service->ui_manager(); safe_browsing::SBThreatType threat_type; if (sb_ui_manager->IsUrlWhitelistedOrPendingForWebContents( entry->GetURL(), false, entry, web_contents(), false, &threat_type)) { switch (threat_type) { case safe_browsing::SB_THREAT_TYPE_UNUSED: case safe_browsing::SB_THREAT_TYPE_SAFE: case safe_browsing::SB_THREAT_TYPE_URL_PHISHING: case safe_browsing::SB_THREAT_TYPE_URL_CLIENT_SIDE_PHISHING: return security_state::MALICIOUS_CONTENT_STATUS_SOCIAL_ENGINEERING; case safe_browsing::SB_THREAT_TYPE_URL_MALWARE: case safe_browsing::SB_THREAT_TYPE_URL_CLIENT_SIDE_MALWARE: return security_state::MALICIOUS_CONTENT_STATUS_MALWARE; case safe_browsing::SB_THREAT_TYPE_URL_UNWANTED: return security_state::MALICIOUS_CONTENT_STATUS_UNWANTED_SOFTWARE; case safe_browsing::SB_THREAT_TYPE_SIGN_IN_PASSWORD_REUSE: #if defined(SAFE_BROWSING_DB_LOCAL) if (safe_browsing::ChromePasswordProtectionService:: ShouldShowPasswordReusePageInfoBubble( web_contents(), safe_browsing::LoginReputationClientRequest:: PasswordReuseEvent::SIGN_IN_PASSWORD)) { return security_state:: MALICIOUS_CONTENT_STATUS_SIGN_IN_PASSWORD_REUSE; } // If user has already changed Gaia password, returns the regular // social engineering content status. return security_state::MALICIOUS_CONTENT_STATUS_SOCIAL_ENGINEERING; #endif case safe_browsing::SB_THREAT_TYPE_ENTERPRISE_PASSWORD_REUSE: #if defined(SAFE_BROWSING_DB_LOCAL) if (safe_browsing::ChromePasswordProtectionService:: ShouldShowPasswordReusePageInfoBubble( web_contents(), safe_browsing::LoginReputationClientRequest:: PasswordReuseEvent::ENTERPRISE_PASSWORD)) { return security_state:: MALICIOUS_CONTENT_STATUS_ENTERPRISE_PASSWORD_REUSE; } // If user has already changed Gaia password, returns the regular // social engineering content status. return security_state::MALICIOUS_CONTENT_STATUS_SOCIAL_ENGINEERING; #endif case safe_browsing::SB_THREAT_TYPE_BILLING: return base::FeatureList::IsEnabled(safe_browsing::kBillingInterstitial) ? security_state::MALICIOUS_CONTENT_STATUS_BILLING : security_state::MALICIOUS_CONTENT_STATUS_NONE; case safe_browsing:: DEPRECATED_SB_THREAT_TYPE_URL_PASSWORD_PROTECTION_PHISHING: case safe_browsing::SB_THREAT_TYPE_URL_BINARY_MALWARE: case safe_browsing::SB_THREAT_TYPE_EXTENSION: case safe_browsing::SB_THREAT_TYPE_BLACKLISTED_RESOURCE: case safe_browsing::SB_THREAT_TYPE_API_ABUSE: case safe_browsing::SB_THREAT_TYPE_SUBRESOURCE_FILTER: case safe_browsing::SB_THREAT_TYPE_CSD_WHITELIST: case safe_browsing::SB_THREAT_TYPE_AD_SAMPLE: case safe_browsing::SB_THREAT_TYPE_SUSPICIOUS_SITE: // These threat types are not currently associated with // interstitials, and thus resources with these threat types are // not ever whitelisted or pending whitelisting. NOTREACHED(); break; } } return security_state::MALICIOUS_CONTENT_STATUS_NONE; } std::unique_ptr<security_state::VisibleSecurityState> SecurityStateTabHelper::GetVisibleSecurityState() const { auto state = security_state::GetVisibleSecurityState(web_contents()); // Malware status might already be known even if connection security // information is still being initialized, thus no need to check for that. state->malicious_content_status = GetMaliciousContentStatus(); state->is_incognito = is_incognito_; return state; } std::vector<std::string> SecurityStateTabHelper::GetSecureOriginsAndPatterns() const { const base::CommandLine& command_line = *base::CommandLine::ForCurrentProcess(); Profile* profile = Profile::FromBrowserContext(web_contents()->GetBrowserContext()); PrefService* prefs = profile->GetPrefs(); std::string origins_str = ""; if (command_line.HasSwitch(switches::kUnsafelyTreatInsecureOriginAsSecure)) { origins_str = command_line.GetSwitchValueASCII( switches::kUnsafelyTreatInsecureOriginAsSecure); } else if (prefs->HasPrefPath(prefs::kUnsafelyTreatInsecureOriginAsSecure)) { origins_str = prefs->GetString(prefs::kUnsafelyTreatInsecureOriginAsSecure); } return secure_origin_whitelist::ParseWhitelist(origins_str); }
[ "artem@brave.com" ]
artem@brave.com
7cb6ced015e3f8cffe90cb7a972d25a3b02dded2
eefd037baf71544d94f19abfdaae59e0af638b02
/gdal-2.0.0/frmts/raw/lcpdataset.cpp
836df9cd321c900fd6696ff773cce326225ca571
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-info-zip-2005-02", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "MIT", "SunPro" ]
permissive
avtomaton/gnu-win64
7128b677f4b9a9d1424b0ca44cc7c5fb3ce41fe1
66f7c3cc224f027300f944059262cf70f3f088e8
refs/heads/master
2020-05-17T00:12:03.638953
2015-07-29T14:12:44
2015-07-29T14:12:44
37,531,150
3
0
null
null
null
null
UTF-8
C++
false
false
62,403
cpp
/****************************************************************************** * $Id: lcpdataset.cpp 28053 2014-12-04 09:31:07Z rouault $ * * Project: LCP Driver * Purpose: FARSITE v.4 Landscape file (.lcp) reader for GDAL * Author: Chris Toney * ****************************************************************************** * Copyright (c) 2008, Chris Toney * Copyright (c) 2008-2011, Even Rouault <even dot rouault at mines-paris dot org> * Copyright (c) 2013, Kyle Shannon <kyle at pobox dot com> * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. ****************************************************************************/ #include "rawdataset.h" #include "cpl_port.h" #include "cpl_string.h" #include "ogr_spatialref.h" CPL_CVSID("$Id: lcpdataset.cpp 28053 2014-12-04 09:31:07Z rouault $"); CPL_C_START void GDALRegister_LCP(void); CPL_C_END #define LCP_HEADER_SIZE 7316 #define LCP_MAX_BANDS 10 #define LCP_MAX_PATH 256 #define LCP_MAX_DESC 512 #define LCP_MAX_CLASSES 100 /************************************************************************/ /* ==================================================================== */ /* LCPDataset */ /* ==================================================================== */ /************************************************************************/ class LCPDataset : public RawDataset { VSILFILE *fpImage; // image data file. char pachHeader[LCP_HEADER_SIZE]; CPLString osPrjFilename; char *pszProjection; static CPLErr ClassifyBandData( GDALRasterBand *poBand, GInt32 *pnNumClasses, GInt32 *panClasses ); public: LCPDataset(); ~LCPDataset(); virtual char **GetFileList(void); virtual CPLErr GetGeoTransform( double * ); static int Identify( GDALOpenInfo * ); static GDALDataset *Open( GDALOpenInfo * ); static GDALDataset *CreateCopy( const char * pszFilename, GDALDataset *poSrcDS, int bStrict, char ** papszOptions, GDALProgressFunc pfnProgress, void * pProgressData ); virtual const char *GetProjectionRef(void); int bHaveProjection; }; /************************************************************************/ /* LCPDataset() */ /************************************************************************/ LCPDataset::LCPDataset() { fpImage = NULL; pszProjection = CPLStrdup( "" ); bHaveProjection = FALSE; } /************************************************************************/ /* ~LCPDataset() */ /************************************************************************/ LCPDataset::~LCPDataset() { FlushCache(); if( fpImage != NULL ) VSIFCloseL( fpImage ); CPLFree(pszProjection); } /************************************************************************/ /* GetGeoTransform() */ /************************************************************************/ CPLErr LCPDataset::GetGeoTransform( double * padfTransform ) { double dfEast, dfWest, dfNorth, dfSouth, dfCellX, dfCellY; memcpy(&dfEast, pachHeader + 4172, sizeof(double)); memcpy(&dfWest, pachHeader + 4180, sizeof(double)); memcpy(&dfNorth, pachHeader + 4188, sizeof(double)); memcpy(&dfSouth, pachHeader + 4196, sizeof(double)); memcpy(&dfCellX, pachHeader + 4208, sizeof(double)); memcpy(&dfCellY, pachHeader + 4216, sizeof(double)); CPL_LSBPTR64(&dfEast); CPL_LSBPTR64(&dfWest); CPL_LSBPTR64(&dfNorth); CPL_LSBPTR64(&dfSouth); CPL_LSBPTR64(&dfCellX); CPL_LSBPTR64(&dfCellY); padfTransform[0] = dfWest; padfTransform[3] = dfNorth; padfTransform[1] = dfCellX; padfTransform[2] = 0.0; padfTransform[4] = 0.0; padfTransform[5] = -1 * dfCellY; return CE_None; } /************************************************************************/ /* Identify() */ /************************************************************************/ int LCPDataset::Identify( GDALOpenInfo * poOpenInfo ) { /* -------------------------------------------------------------------- */ /* Verify that this is a FARSITE v.4 LCP file */ /* -------------------------------------------------------------------- */ if( poOpenInfo->nHeaderBytes < 50 ) return FALSE; /* check if first three fields have valid data */ if( (CPL_LSBINT32PTR(poOpenInfo->pabyHeader) != 20 && CPL_LSBINT32PTR(poOpenInfo->pabyHeader) != 21) || (CPL_LSBINT32PTR(poOpenInfo->pabyHeader+4) != 20 && CPL_LSBINT32PTR(poOpenInfo->pabyHeader+4) != 21) || (CPL_LSBINT32PTR(poOpenInfo->pabyHeader+8) < -90 || CPL_LSBINT32PTR(poOpenInfo->pabyHeader+8) > 90) ) { return FALSE; } return TRUE; } /************************************************************************/ /* GetFileList() */ /************************************************************************/ char **LCPDataset::GetFileList() { char **papszFileList = GDALPamDataset::GetFileList(); if( bHaveProjection ) { papszFileList = CSLAddString( papszFileList, osPrjFilename ); } return papszFileList; } /************************************************************************/ /* Open() */ /************************************************************************/ GDALDataset *LCPDataset::Open( GDALOpenInfo * poOpenInfo ) { /* -------------------------------------------------------------------- */ /* Verify that this is a FARSITE LCP file */ /* -------------------------------------------------------------------- */ if( !Identify( poOpenInfo ) ) return NULL; /* -------------------------------------------------------------------- */ /* Confirm the requested access is supported. */ /* -------------------------------------------------------------------- */ if( poOpenInfo->eAccess == GA_Update ) { CPLError( CE_Failure, CPLE_NotSupported, "The LCP driver does not support update access to existing" " datasets." ); return NULL; } /* -------------------------------------------------------------------- */ /* Create a corresponding GDALDataset. */ /* -------------------------------------------------------------------- */ LCPDataset *poDS; VSILFILE *fpImage; fpImage = VSIFOpenL(poOpenInfo->pszFilename, "rb"); if (fpImage == NULL) return NULL; poDS = new LCPDataset(); poDS->fpImage = fpImage; /* -------------------------------------------------------------------- */ /* Read the header and extract some information. */ /* -------------------------------------------------------------------- */ int bHaveCrownFuels, bHaveGroundFuels; int nBands, i; long nWidth = -1, nHeight = -1; int nTemp, nTemp2; char szTemp[32]; char* pszList; VSIFSeekL( poDS->fpImage, 0, SEEK_SET ); if (VSIFReadL( poDS->pachHeader, 1, LCP_HEADER_SIZE, poDS->fpImage ) != LCP_HEADER_SIZE) { CPLError(CE_Failure, CPLE_FileIO, "File too short"); delete poDS; return NULL; } nWidth = CPL_LSBINT32PTR (poDS->pachHeader + 4164); nHeight = CPL_LSBINT32PTR (poDS->pachHeader + 4168); poDS->nRasterXSize = nWidth; poDS->nRasterYSize = nHeight; if (!GDALCheckDatasetDimensions(poDS->nRasterXSize, poDS->nRasterYSize)) { delete poDS; return NULL; } // crown fuels = canopy height, canopy base height, canopy bulk density // 21 = have them, 20 = don't have them bHaveCrownFuels = ( CPL_LSBINT32PTR (poDS->pachHeader + 0) - 20 ); // ground fuels = duff loading, coarse woody bHaveGroundFuels = ( CPL_LSBINT32PTR (poDS->pachHeader + 4) - 20 ); if( bHaveCrownFuels ) { if( bHaveGroundFuels ) nBands = 10; else nBands = 8; } else { if( bHaveGroundFuels ) nBands = 7; else nBands = 5; } // add dataset-level metadata nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 8); sprintf(szTemp, "%d", nTemp); poDS->SetMetadataItem( "LATITUDE", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 4204); if ( nTemp == 0 ) poDS->SetMetadataItem( "LINEAR_UNIT", "Meters" ); if ( nTemp == 1 ) poDS->SetMetadataItem( "LINEAR_UNIT", "Feet" ); poDS->pachHeader[LCP_HEADER_SIZE-1] = '\0'; poDS->SetMetadataItem( "DESCRIPTION", poDS->pachHeader + 6804 ); /* -------------------------------------------------------------------- */ /* Create band information objects. */ /* -------------------------------------------------------------------- */ int iPixelSize; iPixelSize = nBands * 2; int bNativeOrder; if (nWidth > INT_MAX / iPixelSize) { CPLError( CE_Failure, CPLE_AppDefined, "Int overflow occured"); delete poDS; return NULL; } #ifdef CPL_LSB bNativeOrder = TRUE; #else bNativeOrder = FALSE; #endif pszList = (char*)CPLMalloc(2048); pszList[0] = '\0'; for( int iBand = 1; iBand <= nBands; iBand++ ) { GDALRasterBand *poBand = NULL; poBand = new RawRasterBand( poDS, iBand, poDS->fpImage, LCP_HEADER_SIZE + ((iBand-1)*2), iPixelSize, iPixelSize * nWidth, GDT_Int16, bNativeOrder, TRUE ); poDS->SetBand(iBand, poBand); switch ( iBand ) { case 1: poBand->SetDescription("Elevation"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4224); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ELEVATION_UNIT", szTemp ); if ( nTemp == 0 ) poBand->SetMetadataItem( "ELEVATION_UNIT_NAME", "Meters" ); if ( nTemp == 1 ) poBand->SetMetadataItem( "ELEVATION_UNIT_NAME", "Feet" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 44); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ELEVATION_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 48); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ELEVATION_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 52); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ELEVATION_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 4244 + 255) = '\0'; poBand->SetMetadataItem( "ELEVATION_FILE", poDS->pachHeader + 4244 ); break; case 2: poBand->SetDescription("Slope"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4226); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "SLOPE_UNIT", szTemp ); if ( nTemp == 0 ) poBand->SetMetadataItem( "SLOPE_UNIT_NAME", "Degrees" ); if ( nTemp == 1 ) poBand->SetMetadataItem( "SLOPE_UNIT_NAME", "Percent" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 456); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "SLOPE_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 460); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "SLOPE_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 464); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "SLOPE_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 4500 + 255) = '\0'; poBand->SetMetadataItem( "SLOPE_FILE", poDS->pachHeader + 4500 ); break; case 3: poBand->SetDescription("Aspect"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4228); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ASPECT_UNIT", szTemp ); if ( nTemp == 0 ) poBand->SetMetadataItem( "ASPECT_UNIT_NAME", "Grass categories" ); if ( nTemp == 1 ) poBand->SetMetadataItem( "ASPECT_UNIT_NAME", "Grass degrees" ); if ( nTemp == 2 ) poBand->SetMetadataItem( "ASPECT_UNIT_NAME", "Azimuth degrees" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 868); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ASPECT_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 872); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ASPECT_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 876); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "ASPECT_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 4756 + 255) = '\0'; poBand->SetMetadataItem( "ASPECT_FILE", poDS->pachHeader + 4756 ); break; case 4: int nMinFM, nMaxFM; poBand->SetDescription("Fuel models"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4230); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "FUEL_MODEL_OPTION", szTemp ); if ( nTemp == 0 ) poBand->SetMetadataItem( "FUEL_MODEL_OPTION_DESC", "no custom models AND no conversion file needed" ); if ( nTemp == 1 ) poBand->SetMetadataItem( "FUEL_MODEL_OPTION_DESC", "custom models BUT no conversion file needed" ); if ( nTemp == 2 ) poBand->SetMetadataItem( "FUEL_MODEL_OPTION_DESC", "no custom models BUT conversion file needed" ); if ( nTemp == 3 ) poBand->SetMetadataItem( "FUEL_MODEL_OPTION_DESC", "custom models AND conversion file needed" ); nMinFM = CPL_LSBINT32PTR (poDS->pachHeader + 1280); sprintf(szTemp, "%d", nMinFM); poBand->SetMetadataItem( "FUEL_MODEL_MIN", szTemp ); nMaxFM = CPL_LSBINT32PTR (poDS->pachHeader + 1284); sprintf(szTemp, "%d", nMaxFM); poBand->SetMetadataItem( "FUEL_MODEL_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 1288); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "FUEL_MODEL_NUM_CLASSES", szTemp ); if (nTemp > 0 && nTemp <= 100) { strcpy(pszList, ""); for ( i = 0; i <= nTemp; i++ ) { nTemp2 = CPL_LSBINT32PTR (poDS->pachHeader + (1292+(i*4))) ; if ( nTemp2 >= nMinFM && nTemp2 <= nMaxFM ) { sprintf(szTemp, "%d", nTemp2); strcat(pszList, szTemp); if (i < (nTemp) ) strcat(pszList, ","); } } } poBand->SetMetadataItem( "FUEL_MODEL_VALUES", pszList ); *(poDS->pachHeader + 5012 + 255) = '\0'; poBand->SetMetadataItem( "FUEL_MODEL_FILE", poDS->pachHeader + 5012 ); break; case 5: poBand->SetDescription("Canopy cover"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4232); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_COV_UNIT", szTemp ); if ( nTemp == 0 ) poBand->SetMetadataItem( "CANOPY_COV_UNIT_NAME", "Categories (0-4)" ); if ( nTemp == 1 ) poBand->SetMetadataItem( "CANOPY_COV_UNIT_NAME", "Percent" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 1692); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_COV_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 1696); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_COV_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 1700); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_COV_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 5268 + 255) = '\0'; poBand->SetMetadataItem( "CANOPY_COV_FILE", poDS->pachHeader + 5268 ); break; case 6: if(bHaveCrownFuels) { poBand->SetDescription("Canopy height"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4234); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_HT_UNIT", szTemp ); if ( nTemp == 1 ) poBand->SetMetadataItem( "CANOPY_HT_UNIT_NAME", "Meters" ); if ( nTemp == 2 ) poBand->SetMetadataItem( "CANOPY_HT_UNIT_NAME", "Feet" ); if ( nTemp == 3 ) poBand->SetMetadataItem( "CANOPY_HT_UNIT_NAME", "Meters x 10" ); if ( nTemp == 4 ) poBand->SetMetadataItem( "CANOPY_HT_UNIT_NAME", "Feet x 10" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2104); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_HT_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2108); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_HT_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2112); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CANOPY_HT_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 5524 + 255) = '\0'; poBand->SetMetadataItem( "CANOPY_HT_FILE", poDS->pachHeader + 5524 ); } else { poBand->SetDescription("Duff"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4240); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_UNIT", szTemp ); if ( nTemp == 1 ) poBand->SetMetadataItem( "DUFF_UNIT_NAME", "Mg/ha" ); if ( nTemp == 2 ) poBand->SetMetadataItem( "DUFF_UNIT_NAME", "t/ac" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3340); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3344); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3348); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 6292 + 255) = '\0'; poBand->SetMetadataItem( "DUFF_FILE", poDS->pachHeader + 6292 ); } break; case 7: if(bHaveCrownFuels) { poBand->SetDescription("Canopy base height"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4236); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBH_UNIT", szTemp ); if ( nTemp == 1 ) poBand->SetMetadataItem( "CBH_UNIT_NAME", "Meters" ); if ( nTemp == 2 ) poBand->SetMetadataItem( "CBH_UNIT_NAME", "Feet" ); if ( nTemp == 3 ) poBand->SetMetadataItem( "CBH_UNIT_NAME", "Meters x 10" ); if ( nTemp == 4 ) poBand->SetMetadataItem( "CBH_UNIT_NAME", "Feet x 10" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2516); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBH_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2520); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBH_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2524); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBH_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 5780 + 255) = '\0'; poBand->SetMetadataItem( "CBH_FILE", poDS->pachHeader + 5780 ); } else { poBand->SetDescription("Coarse woody debris"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4242); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_OPTION", szTemp ); //if ( nTemp == 1 ) // poBand->SetMetadataItem( "CWD_UNIT_DESC", "?" ); //if ( nTemp == 2 ) // poBand->SetMetadataItem( "CWD_UNIT_DESC", "?" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3752); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3756); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3760); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 6548 + 255) = '\0'; poBand->SetMetadataItem( "CWD_FILE", poDS->pachHeader + 6548 ); } break; case 8: poBand->SetDescription("Canopy bulk density"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4238); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBD_UNIT", szTemp ); if ( nTemp == 1 ) poBand->SetMetadataItem( "CBD_UNIT_NAME", "kg/m^3" ); if ( nTemp == 2 ) poBand->SetMetadataItem( "CBD_UNIT_NAME", "lb/ft^3" ); if ( nTemp == 3 ) poBand->SetMetadataItem( "CBD_UNIT_NAME", "kg/m^3 x 100" ); if ( nTemp == 4 ) poBand->SetMetadataItem( "CBD_UNIT_NAME", "lb/ft^3 x 1000" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2928); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBD_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2932); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBD_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 2936); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CBD_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 6036 + 255) = '\0'; poBand->SetMetadataItem( "CBD_FILE", poDS->pachHeader + 6036 ); break; case 9: poBand->SetDescription("Duff"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4240); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_UNIT", szTemp ); if ( nTemp == 1 ) poBand->SetMetadataItem( "DUFF_UNIT_NAME", "Mg/ha" ); if ( nTemp == 2 ) poBand->SetMetadataItem( "DUFF_UNIT_NAME", "t/ac" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3340); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3344); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3348); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "DUFF_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 6292 + 255) = '\0'; poBand->SetMetadataItem( "DUFF_FILE", poDS->pachHeader + 6292 ); break; case 10: poBand->SetDescription("Coarse woody debris"); nTemp = CPL_LSBINT16PTR (poDS->pachHeader + 4242); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_OPTION", szTemp ); //if ( nTemp == 1 ) // poBand->SetMetadataItem( "CWD_UNIT_DESC", "?" ); //if ( nTemp == 2 ) // poBand->SetMetadataItem( "CWD_UNIT_DESC", "?" ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3752); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_MIN", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3756); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_MAX", szTemp ); nTemp = CPL_LSBINT32PTR (poDS->pachHeader + 3760); sprintf(szTemp, "%d", nTemp); poBand->SetMetadataItem( "CWD_NUM_CLASSES", szTemp ); *(poDS->pachHeader + 6548 + 255) = '\0'; poBand->SetMetadataItem( "CWD_FILE", poDS->pachHeader + 6548 ); break; } } /* -------------------------------------------------------------------- */ /* Try to read projection file. */ /* -------------------------------------------------------------------- */ char *pszDirname, *pszBasename; VSIStatBufL sStatBuf; pszDirname = CPLStrdup(CPLGetPath(poOpenInfo->pszFilename)); pszBasename = CPLStrdup(CPLGetBasename(poOpenInfo->pszFilename)); poDS->osPrjFilename = CPLFormFilename( pszDirname, pszBasename, "prj" ); int nRet = VSIStatL( poDS->osPrjFilename, &sStatBuf ); if( nRet != 0 && VSIIsCaseSensitiveFS(poDS->osPrjFilename)) { poDS->osPrjFilename = CPLFormFilename( pszDirname, pszBasename, "PRJ" ); nRet = VSIStatL( poDS->osPrjFilename, &sStatBuf ); } if( nRet == 0 ) { OGRSpatialReference oSRS; char** papszPrj = CSLLoad( poDS->osPrjFilename ); CPLDebug( "LCP", "Loaded SRS from %s", poDS->osPrjFilename.c_str() ); if( oSRS.importFromESRI( papszPrj ) == OGRERR_NONE ) { CPLFree( poDS->pszProjection ); oSRS.exportToWkt( &(poDS->pszProjection) ); poDS->bHaveProjection = TRUE; } CSLDestroy(papszPrj); } CPLFree( pszDirname ); CPLFree( pszBasename ); /* -------------------------------------------------------------------- */ /* Initialize any PAM information. */ /* -------------------------------------------------------------------- */ poDS->SetDescription( poOpenInfo->pszFilename ); poDS->TryLoadXML(); /* -------------------------------------------------------------------- */ /* Check for external overviews. */ /* -------------------------------------------------------------------- */ poDS->oOvManager.Initialize( poDS, poOpenInfo->pszFilename, poOpenInfo->GetSiblingFiles() ); CPLFree(pszList); return( poDS ); } /************************************************************************/ /* ClassifyBandData() */ /* Classify a band and store 99 or fewer unique values. If there are */ /* more than 99 unique values, then set pnNumClasses to -1 as a flag */ /* that represents this. These are legacy values in the header, and */ /* while we should never deprecate them, we could possibly not */ /* calculate them by default. */ /************************************************************************/ CPLErr LCPDataset::ClassifyBandData( GDALRasterBand *poBand, GInt32 *pnNumClasses, GInt32 *panClasses ) { if( pnNumClasses == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Invalid pointer for panClasses" ); return CE_Failure; } if( panClasses == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Invalid pointer for panClasses" ); *pnNumClasses = -1; return CE_Failure; } if( poBand == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Invalid band passed to ClassifyBandData()" ); *pnNumClasses = -1; memset( panClasses, 0, 400 ); return CE_Failure; } int nXSize = poBand->GetXSize(); int nYSize = poBand->GetYSize(); double dfMax, dfDummy; poBand->GetStatistics( FALSE, TRUE, &dfDummy, &dfMax, &dfDummy, &dfDummy ); int nSpan = (int)dfMax; GInt16 *panValues = (GInt16*)CPLMalloc( sizeof( GInt16 ) * nXSize ); GByte *pabyFlags = (GByte*)CPLMalloc( sizeof( GByte ) * nSpan + 1 ); memset( pabyFlags, 0, nSpan + 1 ); int nFound = 0; int bTooMany = FALSE; CPLErr eErr = CE_None; for( int iLine = 0; iLine < nYSize; iLine++ ) { eErr = poBand->RasterIO( GF_Read, 0, iLine, nXSize, 1, panValues, nXSize, 1, GDT_Int16, 0, 0, NULL ); for( int iPixel = 0; iPixel < nXSize; iPixel++ ) { if( panValues[iPixel] == -9999 ) { continue; } if( nFound > 99 ) { CPLDebug( "LCP", "Found more that 100 unique values in " \ "band %d. Not 'classifying' the data.", poBand->GetBand() ); nFound = -1; bTooMany = TRUE; break; } if( bTooMany ) { break; } if( pabyFlags[panValues[iPixel]] == 0 ) { pabyFlags[panValues[iPixel]] = 1; nFound++; } } } CPLAssert( nFound <= 100 ); /* ** The classes are always padded with a leading 0. This was for aligning ** offsets, or making it a 1-based array instead of 0-based. */ panClasses[0] = 0; int nIndex = 1; for( int j = 0; j < nSpan + 1; j++ ) { if( pabyFlags[j] == 1 ) { panClasses[nIndex++] = j; } } *pnNumClasses = nFound; CPLFree( (void*)pabyFlags ); CPLFree( (void*)panValues ); return eErr; } /************************************************************************/ /* CreateCopy() */ /************************************************************************/ GDALDataset *LCPDataset::CreateCopy( const char * pszFilename, GDALDataset * poSrcDS, int bStrict, char ** papszOptions, GDALProgressFunc pfnProgress, void * pProgressData ) { int nBands = poSrcDS->GetRasterCount(); int nXSize = poSrcDS->GetRasterXSize(); int nYSize = poSrcDS->GetRasterYSize(); /* -------------------------------------------------------------------- */ /* Verify input options. */ /* -------------------------------------------------------------------- */ if( nBands != 5 && nBands != 7 && nBands != 8 && nBands != 10 ) { CPLError( CE_Failure, CPLE_NotSupported, "LCP driver doesn't support %d bands. Must be 5, 7, 8 " "or 10 bands.", nBands ); return NULL; } GDALDataType eType = poSrcDS->GetRasterBand( 1 )->GetRasterDataType(); if( eType != GDT_Int16 && bStrict ) { CPLError( CE_Failure, CPLE_AppDefined, "LCP only supports 16-bit signed integer data types." ); return NULL; } else if( eType != GDT_Int16 ) { CPLError( CE_Warning, CPLE_AppDefined, "Setting data type to 16-bit integer." ); } /* -------------------------------------------------------------------- */ /* What schema do we have (ground/crown fuels) */ /* -------------------------------------------------------------------- */ int bHaveCrownFuels = FALSE; int bHaveGroundFuels = FALSE; if( nBands == 8 || nBands == 10 ) { bHaveCrownFuels = TRUE; } if( nBands == 7 || nBands == 10 ) { bHaveGroundFuels = TRUE; } /* ** Since units are 'configurable', we should check for user ** defined units. This is a bit cumbersome, but the user should ** be allowed to specify none to get default units/options. Use ** default units every chance we get. */ GInt16 panMetadata[LCP_MAX_BANDS]; int i; GInt32 nTemp; double dfTemp; const char *pszTemp; panMetadata[0] = 0; /* ELEVATION_UNIT */ panMetadata[1] = 0; /* SLOPE_UNIT */ panMetadata[2] = 2; /* ASPECT_UNIT */ panMetadata[3] = 0; /* FUEL_MODEL_OPTION */ panMetadata[4] = 1; /* CANOPY_COV_UNIT */ panMetadata[5] = 3; /* CANOPY_HT_UNIT */ panMetadata[6] = 3; /* CBH_UNIT */ panMetadata[7] = 3; /* CBD_UNIT */ panMetadata[8] = 1; /* DUFF_UNIT */ panMetadata[9] = 0; /* CWD_OPTION */ /* Check the units/options for user overrides */ pszTemp = CSLFetchNameValueDef( papszOptions, "ELEVATION_UNIT", "METERS" ); if( EQUALN( pszTemp, "METER", 5 ) ) { panMetadata[0] = 0; } else if( EQUAL( pszTemp, "FEET" ) || EQUAL( pszTemp, "FOOT" ) ) { panMetadata[0] = 1; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for ELEVATION_UNIT.", pszTemp ); return NULL; } pszTemp = CSLFetchNameValueDef( papszOptions, "SLOPE_UNIT", "DEGREES" ); if( EQUAL( pszTemp, "DEGREES" ) ) { panMetadata[1] = 0; } else if( EQUAL( pszTemp, "PERCENT" ) ) { panMetadata[1] = 1; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for SLOPE_UNIT.", pszTemp ); return NULL; } pszTemp = CSLFetchNameValueDef( papszOptions, "ASPECT_UNIT", "AZIMUTH_DEGREES" ); if( EQUAL( pszTemp, "GRASS_CATEGORIES" ) ) { panMetadata[2] = 0; } else if( EQUAL( pszTemp, "GRASS_DEGREES" ) ) { panMetadata[2] = 1; } else if( EQUAL( pszTemp, "AZIMUTH_DEGREES" ) ) { panMetadata[2] = 2; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for ASPECT_UNIT.", pszTemp ); return NULL; } pszTemp = CSLFetchNameValueDef( papszOptions, "FUEL_MODEL_OPTION", "NO_CUSTOM_AND_NO_FILE" ); if( EQUAL( pszTemp, "NO_CUSTOM_AND_NO_FILE" ) ) { panMetadata[3] = 0; } else if( EQUAL( pszTemp, "CUSTOM_AND_NO_FILE" ) ) { panMetadata[3] = 1; } else if( EQUAL( pszTemp, "NO_CUSTOM_AND_FILE" ) ) { panMetadata[3] = 2; } else if( EQUAL( pszTemp, "CUSTOM_AND_FILE" ) ) { panMetadata[3] = 3; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for FUEL_MODEL_OPTION.", pszTemp ); return NULL; } pszTemp = CSLFetchNameValueDef( papszOptions, "CANOPY_COV_UNIT", "PERCENT" ); if( EQUAL( pszTemp, "CATEGORIES" ) ) { panMetadata[4] = 0; } else if( EQUAL( pszTemp, "PERCENT" ) ) { panMetadata[4] = 1; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for CANOPY_COV_UNIT.", pszTemp ); return NULL; } if( bHaveCrownFuels ) { pszTemp = CSLFetchNameValueDef( papszOptions, "CANOPY_HT_UNIT", "METERS_X_10" ); if( EQUAL( pszTemp, "METERS" ) || EQUAL( pszTemp, "METER" ) ) { panMetadata[5] = 1; } else if( EQUAL( pszTemp, "FEET" ) || EQUAL( pszTemp, "FOOT" ) ) { panMetadata[5] = 2; } else if( EQUAL( pszTemp, "METERS_X_10" ) || EQUAL( pszTemp, "METER_X_10" ) ) { panMetadata[5] = 3; } else if( EQUAL( pszTemp, "FEET_X_10" ) || EQUAL( pszTemp, "FOOT_X_10" ) ) { panMetadata[5] = 4; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for CANOPY_HT_UNIT.", pszTemp ); return NULL; } pszTemp = CSLFetchNameValueDef( papszOptions, "CBH_UNIT", "METERS_X_10" ); if( EQUAL( pszTemp, "METERS" ) || EQUAL( pszTemp, "METER" ) ) { panMetadata[6] = 1; } else if( EQUAL( pszTemp, "FEET" ) || EQUAL( pszTemp, "FOOT" ) ) { panMetadata[6] = 2; } else if( EQUAL( pszTemp, "METERS_X_10" ) || EQUAL( pszTemp, "METER_X_10" ) ) { panMetadata[6] = 3; } else if( EQUAL( pszTemp, "FEET_X_10" ) || EQUAL( pszTemp, "FOOT_X_10" ) ) { panMetadata[6] = 4; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for CBH_UNIT.", pszTemp ); return NULL; } pszTemp = CSLFetchNameValueDef( papszOptions, "CBD_UNIT", "KG_PER_CUBIC_METER_X_100" ); if( EQUAL( pszTemp, "KG_PER_CUBIC_METER" ) ) { panMetadata[7] = 1; } else if( EQUAL( pszTemp, "POUND_PER_CUBIC_FOOT" ) ) { panMetadata[7] = 2; } else if( EQUAL( pszTemp, "KG_PER_CUBIC_METER_X_100" ) ) { panMetadata[7] = 3; } else if( EQUAL( pszTemp, "POUND_PER_CUBIC_FOOT_X_1000" ) ) { panMetadata[7] = 4; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for CBD_UNIT.", pszTemp ); return NULL; } } if( bHaveGroundFuels ) { pszTemp = CSLFetchNameValueDef( papszOptions, "DUFF_UNIT", "MG_PER_HECTARE_X_10" ); if( EQUAL( pszTemp, "MG_PER_HECTARE_X_10" ) ) { panMetadata[8] = 1; } else if ( EQUAL( pszTemp, "TONS_PER_ACRE_X_10" ) ) { panMetadata[8] = 2; } else { CPLError( CE_Failure, CPLE_AppDefined, "Invalid value (%s) for DUFF_UNIT.", pszTemp ); return NULL; } if( bHaveGroundFuels ) { panMetadata[9] = 1; } else { panMetadata[9] = 0; } } /* ** Calculate the stats for each band. The binary file carries along ** these metadata for display purposes(?). */ int bCalculateStats = CSLFetchBoolean( papszOptions, "CALCULATE_STATS", TRUE ); int bClassifyData = CSLFetchBoolean( papszOptions, "CLASSIFY_DATA", TRUE ); /* ** We should have stats if we classify, we'll get them anyway. */ if( bClassifyData && !bCalculateStats ) { CPLError( CE_Warning, CPLE_AppDefined, "Ignoring request to not calculate statistics, " \ "because CLASSIFY_DATA was set to ON" ); bCalculateStats = TRUE; } pszTemp = CSLFetchNameValueDef( papszOptions, "LINEAR_UNIT", "SET_FROM_SRS" ); int nLinearUnits = 0; int bSetLinearUnits = FALSE; if( EQUAL( pszTemp, "SET_FROM_SRS" ) ) { bSetLinearUnits = TRUE; } else if( EQUALN( pszTemp, "METER", 5 ) ) { nLinearUnits = 0; } else if( EQUAL( pszTemp, "FOOT" ) || EQUAL( pszTemp, "FEET" ) ) { nLinearUnits = 1; } else if( EQUALN( pszTemp, "KILOMETER", 9 ) ) { nLinearUnits = 2; } int bCalculateLatitude = TRUE; int nLatitude; if( CSLFetchNameValue( papszOptions, "LATITUDE" ) != NULL ) { bCalculateLatitude = FALSE; nLatitude = atoi( CSLFetchNameValue( papszOptions, "LATITUDE" ) ); if( nLatitude > 90 || nLatitude < -90 ) { CPLError( CE_Failure, CPLE_OpenFailed, "Invalid value (%d) for LATITUDE.", nLatitude ); return NULL; } } /* ** If no latitude is supplied, attempt to extract the central latitude ** from the image. It must be set either manually or here, otherwise ** we fail. */ double adfSrcGeoTransform[6]; poSrcDS->GetGeoTransform( adfSrcGeoTransform ); OGRSpatialReference oSrcSRS, oDstSRS; const char *pszWkt = poSrcDS->GetProjectionRef(); double dfLongitude = 0.0; double dfLatitude = 0.0; if( !bCalculateLatitude ) { dfLatitude = nLatitude; } else if( !EQUAL( pszWkt, "" ) ) { oSrcSRS.importFromWkt( (char**)&pszWkt ); oDstSRS.importFromEPSG( 4269 ); OGRCoordinateTransformation *poCT; poCT = (OGRCoordinateTransformation*) OGRCreateCoordinateTransformation( &oSrcSRS, &oDstSRS ); int nErr; if( poCT != NULL ) { dfLatitude = adfSrcGeoTransform[3] + adfSrcGeoTransform[5] * nYSize / 2; nErr = (int)poCT->Transform( 1, &dfLongitude, &dfLatitude ); if( !nErr ) { dfLatitude = 0.0; /* ** For the most part, this is an invalid LCP, but it is a ** changeable value in Flammap/Farsite, etc. We should ** probably be strict here all the time. */ CPLError( CE_Failure, CPLE_AppDefined, "Could not calculate latitude from spatial " \ "reference and LATITUDE was not set." ); return NULL; } } OGRCoordinateTransformation::DestroyCT( poCT ); } else { /* ** See comment above on failure to transform. */ CPLError( CE_Failure, CPLE_AppDefined, "Could not calculate latitude from spatial reference " \ "and LATITUDE was not set." ); return NULL; } /* ** Set the linear units if the metadata item wasn't already set, and we ** have an SRS. */ if( bSetLinearUnits && !EQUAL( pszWkt, "" ) ) { const char *pszUnit; pszUnit = oSrcSRS.GetAttrValue( "UNIT", 0 ); if( pszUnit == NULL ) { if( bStrict ) { CPLError( CE_Failure, CPLE_AppDefined, "Could not parse linear unit." ); return NULL; } else { CPLError( CE_Warning, CPLE_AppDefined, "Could not parse linear unit, using meters" ); nLinearUnits = 0; } } else { CPLDebug( "LCP", "Setting linear unit to %s", pszUnit ); if( EQUAL( pszUnit, "meter" ) || EQUAL( pszUnit, "metre" ) ) { nLinearUnits = 0; } else if( EQUAL( pszUnit, "feet" ) || EQUAL( pszUnit, "foot" ) ) { nLinearUnits = 1; } else if( EQUALN( pszUnit, "kilomet", 7 ) ) { nLinearUnits = 2; } else { if( bStrict ) nLinearUnits = 0; } pszUnit = oSrcSRS.GetAttrValue( "UNIT", 1 ); if( pszUnit != NULL ) { double dfScale = CPLAtof( pszUnit ); if( dfScale != 1.0 ) { if( bStrict ) { CPLError( CE_Failure, CPLE_AppDefined, "Unit scale is %lf (!=1.0). It is not " \ "supported.", dfScale ); return NULL; } else { CPLError( CE_Warning, CPLE_AppDefined, "Unit scale is %lf (!=1.0). It is not " \ "supported, ignoring.", dfScale ); } } } } } else if( bSetLinearUnits ) { /* ** This can be defaulted if it isn't a strict creation. */ if( bStrict ) { CPLError( CE_Failure, CPLE_AppDefined, "Could not parse linear unit from spatial reference " "and LINEAR_UNIT was not set." ); return NULL; } else { CPLError( CE_Warning, CPLE_AppDefined, "Could not parse linear unit from spatial reference " "and LINEAR_UNIT was not set, defaulting to meters." ); nLinearUnits = 0; } } const char *pszDescription = CSLFetchNameValueDef( papszOptions, "DESCRIPTION", "LCP file created by GDAL." ); /* ** Loop through and get the stats for the bands if we need to calculate ** them. This probably should be done when we copy the data over to the ** destination dataset, since we load the values into memory, but this is ** much simpler code using GDALRasterBand->GetStatistics(). We also may ** need to classify the data (number of unique values and a list of those ** values if the number of unique values is > 100. It is currently unclear ** how these data are used though, so we will implement that at some point ** if need be. */ GDALRasterBand *poBand; double *padfMin = (double*)CPLMalloc( sizeof( double ) * nBands ); double *padfMax = (double*)CPLMalloc( sizeof( double ) * nBands ); double dfDummy; GInt32 *panFound = (GInt32*)VSIMalloc2( sizeof( GInt32 ), nBands ); GInt32 *panClasses = (GInt32*)VSIMalloc3( sizeof( GInt32 ), nBands, LCP_MAX_CLASSES ); /* ** Initialize these arrays to zeros */ memset( panFound, 0, sizeof( GInt32 ) * nBands ); memset( panClasses, 0, sizeof( GInt32 ) * nBands * LCP_MAX_CLASSES ); CPLErr eErr; if( bCalculateStats ) { for( i = 0; i < nBands; i++ ) { poBand = poSrcDS->GetRasterBand( i + 1 ); eErr = poBand->GetStatistics( FALSE, TRUE, &padfMin[i], &padfMax[i], &dfDummy, &dfDummy ); if( eErr != CE_None ) { CPLError( CE_Warning, CPLE_AppDefined, "Failed to properly " \ "calculate statistics " "on band %d", i ); padfMin[i] = 0.0; padfMax[i] = 0.0; } /* ** See comment above. */ if( bClassifyData ) { eErr = ClassifyBandData( poBand, panFound+ i, panClasses + ( i * LCP_MAX_CLASSES ) ); } } } VSILFILE *fp; fp = VSIFOpenL( pszFilename, "wb" ); if( fp == NULL ) { CPLError( CE_Failure, CPLE_OpenFailed, "Unable to create lcp file %s.", pszFilename ); CPLFree( padfMin ); CPLFree( padfMax ); CPLFree( panFound ); CPLFree( panClasses ); return NULL; } /* -------------------------------------------------------------------- */ /* Write the header */ /* -------------------------------------------------------------------- */ nTemp = bHaveCrownFuels ? 21 : 20; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); nTemp = bHaveGroundFuels ? 21 : 20; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); nTemp = (GInt32)( dfLatitude + 0.5 ); CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); dfLongitude = adfSrcGeoTransform[0] + adfSrcGeoTransform[1] * nXSize; CPL_LSBPTR64( &dfLongitude ); VSIFWriteL( &dfLongitude, 8, 1, fp ); dfLongitude = adfSrcGeoTransform[0]; CPL_LSBPTR64( &dfLongitude ); VSIFWriteL( &dfLongitude, 8, 1, fp ); dfLatitude = adfSrcGeoTransform[3]; CPL_LSBPTR64( &dfLatitude ); VSIFWriteL( &dfLatitude, 8, 1, fp ); dfLatitude = adfSrcGeoTransform[3] + adfSrcGeoTransform[5] * nYSize; CPL_LSBPTR64( &dfLatitude ); VSIFWriteL( &dfLatitude, 8, 1, fp ); /* ** Swap the two classification arrays if we are writing them, and they need ** to be swapped. */ #ifdef CPL_MSB if( bClassifyData ) { GDALSwapWords( panFound, 2, nBands, 2 ); GDALSwapWords( panClasses, 2, LCP_MAX_CLASSES, 2 ); } #endif if( bCalculateStats ) { for( i = 0; i < nBands; i++ ) { /* ** If we don't have Crown fuels, but do have Ground fuels, we ** have to 'fast forward'. */ if( i == 5 && !bHaveCrownFuels && bHaveGroundFuels ) { VSIFSeekL( fp, 3340, SEEK_SET ); } nTemp = (GInt32)padfMin[i]; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); nTemp = (GInt32)padfMax[i]; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); if( bClassifyData ) { /* ** These two arrays were swapped in their entirety above. */ VSIFWriteL( panFound + i, 4, 1, fp ); VSIFWriteL( panClasses + ( i * LCP_MAX_CLASSES ), 4, 100, fp ); } else { nTemp = -1; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); VSIFSeekL( fp, 400, SEEK_CUR ); } } } else { VSIFSeekL( fp, 4164, SEEK_SET ); } CPLFree( (void*)padfMin ); CPLFree( (void*)padfMax ); CPLFree( (void*)panFound ); CPLFree( (void*)panClasses ); /* ** Should be at one of 3 locations, 2104, 3340, or 4164. */ CPLAssert( VSIFTellL( fp ) == 2104 || VSIFTellL( fp ) == 3340 || VSIFTellL( fp ) == 4164 ); VSIFSeekL( fp, 4164, SEEK_SET ); /* Image size */ nTemp = (GInt32)nXSize; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); nTemp = (GInt32)nYSize; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); /* X and Y boundaries */ /* max x */ dfTemp = adfSrcGeoTransform[0] + adfSrcGeoTransform[1] * nXSize; CPL_LSBPTR64( &dfTemp ); VSIFWriteL( &dfTemp, 8, 1, fp ); /* min x */ dfTemp = adfSrcGeoTransform[0]; CPL_LSBPTR64( &dfTemp ); VSIFWriteL( &dfTemp, 8, 1, fp ); /* max y */ dfTemp = adfSrcGeoTransform[3]; CPL_LSBPTR64( &dfTemp ); VSIFWriteL( &dfTemp, 8, 1, fp ); /* min y */ dfTemp = adfSrcGeoTransform[3] + adfSrcGeoTransform[5] * nYSize; CPL_LSBPTR64( &dfTemp ); VSIFWriteL( &dfTemp, 8, 1, fp ); nTemp = nLinearUnits; CPL_LSBINT32PTR( &nTemp ); VSIFWriteL( &nTemp, 4, 1, fp ); /* Resolution */ /* x resolution */ dfTemp = adfSrcGeoTransform[1]; CPL_LSBPTR64( &dfTemp ); VSIFWriteL( &dfTemp, 8, 1, fp ); /* y resolution */ dfTemp = fabs( adfSrcGeoTransform[5] ); CPL_LSBPTR64( &dfTemp ); VSIFWriteL( &dfTemp, 8, 1, fp ); #ifdef CPL_MSB GDALSwapWords( panMetadata, 2, LCP_MAX_BANDS, 2 ); #endif VSIFWriteL( panMetadata, 2, LCP_MAX_BANDS, fp ); /* Write the source filenames */ char **papszFileList = poSrcDS->GetFileList(); if( papszFileList != NULL ) { for( i = 0; i < nBands; i++ ) { if( i == 5 && !bHaveCrownFuels && bHaveGroundFuels ) { VSIFSeekL( fp, 6292, SEEK_SET ); } VSIFWriteL( papszFileList[0], 1, CPLStrnlen( papszFileList[0], LCP_MAX_PATH ), fp ); VSIFSeekL( fp, 4244 + ( 256 * ( i+1 ) ), SEEK_SET ); } } /* ** No file list, mem driver, etc. */ else { VSIFSeekL( fp, 6804, SEEK_SET ); } CSLDestroy( papszFileList ); /* ** Should be at location 5524, 6292 or 6804. */ CPLAssert( VSIFTellL( fp ) == 5524 || VSIFTellL( fp ) == 6292 || VSIFTellL( fp ) == 6804 ); VSIFSeekL( fp, 6804, SEEK_SET ); /* Description */ VSIFWriteL( pszDescription, 1, CPLStrnlen( pszDescription, LCP_MAX_DESC ), fp ); /* ** Should be at or below location 7316, all done with the header. */ CPLAssert( VSIFTellL( fp ) <= 7316 ); VSIFSeekL( fp, 7316, SEEK_SET ); /* -------------------------------------------------------------------- */ /* Loop over image, copying image data. */ /* -------------------------------------------------------------------- */ GInt16 *panScanline = (GInt16 *)VSIMalloc3( 2, nBands, nXSize ); if( !pfnProgress( 0.0, NULL, pProgressData ) ) { VSIFCloseL( fp ); VSIFree( (void*)panScanline ); return NULL; } for( int iLine = 0; iLine < nYSize; iLine++ ) { for( int iBand = 0; iBand < nBands; iBand++ ) { GDALRasterBand * poBand = poSrcDS->GetRasterBand( iBand+1 ); eErr = poBand->RasterIO( GF_Read, 0, iLine, nXSize, 1, panScanline + iBand, nXSize, 1, GDT_Int16, nBands * 2, nBands * nXSize * 2, NULL ); /* Not sure what to do here */ if( eErr != CE_None ) { CPLError( CE_Warning, CPLE_AppDefined, "Error reported in " \ "RasterIO" ); /* ** CPLError( eErr, CPLE_AppDefined, ** "Error reported in RasterIO" ); */ } } #ifdef CPL_MSB GDALSwapWords( panScanline, 2, nBands * nXSize, 2 ); #endif VSIFWriteL( panScanline, 2, nBands * nXSize, fp ); if( !pfnProgress( iLine / (double)nYSize, NULL, pProgressData ) ) { VSIFree( (void*)panScanline ); VSIFCloseL( fp ); return NULL; } } VSIFree( panScanline ); VSIFCloseL( fp ); if( !pfnProgress( 1.0, NULL, pProgressData ) ) { return NULL; } /* ** Try to write projection file. *Most* landfire data follows ESRI **style projection files, so we use the same code as the AAIGrid driver. */ const char *pszOriginalProjection; pszOriginalProjection = (char *)poSrcDS->GetProjectionRef(); if( !EQUAL( pszOriginalProjection, "" ) ) { char *pszDirname, *pszBasename; char *pszPrjFilename; char *pszESRIProjection = NULL; VSILFILE *fp; OGRSpatialReference oSRS; pszDirname = CPLStrdup( CPLGetPath(pszFilename) ); pszBasename = CPLStrdup( CPLGetBasename(pszFilename) ); pszPrjFilename = CPLStrdup( CPLFormFilename( pszDirname, pszBasename, "prj" ) ); fp = VSIFOpenL( pszPrjFilename, "wt" ); if (fp != NULL) { oSRS.importFromWkt( (char **) &pszOriginalProjection ); oSRS.morphToESRI(); oSRS.exportToWkt( &pszESRIProjection ); VSIFWriteL( pszESRIProjection, 1, strlen(pszESRIProjection), fp ); VSIFCloseL( fp ); CPLFree( pszESRIProjection ); } else { CPLError( CE_Failure, CPLE_FileIO, "Unable to create file %s.", pszPrjFilename ); } CPLFree( pszDirname ); CPLFree( pszBasename ); CPLFree( pszPrjFilename ); } return (GDALDataset *) GDALOpen( pszFilename, GA_ReadOnly ); } /************************************************************************/ /* GetProjectionRef() */ /************************************************************************/ const char *LCPDataset::GetProjectionRef() { return pszProjection; } /************************************************************************/ /* GDALRegister_LCP() */ /************************************************************************/ void GDALRegister_LCP() { GDALDriver *poDriver; if( GDALGetDriverByName( "LCP" ) == NULL ) { poDriver = new GDALDriver(); poDriver->SetDescription( "LCP" ); poDriver->SetMetadataItem( GDAL_DCAP_RASTER, "YES" ); poDriver->SetMetadataItem( GDAL_DMD_LONGNAME, "FARSITE v.4 Landscape File (.lcp)" ); poDriver->SetMetadataItem( GDAL_DMD_EXTENSION, "lcp" ); poDriver->SetMetadataItem( GDAL_DMD_HELPTOPIC, "frmt_lcp.html" ); poDriver->SetMetadataItem( GDAL_DCAP_VIRTUALIO, "YES" ); poDriver->SetMetadataItem( GDAL_DMD_CREATIONDATATYPES, "Int16" ); poDriver->SetMetadataItem( GDAL_DMD_CREATIONOPTIONLIST, "<CreationOptionList>" " <Option name='ELEVATION_UNIT' type='string-select' default='METERS' description='Elevation units'>" " <Value>METERS</Value>" " <Value>FEET</Value>" " </Option>" " <Option name='SLOPE_UNIT' type='string-select' default='DEGREES' description='Slope units'>" " <Value>DEGREES</Value>" " <Value>PERCENT</Value>" " </Option>" " <Option name='ASPECT_UNIT' type='string-select' default='AZIMUTH_DEGREES'>" " <Value>GRASS_CATEGORIES</Value>" " <Value>AZIMUTH_DEGREES</Value>" " <Value>GRASS_DEGREES</Value>" " </Option>" " <Option name='FUEL_MODEL_OPTION' type='string-select' default='NO_CUSTOM_AND_NO_FILE'>" " <Value>NO_CUSTOM_AND_NO_FILE</Value>" " <Value>CUSTOM_AND_NO_FILE</Value>" " <Value>NO_CUSTOM_AND_FILE</Value>" " <Value>CUSTOM_AND_FILE</Value>" " </Option>" " <Option name='CANOPY_COV_UNIT' type='string-select' default='PERCENT'>" " <Value>CATEGORIES</Value>" " <Value>PERCENT</Value>" " </Option>" " <Option name='CANOPY_HT_UNIT' type='string-select' default='METERS_X_10'>" " <Value>METERS</Value>" " <Value>FEET</Value>" " <Value>METERS_X_10</Value>" " <Value>FEET_X_10</Value>" " </Option>" " <Option name='CBH_UNIT' type='string-select' default='METERS_X_10'>" " <Value>METERS</Value>" " <Value>FEET</Value>" " <Value>METERS_X_10</Value>" " <Value>FEET_X_10</Value>" " </Option>" " <Option name='CBD_UNIT' type='string-select' default='KG_PER_CUBIC_METER_X_100'>" " <Value>KG_PER_CUBIC_METER</Value>" " <Value>POUND_PER_CUBIC_FOOT</Value>" " <Value>KG_PER_CUBIC_METER_X_100</Value>" " <Value>POUND_PER_CUBIC_FOOT_X_1000</Value>" " </Option>" " <Option name='DUFF_UNIT' type='string-select' default='MG_PER_HECTARE_X_10'>" " <Value>MG_PER_HECTARE_X_10</Value>" " <Value>TONS_PER_ACRE_X_10</Value>" " </Option>" /* I don't think we need to override this, but maybe? */ /*" <Option name='CWD_OPTION' type='boolean' default='FALSE' description='Override logic for setting the coarse woody presence'/>" */ " <Option name='CALCULATE_STATS' type='boolean' default='YES' description='Write the stats to the lcp'/>" " <Option name='CLASSIFY_DATA' type='boolean' default='YES' description='Write the stats to the lcp'/>" " <Option name='LINEAR_UNIT' type='string-select' default='SET_FROM_SRS' description='Set the linear units in the lcp'>" " <Value>SET_FROM_SRS</Value>" " <Value>METER</Value>" " <Value>FOOT</Value>" " <Value>KILOMETER</Value>" " </Option>" " <Option name='LATITUDE' type='int' default='' description='Set the latitude for the dataset, this overrides the driver trying to set it programmatically in EPSG:4269'/>" " <Option name='DESCRIPTION' type='string' default='LCP file created by GDAL' description='A short description of the lcp file'/>" "</CreationOptionList>" ); poDriver->pfnOpen = LCPDataset::Open; poDriver->pfnCreateCopy = LCPDataset::CreateCopy; poDriver->pfnIdentify = LCPDataset::Identify; GetGDALDriverManager()->RegisterDriver( poDriver ); } }
[ "arkhipovsky@aifil.ru" ]
arkhipovsky@aifil.ru
7fbe9d63cea38541b2658d4316ac6079dc2f0641
ae64b1c4948125b92addda58cfc6c6ecb89d90e2
/MiniGameStarter/TrainingFramework/src/GameStates/GameStateBase.h
e57f7a4161ac462ca5e686b67f0db5924ecafc76
[]
no_license
cactus1999pro/InternGamePJ
c9327d1de133265092a7e3449b97bd478a76301e
0c9dadba979b5bbde6cb6b0da3eb2598f4e71349
refs/heads/master
2023-08-01T12:34:19.669686
2021-09-11T17:42:16
2021-09-11T17:42:16
392,643,797
0
0
null
null
null
null
UTF-8
C++
false
false
803
h
#pragma once #include "GameStateMachine.h" #include "GameManager/ResourceManagers.h" class GameStateBase { public: GameStateBase() : m_stateType(StateType::STATE_INVALID){} GameStateBase(StateType stateType); virtual ~GameStateBase() {} virtual void Init() = 0; virtual void Exit() = 0; virtual void Pause() = 0; virtual void Resume() = 0; virtual void HandleEvents() = 0; virtual void HandleKeyEvents(int key, bool bIsPressed) = 0; virtual void HandleTouchEvents(int x, int y, bool bIsPressed) = 0; virtual void HandleMouseMoveEvents(int x, int y) = 0; virtual void Update(float deltaTime) = 0; virtual void Draw() = 0; static std::shared_ptr<GameStateBase> CreateState(StateType stt); StateType GetGameStateType(); static int keyPressed; protected: StateType m_stateType; };
[ "cbg.seanboswell@gmail.com" ]
cbg.seanboswell@gmail.com
87844969b4fdd59f5477a319814977b56398d7ce
a7725c7f2c9cc7caac616a4adba40854c24b8d02
/competitive/codechef/SEPT16/JTREE.cpp
0c682ebfaec7604000d31f0b32b34f4e64934721
[]
no_license
EtherTyper/algorithms_and_data_structures
e32f4c8ef8423b20beda78f943638586ea31d0ad
beb2f6d20ac862289821175050bed28c2de256da
refs/heads/master
2021-01-23T02:15:35.701656
2017-03-23T09:26:26
2017-03-23T09:26:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,867
cpp
#include <bits/stdc++.h> using namespace std; typedef long long int ll; void dfs_chck(bool * visited , vector <ll> &v,ll vt , ll *tot_cost , list<ll> *graph,list< pair<ll,ll> > *cost) { if(visited[vt])return; visited[vt]=1; list<ll>::iterator it; // cout<<" at vertex : "<<vt<<" and sz of vec "<<v.size()<<endl; // cout<<" elements "<<endl; std::vector<ll>::iterator it2; // for(it2=v.begin();it2!=v.end();it2++) // cout<<*it2<<endl; ll min_cost=INT_MAX; list< pair<ll,ll> >::iterator it1; for(it1=cost[vt].begin();it1!=cost[vt].end();it1++) { // cout<<it1->first<<' '<<it1->second<<endl; if(v.size()>=it1->first) { ll prevmin=(*min_element(v.end()-it1->first,v.end())); if(min_cost>it1->second+prevmin) min_cost=it1->second+prevmin; } else if(min_cost>it1->second) min_cost=it1->second; } // cout<<" for v "<<vt<<" min cost "<<min_cost<<endl; if(vt!=1) { tot_cost[vt]=min_cost; } else tot_cost[vt]=0; for(it=graph[vt].begin();it!=graph[vt].end();it++) { // cout<<" for "<<vt<<' '<<*it<<endl; if(visited[*it]) { // cout<<" continue for "<<vt<<' '<<*it<<endl; continue; } std::vector<ll> k=v; k.push_back(min_cost); dfs_chck(visited,k,*it,tot_cost,graph,cost); } } int main(int argc, char const *argv[]) { ll n,m; cin>>n>>m; ll i; ll tot_cost[n+1]; list<ll> graph[n+1]; list< pair<ll,ll> > cost[n+1]; for(i=0;i<n-1;i++) { ll a,b; cin>>a>>b; graph[a].push_back(b); graph[b].push_back(a); // cout<<" pushed "<<a<<' '<<b<<endl; } for(i=0;i<m;i++) { ll v,k,w; cin>>v>>k>>w; cost[v].push_back(make_pair(k,w)); // cout<<" cost : "<<v<<' '<<k<<' '<<w<<endl; } ll q; cin>>q; bool visited[n+1]; memset(visited,0,n+1); std::vector<ll> v1; dfs_chck(visited,v1,1,tot_cost,graph,cost); while(q--) { ll f; cin>>f; cout<<tot_cost[f]<<endl; } return 0; }
[ "shravanmurali@gmail.com" ]
shravanmurali@gmail.com
1762b786f1a604007cc3fa8496a5f34b82677c48
89d08334f72a566e06a99e85080f835d41d7c328
/libaudio/AudioFakeHardware.h
a8348e8ba21686b58a2a6af89f092dfbe9e390af
[ "Apache-2.0" ]
permissive
BrianGFlores/android_device_mitre_svmp
79552e924194b769368cc7cc91265c41dcf0349d
00c0366d6e13d846001fb6fffb87d79b7a3e6044
refs/heads/master
2021-01-21T00:30:23.675834
2013-09-09T15:55:32
2013-09-09T17:17:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,255
h
/* Copyright 2013 The MITRE Corporation, All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ /* //device/servers/AudioFlinger/AudioFakeHardware.cpp ** ** Copyright 2007, The Android Open Source Project ** ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** distributed under the License is distributed on an "AS IS" BASIS, ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ** See the License for the specific language governing permissions and ** limitations under the License. */ #ifndef MOCSI_FAKE_AUDIO_HARDWARE_H #define MOCSI_FAKE_AUDIO_HARDWARE_H #include <stdint.h> #include <sys/types.h> #include <hardware_legacy/AudioHardwareBase.h> namespace android_audio_legacy { // ---------------------------------------------------------------------------- class AudioAACStreamOut : public AudioStreamOut { public: virtual status_t set(int *pFormat, uint32_t *pChannels, uint32_t *pRate); virtual uint32_t sampleRate() const { return 44100; } virtual size_t bufferSize() const { return 4096; } virtual uint32_t channels() const { return AudioSystem::CHANNEL_OUT_STEREO; } virtual int format() const { return AudioSystem::PCM_16_BIT; } virtual uint32_t latency() const { return 0; } virtual status_t setVolume(float left, float right) { return NO_ERROR; } virtual ssize_t write(const void* buffer, size_t bytes); virtual status_t standby(); virtual status_t dump(int fd, const Vector<String16>& args); virtual status_t setParameters(const String8& keyValuePairs) { return NO_ERROR;} virtual String8 getParameters(const String8& keys); virtual status_t getRenderPosition(uint32_t *dspFrames); private: struct timeval time; }; class AudioFakeHardware : public AudioHardwareBase { public: AudioFakeHardware(); virtual ~AudioFakeHardware(); virtual status_t initCheck(); virtual status_t setVoiceVolume(float volume); virtual status_t setMasterVolume(float volume); // mic mute virtual status_t setMicMute(bool state) { mMicMute = state; return NO_ERROR; } virtual status_t getMicMute(bool* state) { *state = mMicMute ; return NO_ERROR; } // create I/O streams virtual AudioStreamOut* openOutputStream( uint32_t devices, int *format=0, uint32_t *channels=0, uint32_t *sampleRate=0, status_t *status=0); virtual void closeOutputStream(AudioStreamOut* out); virtual AudioStreamIn* openInputStream( uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status, AudioSystem::audio_in_acoustics acoustics); virtual void closeInputStream(AudioStreamIn* in); protected: virtual status_t dump(int fd, const Vector<String16>& args); bool mMicMute; private: status_t dumpInternals(int fd, const Vector<String16>& args); }; extern "C" AudioHardwareInterface* createAudioHardware(void); // ---------------------------------------------------------------------------- }; // namespace android #endif // ANDROID_AUDIO_HARDWARE_STUB_H
[ "dkeppler@mitre.org" ]
dkeppler@mitre.org
a78ea793fe1cec2433656df4c77307451714b591
8201b4383b331d4340d1b15432acaf81d05b9df3
/renderer/fft/test/fft_bench.cpp
be0d2c246ec632662d6610bb32fbff01fc367f96
[ "MIT" ]
permissive
rodrigobmg/Granite
5e1525c525db8f0784f404920dc6e5f0c098de2d
c950ff1cacdadb4ce49dc58ffe28a2443a3c2bdc
refs/heads/master
2022-03-04T17:59:55.885214
2022-02-07T22:50:35
2022-02-07T22:52:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,171
cpp
/* Copyright (c) 2022 Hans-Kristian Arntzen * * Permission is hereby granted, free of charge, * to any person obtaining a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, * and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "device.hpp" #include "context.hpp" #include "global_managers_init.hpp" #include "math.hpp" #include "fft.hpp" using namespace Granite; using namespace Vulkan; static void log_bench(Device &device) { device.wait_idle(); device.timestamp_log([&](const std::string &tag, const TimestampIntervalReport &report) { if (tag == "FFT") LOGI("Time per FFT: %.3f us\n", 1e6 * (report.time_per_frame_context / 10.0)); }); device.timestamp_log_reset(); } struct BenchParams { unsigned width; unsigned height; unsigned depth; unsigned dimensions; unsigned iterations; bool fp16; FFT::Mode mode; }; static void bench(Device &device, const BenchParams &params) { FFT::Options options = {}; options.Nx = params.width; options.Ny = params.height; options.Nz = params.depth; options.dimensions = params.dimensions; options.data_type = params.fp16 ? FFT::DataType::FP16 : FFT::DataType::FP32; options.mode = params.mode; FFT fft; if (!fft.plan(&device, options)) { LOGE("Failed to plan FFT.\n"); return; } BufferCreateInfo info = {}; info.size = params.width * params.height * params.depth * sizeof(vec2); info.usage = VK_BUFFER_USAGE_STORAGE_BUFFER_BIT; info.domain = BufferDomain::Device; auto input_buffer = device.create_buffer(info); auto output_buffer = device.create_buffer(info); FFT::Resource dst = {}, src = {}; dst.buffer.buffer = output_buffer.get(); dst.buffer.size = output_buffer->get_create_info().size; dst.buffer.row_stride = params.width; dst.buffer.layer_stride = params.width * params.height; src.buffer.buffer = input_buffer.get(); src.buffer.size = input_buffer->get_create_info().size; src.buffer.row_stride = params.width; src.buffer.layer_stride = params.width * params.height; unsigned num_submits = (params.iterations + 9) / 10; for (unsigned i = 0; i < num_submits; i++) { auto cmd = device.request_command_buffer(); auto begin_ts = cmd->write_timestamp(VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT); for (unsigned j = 0; j < 10; j++) { fft.execute(*cmd, dst, src); cmd->barrier(VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, VK_ACCESS_SHADER_WRITE_BIT, VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT, VK_ACCESS_SHADER_READ_BIT); } auto end_ts = cmd->write_timestamp(VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT); device.register_time_interval("GPU", std::move(begin_ts), std::move(end_ts), "FFT"); device.submit(cmd); device.next_frame_context(); } } int main() { Global::init(Global::MANAGER_FEATURE_DEFAULT_BITS, 1); Context ctx; Context::SystemHandles handles; handles.filesystem = GRANITE_FILESYSTEM(); ctx.set_system_handles(handles); if (!Context::init_loader(nullptr)) return 1; if (!ctx.init_instance_and_device(nullptr, 0, nullptr, 0)) return 1; Device device; device.set_context(ctx); BenchParams params = {}; params.width = 1024; params.height = 1024; params.depth = 1; params.dimensions = 2; params.iterations = 10000; params.fp16 = true; params.mode = FFT::Mode::ForwardComplexToComplex; bench(device, params); log_bench(device); }
[ "maister@archlinux.us" ]
maister@archlinux.us
d3d6ff817a9e81c4267632865e4098b5e463ffb3
533d5e1a40def1e1118895f6ba2b4d503c918d1a
/tools/BORLANDC/TVISION/SOURCE/TDIRLIST.CPP
7514c87bdcf1274104f731d89f0f386ef7f66f5d
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gandrewstone/GameMaker
415cccdf0f9ecf5f339b7551469f07d53e43a6fd
1fe0070a9f8412b5b53923aae7e64769722685a3
refs/heads/master
2020-06-12T19:30:07.252432
2014-07-14T14:38:55
2014-07-14T14:38:55
21,754,773
103
23
null
null
null
null
UTF-8
C++
false
false
6,199
cpp
/*------------------------------------------------------------*/ /* filename - tdirlist.cpp */ /* */ /* function(s) */ /* TDirListBox member functions */ /*------------------------------------------------------------*/ /*------------------------------------------------------------*/ /* */ /* Turbo Vision - Version 1.0 */ /* */ /* */ /* Copyright (c) 1991 by Borland International */ /* All Rights Reserved. */ /* */ /*------------------------------------------------------------*/ #define Uses_TDirListBox #define Uses_TEvent #define Uses_TDirCollection #define Uses_TChDirDialog #define Uses_TDirEntry #define Uses_TButton #include <tv.h> #if !defined( __STRING_H ) #include <String.h> #endif // __STRING_H #if !defined( __DIR_H ) #include <Dir.h> #endif // __DIR_H #if !defined( __DOS_H ) #include <Dos.h> #endif // __DOS_H TDirListBox::TDirListBox( const TRect& bounds, TScrollBar *aScrollBar ) : TListBox( bounds, 1, aScrollBar ), cur( 0 ) { *dir = EOS; } TDirListBox::~TDirListBox() { if ( list() ) destroy( list() ); } void TDirListBox::getText( char *text, short item, short maxChars ) { strncpy( text, list()->at(item)->text(), maxChars ); text[maxChars] = '\0'; } void TDirListBox::handleEvent( TEvent& event ) { if( event.what == evMouseDown && event.mouse.doubleClick ) { event.what = evCommand; event.message.command = cmChangeDir; putEvent( event ); clearEvent( event ); } else TListBox::handleEvent( event ); } Boolean TDirListBox::isSelected( short item ) { return Boolean( item == cur ); } void TDirListBox::showDrives( TDirCollection *dirs ) { Boolean isFirst = True; char oldc[5]; strcpy( oldc, "0:\\" ); for( char c = 'A'; c <= 'Z'; c++ ) { if( c < 'C' || driveValid( c ) ) { if( oldc[0] != '0' ) { char s[ 16 ]; if( isFirst ) { strcpy( s, firstDir ); s[ strlen(firstDir) ] = oldc[0]; s[ strlen(firstDir)+1 ] = EOS; isFirst = False; } else { strcpy( s, middleDir ); s[ strlen(middleDir) ] = oldc[0]; s[ strlen(middleDir)+1 ] = EOS; } dirs->insert( new TDirEntry( s, oldc ) ); } if( c == getdisk() + 'A' ) cur = dirs->getCount(); oldc[0] = c; } } if( oldc[0] != '0' ) { char s[ 16 ]; strcpy( s, lastDir ); s[ strlen(lastDir) ] = oldc[0]; s[ strlen(lastDir)+1 ] = EOS; dirs->insert( new TDirEntry( s, oldc ) ); } } void TDirListBox::showDirs( TDirCollection *dirs ) { const indentSize = 2; int indent = indentSize; char buf[MAXPATH+16]; memset( buf, ' ', sizeof( buf ) ); char *name = buf + sizeof(buf) - (MAXFILE+MAXEXT); char *org = name - strlen(pathDir); strcpy( org, pathDir ); char *curDir = dir; char *end = dir + 3; char hold = *end; *end = EOS; // mark end of drive name strcpy( name, curDir ); dirs->insert( new TDirEntry( org, name ) ); *end = hold; // restore full path curDir = end; while( (end = strchr( curDir, '\\' )) != 0 ) { *end = EOS; strncpy( name, curDir, size_t(end-curDir) ); name[size_t(end-curDir)] = EOS; dirs->insert( new TDirEntry( org - indent, dir ) ); *end = '\\'; curDir = end+1; indent += indentSize; } cur = dirs->getCount() - 1; end = strrchr( dir, '\\' ); char path[MAXPATH]; strncpy( path, dir, size_t(end-dir+1) ); end = path + unsigned(end-dir)+1; strcpy( end, "*.*" ); Boolean isFirst = True; ffblk ff; int res = findfirst( path, &ff, FA_DIREC ); while( res == 0 ) { if( (ff.ff_attrib & FA_DIREC) != 0 && ff.ff_name[0] != '.' ) { if( isFirst ) { memcpy( org, firstDir, strlen(firstDir)+1 ); isFirst = False; } else memcpy( org, middleDir, strlen(middleDir)+1 ); strcpy( name, ff.ff_name ); strcpy( end, ff.ff_name ); dirs->insert( new TDirEntry( org - indent, path ) ); } res = findnext( &ff ); } char *p = dirs->at(dirs->getCount()-1)->text(); char *i = strchr( p, graphics[0] ); if( i == 0 ) { i = strchr( p, graphics[1] ); if( i != 0 ) *i = graphics[0]; } else { *(i+1) = graphics[2]; *(i+2) = graphics[2]; } } void TDirListBox::newDirectory( const char *str ) { strcpy( dir, str ); TDirCollection *dirs = new TDirCollection( 5, 5 ); dirs->insert( new TDirEntry( drives, drives ) ); if( strcmp( dir, drives ) == 0 ) showDrives( dirs ); else showDirs( dirs ); newList( dirs ); focusItem( cur ); } void TDirListBox::setState( ushort nState, Boolean enable ) { TListBox::setState( nState, enable ); if( (nState & sfFocused) != 0 ) ((TChDirDialog *)owner)->chDirButton->makeDefault( enable ); } TStreamable *TDirListBox::build() { return new TDirListBox( streamableInit ); }
[ "g.andrew.stone@gmail.com" ]
g.andrew.stone@gmail.com
b40a54321e967492dc5064351edcff9f989772d0
f1e7c41ff1a1b9c8fa56daca8e8b49567616b980
/CosmicOS/libraries/fastledCO/platforms/arm/nrf52/arbiter_nrf52.h
864b7c364c58ab5836afd9e3ddf94f0e392fa36b
[ "MIT" ]
permissive
imercycorp/Protogen-System
e23a611e1c9778f5dd128a446caf18d1b6080db3
a1c5ad6d9d686ecf51835d3cfa55d8ae7c7f8f88
refs/heads/master
2020-11-25T10:14:27.821672
2019-12-17T12:39:52
2019-12-17T12:39:52
228,613,846
0
0
null
null
null
null
UTF-8
C++
false
false
4,256
h
#ifndef __INC_ARBITER_NRF52 #define __INC_ARBITER_NRF52 #if defined(NRF52_SERIES) #include "../../../../fastledCO/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h" //FASTLED_NAMESPACE_BEGIN typedef void (*FASTLED_NRF52_PWM_INTERRUPT_HANDLER)(); // a trick learned from other embedded projects .. // use the enum as an index to a statically-allocated array // to store unique information for that instance. // also provides a count of how many instances were enabled. // // See led_sysdefs_arm_nrf52.h for selection.... // typedef enum _FASTLED_NRF52_ENABLED_PWM_INSTANCE { #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE0) FASTLED_NRF52_PWM0_INSTANCE_IDX, #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE1) FASTLED_NRF52_PWM1_INSTANCE_IDX, #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE2) FASTLED_NRF52_PWM2_INSTANCE_IDX, #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE3) FASTLED_NRF52_PWM3_INSTANCE_IDX, #endif FASTLED_NRF52_PWM_INSTANCE_COUNT } FASTLED_NRF52_ENABLED_PWM_INSTANCES; static_assert(FASTLED_NRF52_PWM_INSTANCE_COUNT > 0, "Instance count must be greater than zero -- define FASTLED_NRF52_ENABLE_PWM_INSTNACE[n] (replace `[n]` with digit)"); template <uint32_t _PWM_ID> class PWM_Arbiter { private: static_assert(_PWM_ID < 32, "PWM_ID over 31 breaks current arbitration bitmask"); //const uint32_t _ACQUIRE_MASK = (1u << _PWM_ID) ; //const uint32_t _CLEAR_MASK = ~((uint32_t)(1u << _PWM_ID)); static uint32_t s_PwmInUse; static NRF_PWM_Type * const s_PWM; static IRQn_Type const s_PWM_IRQ; static FASTLED_NRF52_PWM_INTERRUPT_HANDLER volatile s_Isr; public: static void isr_handler() { return s_Isr(); } FASTLED_NRF52_INLINE_ATTRIBUTE static bool isAcquired() { return (0u != (s_PwmInUse & 1u)); // _ACQUIRE_MASK } FASTLED_NRF52_INLINE_ATTRIBUTE static void acquire(FASTLED_NRF52_PWM_INTERRUPT_HANDLER isr) { while (!tryAcquire(isr)); } FASTLED_NRF52_INLINE_ATTRIBUTE static bool tryAcquire(FASTLED_NRF52_PWM_INTERRUPT_HANDLER isr) { uint32_t oldValue = __sync_fetch_and_or(&s_PwmInUse, 1u); // _ACQUIRE_MASK if (0u == (oldValue & 1u)) { // _ACQUIRE_MASK s_Isr = isr; return true; } return false; } FASTLED_NRF52_INLINE_ATTRIBUTE static void releaseFromIsr() { uint32_t oldValue = __sync_fetch_and_and(&s_PwmInUse, ~1u); // _CLEAR_MASK if (0u == (oldValue & 1u)) { // _ACQUIRE_MASK // TODO: This should never be true... indicates was not held. // Assert here? (void)oldValue; } return; } FASTLED_NRF52_INLINE_ATTRIBUTE static NRF_PWM_Type * getPWM() { return s_PWM; } FASTLED_NRF52_INLINE_ATTRIBUTE static IRQn_Type getIRQn() { return s_PWM_IRQ; } }; template <uint32_t _PWM_ID> NRF_PWM_Type * const PWM_Arbiter<_PWM_ID>::s_PWM = #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE0) (_PWM_ID == 0 ? NRF_PWM0 : #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE1) (_PWM_ID == 1 ? NRF_PWM1 : #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE2) (_PWM_ID == 2 ? NRF_PWM2 : #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE3) (_PWM_ID == 3 ? NRF_PWM3 : #endif (NRF_PWM_Type*)-1 #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE0) ) #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE1) ) #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE2) ) #endif #if defined(FASTLED_NRF52_ENABLE_PWM_INSTANCE3) ) #endif ; template <uint32_t _PWM_ID> IRQn_Type const PWM_Arbiter<_PWM_ID>::s_PWM_IRQ = ((IRQn_Type)((uint8_t)((uint32_t)(s_PWM) >> 12))); template <uint32_t _PWM_ID> uint32_t PWM_Arbiter<_PWM_ID>::s_PwmInUse = 0; template <uint32_t _PWM_ID> FASTLED_NRF52_PWM_INTERRUPT_HANDLER volatile PWM_Arbiter<_PWM_ID>::s_Isr = NULL; //FASTLED_NAMESPACE_END #endif // NRF52_SERIES #endif // __INC_ARBITER_NRF52
[ "hugo.chassaing@orange.fr" ]
hugo.chassaing@orange.fr
1848d7defaa2996586af3614acc87bd501d3cc5b
c1fb3c631864b9dd37910b755717f39880900bd8
/UI/InputBox.h
0ca971b7b6c2334661c3d2d1bac9b8de4f8f4c95
[]
no_license
suyuti/pax_terminal
9b9f25ee59763ccb65a9de98698eb77cc0d796aa
df342c31ec6a14583ccb99aca639aa1837561f87
refs/heads/master
2023-05-04T14:27:48.942182
2013-02-12T14:24:04
2013-02-12T14:24:04
371,936,205
0
0
null
null
null
null
UTF-8
C++
false
false
1,072
h
// InputBox.h: interface for the CInputBox class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_INPUTBOX_H__7BF8DCD7_CA74_4125_A504_DDDE82073762__INCLUDED_) #define AFX_INPUTBOX_H__7BF8DCD7_CA74_4125_A504_DDDE82073762__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "..\globaldef.h" #include "Screen.h" class CInputBox : CScreen { public: typedef enum { itNumeric = 0, itAlphaNumeric, itPassword, itCurrency, itIP, } InputTypes; typedef enum { retOK = 0, retCancel, retTimeout, } ReturnTypes; protected: CInputBox(); public: CInputBox(const char* pLabel, int x, int y, int size, InputTypes type); virtual ~CInputBox(); virtual int Draw(); inline char* GetBuffer() { return this->m_buffer; }; inline int GetSize() { return this->m_count; }; private: char m_label[64]; char m_buffer[255]; int m_size; InputTypes m_inputType; int m_x; int m_y; int m_count; }; #endif // !defined(AFX_INPUTBOX_H__7BF8DCD7_CA74_4125_A504_DDDE82073762__INCLUDED_)
[ "mehmet.dindar@gmail.com" ]
mehmet.dindar@gmail.com
3537aec97afc69f151fd6b4a7f49725a40878045
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE126_Buffer_Overread/s03/CWE126_Buffer_Overread__new_wchar_t_memmove_52a.cpp
47f722360f421f08cd89a51a6ff432516bceb677
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
2,312
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE126_Buffer_Overread__new_wchar_t_memmove_52a.cpp Label Definition File: CWE126_Buffer_Overread__new.label.xml Template File: sources-sink-52a.tmpl.cpp */ /* * @description * CWE: 126 Buffer Over-read * BadSource: Use a small buffer * GoodSource: Use a large buffer * Sink: memmove * BadSink : Copy data to string using memmove * Flow Variant: 52 Data flow: data passed as an argument from one function to another to another in three different source files * * */ #include "std_testcase.h" #include <wchar.h> namespace CWE126_Buffer_Overread__new_wchar_t_memmove_52 { #ifndef OMITBAD /* bad function declaration */ void badSink_b(wchar_t * data); void bad() { wchar_t * data; data = NULL; /* FLAW: Use a small buffer */ data = new wchar_t[50]; wmemset(data, L'A', 50-1); /* fill with 'A's */ data[50-1] = L'\0'; /* null terminate */ badSink_b(data); } #endif /* OMITBAD */ #ifndef OMITGOOD /* good function declarations */ void goodG2BSink_b(wchar_t * data); /* goodG2B uses the GoodSource with the BadSink */ static void goodG2B() { wchar_t * data; data = NULL; /* FIX: Use a large buffer */ data = new wchar_t[100]; wmemset(data, L'A', 100-1); /* fill with 'A's */ data[100-1] = L'\0'; /* null terminate */ goodG2BSink_b(data); } void good() { goodG2B(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE126_Buffer_Overread__new_wchar_t_memmove_52; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
90dda2750e2d8cac3c414789c396a956ab325b4b
1553d8eacb531f7beeca36a0c20e3f72d030f0d9
/NewtonModule/dContainers/dRefCounter.h
f842e1f3f49fe19a1e5bbaaf6d0a0630782e1f68
[]
no_license
Hurleyworks/NewtonBlock
152fdf8dcec45c088f5b77e5832a2edd97d33960
bb40720f1c97f46814762cbe07756262d10f2f28
refs/heads/master
2021-01-10T17:55:53.942620
2015-12-06T11:26:35
2015-12-06T11:26:35
45,901,502
5
1
null
null
null
null
UTF-8
C++
false
false
791
h
/* Copyright (c) <2009> <Newton Game Dynamics> This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely */ #ifndef __DREF_COUNTER_H__ #define __DREF_COUNTER_H__ class dRefCounter: public dContainersAlloc { public: DCONTAINERS_API dRefCounter (void); DCONTAINERS_API int GetRef() const; DCONTAINERS_API int Release(); DCONTAINERS_API void AddRef() const; protected: DCONTAINERS_API virtual ~dRefCounter (void); private: mutable int m_refCount; }; #endif
[ "github@hurleyworks.com" ]
github@hurleyworks.com
5d92a77e40bcad0132b90a13ece0769d7545ff6a
f4c78343b4c471be0ddffa19f178d1383c0ded62
/include/MyDataset.hh
238ba422aeb52bcf86eea47254efa40a0b73ba7f
[]
no_license
rotildeof/Libtorch_example_2
6b0766a00ff837ee1c8937b66af60b9a555d911c
5436d542a80dfb68b82cf41979564a490c0d9b1e
refs/heads/main
2023-03-03T08:36:25.550939
2021-02-15T15:58:43
2021-02-15T15:58:43
338,803,826
1
1
null
null
null
null
UTF-8
C++
false
false
784
hh
#ifndef _MyDataset_ #define _MyDataset_ #include "DataStorage.hh" #include <torch/torch.h> #include <vector> class CustomDataSet : public torch::data::Dataset<CustomDataSet> { private: torch::Tensor inputs, labels; public: CustomDataSet(DataStorage *data_strage) { int n_data = data_strage->n_data; int n_input = data_strage->n_input; int n_output = data_strage->n_output; inputs = torch::from_blob(data_strage->inputs_1d.data(), {n_data, n_input}); labels = torch::from_blob(data_strage->labels_1d.data(), {n_data, n_output}); } torch::data::Example<> get(std::size_t index) override { return {inputs[index], labels[index]}; } torch::optional<std::size_t> size() const override { return labels.size(0); } }; #endif
[ "rsekiya@LAPTOP-PUP647UD.localdomain" ]
rsekiya@LAPTOP-PUP647UD.localdomain
d509c5c2b111ca4b3d6959c4b785bdc59b887ec3
7537ec24921bb5451ded39f6e1a7172b901bd2a7
/Final_project/robot_nav_motion/include/from2Dto3D/PointBaseRequest.h
3e64c0c64619285041ac7b4a9fffbdd4370bf67a
[]
no_license
chjYuan/Robocupathome
f2a80f8e9ea2790c73fc35ecffbb113d79b2593d
ab5724fc9fd71e839abb4cbb7128556f3038c0e7
refs/heads/master
2022-11-25T12:47:07.836592
2020-07-19T17:57:48
2020-07-19T17:57:48
280,920,965
3
1
null
null
null
null
UTF-8
C++
false
false
4,979
h
// Generated by gencpp from file from2Dto3D/PointBaseRequest.msg // DO NOT EDIT! #ifndef FROM2DTO3D_MESSAGE_POINTBASEREQUEST_H #define FROM2DTO3D_MESSAGE_POINTBASEREQUEST_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> namespace from2Dto3D { template <class ContainerAllocator> struct PointBaseRequest_ { typedef PointBaseRequest_<ContainerAllocator> Type; PointBaseRequest_() : req(0) { } PointBaseRequest_(const ContainerAllocator& _alloc) : req(0) { (void)_alloc; } typedef int32_t _req_type; _req_type req; typedef boost::shared_ptr< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> const> ConstPtr; }; // struct PointBaseRequest_ typedef ::from2Dto3D::PointBaseRequest_<std::allocator<void> > PointBaseRequest; typedef boost::shared_ptr< ::from2Dto3D::PointBaseRequest > PointBaseRequestPtr; typedef boost::shared_ptr< ::from2Dto3D::PointBaseRequest const> PointBaseRequestConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::from2Dto3D::PointBaseRequest_<ContainerAllocator> & v) { ros::message_operations::Printer< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace from2Dto3D namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False} // {'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsFixedSize< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > { static const char* value() { return "688ec893d5ff2cccc11b9bc8bc41109b"; } static const char* value(const ::from2Dto3D::PointBaseRequest_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0x688ec893d5ff2cccULL; static const uint64_t static_value2 = 0xc11b9bc8bc41109bULL; }; template<class ContainerAllocator> struct DataType< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > { static const char* value() { return "from2Dto3D/PointBaseRequest"; } static const char* value(const ::from2Dto3D::PointBaseRequest_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > { static const char* value() { return "int32 req\n\ "; } static const char* value(const ::from2Dto3D::PointBaseRequest_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.req); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct PointBaseRequest_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::from2Dto3D::PointBaseRequest_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::from2Dto3D::PointBaseRequest_<ContainerAllocator>& v) { s << indent << "req: "; Printer<int32_t>::stream(s, indent + " ", v.req); } }; } // namespace message_operations } // namespace ros #endif // FROM2DTO3D_MESSAGE_POINTBASEREQUEST_H
[ "jerrycj@gmail.com" ]
jerrycj@gmail.com
83df2841aa92af046a3f0ff00d336ec926452132
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_old_hunk_1320.cpp
840cee16e40406cd351261d4689130e56ca9f1ec
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
4,866
cpp
" curl displays the file size only.\n" "\n" " If this option is used twice, the second will again\n" " disable header only.\n" "\n" " --krb4 <level>\n" " (FTP) Enable kerberos4 authentication and use. The\n" " level must be entered and should be one of 'clear',\n" " 'safe', 'confidential' or 'private'. Should you use a\n" " level that is not one of these, 'private' will instead\n" " be used.\n" "\n" " If this option is used serveral times, the last one\n" " will be used.\n" "\n" " -K/--config <config file>\n" " Specify which config file to read curl arguments from.\n" " The config file is a text file in which command line\n" " arguments can be written which then will be used as if\n" " they were written on the actual command line. Options\n" " and their parameters must be specified on the same con­\n" " fig file line. If the parameter is to contain white\n" " spaces, the parameter must be inclosed within quotes.\n" " If the first column of a config line is a '#' charac­\n" " ter, the rest of the line will be treated as a comment.\n" "\n" " Specify the filename as '-' to make curl read the file\n" " from stdin.\n" "\n" " This option can be used multiple times.\n" "\n" " -l/--list-only\n" " (FTP) When listing an FTP directory, this switch forces\n" " a name-only view. Especially useful if you want to\n" " machine-parse the contents of an FTP directory since\n" " the normal directory view doesn't use a standard look\n" " or format.\n" "\n" " If this option is used twice, the second will again\n" " disable list only.\n" "\n" " -L/--location\n" " (HTTP/HTTPS) If the server reports that the requested\n" " page has a different location (indicated with the\n" " header line Location:) this flag will let curl attempt\n" " to reattempt the get on the new place. If used together\n" " with -i or -I, headers from all requested pages will be\n" " shown. If this flag is used when making a HTTP POST,\n" " curl will automatically switch to GET after the initial\n" " POST has been done.\n" "\n" " If this option is used twice, the second will again\n" " disable location following.\n" "\n" " -m/--max-time <seconds>\n" " Maximum time in seconds that you allow the whole opera­\n" " tion to take. This is useful for preventing your batch\n" " jobs from hanging for hours due to slow networks or\n" " links going down. This doesn't work fully in win32\n" " systems.\n" "\n" " If this option is used serveral times, the last one\n" " will be used.\n" "\n" " -M/--manual\n" " Manual. Display the huge help text.\n" "\n" " -n/--netrc\n" " Makes curl scan the .netrc file in the user's home\n" " directory for login name and password. This is typi­\n" " cally used for ftp on unix. If used with http, curl\n" " will enable user authentication. See netrc(4) for\n" " details on the file format. Curl will not complain if\n" " that file hasn't the right permissions (it should not\n" " be world nor group readable). The environment variable\n" " \"HOME\" is used to find the home directory.\n" "\n" " A quick and very simple example of how to setup a\n" " .netrc to allow curl to ftp to the machine\n" " host.domain.com with user name\n" "\n" " machine host.domain.com login myself password secret\n" "\n" " If this option is used twice, the second will again\n" " disable netrc usage.\n" "\n" " -N/--no-buffer\n" " Disables the buffering of the output stream. In normal\n" " work situations, curl will use a standard buffered out­\n" " put stream that will have the effect that it will out­\n" " put the data in chunks, not necessarily exactly when\n" " the data arrives. Using this option will disable that\n" " buffering.\n" "\n" " If this option is used twice, the second will again\n" " switch on buffering.\n" "\n" " -o/--output <file>\n" " Write output to <file> instead of stdout. If you are\n" " using {} or [] to fetch multiple documents, you can use\n" " '#' followed by a number in the <file> specifier. That\n" " variable will be replaced with the current string for\n" " the URL being fetched. Like in:\n" "\n" " curl http://{one,two}.site.com -o \"file_#1.txt\"\n" "\n" " or use several variables like:\n" "\n"
[ "993273596@qq.com" ]
993273596@qq.com
4825c0c5fd7fbf9c0666d1e3abae8f3e9adba7ed
e65e6b345e98633cccc501ad0d6df9918b2aa25e
/Codechef/CookOff/22Jun/SPLITANDSUM.cpp
70f3dd1e20386ec69c5d73cd6397d16fa8c439d5
[]
no_license
wcysai/CodeLibrary
6eb99df0232066cf06a9267bdcc39dc07f5aab29
6517cef736f1799b77646fe04fb280c9503d7238
refs/heads/master
2023-08-10T08:31:58.057363
2023-07-29T11:56:38
2023-07-29T11:56:38
134,228,833
5
2
null
null
null
null
UTF-8
C++
false
false
1,077
cpp
#pragma GCC optimize(3) #include<bits/stdc++.h> #define MAXN 100005 #define INF 1000000000 #define MOD 1000000007 #define F first #define S second using namespace std; typedef long long ll; typedef pair<int,int> P; int t,n,k,a[MAXN]; bool nonzero() { for(int i=1;i<=n;i++) if(a[i]) return true; return false; } int main() { scanf("%d",&t); while(t--) { scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d",&a[i]); bool f=false; while(nonzero()) { int s=0; for(int i=1;i<=n;i++) s+=(a[i]&1); if(s<=1) { for(int i=1;i<=n;i++) a[i]/=2; continue; } int last=1; vector<P> v; for(int i=1;i<=n;i++) if(a[i]&1) {v.push_back(P(last,i)); last=i+1;} v[v.size()-1].S=n; puts("YES"); printf("%d\n",(int)v.size()); for(auto p:v) printf("%d %d\n",p.F,p.S); f=true; break; } if(!f) puts("NO"); } return 0; }
[ "wcysai@foxmail.com" ]
wcysai@foxmail.com
cec2bd41e0f14e5f63674135418cfb805783bd35
2a665fc880fc2d3a37a6d3395288dcf43878edbc
/palindrome-number.cpp
1fd131b4d8d06575ade92083d33830dcdbbacbf8
[]
no_license
nbgao/Leetcode
278256264ef6ac4b6a2309b320f22f758548bec5
5456c49c92a5b6a10670df1940fc220830c256f6
refs/heads/master
2021-01-01T15:57:21.952048
2017-10-09T16:31:08
2017-10-09T16:31:08
97,741,585
1
0
null
null
null
null
UTF-8
C++
false
false
509
cpp
#include <iostream> #include <cstdio> #include <cstdlib> #include <algorithm> #include <cstring> #include <string> #include <cmath> #include <cctype> using namespace std; class Solution { public: bool isPalindrome(int x) { int y = x,z = 0; if(y < 0) return false; while(y) { z = 10*z + y%10; y /= 10; } if(z == x) return true; else return false; } }; int main() { //cout<<isPalindrome(-12321)<<endl; return 0; }
[ "nbgao@126.com" ]
nbgao@126.com
160a7d65a7c4eb4cac21b5e7990d5c02a9a78e62
4cd7c56656e31d1148063bbfcc56d4b134947690
/smacc_sm_reference_library/sm_dance_bot/include/sm_dance_bot/states/s_pattern_states/ssr_spattern_loop_start.h
cff2351e0df442e835ecd206d8c3485d6d95fcb7
[ "BSD-3-Clause" ]
permissive
Chipato1/SMACC
b57b29cf4f0d5a2cd7158e8c9832ca7d7511ad4e
767096c1124d62a8dc7f20b7bb012d69f05abe92
refs/heads/master
2020-12-08T11:00:16.832237
2020-01-08T21:19:21
2020-01-08T21:19:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
663
h
namespace sm_dance_bot { namespace s_pattern_states { struct SsrSPatternLoopStart : smacc::SmaccState<SsrSPatternLoopStart, SS> { using SmaccState::SmaccState; typedef mpl::list<smacc::Transition<EvLoopContinue<SsrSPatternLoopStart>, SsrSPatternRotate1, CONTINUELOOP>> reactions; static void onDefinition() { } void onInitialize() { } bool loopCondition() { auto &superstate = this->context<SS>(); return ++superstate.iteration_count == superstate.total_iterations(); } void onEntry() { throwLoopEventFromCondition(&SsrSPatternLoopStart::loopCondition); } }; } // namespace s_pattern_states } // namespace sm_dance_bot
[ "pibgeus@gmail.com" ]
pibgeus@gmail.com
b2da8b09dbe693c298209323eab6bf9f2ee73708
2115bffdd8e53109138a24efa693e5c6a1343be4
/SoftRP/TextCoordVertexShaderImpl.inl
6301e82adb7a4211f8342eb7a3c0aac2fe8c32a4
[ "MIT" ]
permissive
loreStefani/SoftRP
8c49fad9b464273041e2fe451ec38605a3503c18
2676145f74c734b272268820b1e1c503aa8ff765
refs/heads/master
2021-01-18T23:42:37.656522
2016-10-02T08:54:11
2016-10-02T08:54:11
45,831,932
0
0
null
null
null
null
UTF-8
C++
false
false
1,250
inl
#ifndef SOFTRP_TEXT_COORD_VERTEX_SHADER_IMPL_INL_ #define SOFTRP_TEXT_COORD_VERTEX_SHADER_IMPL_INL_ #include "TextCoordVertexShader.h" #include "Matrix.h" #include "FVector.h" #include "FMatrix.h" namespace SoftRP { #ifdef SOFTRP_MULTI_THREAD inline ThreadPool::Fence TextCoordVertexShader::operator()(const ShaderContext& sc, const Vertex* input, Vertex* output, size_t vertexCount, size_t instance, ThreadPool& threadPool) const #else inline void TextCoordVertexShader::operator()(const ShaderContext& sc, const Vertex* input, Vertex* output, size_t vertexCount, size_t instance) const #endif { const Math::Matrix4* projViewWorld = sc.constantBuffers()[0]->getField(0, instance).asMatrix4(); const FMatrix fprojViewWorld = createFM(*projViewWorld); for (size_t i = 0; i < vertexCount; i++, input++, output++) { FVector fv = createFV(input->position()); output->position() = createVector4FV(mulFM(fprojViewWorld, fv)); float* textCoords = output->getField(1); const float* inputTextCoords = input->getField(1); for (unsigned int i = 0; i < 2; i++) textCoords[i] = inputTextCoords[i]; } #ifdef SOFTRP_MULTI_THREAD return threadPool.currFence(); #endif } } #endif
[ "lorelore2291@gmail.com" ]
lorelore2291@gmail.com
7c31acb478c26044e76d0da7500095b6197865e0
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE78_OS_Command_Injection/s07/CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84a.cpp
8a7dcf9cc5343fe5e1d8d9aefb7e40222535501d
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
2,416
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84a.cpp Label Definition File: CWE78_OS_Command_Injection.strings.label.xml Template File: sources-sink-84a.tmpl.cpp */ /* * @description * CWE: 78 OS Command Injection * BadSource: environment Read input from an environment variable * GoodSource: Fixed string * Sinks: w32_spawnv * BadSink : execute command with wspawnv * Flow Variant: 84 Data flow: data passed to class constructor and destructor by declaring the class object on the heap and deleting it after use * * */ #include "std_testcase.h" #include "CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84.h" namespace CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84 { #ifndef OMITBAD void bad() { wchar_t * data; wchar_t dataBuffer[100] = L""; data = dataBuffer; CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84_bad * badObject = new CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84_bad(data); delete badObject; } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ static void goodG2B() { wchar_t * data; wchar_t dataBuffer[100] = L""; data = dataBuffer; CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84_goodG2B * goodG2BObject = new CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84_goodG2B(data); delete goodG2BObject; } void good() { goodG2B(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE78_OS_Command_Injection__wchar_t_environment_w32_spawnv_84; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
345a8312026c7c883a91d2192e28be48a38a2924
73bd731e6e755378264edc7a7b5d16132d023b6a
/CodeForces/29C.cpp
482b648e9e32796343faddd6fd6ee925cef97c0f
[]
no_license
IHR57/Competitive-Programming
375e8112f7959ebeb2a1ed6a0613beec32ce84a5
5bc80359da3c0e5ada614a901abecbb6c8ce21a4
refs/heads/master
2023-01-24T01:33:02.672131
2023-01-22T14:34:31
2023-01-22T14:34:31
163,381,483
0
3
null
null
null
null
UTF-8
C++
false
false
1,085
cpp
#include <bits/stdc++.h> #define MAX 100005 using namespace std; vector<int> graph[MAX]; int visited[MAX], org[MAX]; void dfs(int u) { visited[u] = 1; for(int i = 0; i < graph[u].size(); i++){ int v = graph[u][i]; if(!visited[v]){ dfs(v); } } printf("%d ", org[u]); } int main() { ios::sync_with_stdio(0), cin.tie(0), cout.tie(0); map<int, int> myMap; int idx = 0, n, u, v, degree[MAX] = {0}; cin>>n; for(int i = 0; i < n; i++){ cin>>u>>v; if(myMap.find(u) == myMap.end()){ myMap[u] = idx; org[idx] = u; idx++; } if(myMap.find(v) == myMap.end()){ myMap[v] = idx; org[idx] = v; idx++; } int x = myMap[u]; int y = myMap[v]; graph[x].push_back(y); graph[y].push_back(x); degree[x]++, degree[y]++; } for(int i = 0; i < idx; i++){ if(degree[i] == 1){ dfs(i); break; } } printf("\n"); return 0; }
[ "iqbalhrasel95@gmail.com" ]
iqbalhrasel95@gmail.com
1cce57cf7209baeefffcaaa6ddb40548491ae8df
0c435d78e50b10bcf30c8be2a29c1000d20979fc
/Moniteur/src/World/World.cpp
69735637e99f025bc7eb58de2d19036a81af1513
[]
no_license
Dab0u1/Zappy
76943490b704f3ad0a51169e96556d1d39b48d2c
7530e1e0075335b06489883a5604d25d3b9ca9ee
refs/heads/master
2021-05-27T05:05:47.922192
2014-07-12T13:44:12
2014-07-12T13:44:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,258
cpp
// // World.cpp for World in /home/vallee_c/rendu/PSU_2013_zappy/Moniteur // // Made by david vallee // Login <vallee_c@pc-vallee_c> // // Started on Sat Jul 5 20:07:10 2014 david vallee // Last update Thu Jul 10 17:28:52 2014 david vallee // #include <sstream> #include <cstdio> #include "World.hpp" World::World() { } World::~World() { } void World::setFdServer(int fd) { fdServer = fd; } int World::getFdServer() { return (fdServer); } int World::get_msz(std::string str, int *x, int *y) { int pos; int pos2; std::string sizex; std::string sizey; pos = str.find(" ", 4); sizex = str.substr(4, pos); pos2 = str.find("\n", pos); sizey = str.substr(pos, pos2); std::stringstream ss(sizex); std::stringstream ss2(sizey); ss >> *x; ss2 >> *y; return (0); } int World::get_val(const char *str, int *i) { char buff[20]; int j; int r; j = 0; while (str[*i] && str[*i] != ' ' && str[*i] != '\n') { buff[j] = str[*i]; *i = *i + 1; ++j; } buff[j] = '\0'; std::stringstream ss(buff); ss >> r; return (r); } int World::push_bct(std::string bct) { const char *str; int i; int x; int y; int type; if ((str = bct.c_str()) == NULL) return (0); i = 4; x = get_val(str, &i); ++i; y = get_val(str, &i); while (str[i] && str[i] != '\n' && str[i] == ' ') { ++i; type = get_val(str, &i); map.pushElem(x, y, type); } return (0); } int World::parse_pnw(std::string cmd, int *a) { std::string s(cmd.substr(*a)); int i; int res = -1; if ((i = s.find(' ')) != std::string::npos) { std::string str(s.substr(0, i)); std::stringstream ss(str); ss >> res; *a = *a + i + 1; return (res); } return (-1); } std::string World::parse_pnw_team(std::string cmd, int *a) { std::string s(cmd.substr(*a)); return (s); } t_player *World::getPnw(std::string cmd) { t_player *p; int a; a = 5; p = new t_player; p->id = parse_pnw(cmd, &a); p->x = parse_pnw(cmd, &a); p->y = parse_pnw(cmd, &a); p->o = parse_pnw(cmd, &a); p->l = parse_pnw(cmd, &a); p->team = parse_pnw_team(cmd, &a); p->anime = 1; p->time = 0; std::cout << p->id << p->x << p->y << p->o << p->l << p->team << std::endl; return (p); } int World::getintarg(std::string str) { std::stringstream ss(str); int i; ss >> i; return (i); } int World::execCmd(std::string cmd) { std::cout << cmd << std::endl; if (cmd.compare(0, 4, "bct ") == 0) push_bct(cmd); else if (cmd.compare(0, 5, "pnw #") == 0) players.newPlayer(getPnw(cmd)); else if (cmd.compare(0, 5, "pdi #") == 0) players.delPlayer(getintarg(cmd.substr(5, cmd.length()))); return (1); } int World::load() { std::string cmd; int r; r = get_msg(fdServer, cmd); if (r <= 0) return (0); if (cmd.compare(0, 4, "msz ") == 0) { int a = 0; int b = 0; get_msz(cmd, &a, &b); map.init(a, b); return (1); } return (0); } int World::update() { std::string cmd; int r; if ((r = get_msg(fdServer, cmd)) == 0) return (0); else if (r == -1) return (-1); else if (r == -2) return (-2); execCmd(cmd); return (1); }
[ "gonon_c@epitech.eu" ]
gonon_c@epitech.eu