text
stringlengths 8
6.88M
|
|---|
#include "ros/ros.h"
//Librerias propias usadas
#include "constantes.hpp"
#include "camina/v_repConst.h"
// Used data structures:
#include "camina/EspacioTrabajoParametros.h"
// Used API services:
#include "vrep_common/VrepInfo.h"
// Global variables (modified by topic subscribers):
bool simulationRunning=true;
bool sensorTrigger=false;
float simulationTime=0.0f;
float PosicionPata_x=0.0, PosicionPata_y=0.0, PosicionPata_x2=0.0, PosicionPata_y2=0.0, anguloPatas_rad=0.0;
float origenPata_x[6], origenPata_y[6], rotacionPata[6];
float EspacioTrabajoPatas_yx[6][8], EspacioTrabajoPatas_ij[6][8];
/*
EspacioTrabajoPatas_yx[6][8]
EspacioTrabajoPatas_yx(ij)[Pata1]: P1_y(i);P1_x(j);P2_y(i);P2_x(j);P3_y(i);P3_x(j);P4_y(i);P4_x(j)
EspacioTrabajoPatas_yx(ij)[Pata2]: P1_y(i);P1_x(j);P2_y(i);P2_x(j);P3_y(i);P3_x(j);P4_y(i);P4_x(j)
EspacioTrabajoPatas_yx(ij)[Pata3]: P1_y(i);P1_x(j);P2_y(i);P2_x(j);P3_y(i);P3_x(j);P4_y(i);P4_x(j)
EspacioTrabajoPatas_yx(ij)[Pata4]: P1_y(i);P1_x(j);P2_y(i);P2_x(j);P3_y(i);P3_x(j);P4_y(i);P4_x(j)
EspacioTrabajoPatas_yx(ij)[Pata5]: P1_y(i);P1_x(j);P2_y(i);P2_x(j);P3_y(i);P3_x(j);P4_y(i);P4_x(j)
EspacioTrabajoPatas_yx(ij)[Pata6]: P1_y(i);P1_x(j);P2_y(i);P2_x(j);P3_y(i);P3_x(j);P4_y(i);P4_x(j)
*/
void infoCallback(const vrep_common::VrepInfo::ConstPtr& info)
{
simulationTime=info->simulationTime.data;
simulationRunning=(info->simulatorState.data&1)!=0;
}
/* Servicio que devuelve posicion de motores (radianes) para movimiento de pata
..Todos los cálculos se realizan en el sistema del robot y se transforma a cada una de las patas:
..Se reciben coordenadas de trayectoria en Sistema0
..Se transforman a Sistema1 (sistema de cada pata)
..Se calcula la cinematica inversa a estas coordenadas transformadas
*/
bool EspacioTrabajoPatas(camina::EspacioTrabajoParametros::Request &req,
camina::EspacioTrabajoParametros::Response &res)
{
for(int k=0;k<Npuntos;k++){
res.EspacioTrabajoPata1_x.push_back(0);
res.EspacioTrabajoPata2_x.push_back(0);
res.EspacioTrabajoPata3_x.push_back(0);
res.EspacioTrabajoPata4_x.push_back(0);
res.EspacioTrabajoPata5_x.push_back(0);
res.EspacioTrabajoPata6_x.push_back(0);
res.EspacioTrabajoPata1_y.push_back(0);
res.EspacioTrabajoPata2_y.push_back(0);
res.EspacioTrabajoPata3_y.push_back(0);
res.EspacioTrabajoPata4_y.push_back(0);
res.EspacioTrabajoPata5_y.push_back(0);
res.EspacioTrabajoPata6_y.push_back(0);
}
float P1_x=0.0,P1_y=0.0,P2_x=0.0,P2_y=0.0,P3_x=0.0,P3_y=0.0,P4_x=0.0,P4_y=0.0;
float Py=0.0,Px=0.0;
for(int k=0;k<Npatas;k++){
//--Punto1
Py = 0.0;
Px = -EspacioTrabajo_X;
P1_y = sin(rotacionPata[k])*Px+cos(rotacionPata[k])*Py+origenPata_y[k];
P1_x = cos(rotacionPata[k])*Px-sin(rotacionPata[k])*Py+origenPata_x[k];
//--Punto2
Py = EspacioTrabajo_Y;
Px = -EspacioTrabajo_X;
P2_y = sin(rotacionPata[k])*Px+cos(rotacionPata[k])*Py+origenPata_y[k];
P2_x = cos(rotacionPata[k])*Px-sin(rotacionPata[k])*Py+origenPata_x[k];
//--Punto3
Py = 0.0;
Px = EspacioTrabajo_X;
P3_y = sin(rotacionPata[k])*Px+cos(rotacionPata[k])*Py+origenPata_y[k];
P3_x = cos(rotacionPata[k])*Px-sin(rotacionPata[k])*Py+origenPata_x[k];
//--Punto4
Py = EspacioTrabajo_Y;
Px = EspacioTrabajo_X;
P4_y = sin(rotacionPata[k])*Px+cos(rotacionPata[k])*Py+origenPata_y[k];
P4_x = cos(rotacionPata[k])*Px-sin(rotacionPata[k])*Py+origenPata_x[k];
switch(k+1){
case Pata1:
//-- Transformacion de coordenadas segun posicion y rotacion del robot
res.EspacioTrabajoPata1_y[0] = sin(req.teta_CuerpoRobot)*P1_x+cos(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata1_x[0] = cos(req.teta_CuerpoRobot)*P1_x-sin(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata1_y[1] = sin(req.teta_CuerpoRobot)*P2_x+cos(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata1_x[1] = cos(req.teta_CuerpoRobot)*P2_x-sin(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata1_y[2] = sin(req.teta_CuerpoRobot)*P3_x+cos(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata1_x[2] = cos(req.teta_CuerpoRobot)*P3_x-sin(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata1_y[3] = sin(req.teta_CuerpoRobot)*P4_x+cos(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata1_x[3] = cos(req.teta_CuerpoRobot)*P4_x-sin(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_x;
break;
case Pata2:
//-- Transformacion de coordenadas segun posicion y rotacion del robot
res.EspacioTrabajoPata2_y[0] = sin(req.teta_CuerpoRobot)*P1_x+cos(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata2_x[0] = cos(req.teta_CuerpoRobot)*P1_x-sin(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata2_y[1] = sin(req.teta_CuerpoRobot)*P2_x+cos(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata2_x[1] = cos(req.teta_CuerpoRobot)*P2_x-sin(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata2_y[2] = sin(req.teta_CuerpoRobot)*P3_x+cos(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata2_x[2] = cos(req.teta_CuerpoRobot)*P3_x-sin(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata2_y[3] = sin(req.teta_CuerpoRobot)*P4_x+cos(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata2_x[3] = cos(req.teta_CuerpoRobot)*P4_x-sin(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_x;
break;
case Pata3:
//-- Transformacion de coordenadas segun posicion y rotacion del robot
res.EspacioTrabajoPata3_y[0] = sin(req.teta_CuerpoRobot)*P1_x+cos(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata3_x[0] = cos(req.teta_CuerpoRobot)*P1_x-sin(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata3_y[1] = sin(req.teta_CuerpoRobot)*P2_x+cos(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata3_x[1] = cos(req.teta_CuerpoRobot)*P2_x-sin(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata3_y[2] = sin(req.teta_CuerpoRobot)*P3_x+cos(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata3_x[2] = cos(req.teta_CuerpoRobot)*P3_x-sin(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata3_y[3] = sin(req.teta_CuerpoRobot)*P4_x+cos(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata3_x[3] = cos(req.teta_CuerpoRobot)*P4_x-sin(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_x;
break;
case Pata4:
//-- Transformacion de coordenadas segun posicion y rotacion del robot
res.EspacioTrabajoPata4_y[0] = sin(req.teta_CuerpoRobot)*P1_x+cos(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata4_x[0] = cos(req.teta_CuerpoRobot)*P1_x-sin(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata4_y[1] = sin(req.teta_CuerpoRobot)*P2_x+cos(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata4_x[1] = cos(req.teta_CuerpoRobot)*P2_x-sin(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata4_y[2] = sin(req.teta_CuerpoRobot)*P3_x+cos(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata4_x[2] = cos(req.teta_CuerpoRobot)*P3_x-sin(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata4_y[3] = sin(req.teta_CuerpoRobot)*P4_x+cos(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata4_x[3] = cos(req.teta_CuerpoRobot)*P4_x-sin(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_x;
break;
case Pata5:
//-- Transformacion de coordenadas segun posicion y rotacion del robot
res.EspacioTrabajoPata5_y[0] = sin(req.teta_CuerpoRobot)*P1_x+cos(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata5_x[0] = cos(req.teta_CuerpoRobot)*P1_x-sin(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata5_y[1] = sin(req.teta_CuerpoRobot)*P2_x+cos(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata5_x[1] = cos(req.teta_CuerpoRobot)*P2_x-sin(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata5_y[2] = sin(req.teta_CuerpoRobot)*P3_x+cos(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata5_x[2] = cos(req.teta_CuerpoRobot)*P3_x-sin(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata5_y[3] = sin(req.teta_CuerpoRobot)*P4_x+cos(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata5_x[3] = cos(req.teta_CuerpoRobot)*P4_x-sin(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_x;
break;
case Pata6:
//-- Transformacion de coordenadas segun posicion y rotacion del robot
res.EspacioTrabajoPata6_y[0] = sin(req.teta_CuerpoRobot)*P1_x+cos(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata6_x[0] = cos(req.teta_CuerpoRobot)*P1_x-sin(req.teta_CuerpoRobot)*P1_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata6_y[1] = sin(req.teta_CuerpoRobot)*P2_x+cos(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata6_x[1] = cos(req.teta_CuerpoRobot)*P2_x-sin(req.teta_CuerpoRobot)*P2_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata6_y[2] = sin(req.teta_CuerpoRobot)*P3_x+cos(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata6_x[2] = cos(req.teta_CuerpoRobot)*P3_x-sin(req.teta_CuerpoRobot)*P3_y+req.PosicionCuerpo_x;
res.EspacioTrabajoPata6_y[3] = sin(req.teta_CuerpoRobot)*P4_x+cos(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_y;
res.EspacioTrabajoPata6_x[3] = cos(req.teta_CuerpoRobot)*P4_x-sin(req.teta_CuerpoRobot)*P4_y+req.PosicionCuerpo_x;
break;
}
}
return true;
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "EspacioTrabajo_server");
ros::NodeHandle n;
ros::Subscriber subInfo=n.subscribe("/vrep/info",1,infoCallback);
ros::ServiceServer service = n.advertiseService("EspacioTrabajo", EspacioTrabajoPatas);
anguloPatas_rad = anguloPatas*pi/180;
PosicionPata_x = radioCuerpo*cos(anguloPatas_rad);
PosicionPata_y = radioCuerpo*sin(anguloPatas_rad);
PosicionPata_x2 = radioCuerpo;
PosicionPata_y2 = 0.0;
//-- Pata1
origenPata_y[0]=PosicionPata_y;
origenPata_x[0]=-PosicionPata_x;
rotacionPata[0]=rotacion_Pata1;
//-- Pata2
origenPata_y[1]=PosicionPata_y;
origenPata_x[1]=PosicionPata_x;
rotacionPata[1]=rotacion_Pata2;
//-- Pata3
origenPata_y[2]=PosicionPata_y2;
origenPata_x[2]=-PosicionPata_x2;
rotacionPata[2]=rotacion_Pata3;
//-- Pata4
origenPata_y[3]=PosicionPata_y2;
origenPata_x[3]=PosicionPata_x2;
rotacionPata[3]=rotacion_Pata4;
//-- Pata5
origenPata_y[4]=-PosicionPata_y;
origenPata_x[4]=-PosicionPata_x;
rotacionPata[4]=rotacion_Pata5;
//-- Pata6
origenPata_y[5]=-PosicionPata_y;
origenPata_x[5]=PosicionPata_x;
rotacionPata[5]=rotacion_Pata6;
while (ros::ok() && simulationRunning) {
ros::spinOnce();
}
return 0;
}
|
#include<iostream>
using namespace std;
int dp[5000];
int dp2[21];
int missile[5000];
int n;
int main()
{
cin >>n;
for(int i=0;i<n;i++)
{
cin >>missile[i];
dp[i]=1;
}
for(int i=0;i<n;i++)
{
for(int j=0;j<i;j++)
{
if(missile[j]<=missile[i])
{
dp[i]=max(dp[i],dp[j]+1);
}
}
}
int ans1=0,ans2=0;
for(int i=0;i<n;i++)
{
ans1=max(ans1,dp[i]);
}
cout <<ans1<<endl;
return 0;
}
|
#include "CheckboardTexture.h"
#include "ConstantTexture.h"
#include "Base/PCH.h"
#include "tinyxml2.h"
#include "Base/ParseHelper.h"
CheckboardTexture::CheckboardTexture()
{
}
CheckboardTexture::CheckboardTexture( ConstantTexture* tex1 , ConstantTexture* tex2 )
{
texture1 = tex1;
texture2 = tex2;
}
CheckboardTexture::~CheckboardTexture()
{
SAFE_DELETE( texture1 );
SAFE_DELETE( texture2 );
}
void CheckboardTexture::Deserialization( tinyxml2::XMLElement* RootElement )
{
Vector3f value;
ParseVector( RootElement->Attribute( "value1" ) , &value[0] );
texture1 = new ConstantTexture( value );
ParseVector( RootElement->Attribute( "value2" ) , &value[0] );
texture2 = new ConstantTexture( value );
}
void CheckboardTexture::Serialization( tinyxml2::XMLDocument& xmlDoc , tinyxml2::XMLElement* pRootElement )
{
{
Vector3f& value = texture1->GetValue();
char* pText = new char[50];
sprintf( pText , "%f,%f,%f" , value[0] , value[1] , value[2] );
pRootElement->SetAttribute( "value1" , pText );
}
{
Vector3f& value = texture2->GetValue();
char* pText = new char[50];
sprintf( pText , "%f,%f,%f" , value[0] , value[1] , value[2] );
pRootElement->SetAttribute( "value2" , pText );
}
}
|
//$Id$
//------------------------------------------------------------------------------
// TATCException
//------------------------------------------------------------------------------
// GMAT: General Mission Analysis Tool.
//
// Copyright (c) 2002-2014 United States Government as represented by the
// Administrator of The National Aeronautics and Space Administration.
// All Other Rights Reserved.
//
// Author: Wendy Shoan
// Created: 2016.05.05
//
/**
* Exception class used by the TAT-C code to generate visibilty reports.
*/
//------------------------------------------------------------------------------
#ifndef TATCException_hpp
#define TATCException_hpp
#include "BaseException.hpp"
#include "gmatdefs.hpp" // For GMAT_API
/**
* Exception class used to report issues with event location.
*/
class GMAT_API TATCException : public BaseException
{
public:
TATCException(const std::string &details = "");
// virtual ~TATCException();
TATCException(const TATCException &be);
};
#endif // TATCException_hpp
|
#ifndef MAIN_WINDOW_H
#define MAIN_WINDOW_H
#include <QDialog>
#include <QMainWindow>
#include <QtWidgets>
#include <QtGui>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
int tasks_count = 0, tests_count = 0, current_test = 1;
QString contest_name, task_name;
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void slotAction();
void on_pushButton_clicked();
void on_pushButton_2_clicked();
void on_pushButton_3_clicked();
void on_pushButton_4_clicked();
void on_pushButton_5_clicked();
void on_pushButton_6_clicked();
void on_listWidget_clicked(const QModelIndex &index);
void on_listWidget_doubleClicked(const QModelIndex &index);
void load_contest(QString);
void import_task(QString, QString);
void change_condition(QString);
private:
Ui::MainWindow *ui;
};
#endif // MAIN_WINDOW_H
|
#include<stdio.h>
int dis[7],book[7],h[7],pos[7],size;
//dis存放生成树与其他顶点的距离,book标记已是树的顶点
//h用来保存堆,pos用来存储每个顶点在堆中的位置,size为堆的大小
void swap(int x,int y);//交换堆中结点x与结点y的值
void siftdown(int i);//从结点i开始向下调整堆
void siftup(int i);//从结点i开始向上调整堆
int pop();//从堆顶取出一个元素
int main()
{
int n,m,i,j,k;
//u,v,w,next数组根据实际情况来设置构建邻接表,此图是无向图,要比2*m大1
//first要比n的值大1,比2*m的值大1
int u[19],v[19],w[19],first[7],next[19];
int inf=99999999;//此处用99999999代表正无穷
int count=0,sum=0;//count用来记录生成树中顶点的个数,sum用来存储路径之和
//读入顶点个数和边数
scanf("%d %d",&n,&m);
//开始读入边
for(i=1;i<=m;i++)
scanf("%d %d %d",&u[i],&v[i],&w[i]);
//此处是无向图,还需要把所有的边方向存储一次
for(i=m+1;i<=2*m;i++)
{
u[i]=v[i-m];
v[i]=u[i-m];
w[i]=w[i-m];
}
//开始用邻接表存储边
for(i=1;i<=n;i++)
first[i]=-1;
for(i=1;i<=2*m;i++)
{
next[i]=first[u[i]];
first[u[i]]=i;
}
//prim算法核心部分
//将1号顶点加入生成树中
book[1]=1;//加入树的顶点进行标记
count++;//记录已经成为生成树的顶点
//初始化dis数组,最开始是1号顶点到其余各个顶点的初始距离
dis[1]=0;
for(i=2;i<=n;i++)//因为1号顶点已经加入,所以从i=2开始
dis[i]=inf;
//从邻接表中取出1号顶点的各边
k=first[1];
//遍历1号顶点的所有边
while(k!=-1)
{
dis[v[k]]=w[k];
k=next[k];
}
//初始化堆
size=n;
for(i=1;i<=size;i++)
{
h[i]=i;
pos[i]=i;
}
for(i=size/2;i>=1;i--)
siftdown(i);//从子树开始向下调整
pop();//先弹出一个堆顶元素,此时堆顶为1号顶点
while(count<n)
{
j=pop();
book[j]=1;//选出堆中最近的顶点标记上
count++;
sum=sum+dis[j];//更新最小生成树的权值
//由于加入了j顶点,其他顶点与新的生成树的最短距离会发生改变
//扫描与顶点j相关的所有边,看能否让顶点j成为中转点
k=first[j];
while(k!=-1)
{
if(0==book[v[k]] && dis[v[k]]>w[k])
{
dis[v[k]]=w[k];//更新距离
siftup(pos[v[k]]);//对该点在堆中进行向上调整
//注意pos[[v[k]]存储的是该点在堆中的位置
}
k=next[k];
}
}
printf("最小生成树的权值为%d",sum);
return 0;
}
void swap(int x,int y)
{
//交换堆中元素x与元素y的值
int t;
t=h[x];
h[x]=h[y];
h[y]=t;
//注意到pos数组是存放顶点在堆中的位置,当交换堆中两元素,也要改变pos数组
t=pos[h[x]];
pos[h[x]]=pos[h[y]];
pos[h[y]]=t;
}
void siftdown(int i)//从堆中结点i开始向下调整,此处建立最小堆
{
int t,flag=0;//flag用来标记上是否已经处于合适的位置
while(2*i<=size && 0==flag)
{
//能进入循环,则说明左儿子一定存在,先与左儿子比较
if(dis[h[i]]>dis[h[i*2]])
t=i*2;
else
t=i;
//判断是否存在右儿子
if(i*2+1<=size)
{
if(dis[h[t]]>dis[h[2*i+1]])//与右儿子比较
t=2*i+1;
}
if(i!=t)//判断此轮是否需要进行交换
{
swap(i,t);
i=t;
}
else
flag=1;//不需要交换则说明已经处于合适的根结点处
}
}
void siftup(int i)//从结点i开始向上调整
{
int flag=0;//用来标记是否需要继续向上调整
//先判断当前元素是否处于堆顶
if(1==i)
return ;
while(i!=1 && 0==flag)
{
//判断是否比父亲小
if(dis[h[i]]<dis[h[i/2]])
swap(i,i/2);//交换它与爸爸的值
else
flag=1;//说明不出要再向上调整了
i=i/2;
}
}
int pop()
{
//从取出堆顶元素
int t;
t=h[1];//临时变量记录堆顶的值
pos[t]=0;//取出后,不在堆中,所以改变pos数组中的值
h[1]=h[size];//把堆的最后一个值赋给对堆顶
pos[h[1]]=1;//元素在堆中改变位置后,pos的值也会发生变化
size--;//元素个数减少
siftdown(1);//从堆顶向下调整
return t;//返回记录的堆顶值
}
|
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "signedindialog.h"
#include "dllmysql.h"
#include "rfiddll.h"
#include "pincodedll.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void login(QString);
void on_btnSammuta_clicked();
public slots:
void validatePIN(QString pin);
int valitaTili () {return idTili;}
signals:
private:
Ui::MainWindow *ui;
RfidDLL *olioRfidDLL;
PincodeDLL *olioPincodeDLL;
DLLMySQL *olioMysqlDLL;
SignedInDialog *olioSignedIn;
QString pin="";
QString userID="";
int idTili;
};
#endif // MAINWINDOW_H
|
#include "Level2Button.h"
#include "View.h"
Level2Button::Level2Button(QGraphicsScene *Scene) : level2Scene{Scene}
{
clickl2 = false;
//set picture
setPixmap(QPixmap(":/images/level2.png"));
//add to scene
Scene->addItem(this);
//setPos
setPos(450,537);
//create level2 button music
level2ButtonMusic = new QMediaPlayer();
level2ButtonMusic->setMedia(QUrl("qrc:/music/click.mp3"));
}
void Level2Button::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
clickl2 = true;
level2ButtonMusic->play();
auto myV = new View(2,2);
myV->show();
}
Level2Button::~Level2Button()
{
delete level2Scene;
delete level2ButtonMusic;
}
|
///////////////////////////////////////////////////
// CREATE BY CA1CVI http://www.antofalinux.cl
// BASED ON THE WORK OF JI3BNB
// 45.45 baud BAUDOT TELEMETRY BEACON 1.5
// http://k183.bake-neko.net/ji3bnb/page13.html
// DESIGNED FOR AMATEUR RADIO COMMUNICATION
// THIS PROGRAM IS IN THE PUBLIC DOMAIN
///////////////////////////////////////////////////
#include <stdio.h>
#define AFSK_OUT 12 //---- AFSK AUDIO OUTPUT
#define FSK_OUT 13 //---- TTL LEVEL OUTPUT
#define MARK 2295
#define SPACE 2125
#define dht_dpin A3
#define led1 10
#define PTT 11
byte temperatura;
byte humedad;
const char ID[] = "CE1RLP ESTACION ORION DE CA1CVI CA1CVI CA1CVI /B ";
boolean d1;
boolean d2;
boolean d3;
boolean d4;
boolean d5;
boolean sSq;
boolean sRd = 1;
boolean space;
boolean fig1;
boolean fig2;
byte i;
byte j;
byte idC;
char ch;
char sVal[15];
byte bGlobalErr;
byte dht_dat[5];
void setup()
{
InitDHT();
pinMode(FSK_OUT, OUTPUT);
pinMode(AFSK_OUT, OUTPUT);
pinMode(led1, OUTPUT);
pinMode(PTT, OUTPUT);
digitalWrite(FSK_OUT, HIGH);
tone(AFSK_OUT, MARK);
Serial.begin(9600);
delay(300);
Serial.println("Humedad y Temperatura");
delay(700);
// delay(2000); //esto es para dar tiempo al controlador
}
void sendFsk()
{
//--start bit
digitalWrite(FSK_OUT, LOW);
tone(AFSK_OUT, SPACE);
delay(22);
//--bit1
if(d1 == 1){
digitalWrite(FSK_OUT, HIGH);
tone(AFSK_OUT, MARK);
}
else{
digitalWrite(FSK_OUT, LOW);
tone(AFSK_OUT, SPACE);
}
delay(22);
//--bit2
if(d2 == 1){
digitalWrite(FSK_OUT, HIGH);
tone(AFSK_OUT, MARK);
}
else{
digitalWrite(FSK_OUT, LOW);
tone(AFSK_OUT, SPACE);
}
delay(22);
//--bit3
if(d3 == 1){
digitalWrite(FSK_OUT, HIGH);
tone(AFSK_OUT, MARK);
}
else{
digitalWrite(FSK_OUT, LOW);
tone(AFSK_OUT, SPACE);
}
delay(22);
//--bit4
if(d4 == 1){
digitalWrite(FSK_OUT, HIGH);
tone(AFSK_OUT, MARK);
}
else{
digitalWrite(FSK_OUT, LOW);
tone(AFSK_OUT, SPACE);
}
delay(22);
//--bit5
if(d5 == 1){
digitalWrite(FSK_OUT, HIGH);
tone(AFSK_OUT, MARK);
}
else{
digitalWrite(FSK_OUT, LOW);
tone(AFSK_OUT, SPACE);
}
delay(22);
//--stop bit
digitalWrite(FSK_OUT, HIGH);
tone(AFSK_OUT, MARK);
delay(33);
}
void chTable()
{
if(ch == ' ')
{
d1 = 0; d2 = 0; d3 = 1; d4 = 0; d5 = 0;
}
else if(ch == 'A'){d1 = 1; d2 = 1; d3 = 0; d4 = 0; d5 = 0; fig2 = 0;}
else if(ch == 'B'){d1 = 1; d2 = 0; d3 = 0; d4 = 1; d5 = 1; fig2 = 0;}
else if(ch == 'C'){d1 = 0; d2 = 1; d3 = 1; d4 = 1; d5 = 0; fig2 = 0;}
else if(ch == 'D'){d1 = 1; d2 = 0; d3 = 0; d4 = 1; d5 = 0; fig2 = 0;}
else if(ch == 'E'){d1 = 1; d2 = 0; d3 = 0; d4 = 0; d5 = 0; fig2 = 0;}
else if(ch == 'F'){d1 = 1; d2 = 0; d3 = 1; d4 = 1; d5 = 0; fig2 = 0;}
else if(ch == 'G'){d1 = 0; d2 = 1; d3 = 0; d4 = 1; d5 = 1; fig2 = 0;}
else if(ch == 'H'){d1 = 0; d2 = 0; d3 = 1; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == 'I'){d1 = 0; d2 = 1; d3 = 1; d4 = 0; d5 = 0; fig2 = 0;}
else if(ch == 'J'){d1 = 1; d2 = 1; d3 = 0; d4 = 1; d5 = 0; fig2 = 0;}
else if(ch == 'K'){d1 = 1; d2 = 1; d3 = 1; d4 = 1; d5 = 0; fig2 = 0;}
else if(ch == 'L'){d1 = 0; d2 = 1; d3 = 0; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == 'M'){d1 = 0; d2 = 0; d3 = 1; d4 = 1; d5 = 1; fig2 = 0;}
else if(ch == 'N'){d1 = 0; d2 = 0; d3 = 1; d4 = 1; d5 = 0; fig2 = 0;}
else if(ch == 'O'){d1 = 0; d2 = 0; d3 = 0; d4 = 1; d5 = 1; fig2 = 0;}
else if(ch == 'P'){d1 = 0; d2 = 1; d3 = 1; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == 'Q'){d1 = 1; d2 = 1; d3 = 1; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == 'R'){d1 = 0; d2 = 1; d3 = 0; d4 = 1; d5 = 0; fig2 = 0;}
else if(ch == 'S'){d1 = 1; d2 = 0; d3 = 1; d4 = 0; d5 = 0; fig2 = 0;}
else if(ch == 'T'){d1 = 0; d2 = 0; d3 = 0; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == 'U'){d1 = 1; d2 = 1; d3 = 1; d4 = 0; d5 = 0; fig2 = 0;}
else if(ch == 'V'){d1 = 0; d2 = 1; d3 = 1; d4 = 1; d5 = 1; fig2 = 0;}
else if(ch == 'W'){d1 = 1; d2 = 1; d3 = 0; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == 'X'){d1 = 1; d2 = 0; d3 = 1; d4 = 1; d5 = 1; fig2 = 0;}
else if(ch == 'Y'){d1 = 1; d2 = 0; d3 = 1; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == 'Z'){d1 = 1; d2 = 0; d3 = 0; d4 = 0; d5 = 1; fig2 = 0;}
else if(ch == '0'){d1 = 0; d2 = 1; d3 = 1; d4 = 0; d5 = 1; fig2 = 1;}
else if(ch == '1'){d1 = 1; d2 = 1; d3 = 1; d4 = 0; d5 = 1; fig2 = 1;}
else if(ch == '2'){d1 = 1; d2 = 1; d3 = 0; d4 = 0; d5 = 1; fig2 = 1;}
else if(ch == '3'){d1 = 1; d2 = 0; d3 = 0; d4 = 0; d5 = 0; fig2 = 1;}
else if(ch == '4'){d1 = 0; d2 = 1; d3 = 0; d4 = 1; d5 = 0; fig2 = 1;}
else if(ch == '5'){d1 = 0; d2 = 0; d3 = 0; d4 = 0; d5 = 1; fig2 = 1;}
else if(ch == '6'){d1 = 1; d2 = 0; d3 = 1; d4 = 0; d5 = 1; fig2 = 1;}
else if(ch == '7'){d1 = 1; d2 = 1; d3 = 1; d4 = 0; d5 = 0; fig2 = 1;}
else if(ch == '8'){d1 = 0; d2 = 1; d3 = 1; d4 = 0; d5 = 0; fig2 = 1;}
else if(ch == '9'){d1 = 0; d2 = 0; d3 = 0; d4 = 1; d5 = 1; fig2 = 1;}
else if(ch == '-'){d1 = 1; d2 = 1; d3 = 0; d4 = 0; d5 = 0; fig2 = 1;}
else if(ch == '?'){d1 = 1; d2 = 0; d3 = 0; d4 = 1; d5 = 1; fig2 = 1;}
else if(ch == ':'){d1 = 0; d2 = 1; d3 = 1; d4 = 1; d5 = 0; fig2 = 1;}
else if(ch == '('){d1 = 1; d2 = 1; d3 = 1; d4 = 1; d5 = 0; fig2 = 1;}
else if(ch == ')'){d1 = 0; d2 = 1; d3 = 0; d4 = 0; d5 = 1; fig2 = 1;}
else if(ch == '.'){d1 = 0; d2 = 0; d3 = 1; d4 = 1; d5 = 1; fig2 = 1;}
else if(ch == ','){d1 = 0; d2 = 0; d3 = 1; d4 = 1; d5 = 0; fig2 = 1;}
else if(ch == '/'){d1 = 1; d2 = 0; d3 = 1; d4 = 1; d5 = 1; fig2 = 1;}
else if(ch == '+'){d1 = 1; d2 = 0; d3 = 0; d4 = 0; d5 = 1; fig2 = 1;} //ITA2
else if(ch == '\0')
{
/////
}
else
{
ch = ' ';
d1 = 0; d2 = 0; d3 = 1; d4 = 0; d5 = 0;
}
}
void loop()
{
//SEND SENSOR VALUES
ReadDHT();
if(sSq == 0)
{
if( sRd == 1)
{
if(i == 0)
{
digitalWrite(led1, HIGH); //LED DEL PTT
digitalWrite(PTT, HIGH); // ACTIVAR PTT
humedad = dht_dat[0];
temperatura = dht_dat[2];
sprintf(sVal, "HUMEDAD: %02d", humedad, 0);
// sprintf(sVal, "HUMEDAD: ", dht_dat[0], DEC);
Serial.println (sVal);
}
if(i == 1)
{
sprintf(sVal, "HUMEDAD: %02d", humedad, DEC);
// sprintf(sVal, "HUMEDAD: ", dht_dat[0], DEC);
// Serial.println (sVal);
// sprintf(sVal, "TEMPERATURA:" temperatura, 0);
dht_dat[0]='0';
}
if(i == 2)
{
// sprintf(sVal,"TEMPERATURA: %02d", dht_dat[2], 0);
sprintf(sVal, "TEMPERATURA: %02d", temperatura,0);
Serial.println (sVal);
dht_dat[2]='0';
}
sRd = 0;
}
ch = sVal[j];
if(ch != '\0')
{
chTable();
if(fig1 == 0 && fig2 == 1)
{
d1 = 1; d2 = 1; d3 = 0; d4 = 1; d5 = 1; //FIGURES
}
else if(fig1 == 1 && fig2 == 0)
{
d1 = 1; d2 = 1; d3 = 1; d4 = 1; d5 = 1; //LETTERS
}
else if(space == 1 && fig2 == 1)
{
d1 = 1; d2 = 1; d3 = 0; d4 = 1; d5 = 1; //FIGURES
}
else
{
j++;
}
if(fig2 == 0 || fig2 == 1)
{
space = 0;
fig1 = fig2;
}
sendFsk();
}
if(ch == '\0')
{
d1 = 0; d2 = 0; d3 = 1; d4 = 0; d5 = 0; //SPACE
space = 1;
sendFsk();
i++;
if(i == 4) //OVERFLOW ERA 4
{
i = 0;
sSq = 1;
}
j = 0;
sRd = 1;
}
}
//SEND ID
if(sSq == 1)
{
if(idC < 3) //se modifica valor de 9 a 2
{
d1 = 0; d2 = 0; d3 = 0; d4 = 1; d5 = 0; //CR
sendFsk();
d1 = 0; d2 = 1; d3 = 0; d4 = 0; d5 = 0; //LF
sendFsk();
sSq = 0;
j = 0;
delay(700);
idC++;
}
if(idC == 3) //este es el contador que hay que modificar para el numero de veces
{
ch = ID[j];
if(ch != '\0')
{
chTable();
if(fig1 == 0 && fig2 == 1)
{
d1 = 1; d2 = 1; d3 = 0; d4 = 1; d5 = 1; //FIGURES
}
else if(fig1 == 1 && fig2 == 0)
{
d1 = 1; d2 = 1; d3 = 1; d4 = 1; d5 = 1; //LETTERS
}
else if(space == 1 && fig2 == 1)
{
d1 = 1; d2 = 1; d3 = 0; d4 = 1; d5 = 1; //FIGURES
}
else
{
j++;
}
if(fig2 == 0 || fig2 == 1)
{
space = 0;
fig1 = fig2;
}
sendFsk();
}
if(ch == '\0')
{
d1 = 0; d2 = 0; d3 = 0; d4 = 1; d5 = 0; //CR
sendFsk();
d1 = 0; d2 = 1; d3 = 0; d4 = 0; d5 = 0; //LF
sendFsk();
sSq = 0;
j = 0;
delay(700);
idC = 0;
}
}
}
digitalWrite(led1, LOW); //LED DEL PTT
digitalWrite(PTT, LOW); //ACTIVAR PTT
delay(5);//ERA 5
}
void InitDHT(){
pinMode(dht_dpin,OUTPUT);
digitalWrite(dht_dpin,HIGH);
}
void ReadDHT(){
bGlobalErr=0;
byte dht_in;
byte i;
digitalWrite(dht_dpin,LOW);
delay(20);
digitalWrite(dht_dpin,HIGH);
delayMicroseconds(40);
pinMode(dht_dpin,INPUT);
//delayMicroseconds(40);
dht_in=digitalRead(dht_dpin);
if(dht_in){
bGlobalErr=1;
return;
}
delayMicroseconds(80);
dht_in=digitalRead(dht_dpin);
if(!dht_in){
bGlobalErr=2;
return;
}
delayMicroseconds(80);
for (i=0; i<5; i++)
dht_dat[i] = read_dht_dat();
pinMode(dht_dpin,OUTPUT);
digitalWrite(dht_dpin,HIGH);
byte dht_check_sum =
dht_dat[0]+dht_dat[1]+dht_dat[2]+dht_dat[3];
if(dht_dat[4]!= dht_check_sum)
{bGlobalErr=3;}
};
byte read_dht_dat(){
byte i = 0;
byte result=0;
for(i=0; i< 8; i++){
while(digitalRead(dht_dpin)==LOW);
delayMicroseconds(30);
if (digitalRead(dht_dpin)==HIGH)
result |=(1<<(7-i));
while (digitalRead(dht_dpin)==HIGH);
}
return result;
}
|
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
using namespace std;
class A
{
public:
A(int i) : a(i) //参数列表初始化
{
//a = i;
}
int a;
};
class B
{
public:
int data{ 1 };
int data2 = 1;
A tmp{ 10 };
string name{ "mike" };
};
int main(void)
{
B obj;
cout << obj.data << endl;
cout << obj.data2 << endl;
cout << obj.tmp.a << endl;
cout << obj.name << endl;
system("pause");
return 0;
}
|
#include "complex.h"
// complex operator +
Complex Complex::operator +( const Complex& rhw )
{
Complex temp;
temp.m_real = m_real + rhw.m_real;
temp.m_unreal = m_unreal + rhw.m_unreal;
return temp;
}
Complex Complex::operator +( const double re )
{
Complex temp;
temp.m_real = m_real + re;
temp.m_unreal = m_unreal;
return temp;
}
// complex operator -
Complex Complex::operator -( const Complex& rhw )
{
Complex temp;
temp.m_real = m_real - rhw.m_real;
temp.m_unreal = m_unreal - rhw.m_unreal;
return temp;
}
Complex Complex::operator -( const double re )
{
Complex temp;
temp.m_real = m_real - re;
temp.m_unreal = m_unreal;
return temp;
}
// complex operator *
Complex Complex::operator *( const Complex& rhw )
{
Complex temp;
// (a+bi) * (c+di) = ac-bd + (bc+ad)i
temp.m_real = ( m_real * rhw.m_real ) - ( m_unreal * rhw.m_unreal );
temp.m_unreal = ( m_real * rhw.m_unreal ) + ( m_unreal * rhw.m_real );
return temp;
}
Complex Complex::operator *( const double re )
{
Complex temp;
temp.m_real = m_real * re;
temp.m_unreal = m_unreal * re;
return temp;
}
// complex operator /
Complex Complex::operator /( const Complex& rhw )
{
Complex temp;
// (a+bi)/(c+di) ==> (ac+bd)-(ad+bc)i / c^2 + d^2
double real, unreal, mother;
real = ( m_real * rhw.m_real ) + ( m_unreal * rhw.m_unreal );
unreal = ( m_unreal * rhw.m_real ) - ( m_real * rhw.m_unreal );
mother = (rhw.m_real*rhw.m_real ) + ( rhw.m_unreal * rhw.m_unreal );
temp.m_real = real / mother;
temp.m_unreal = unreal / mother;
return temp;
}
Complex Complex::operator /( const double re )
{
Complex temp;
temp.m_real = m_real / re;
temp.m_unreal = m_unreal / re;
return temp;
}
// complex operator =
Complex& Complex::operator =( const Complex& rhw )
{
m_real = rhw.m_real;
m_unreal = rhw.m_unreal;
return *this;
}
Complex Complex::operator =( const double re )
{
m_real = re;
m_unreal = 0;
return *this;
}
// complex operator +=
Complex& Complex::operator +=( const Complex& rhw )
{
Complex temp( rhw.m_real, rhw.m_unreal );
*this = *this + temp;
return *this;
}
Complex Complex::operator +=( const double re )
{
m_real = m_real+re;
m_unreal = m_unreal;
return *this;
}
// complex operator -=
Complex& Complex::operator -=( const Complex& rhw )
{
Complex temp( rhw.m_real, rhw.m_unreal );
*this = *this - temp;
return *this;
}
Complex Complex::operator -=( const double re )
{
m_real = m_real-re;
m_unreal = m_unreal;
return *this;
}
// complex operator *=
Complex& Complex::operator *=( const Complex& rhw )
{
Complex temp( rhw.m_real, rhw.m_unreal );
*this = *this * temp;
return *this;
}
Complex Complex::operator *=( const double re )
{
m_real = m_real*re;
m_unreal = m_unreal*re;
return *this;
}
// complex operator /=
Complex& Complex::operator /=( const Complex& rhw )
{
Complex temp( rhw.m_real, rhw.m_unreal );
*this = *this / temp;
return *this;
}
Complex Complex::operator /=( const double re )
{
m_real = m_real/re;
m_unreal = m_unreal/re;
return *this;
}
void Complex::setReal( double number )
{
m_real = number;
}
void Complex::setUnreal( double number )
{
m_unreal = number;
}
double Complex::getReal( void )
{
return m_real;
}
double Complex::getUnreal( void )
{
return m_unreal;
}
// friend class
Complex operator +( const double re, const Complex& rhw )
{
Complex temp;
temp.m_real = re + rhw.m_real;
temp.m_unreal += rhw.m_unreal;
return temp;
};
Complex operator -( const double re, const Complex& rhw )
{
Complex temp;
temp.m_real = re - rhw.m_real;
temp.m_unreal -= rhw.m_unreal;
return temp;
};
Complex operator *( const double re, const Complex& rhw )
{
Complex temp;
temp.m_real = re * rhw.m_real;
temp.m_unreal = re * rhw.m_unreal;
return temp;
};
Complex operator /( const double re, const Complex& rhw )
{
Complex temp;
// (a)/(c+di) ==> ac-(ad)i / c^2 + d^2
double real, unreal, mother;
real = re * rhw.m_real;
unreal = -re * rhw.m_unreal;
mother = (rhw.m_real*rhw.m_real ) + ( rhw.m_unreal * rhw.m_unreal );
temp.m_real = real / mother;
temp.m_unreal = unreal / mother;
return temp;
};
|
// Fie 4 puncte din R^2, oricare 3 necoliniare
// daca cele 4 puncte au acoperire convexa, dar nu e convex
// In caz afirmativ, sa se studieze pozitia punctului A[3] fata de
// cercul circumscris triunghiului A[0]-A[1]-A[2]
// daca suma unghiurilor A[1] si A[3]
// -formeaza 180 grade //// A[3] apartine cercului
// -formeaza mai mult de 180 de grade //// A[3] e in interiorul cercului
// -formeaza mai putin de 180 de grade //// A[3] e in exteriorul cercului
#include <iostream>
#include <math.h>
using namespace std;
#define PI 3.14159265359
struct punct
{
double x, y;
}A[4];
int peSegment(punct a, punct q, punct b) //daca q apartine peSegment ab
{
if(q.x <= max(a.x, b.x) &&
q.x >= min(a.x, b.x) &&
q.y <= max(a.y, b.y) &&
q.y >= min(a.y, b.y))
return 1;
return 0;
}
double distanta(punct A, punct B)
{
return sqrt((A.x-B.x)*(A.x-B.x)+
(A.y-B.y)*(A.y-B.y));
}
double cosin(punct B, punct A, punct C) // produs vectorial
{
punct AB, AC;
double produs;
AB.x = B.x - A.x;
AB.y = B.y - A.y;
AC.x = C.x - A.x;
AC.y = C.y - A.y;
produs = AB.x * AC.x + AB.y * AC.y;
return produs / (distanta(A, B) * distanta(A, C));
}
int main()
{
cout << "Punctele sunt: ";
double aux1, aux2, x, y;
for(int i=0; i<4; i++)
cin >> A[i].x >> A[i].y;
//Segment A0A2 - Ecuatie prima Diagonala
double a1, b1, c1;
aux1 = A[2].x - A[0].x;
aux2 = A[2].y - A[0].y;
a1 = aux2;
b1 = -aux1;
c1 = A[0].y * aux1 - A[0].x * aux2;
//Segment A1A3 - Ecuatie a doua Diagonala
double a2, b2, c2;
aux1 = A[3].x - A[1].x;
aux2 = A[3].y - A[1].y;
a2 = aux2;
b2 = -aux1;
c2 = A[1].y * aux1 - A[1].x * aux2;
//Verificam daca Diagonalele se Intersecteaza
double det = a1 * b2 - b1 * a2;
if(det != 0) //Patrulaterul este Convex = diagonalele se intersecteaza intr-un punct
{
aux1 = b2 * (-c1) + b1 * c2;
x = aux1 / det;
aux2 = a1 * (-c2) + c1 * a2;
y = aux2 / det;
punct cross;
cross.x = x;
cross.y = y;
if(peSegment(A[0], cross, A[2]) && peSegment(A[1], cross, A[3]))
{
cout<<"Patrulaterul este Convex."<<endl;
double unghi_A1, unghi_A3, unghi_format;
unghi_A1 = acos(cosin(A[0], A[1], A[2]));
unghi_A3 = acos(cosin(A[0], A[3], A[2]));
unghi_format = (unghi_A1 + unghi_A3) * 180.0 / PI;
if(unghi_format > 179.99 && unghi_format < 180.01) cout << "A3 este pe Cerc.";
else if(unghi_format > 180) cout << "A3 este in interior.";
else cout << "A3 este in exterior.";
}
else cout << "Patrulaterul nu e Convex." << endl;
}
else
cout << "Patrulaterul nu e Convex." << endl;
return 0;
}
|
// *****************************************************************
// This file is part of the CYBERMED Libraries
//
// Copyright (C) 2007 LabTEVE (http://www.de.ufpb.br/~labteve),
// Federal University of Paraiba and University of São Paulo.
// All rights reserved.
//
// 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.
//
// 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.
// *****************************************************************
#ifndef _CYB_MASS_SPRING_NODE_H_
#define _CYB_MASS_SPRING_NODE_H_
#include "cybVector3D.h"
#include "cybTraits.h"
using namespace mf;
/**
* @class CybMassSpringNode
* @file cybMassSpringNode.h
* @short Element used in ED of deformation.
*
* Stores all informations about the shift of the points.
*
* @author LabTEVE (http://www.de.ufpb.br/~labteve), Federal University of Paraiba
* @version 1.0
* @date 2007, July
*
*/
class CybMassSpringNode
{
public:
typedef cybVertex<cybSurfaceTriTraits> sVertex;
CybVector3D<float> acceleration; /**< It stores the point's acceleration. */
CybVector3D<float> velocity; /**< It stores the point's velocity. */
CybVector3D<float> point; /**< It stores the point's coordenate. */
sVertex* vertex; /**< It stores the points's reference. */
mfList<int> neighbors; /**< It stores the neighbors list. */
/** Constructor. */
CybMassSpringNode();
/** Destructor. */
~CybMassSpringNode();
/**
* This method calculates the acceleration and the velocity of this point.
*
* @param CybVector3D<float> The force applied in this point.
* @param float mass The mass of this point.
* @param float step The step used in calculus.
* @param float stiffness The stiffness of shift.
* @return void
*
*/
void update_acceleration_velocity(CybVector3D<float> force, float mass, float step, float stiffness);
};
#endif /*_CYB_MASS_SPRING_NODE_H_*/
|
#include "sw_graph_vec.h"
/*********************************** class members *****************************/
////////////////////////////////////////////////////////////////////////////////////
void alpha_expansion_vec:: computeKnnNeighbours(int Knn)
{
neighbrs_.clear();
vector<vector<float> > dist;
neighbrs_ = knnNeighbours(Knn, input_, input_, dist);
}
///////////////////////////////////////////////////////////////////////////////////
double alpha_expansion_vec:: data_term(int id, int label)
{
Vec3 normal = input_[id];
Vec3 center = centers_[label];
normal.normalize();
center.normalize();
double u = normal * center;
u = min(u, 1.0);
u = max(-1.0, u); //abs(u)> 1 则返回NAN
return acos(u)* 180/ 3.1416;
}
///////////////////////////////////////////////////////////////////////////////////
double alpha_expansion_vec:: smooth_term(int xid, int yid, int xlabel, int ylabel)
{
double E = 0;
if(xlabel != ylabel)
{
Vec3 normal0 = input_[xid];
Vec3 normal1 = input_[yid];
normal0.normalize();
normal1.normalize();
double u = normal0 * normal1;
u = min(u, (double)1.0);
u = max((double)-1.0, u); //abs(u)> 1 则返回NAN
double angle = acos(u)* 180/ 3.1416;
if(angle < angle_thresh_)
{
E += 3*lambda_;
}
else
{
E += lambda_;
}
}
return E;
}
|
#include "mutex.h"
int main() {
mutex m;
m.value = 0;
enter_mutex(&m);
leave_mutex(&m);
enter_mutex(&m);
leave_mutex(&m);
return 0;
}
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
#ifndef ONLINE_JUDGE
freopen("input.in","r",stdin);
freopen("output.in","w",stdout);
#endif
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int c5=0;
int c2=0;
int ctr=0;
for(int i=1;i<=n;i++)
{
if(i%10==0)
{
int x=10;
while(i%x==0)
{
ctr++;
if(i%x==5)
{
ctr++;
}
x=x*10;
if(i%x!=0)
{
break;
}
}
}
else if(i%10==5)
{
c5+=1;
}
else if(i%10==2)
{
c2+=1;
}
}
if(c2<c5)
{
cout<<c2+ctr<<endl;
}
else
{
cout<<c5+ctr<<endl;
}
}
}
|
#include <iostream>
#include <list>
#include <algorithm>
#include <map>
#include "better-graph.h"
#include "priority_queue.h"
using namespace std;
void showPath(std::map<string, string> camefrom, std::map<string, int> dist, string v, string u)
{
list<string> path;
int pathdist = 0;;
string crawl = u;
path.push_back(crawl + "(" + to_string(dist[crawl]) + " hours)");
while (crawl != v)
{
crawl = camefrom[crawl];
path.push_back(crawl + "(" + to_string(dist[crawl]) + " hours)");
}
reverse(path.begin(), path.end());
cout<<"Travel Time: "<<dist[u]<<" hours."<<endl;
cout<<"Path: \n";
for (auto p : path)
cout<<p<<endl;
cout<<endl;
}
void dijkstraShortestPath(Graph& G, string v, string u)
{
bool found = false;
map<string, int> dist;
map<string, string> camefrom;
pq<string> s;
for (auto l : G.verts)
{
dist[l] = INT_MAX;
}
string current = v;
s.push(current, 0);
dist[current] = 0;
camefrom[current] = current;
while (!s.empty())
{
current = s.pop();
cout<<"Current: "<<current<<endl;;
if (current == u)
{
cout<<"Found!\n";
found = true;
break;
}
for (auto child : G.adjList[current])
{
if (dist[child.vertex] > dist[current] + child.weight)
{
dist[child.vertex] = dist[current] + child.weight;
s.update(child.vertex, dist[child.vertex]);
camefrom[child.vertex] = current;
}
}
}
cout<<"Search Over.\n";
if (found)
{
cout<<"A Path Exists...\n";
showPath(camefrom, dist, v, u);
}
}
int main(int argc, char *argv[])
{
Graph G("Amtrack Passenger Rail Road");
G.addEdge("New York", "Philidelphia", 2);
G.addEdge("New York", "Boston", 2);
G.addEdge("New York", "Washington D.C.", 4);
G.addEdge("Philidelphia", "Washington D.C.", 2);
G.addEdge("Washington D.C.", "Chicago", 18);
G.addEdge("Washington D.C.", "Atlanta", 8);
G.addEdge("Chicago", "Atlanta", 15);
G.addEdge("Chicago", "Denver", 13);
G.addEdge("Chicago", "New Orleans", 16);
G.addEdge("New Orleans", "Houston", 11);
G.addEdge("Denver", "Los Angeles", 20);
G.addEdge("Houston", "Los Angeles", 22);
G.addEdge("Los Angeles", "San Francisco", 8);
G.addEdge("San Francisco", "Denver", 19);
cout<<"\nDijkstras Algorithm: ";
dijkstraShortestPath(G, "New York", "New Orleans");
return 0;
}
|
#pragma once
#ifndef UILABEL_H
#define UILABEL_H
namespace UI
{
}
#endif /*UILABEL_H*/
|
#include "Rubber.h"
#include "RegUtil.h"
#include "Inlines.h"
const ItemTypeEnum Rubber::ItemType = eItemRubber;
const int Rubber::TypeNameID = 147;
const int Rubber::ToolID = 32990;
const int Rubber::CursorID = 602;
const unsigned Rubber::AllowedViews = 1;
Rubber* Rubber::COMCreate()
{
/*CComObject<Rubber>* obj = 0;
if ((((HRESULT)(CComObject<Rubber>::CreateInstance(&obj))) < 0))
{
//MessageBoxA(0, "Failed to create COM object.", "Visual Pinball",
// 0x00000030L);
}
obj->AddRef();
return obj;*/
return new Rubber();
}
IEditable* Rubber::COMCreateEditable()
{
return static_cast<IEditable*>(COMCreate());
}
IEditable* Rubber::COMCreateAndInit(PinTable* ptable, float x, float y)
{
Rubber* obj = Rubber::COMCreate();
obj->Init(ptable, x, y, true);
return obj;
}
Rubber::Rubber()
{
// TODO: m_menuid = IDR_SURFACEMENU;
m_d.m_collidable = true;
m_d.m_visible = true;
m_d.m_hitEvent = false;
m_dynamicVertexBuffer = 0;
m_dynamicIndexBuffer = 0;
m_dynamicVertexBufferRegenerate = true;
// TODO: m_propPhysics = NULL;
// TODO: m_propPosition = NULL;
// TODO: m_propVisual = NULL;
m_d.m_overwritePhysics = true;
m_ptable = NULL;
m_d.m_tdr.m_TimerEnabled = false;
m_d.m_tdr.m_TimerInterval = 0;
}
Rubber::~Rubber()
{
}
HRESULT Rubber::Init(PinTable* ptable, float x, float y, bool fromMouseClick)
{
m_ptable = ptable;
m_d.m_visible = true;
for (int i = 8; i > 0; i--)
{
const float angle = (float)(M_PI * 2.0 / 8.0) * (float)i;
const float xx = x + sinf(angle) * 50.0f;
const float yy = y - cosf(angle) * 50.0f;
// CComObject<DragPoint>* pdp;
// CComObject<DragPoint>::CreateInstance(&pdp);
// if (pdp)
// {
// pdp->AddRef();
// pdp->Init(this, xx, yy, 0.f, true);
// m_vdpoint.push_back(pdp);
// }
}
SetDefaults(fromMouseClick);
InitVBA(true, 0, NULL);
return S_OK;
}
HRESULT Rubber::InitVBA(bool fNew, int id, wchar_t* const wzName)
{
wchar_t wzUniqueName[128];
if (fNew && !wzName)
{
GetPTable()->GetUniqueName(eItemRubber, wzUniqueName, 128);
wcsncpy(m_wzName, wzUniqueName, MAXNAMEBUFFER);
}
InitScript();
return ((HRESULT)0L);
}
HRESULT Rubber::InitLoad(POLE::Stream* pStream, PinTable* pTable, int* pId, int version)
{
SetDefaults(false);
m_d.m_hitHeight = -1.0f;
m_ptable = pTable;
BiffReader biffReader(pStream, this, pId, version);
biffReader.Load();
return S_OK;
}
HRESULT Rubber::InitPostLoad()
{
if (m_d.m_hitHeight == -1.0f)
{
m_d.m_hitHeight = m_d.m_height;
}
return S_OK;
}
void Rubber::SetDefaults(bool fromMouseClick)
{
RegUtil* pRegUtil = RegUtil::SharedInstance();
static const char strKeyName[] = "DefaultProps\\Rubber";
m_d.m_height = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "Height", 25.0f) : 25.0f;
m_d.m_thickness = fromMouseClick ? pRegUtil->LoadValueIntWithDefault(strKeyName, "Thickness", 8) : 8;
m_d.m_tdr.m_TimerEnabled = fromMouseClick ? pRegUtil->LoadValueBoolWithDefault(strKeyName, "TimerEnabled", false) : false;
m_d.m_tdr.m_TimerInterval = fromMouseClick ? pRegUtil->LoadValueIntWithDefault(strKeyName, "TimerInterval", 100) : 100;
const HRESULT hr = pRegUtil->LoadValue(strKeyName, "Image", m_d.m_szImage);
if ((hr != S_OK) || !fromMouseClick)
{
m_d.m_szImage.clear();
}
m_d.m_hitEvent = fromMouseClick ? pRegUtil->LoadValueBoolWithDefault(strKeyName, "HitEvent", false) : false;
SetDefaultPhysics(fromMouseClick);
m_d.m_visible = fromMouseClick ? pRegUtil->LoadValueBoolWithDefault(strKeyName, "Visible", true) : true;
m_d.m_collidable = fromMouseClick ? pRegUtil->LoadValueBoolWithDefault(strKeyName, "Collidable", true) : true;
m_d.m_staticRendering = fromMouseClick ? pRegUtil->LoadValueBoolWithDefault(strKeyName, "EnableStaticRendering", true) : true;
m_d.m_showInEditor = fromMouseClick ? pRegUtil->LoadValueBoolWithDefault(strKeyName, "EnableShowInEditor", false) : false;
m_d.m_rotX = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "RotX", 0.0f) : 0.0f;
m_d.m_rotY = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "RotY", 0.0f) : 0.0f;
m_d.m_rotZ = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "RotZ", 0.0f) : 0.0f;
m_d.m_reflectionEnabled = fromMouseClick ? pRegUtil->LoadValueBoolWithDefault(strKeyName, "ReflectionEnabled", true) : true;
}
void Rubber::SetDefaultPhysics(bool fromMouseClick)
{
RegUtil* pRegUtil = RegUtil::SharedInstance();
static const char strKeyName[] = "DefaultProps\\Rubber";
m_d.m_elasticity = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "Elasticity", 0.8f) : 0.8f;
m_d.m_elasticityFalloff = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "ElasticityFalloff", 0.3f) : 0.3f;
m_d.m_friction = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "Friction", 0.6f) : 0.6f;
m_d.m_scatter = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "Scatter", 5) : 5;
m_d.m_hitHeight = fromMouseClick ? pRegUtil->LoadValueFloatWithDefault(strKeyName, "HitHeight", 25.0f) : 25.0f;
}
bool Rubber::LoadToken(const int id, BiffReader* const pBiffReader)
{
switch (id)
{
case FID(PIID):
pBiffReader->GetInt((int*)pBiffReader->m_pData);
break;
case FID(HTTP):
pBiffReader->GetFloat(m_d.m_height);
break;
case FID(HTHI):
pBiffReader->GetFloat(m_d.m_hitHeight);
break;
case FID(WDTP):
pBiffReader->GetInt(m_d.m_thickness);
break;
case FID(HTEV):
pBiffReader->GetBool(m_d.m_hitEvent);
break;
case FID(MATR):
pBiffReader->GetString(m_d.m_szMaterial);
break;
case FID(TMON):
pBiffReader->GetBool(m_d.m_tdr.m_TimerEnabled);
break;
case FID(TMIN):
pBiffReader->GetInt(m_d.m_tdr.m_TimerInterval);
break;
case FID(IMAG):
pBiffReader->GetString(m_d.m_szImage);
break;
case FID(NAME):
pBiffReader->GetWideString(m_wzName, sizeof(m_wzName) / sizeof(wchar_t));
break;
case FID(ELAS):
pBiffReader->GetFloat(m_d.m_elasticity);
break;
case FID(ELFO):
pBiffReader->GetFloat(m_d.m_elasticityFalloff);
break;
case FID(RFCT):
pBiffReader->GetFloat(m_d.m_friction);
break;
case FID(RSCT):
pBiffReader->GetFloat(m_d.m_scatter);
break;
case FID(CLDR):
pBiffReader->GetBool(m_d.m_collidable);
break;
case FID(RVIS):
pBiffReader->GetBool(m_d.m_visible);
break;
case FID(REEN):
pBiffReader->GetBool(m_d.m_reflectionEnabled);
break;
case FID(ESTR):
pBiffReader->GetBool(m_d.m_staticRendering);
break;
case FID(ESIE):
pBiffReader->GetBool(m_d.m_showInEditor);
break;
case FID(ROTX):
pBiffReader->GetFloat(m_d.m_rotX);
break;
case FID(ROTY):
pBiffReader->GetFloat(m_d.m_rotY);
break;
case FID(ROTZ):
pBiffReader->GetFloat(m_d.m_rotZ);
break;
case FID(MAPH):
pBiffReader->GetString(m_d.m_szPhysicsMaterial);
break;
case FID(OVPH):
pBiffReader->GetBool(m_d.m_overwritePhysics);
break;
default:
{
LoadPointToken(id, pBiffReader, pBiffReader->m_version);
ISelect::LoadToken(id, pBiffReader);
break;
}
}
return true;
}
PinTable* Rubber::GetPTable()
{
return m_ptable;
}
const PinTable* Rubber::GetPTable() const
{
return m_ptable;
}
IEditable* Rubber::GetIEditable()
{
return static_cast<IEditable*>(this);
}
const IEditable* Rubber::GetIEditable() const
{
return static_cast<const IEditable*>(this);
}
ISelect* Rubber::GetISelect()
{
return static_cast<ISelect*>(this);
}
const ISelect* Rubber::GetISelect() const
{
return static_cast<const ISelect*>(this);
}
IHitable* Rubber::GetIHitable()
{
return static_cast<IHitable*>(this);
}
const IHitable* Rubber::GetIHitable() const
{
return static_cast<const IHitable*>(this);
}
ItemTypeEnum Rubber::GetItemType() const
{
return eItemRubber;
}
void Rubber::WriteRegDefaults()
{
RegUtil* pRegUtil = RegUtil::SharedInstance();
static const char strKeyName[] = "DefaultProps\\Rubber";
pRegUtil->SaveValueFloat(strKeyName, "Height", m_d.m_height);
pRegUtil->SaveValueFloat(strKeyName, "HitHeight", m_d.m_hitHeight);
pRegUtil->SaveValueInt(strKeyName, "Thickness", m_d.m_thickness);
pRegUtil->SaveValueBool(strKeyName, "HitEvent", m_d.m_hitEvent);
pRegUtil->SaveValueBool(strKeyName, "TimerEnabled", m_d.m_tdr.m_TimerEnabled);
pRegUtil->SaveValueInt(strKeyName, "TimerInterval", m_d.m_tdr.m_TimerInterval);
pRegUtil->SaveValue(strKeyName, "Image", m_d.m_szImage);
pRegUtil->SaveValueFloat(strKeyName, "Elasticity", m_d.m_elasticity);
pRegUtil->SaveValueFloat(strKeyName, "ElasticityFalloff", m_d.m_elasticityFalloff);
pRegUtil->SaveValueFloat(strKeyName, "Friction", m_d.m_friction);
pRegUtil->SaveValueFloat(strKeyName, "Scatter", m_d.m_scatter);
pRegUtil->SaveValueBool(strKeyName, "Collidable", m_d.m_collidable);
pRegUtil->SaveValueBool(strKeyName, "Visible", m_d.m_visible);
pRegUtil->SaveValueBool(strKeyName, "EnableStaticRendering", m_d.m_staticRendering);
pRegUtil->SaveValueBool(strKeyName, "EnableShowInEditor", m_d.m_showInEditor);
pRegUtil->SaveValueFloat(strKeyName, "RotX", m_d.m_rotX);
pRegUtil->SaveValueFloat(strKeyName, "RotY", m_d.m_rotY);
pRegUtil->SaveValueFloat(strKeyName, "RotZ", m_d.m_rotZ);
pRegUtil->SaveValueBool(strKeyName, "ReflectionEnabled", m_d.m_reflectionEnabled);
}
void Rubber::GetHitShapes(std::vector<HitObject*>& pvho)
{
}
void Rubber::GetHitShapesDebug(std::vector<HitObject*>& pvho)
{
}
void Rubber::RenderStatic()
{
}
void Rubber::RenderDynamic()
{
}
void Rubber::RenderSetup()
{
}
ItemTypeEnum Rubber::HitableGetItemType() const
{
return eItemRubber;
}
IScriptable* Rubber::GetScriptable()
{
return (IScriptable*)this;
}
wchar_t* Rubber::get_Name()
{
return m_wzName;
}
void Rubber::GetBoundingVertices(std::vector<Vertex3Ds>& pvvertex3D)
{
int cvertex;
const Vertex2D* const rgvLocal = GetSplineVertex(cvertex, NULL, NULL);
Vertex3Ds bbox_min(FLT_MAX, FLT_MAX, FLT_MAX);
Vertex3Ds bbox_max(-FLT_MAX, -FLT_MAX, -FLT_MAX);
for (int i = 0; i < cvertex; i++)
{
{
const Vertex3Ds pv(rgvLocal[i].x, rgvLocal[i].y, m_d.m_height + (float)(2.0 * PHYS_SKIN)); // leave room for ball //!! use ballsize
bbox_min.x = min(bbox_min.x, pv.x);
bbox_min.y = min(bbox_min.y, pv.y);
bbox_min.z = min(bbox_min.z, pv.z);
bbox_max.x = max(bbox_max.x, pv.x);
bbox_max.y = max(bbox_max.y, pv.y);
bbox_max.z = max(bbox_max.z, pv.z);
}
const Vertex3Ds pv(rgvLocal[cvertex * 2 - i - 1].x, rgvLocal[cvertex * 2 - i - 1].y, m_d.m_height + (float)(2.0 * PHYS_SKIN)); // leave room for ball //!! use ballsize
bbox_min.x = min(bbox_min.x, pv.x);
bbox_min.y = min(bbox_min.y, pv.y);
bbox_min.z = min(bbox_min.z, pv.z);
bbox_max.x = max(bbox_max.x, pv.x);
bbox_max.y = max(bbox_max.y, pv.y);
bbox_max.z = max(bbox_max.z, pv.z);
}
delete[] rgvLocal;
for (int i = 0; i < 8; i++)
{
const Vertex3Ds pv(
(i & 1) ? bbox_min.x : bbox_max.x,
(i & 2) ? bbox_min.y : bbox_max.y,
(i & 4) ? bbox_min.z : bbox_max.z);
pvvertex3D.push_back(pv);
}
}
//
// license:GPLv3+
// Ported at: VisualPinball.Engine/Math/DragPoint.cs
//
Vertex2D* Rubber::GetSplineVertex(int& pcvertex, bool** const ppfCross, Vertex2D** const pMiddlePoints, const float _accuracy)
{
std::vector<RenderVertex> vvertex;
GetCentralCurve(vvertex, _accuracy);
const int cvertex = (int)vvertex.size();
Vertex2D* const rgvLocal = new Vertex2D[(cvertex + 1) * 2];
if (pMiddlePoints)
{
*pMiddlePoints = new Vertex2D[cvertex + 1];
}
if (ppfCross)
{
*ppfCross = new bool[cvertex + 1];
}
for (int i = 0; i < cvertex; i++)
{
const RenderVertex& vprev = vvertex[(i > 0) ? i - 1 : cvertex - 1];
const RenderVertex& vnext = vvertex[(i < (cvertex - 1)) ? i + 1 : 0];
const RenderVertex& vmiddle = vvertex[i];
if (ppfCross)
(*ppfCross)[i] = vmiddle.controlPoint;
Vertex2D vnormal;
{
Vertex2D v1normal(vprev.y - vmiddle.y, vmiddle.x - vprev.x);
Vertex2D v2normal(vmiddle.y - vnext.y, vnext.x - vmiddle.x);
if (cvertex == 2 && i == (cvertex - 1))
{
v1normal.Normalize();
vnormal = v1normal;
}
else if (cvertex == 2 && i == 0)
{
v2normal.Normalize();
vnormal = v2normal;
}
else
{
v1normal.Normalize();
v2normal.Normalize();
if (fabsf(v1normal.x - v2normal.x) < 0.0001f && fabsf(v1normal.y - v2normal.y) < 0.0001f)
{
vnormal = v1normal;
}
else
{
const float A = vprev.y - vmiddle.y;
const float B = vmiddle.x - vprev.x;
const float C = A * (v1normal.x - vprev.x) + B * (v1normal.y - vprev.y);
const float D = vnext.y - vmiddle.y;
const float E = vmiddle.x - vnext.x;
const float F = D * (v2normal.x - vnext.x) + E * (v2normal.y - vnext.y);
const float det = A * E - B * D;
const float inv_det = (det != 0.0f) ? 1.0f / det : 0.0f;
const float intersectx = (B * F - E * C) * inv_det;
const float intersecty = (C * D - A * F) * inv_det;
vnormal.x = vmiddle.x - intersectx;
vnormal.y = vmiddle.y - intersecty;
}
}
}
const float widthcur = (float)m_d.m_thickness;
if (pMiddlePoints)
{
(*pMiddlePoints)[i] = vmiddle;
}
rgvLocal[i] = vmiddle + (widthcur * 0.5f) * vnormal;
rgvLocal[(cvertex + 1) * 2 - i - 1] = vmiddle - (widthcur * 0.5f) * vnormal;
if (i == 0)
{
rgvLocal[cvertex] = rgvLocal[0];
rgvLocal[(cvertex + 1) * 2 - cvertex - 1] = rgvLocal[(cvertex + 1) * 2 - 1];
}
}
if (ppfCross)
{
(*ppfCross)[cvertex] = vvertex[0].controlPoint;
}
if (pMiddlePoints)
{
(*pMiddlePoints)[cvertex] = (*pMiddlePoints)[0];
}
pcvertex = cvertex + 1;
return rgvLocal;
}
void Rubber::GetCentralCurve(std::vector<RenderVertex>& vv, const float _accuracy) const
{
float accuracy;
if (_accuracy != -1.f)
{
accuracy = _accuracy;
}
else
{
if (m_d.m_staticRendering)
{
accuracy = 10.f;
}
else
{
accuracy = (float)m_ptable->GetDetailLevel();
}
accuracy = 4.0f * powf(10.0f, (10.0f - accuracy) * (float)(1.0 / 1.5));
}
IHaveDragPoints::GetRgVertex(vv, true, accuracy);
}
|
/***************************************************************************
Copyright (c) 2020 Philip Fortier
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.
***************************************************************************/
#include "stdafx.h"
#include "PerfTimer.h"
#include "format.h"
PerfTimer::PerfTimer(const std::string &name, bool spew) : _spew(spew), _name(name)
{
QueryPerformanceCounter(&_lStart);
}
PerfTimer::~PerfTimer()
{
LARGE_INTEGER lEnd;
QueryPerformanceCounter(&lEnd);
LARGE_INTEGER freq;
QueryPerformanceFrequency(&freq);
double timeTaken = (double)(lEnd.LowPart - _lStart.LowPart) * 1000.0 / (double)freq.LowPart;
OutputDebugString(fmt::format("PREF - {0}: {1}ms\n", _name, timeTaken).c_str());
}
|
#include "Player.h"
Player::Player(sf::RenderWindow * window)
{
pos_ = sf::Vector2f(40*70, 15*70);
this->window = window;
this->Frame = 0;
column = 0; line = 0;
width = 30; height = 35;
count = 4;
speed = 0.06;
step = 7;
blood = 100;
blueFlagNumber = 40;
redFlagNumber = 40;
for (int i = 0; i < count; i++)
this->Frames.push_back(sf::IntRect(column + width * i, line, width, height));
status = 1;
redFlag_tex.loadFromFile("Image\\redFlag.png");
redFlag_sprite.setTexture(redFlag_tex);
blueFlag_tex.loadFromFile("Image\\blueFlag.png");
blueFlag_sprite.setTexture(blueFlag_tex);
heart_tex.loadFromFile("Image\\heart.png");
heart_sprite.setTexture(heart_tex);
heartBar_tex.loadFromFile("Image\\heartbar.png");
heartBar_sprite.setTexture(heartBar_tex);
this->Texture_.loadFromFile("Image\\right.png");
this->Sprite_.setTexture(Texture_);
this->Sprite_.setTextureRect(this->Frames[0]);
Sprites_.push_back(Sprite_);
this->Texture1_.loadFromFile("Image\\left.png");
this->Sprite1_.setTexture(Texture1_);
this->Sprite1_.setTextureRect(this->Frames[0]);
Sprites_.push_back(Sprite1_);
snow_image.loadFromFile("Image\\snow.PNG");
snow.setTexture(snow_image);
font.loadFromFile("font.ttf");
}
Player::~Player()
{
}
int Player::check_redFlag()
{
for (int i = 0; i < redFlag_pos.size(); i++)
{
if (pos_.x >= redFlag_pos[i].x - 60 && pos_.x <= redFlag_pos[i].x + 60 && pos_.y >= redFlag_pos[i].y - 60 && pos_.y <= redFlag_pos[i].y + 60)
{
return i;
}
}
return -1;
}
int Player::check_blueFlag()
{
for (int i = 0; i < blueFlag_pos.size(); i++)
{
if (pos_.x >= blueFlag_pos[i].x - 60 && pos_.x <= blueFlag_pos[i].x + 60 && pos_.y >= blueFlag_pos[i].y - 60 && pos_.y <= blueFlag_pos[i].y + 60)
{
return i;
}
}
return -1;
}
void Player::Flag()
{
sf::Event event;
while (window->pollEvent(event))
{
if (event.type == sf::Event::Closed)
window->close();
if (event.type == sf::Event::KeyPressed) {
if (event.key.code == sf::Keyboard::Num1) {
if (pressed == 0) {
if (check_redFlag() == -1)
{
if (redFlagNumber >= 0)
{
redFlag_pos.push_back(pos_);
redFlagNumber = redFlagNumber - 1;
}
}
else
{
redFlag_pos.erase(redFlag_pos.begin() + check_redFlag());
redFlagNumber = redFlagNumber + 1;
}
pressed = 1;
}
}
if (event.key.code == sf::Keyboard::Num2) {
if (pressed1 == 0) {
if (check_blueFlag() == -1)
{
if (blueFlagNumber >= 0)
{
blueFlag_pos.push_back(pos_);
blueFlagNumber = blueFlagNumber - 1;
}
}
else
{
blueFlag_pos.erase(blueFlag_pos.begin() + check_blueFlag());
blueFlagNumber = blueFlagNumber + 1;
}
pressed1 = 1;
}
}
}
if (event.type == sf::Event::KeyReleased) {
if (event.key.code == sf::Keyboard::Num1) {
if (pressed == 1) {
pressed = 0;
}
}
if (event.key.code == sf::Keyboard::Num2) {
if (pressed1 == 1) {
pressed1 = 0;
}
}
}
}
}
void Player::Move_left(std::vector<std::string> map)
{
if (map[pos_.y / 70][(pos_.x - step) / 70] != '2' && map[(pos_.y + 35 - 1) / 70][(pos_.x - step) / 70] != '2')
{
pos_.x = pos_.x - step;
}
else
{
int a = (pos_.x - step) / 70 + 1;
pos_.x = a*70;
}
}
void Player::Move_right(std::vector<std::string> map)
{
if (map[pos_.y / 70][(pos_.x + 30 + step - 1) / 70] != '2' && map[(pos_.y + 35 - 1) / 70][(pos_.x + 30 + step - 1) / 70] != '2')
{
pos_.x = pos_.x + step;
}
else
{
int a = (pos_.x + 30 + step) / 70;
pos_.x = a * 70 - 30;
}
}
void Player::Move_up(std::vector<std::string> map)
{
if (map[(pos_.y - step) / 70][pos_.x / 70] != '2' && map[(pos_.y - step) / 70][(pos_.x + 30 - 1) / 70] != '2')
{
pos_.y = pos_.y - step;
}
else
{
int a = (pos_.y - step) / 70 + 1;
pos_.y = a * 70;
}
}
void Player::Move_down(std::vector<std::string> map)
{
if (map[(pos_.y + 35 + step - 1) / 70][pos_.x / 70] != '2' && map[(pos_.y + 35 + step - 1) / 70][(pos_.x + 30 - 1) / 70] != '2')
{
pos_.y = pos_.y + step;
}
else
{
int a = (pos_.y + 35 + step) / 70;
pos_.y = a * 70 - 35;
}
}
bool Player::Check_die(std::vector<sf::Vector2f> get_monster_pos)
{
for (int i = 0; i < get_monster_pos.size(); i++)
{
if (pos_.x >= get_monster_pos[i].x && pos_.x <= get_monster_pos[i].x + 40 && pos_.y >= get_monster_pos[i].y && pos_.y <= get_monster_pos[i].y + 40)
{
return true;
}
if (pos_.x + 60 >= get_monster_pos[i].x && pos_.x + 60 <= get_monster_pos[i].x + 40 && pos_.y >= get_monster_pos[i].y && pos_.y <= get_monster_pos[i].y + 40)
{
return true;
}
if (pos_.x >= get_monster_pos[i].x && pos_.x <= get_monster_pos[i].x + 40 && pos_.y + 35 >= get_monster_pos[i].y && pos_.y + 35 <= get_monster_pos[i].y + 40)
{
return true;
}
if (pos_.x + 60 >= get_monster_pos[i].x && pos_.x + 60 <= get_monster_pos[i].x + 40 && pos_.y + 35 >= get_monster_pos[i].y && pos_.y + 35 <= get_monster_pos[i].y + 40)
{
return true;
}
}
return false;}
void Player::Update(std::vector<std::string> map, std::vector<sf::Vector2f> get_monster_pos, int time)
{
for (int i = 0; i < Sprites_.size(); i++)
{
Sprites_[i].setPosition(pos_);
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Left))
{
status = 2;
Move_left(map);
move_type = LEFT;
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Right))
{
status = 1;
Move_right(map);
move_type = RIGHT;
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Up))
{
Move_up(map);
if(status==1)
move_type = RIGHT;
else move_type = LEFT;
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down))
{
Move_down(map);
if (status == 1)
move_type = RIGHT;
else move_type = LEFT;
}
Flag();
if (Check_die(get_monster_pos) == true)
{
blood = blood - 0.8;
}
if (map[pos_.y / 70][pos_.x / 70] == '3')
{
if (blood <= 100)
{
blood = blood + 0.1;
}
}
if (map[pos_.y / 70][pos_.x / 70] == '1' && time>=240)
{
blood = blood - 0.5;
step = 3;
}
if (time <= 240)
{
step = 7;
}
}
void Player::drawSnow()
{
snow.setPosition(pos_.x - 450, pos_.y - 337);
window->draw(snow);
}
void Player::drawInformation()
{
heart_sprite.setPosition(pos_.x - 390, pos_.y - 290);
window->draw(heart_sprite);
heartBar_sprite.setTextureRect(sf::IntRect(0, 0, blood, 30));
heartBar_sprite.setPosition(pos_.x - 390 +40, pos_.y - 290);
window->draw(heartBar_sprite);
redFlag_sprite.setPosition(pos_.x - 100, pos_.y - 290);
window->draw(redFlag_sprite);
sf::Text redFlag(std::to_string(redFlagNumber), font, 20);
redFlag.setPosition(pos_.x - 60, pos_.y - 290);
window->draw(redFlag);
blueFlag_sprite.setPosition(pos_.x + 50, pos_.y - 290);
window->draw(blueFlag_sprite);
sf::Text blueFlag(std::to_string(blueFlagNumber), font, 20);
blueFlag.setPosition(pos_.x + 90, pos_.y - 290);
window->draw(blueFlag);
}
void Player::Draw()
{
//draw flag
for (int i = 0; i < redFlag_pos.size(); i++)
{
if (redFlag_pos[i].x >= pos_.x - 500 && redFlag_pos[i].x <= pos_.x + 500 && redFlag_pos[i].y >= pos_.y - 400 && redFlag_pos[i].y <= pos_.y + 400)
{
redFlag_sprite.setPosition(redFlag_pos[i]);
window->draw(redFlag_sprite);
}
}
for (int i = 0; i < blueFlag_pos.size(); i++)
{
if (blueFlag_pos[i].x >= pos_.x - 500 && blueFlag_pos[i].x <= pos_.x + 500 && blueFlag_pos[i].y >= pos_.y - 400 && blueFlag_pos[i].y <= pos_.y + 400)
{
blueFlag_sprite.setPosition(blueFlag_pos[i]);
window->draw(blueFlag_sprite);
}
}
//draw player
if(move_type == RIGHT) draw(0);
if(move_type == LEFT) draw(1);
}
|
/*
Copyright (c) 2005-2023, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef AIRWAY_GENERATION_HPP_
#define AIRWAY_GENERATION_HPP_
#include <deque>
#include <set>
#include <iostream>
#ifdef CHASTE_VTK
#define _BACKWARD_BACKWARD_WARNING_H 1 //Cut out the strstream deprecated warning for now (gcc4.3)
#include "vtkVersion.h"
#if ((VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 6) || VTK_MAJOR_VERSION >= 6)
/*
* This block is here to prevent a conflict when including vtkPointLocator.h:
* From VTK 7.0, there is a variable HZ in vtkPointLocator.h which is #def'd in linux header asm-generic/param.h,
* so we temporarily #undef it prior to the include. See #2883 for details.
*/
#if (VTK_MAJOR_VERSION >= 7)
#pragma push_macro("HZ")
#undef HZ
#include <vtkPointLocator.h>
#pragma pop_macro("HZ")
#else // (VTK_MAJOR_VERSION < 7)
#include <vtkPointLocator.h>
#endif // (VTK_MAJOR_VERSION >= 7)
#include "vtkSmartPointer.h"
#include "vtkPolyData.h"
#include "vtkSelectEnclosedPoints.h"
/**
* Auxiliary class representing a growth apex in the system
*
* A growth apex contains all the information required to grow a branch
*/
class Apex
{
public:
/** The location of this growth apex */
double mCurrentLocation[3];
/** The direction of this growth apex */
double mOriginalDirection[3];
/** The direction of the parent branch of this growth apex */
double mParentDirection[3];
/** The ID of the the point in the airway tree to grow this apex from */
vtkIdType mStartId;
/** The generation number of this apex */
unsigned mGeneration;
/** The point cloud that this apex will attempt to grow into. */
vtkSmartPointer<vtkPolyData> mPointCloud;
};
/**
* Utility class representing a complete generation of growth apices
*/
class AirwayGeneration
{
public:
/** Constructor */
AirwayGeneration(unsigned generationNumber);
/**
* Add an apex to this generation
*
* @param startId The Id number of the start point of this growth apex
* @param originalDirection The current direction of this growth apex
* @param parentDirection The direction of the parent branch of this growth apex
*/
void AddApex(unsigned startId, double currentLocation[3], double currentDirection[3], double parentDirection[3]);
/**
* Distributes current growth points to the growth apices
*
* @param pAllGrowthPoints Polydata containing the growth points
* @param invalidIds A set of invalid growth point ids
*/
void DistributeGrowthPoints(vtkSmartPointer<vtkPolyData> pAllGrowthPoints, std::set<unsigned>& invalidIds);
/** Returns the apices associated with this generation */
std::deque<Apex>& GetApices();
/** Sets a maximum radius for points to be assigned to an apex */
void SetDistributionRadius(double radius);
/** Gets maximum radius for points to be assigned to an apex */
double GetDistributionRadius();
private:
/** The generation number of this generation object. */
unsigned mGenerationNumber;
/** All the growth apices associated with this generation. */
std::deque<Apex> mApices;
/** The maximum radius within which a point can be distributed to an apex */
double mDistributionRadius;
};
#endif //( (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 6) || VTK_MAJOR_VERSION >= 6)
#endif //CHASTE_VTK
#if !(defined(CHASTE_VTK) && ( (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 6) || VTK_MAJOR_VERSION >= 6))
/**
* This is a fake class to suppress coverage warnings. To get the real class
* you must build with VTK of version 5.6 or above.
*/
class AirwayGeneration // This is here to suppress coverage warnings on machines that do not have vtk 5.6 or higher
{
public:
/**
* Fake constructor.
*/
AirwayGeneration()
{
std::cout << "Dummy airway generation class for coverage" << std::endl;
}
};
#endif // No VTK
#endif // AIRWAY_GENERATION_HPP_
|
/*
****************************************************
* Author : M_Kepler
* EMail : m_kepler@foxmail.com
* Last modified: 2018-11-18 22:41:27
* Filename : dbf_read.h
* Description : 以二进制形式读入dbf文件
* dbf文件的二进制文件格式: http://www.xumenger.com/dbf-20160703/
* 编辑器中看到的的十六进制是: 9f17 对应的十进制应该是6047(即十六进制179f对应的十进制)
* 之所以要从右往左读是因为内存中存储数据采用的是"小端模式",数据的低位存在前面,高位存在后面
****************************************************
*/
#ifndef _DBF_READ_H_
#define _DBF_READ_H_
#include <stdio.h>
#include <string>
#include <vector>
#include <iostream>
#include <sstream>
using namespace std;
/**< DBF文件头结构 */
/* -- 不是32位机器不要这样用
typedef struct stDBFHead
{
char Mark; // 版本信息
unsigned char Year; // + 1900
unsigned char Month;
unsigned char Day;
long RecCount; // 4字节保存记录数
unsigned short DataOffset; // 2字节保存文件头字节数
unsigned short RecSize; // 2字节保存每行数据的长度
char Reserved[20];
} stDbfHead, *LPDBFHEAD;
*/
// FIXME 用字符数组操作起来确实不怎么方便, 如果用int short的话又不能保证64位机器运行正确
typedef struct stDBFHead
{
char szMark[1]; // 版本信息
char szYear[1];
char szMonth[1];
char szDay[1];
char szRecCount[4]; // 4字节保存记录数
char szDataOffset[2]; // 2字节保存文件头字节数
char szRecSize[2]; // 2字节保存每行数据的长度
char Reserved[20];
} stDbfHead, *LPDBFHEAD;
// dbf文件中存储的字段信息
typedef struct stFieldHead
{
char szName[11]; // 0 - 10 字段名称
char szType[1]; // 11 字段的数据类型,C字符、N数字、D日期、B二进制、等
char szOffset[4]; // 12 - 15 字段偏移量, 默认为0
char szLen[1]; // 16 字段长度
char szPrecision[1]; // 17 字段精度
char szResv2[2]; // 18 - 19 保留字节, 默认为0
char szId[1]; // 20 工作区ID
char szResv3[11]; // 21 - 31 保留字节, 默认为0
} stFieldHead;
typedef void (*pCallback)(std::vector<stFieldHead> vecFieldHead, char *pcszContent);
typedef unsigned char uint8;
typedef short int uint16;
typedef int uint32;
class CDbfRead
{
public:
CDbfRead(){};
CDbfRead(const std::string &strFile);
~CDbfRead(void);
public:
/*
* @brief: 并解析dbf文件头信息,
* 把 dbf 文件属性 如记录数、文件头字节等保存到私有变量
* 把 dbf 字段属性 保存到 m_vecFieldHead
*/
int ReadHead();
/*
* @brief: 读入dbf文件, 并进行文件内存映射, 读取每行数据记录给pfn处理
* @param: pfn 函数指针
* @param: nPageNum 申请12800个页的内存大小; 12800 * 4k = 500M
* @return:
*/
int Read(pCallback pfn, int nPageNum = 128000);
/*
* @brief : 生成dbf文件
* @param : vecFieldHead 字段定义vec
* @return : errcode
*/
int AddHead(std::vector<stFieldHead> vecFieldHead);
/*
* @brief : 插入记录
* @param :
* @return :
*/
int AppendRec(std::string *sValues);
int updateFileHeader();
int GetRecordNum()
{
return m_nRecordNum;
}
int GetRecordSize()
{
return m_sRecordSize;
}
std::vector<stFieldHead> &GetFieldArray()
{
return m_vecFieldHead;
}
private:
std::string m_strFile;
FILE *m_newDbf;
char *m_pRecord;
int m_nRecordNum; // dbf二进制文件中的记录条数
short m_sFileHeadBytesNum; // dbf二进制文件的文件头中字节数
short m_sRecordSize; // 一条记录中的字节长度, 每行数据所占长度
stDbfHead m_stDbfHead;
std::vector<stFieldHead> m_vecFieldHead; // 从dbf文件头中解析出的每个字段信息
};
#endif
|
/*************************************************************************************
* Name: Akardet Sam Tancharoensuksavai
* Course: 4110.002 - Algorithms
* Assignment: Homework 3
* Date: 09/29/16
* Description: Basic implementation of Dijkstra's algorithm as described in
* Section 24.3 of CLRS.
*************************************************************************************/
#ifndef main_h
#define main_h
#include <iostream>
#include <fstream>
#include <vector>
#include <limits>
#include <algorithm>
using namespace std;
struct Edge
{
string src, dest;
int weight;
};
struct Graph
{
int vertex, edges;
struct Edge* edge;
};
const int MAX_INT = numeric_limits<int>::max();
string openFile(int argc, const char * argv[]);
vector <string> splitString(string line);
vector <string> removeNonCharacters(string line);
struct Graph* createGraph(vector<int> graphData);
struct Graph* buildGraph(struct Graph* graph, vector<string> graphString);
vector<vector<int>> buildMatrix(struct Graph* graph, vector<string> vertexKey);
int getEdgeWeight(struct Graph* graph, string src, string dest);
vector<int> getVertexEdgeTotals(string data);
int findMin(vector<int> distVector, vector<bool> visitedVector);
vector<string> populateKey(struct Graph* graph);
void dijkstras(vector<vector<int>> graphMatrix, vector<int> graphData, vector<string> verticies);
void print(vector<int> distances, vector<string> vertices);
#endif /* main_h */
|
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x = 0, a = 0, g = 0, d = 0;
while (cin >> x, x != 4)
{
if (x == 1)
a++;
else if (x == 2)
g++;
else if (x == 3)
d++;
}
cout << "MUITO OBRIGADO" << endl;
cout << "Alcool: " << a << endl;
cout << "Gasolina: " << g << endl;
cout << "Diesel: " << d << endl;
return 0;
}
|
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ar array
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int a[n] , maxv = INT_MIN;
for(int i = 0; i< n ; i++)
{
cin>>a[i];
}
for(int i = 0 ; i < n ; i++)
{
maxv= max(maxv , i+a[i]);
}
cout<<maxv<<endl;
}
return 0;
}
|
/*
* Copyright (C) 2003 Marc-Antoine Ruel at Cardinal Health
*
* This file is part of TN5250
*
* TN5250 is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1, or (at your option)
* any later version.
*
* TN5250 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*
*/
// Removes all references to conf.c (For now)
#include "stdafx.h"
extern "C" {
#include "tn5250-private.h"
}
/*** Tn5250Config ***/
/* The intent of this file is to use the registry instead of a file.
* In the case of an ActiveX, it's much better to do this.
* But as you see it hasn't been implemented...
* If you want to use the old way, just include tn5250/src/conf.c
* instead of this file.
*/
extern "C" Tn5250Config *tn5250_config_new ()
{
Tn5250Config *This = tn5250_new (Tn5250Config, 1);
if (This == NULL)
return NULL;
This->ref = 1;
This->vars = NULL;
return This;
}
extern "C" Tn5250Config *tn5250_config_ref (Tn5250Config *This)
{
// unsafe anyway...
This->ref++;
return This;
}
// auto-delete...
extern "C" void tn5250_config_unref (Tn5250Config *This)
{
if (-- This->ref == 0)
{
free (This);
}
}
extern "C" int tn5250_config_load (Tn5250Config *, const char *)
{
return 0;
}
extern "C" int tn5250_config_load_default (Tn5250Config *)
{
return 0;
}
extern "C" int tn5250_config_parse_argv (Tn5250Config *, int , char **)
{
return 0;
}
extern "C" const char *tn5250_config_get (Tn5250Config *, const char * name)
{
// absolutely needed...
if ( !strcmp(name, "env.TERM") )
return "IBM-3179-2";
else if ( !strcmp(name, "map") )
return "37";
else if ( !strcmp(name, "enhanced") )
return "true";
else
return NULL;
}
extern "C" int tn5250_config_get_bool (Tn5250Config * This, const char * name)
{
const char *v = tn5250_config_get (This, name);
return (v == NULL ? 0 :
!(!strcmp (v,"off")
|| !strcmp (v, "no")
|| !strcmp (v,"0")
|| !strcmp (v,"false")));
}
extern "C" int tn5250_config_get_int (Tn5250Config * This, const char * name)
{
const char *v = tn5250_config_get (This, name);
if(v == NULL) {
return 0;
} else {
return(atoi(v));
}
}
extern "C" void tn5250_config_set(Tn5250Config *This,
const char *name,
const int type,
const gpointer value)
{
}
extern "C" void tn5250_config_unset (Tn5250Config *, const char *)
{
}
// Copy variables prefixed with `prefix' to variables without `prefix'.
extern "C" void tn5250_config_promote (Tn5250Config *, const char *)
{
}
|
#ifndef SANDBOXSIFT_H
#define SANDBOXSIFT_H
#include "opencv2\core\core.hpp" ///< basic datastructures and functions
#include "opencv2\imgproc\imgproc.hpp" ///< image processing such as cv::resize
#include "opencv2\core\types_c.h" ///< cvround & datatype convenience definitions
#include "opencv2\features2d\features2d.hpp" ///< cv::keypoint & more
class SandboxSIFT
{
public:
SandboxSIFT(int _nfeatures = 0, int _nOctaveLayers = 3, double _contrastThreshold = 0.04, double _edgeThreshold = 10, double _sigma = 1.6);
void SandboxSIFT::operator()(cv::InputArray _image, cv::InputArray _mask, cv::vector<cv::KeyPoint>& _keypoints, cv::OutputArray _descriptors, bool _useProvidedKeypoints) const;
~SandboxSIFT();
//static cv::Mat createInitialImage( const cv::Mat& img, bool doubleImageSize, float sigma );
void SandboxSIFT::buildGaussianPyramid( const cv::Mat& base, cv::vector<cv::Mat>& pyr, int nOctaves ) const;
void SandboxSIFT::buildDoGPyramid( const cv::vector<cv::Mat>& gpyr, cv::vector<cv::Mat>& dogpyr ) const;
//static float calcOrientationHist( const cv::Mat& img, cv::Point pt, int radius, float sigma, float* hist, int n );
//static bool adjustLocalExtrema( const cv::vector<cv::Mat>& dog_pyr, cv::KeyPoint& kpt, int octv, int& layer, int& r, int& c, int nOctaveLayers, float contrastThreshold, float edgeThreshold, float sigma );
void SandboxSIFT::findScaleSpaceExtrema( const cv::vector<cv::Mat>& gauss_pyr, const cv::vector<cv::Mat>& dog_pyr, cv::vector<cv::KeyPoint>& keypoints ) const;
//static void calcSIFTDescriptor( const cv::Mat& img, cv::Point2f ptf, float ori, float scl, int d, int n, float* dst )
//static void calcDescriptors(const vector<cv::Mat>& gpyr, const cv::vector<cv::KeyPoint>& keypoints, cv::Mat& descriptors, int nOctaveLayers )
int SandboxSIFT::descriptorSize() const;
int SandboxSIFT::descriptorType() const;
void SandboxSIFT::detectImpl( const cv::Mat& image, cv::vector<cv::KeyPoint>& keypoints, const cv::Mat& mask) const;
void SandboxSIFT::computeImpl( const cv::Mat& image, cv::vector<cv::KeyPoint>& keypoints, cv::Mat& descriptors) const;
private:
int nfeatures;
int nOctaveLayers;
double contrastThreshold;
double edgeThreshold;
double sigma;
};
#endif // SANDBOXSIFT_H
|
#ifndef PEN_H_
#define PEN_H_
#include "Graph.h"
class Pen : public Graph
{
public:
Pen();
void draw();
private:
};
#endif // !PEN_H_
#pragma once
|
#include "circleitem.h"
#include <QPainter>
CircleItem::CircleItem(int id) : GrawItem(id)
{
}
QRectF CircleItem::boundingRect() const
{
return QRectF(-20, -20, 40, 40);
}
void CircleItem::paint(QPainter *painter, const QStyleOptionGraphicsItem */*option*/,
QWidget */*widget*/)
{
if (isSelected())
paintSelected(painter);
else
paintNotSelected(painter);
}
ComponentType CircleItem::componentType() const
{
return ComponentType::Circle;
}
void CircleItem::paintSelected(QPainter *painter)
{
painter->setPen(QPen(Qt::blue, 1));
painter->setBrush(Qt::NoBrush);
painter->drawRect(QRect(-20, -20, 40, 40));
painter->setPen(QPen(Qt::blue, 3));
painter->setBrush(Qt::SolidPattern);
painter->setBrush(Qt::yellow);
painter->drawEllipse(QRect(-20, -20, 40, 40));
}
void CircleItem::paintNotSelected(QPainter *painter)
{
painter->setPen(QPen(Qt::red, 1));
painter->setBrush(Qt::NoBrush);
painter->drawRect(QRect(-20, -20, 40, 40));
painter->setPen(QPen(Qt::red, 3));
painter->setBrush(Qt::SolidPattern);
painter->setBrush(Qt::yellow);
painter->drawEllipse(QRect(-20, -20, 40, 40));
}
|
#include <bits/stdc++.h>
using namespace std;
class minHeap
{
int *arr;
int capacity;
int size;
public:
minHeap(int capacity, int size, const int *a)
{
this->capacity = capacity;
this->size = size;
arr = new int[capacity];
for (int i = 0; i < size; ++i)
arr[i] = a[i];
}
int left(int i) { return i * 2 + 1; }
int right(int i) { return i * 2 + 2; }
int parent(int i) { return (i - 1) / 2; }
void printArray()
{
cout << "Current elements in Min-Heap:\n";
for (int i = 0; i < size; ++i)
cout << arr[i] << " ";
cout << endl;
}
void minHeapify(int i);
void buildHeap();
int extractMinimum();
void decreaseKey(int i, int x);
void deleteKey(int i);
};
void minHeap::minHeapify(int i)
{
int smallest = i;
int lt = left(i), rt = right(i);
if (lt < size && arr[lt] < arr[smallest])
smallest = lt;
if (rt < size && arr[rt] < arr[smallest])
smallest = rt;
if (smallest != i)
{
swap(arr[i], arr[smallest]);
minHeapify(smallest);
}
}
void minHeap::buildHeap()
{
for (int i = (size - 2) / 2; i >= 0; --i)
minHeapify(i);
}
int minHeap::extractMinimum()
{
if (size == 0)
{
cout << "Cannot extract minimum!!\n";
return -1;
}
int Min_element = arr[0];
arr[0] = arr[size - 1];
size--;
minHeapify(0);
return Min_element;
}
void minHeap::decreaseKey(int i, int x)
{
if (i >= size)
{
cout << "Invalid key provided!!\n";
return;
}
arr[i] = x;
while (i != 0 && arr[parent(i)] > arr[i])
{
swap(arr[i], arr[parent(i)]);
i = parent(i);
}
}
void minHeap::deleteKey(int i)
{
decreaseKey(i, INT_MIN);
extractMinimum();
}
class maxHeap
{
int *arr;
int capacity;
int size;
public:
maxHeap(int capacity, int size, const int *a)
{
this->capacity = capacity;
this->size = size;
arr = new int[capacity];
for (int i = 0; i < size; ++i)
arr[i] = a[i];
}
int left(int i) { return i * 2 + 1; }
int right(int i) { return i * 2 + 2; }
int parent(int i) { return (i - 1) / 2; }
void printArray()
{
cout << "Current elements in Max-Heap:\n";
for (int i = 0; i < size; ++i)
cout << arr[i] << " ";
cout << endl;
}
void maxHeapify(int i);
void buildHeap();
int extractMaximum();
void increaseKey(int i, int x);
void deleteKey(int i);
};
void maxHeap::maxHeapify(int i)
{
int largest = i;
int lt = left(i), rt = right(i);
if (lt < size && arr[lt] > arr[largest])
largest = lt;
if (rt < size && arr[rt] > arr[largest])
largest = rt;
if (largest != i)
{
swap(arr[i], arr[largest]);
maxHeapify(largest);
}
}
void maxHeap::buildHeap()
{
for (int i = (size - 2) / 2; i >= 0; --i)
maxHeapify(i);
}
int maxHeap::extractMaximum()
{
if (size == 0)
{
cout << "Cannot extract maximum!!\n";
return -1;
}
int Max_element = arr[0];
arr[0] = arr[size - 1];
size--;
maxHeapify(0);
return Max_element;
}
void maxHeap::increaseKey(int i, int x)
{
if (i >= size)
{
cout << "Invalid key provided!!\n";
return;
}
arr[i] = x;
while (i != 0 && arr[parent(i)] < arr[i])
{
swap(arr[i], arr[parent(i)]);
i = parent(i);
}
}
void maxHeap::deleteKey(int i)
{
increaseKey(i, INT_MAX);
extractMaximum();
}
int main()
{
int capacity;
cout << "Enter capacity of Heap: ";
cin >> capacity;
int size;
while (size > capacity)
{
cout << "Enter current size of Heap (less than or equal to capacity): ";
cin >> size;
}
int a[size], k;
cout << "Enter elements in Heap:\n";
for (int i = 0; i < size; ++i)
cin >> a[i];
minHeap min_h(capacity, size, a);
min_h.buildHeap();
min_h.printArray();
cout << "Enter index to delete in Min-Heap: ";
cin >> k;
min_h.deleteKey(k);
min_h.printArray();
maxHeap max_h(capacity, size, a);
max_h.buildHeap();
max_h.printArray();
cout << "Enter index to delete in Max-Heap: ";
cin >> k;
max_h.deleteKey(k);
max_h.printArray();
return 0;
}
|
/* parser.h -*- C++ -*-
Rémi Attab (remi.attab@gmail.com), 12 Apr 2015
FreeBSD-style copyright and disclaimer apply
*/
#include "json.h"
#pragma once
namespace reflect {
namespace json {
/******************************************************************************/
/* GENERIC PARSER */
/******************************************************************************/
inline void skip(Reader& reader);
inline void parseNull(Reader& reader);
inline bool parseBool(Reader& reader);
inline int64_t parseInt(Reader& reader);
inline double parseFloat(Reader& reader);
inline std::string parseString(Reader& reader);
template<typename Fn> void parseObject(Reader& reader, const Fn& fn);
template<typename Fn> void parseArray(Reader& reader, const Fn& fn);
/******************************************************************************/
/* VALUE PARSER */
/******************************************************************************/
void parse(Reader& reader, Value& value);
template<typename T> void parse(Reader& reader, T& value);
template<typename T> Error parse(std::istream& stream, T& value);
template<typename T> Error parse(const std::string& str, T& value);
} // namespace json
} // namespace reflect
|
// 应该是hash题,要查附近的8个位置是不是有垃圾
// 数据范围是1e9,直接hash是不行的,而且还有两维
// 当成字符串来hash的话呢?用进阶的办法*P%MOD,确实可以,n是1e3,冲突概率不大
// 或者用排序的方法,数量级不大复杂度也完全够
// 弄成一个结构体,两个数组,一个按照x排序,一个按照y排序
// 但还是有点小麻烦,因为可能很多x相同,还得找到第一个x不同的,判断是不是x+1/x-1
// 还是hash吧
// 但是返回的虽然是整数但是还是太大啊,不能开数组hash,难道再用一个vector来存?
// 而且好像这个是针对字符的hash,如果我直接用X*Range+Y求模的方法呢?%MOD=1e6+19呢
// 1000个数,应该说有一定概率冲突但是概率比较小
// 但是它还有负数啊,有负数要hash更麻烦相当于Rang=1e18了
// 还是传统的排序实在
// 开两个结构体,一个用来查x+1/x-1,一个用来查y-1/y+1,查到对应的x/y,再判断y/x,超出就跳出
// x+1,y+1 x+1,y-1 x-1,y+1, x-1,y-1逻辑大致类似,只需要用x的那个即可
// 排你妹呢?直接vector<pair<int, int>>来find它不想吗,pair的==还被重载好了
// n2的复杂度完全ok
// 15:55-17:10
// 17:35-17:55
// 95min
#include <bits/stdc++.h>
using namespace std;
// struct Point
// {
// int x, y;
// };
// bool cmp1(Point a, Point b)
// {
// if (a.x != b.x)
// return a.y < b.y;
// return a.x < b.x;
// }
// bool cmp2(Point a, Point b)
// {
// if (a.y != b.y)
// return a.x < b.x;
// return a.y < b.y;
// }
// const int MAXN = 1010;
int main()
{
int n;
scanf("%d", &n);
vector<pair<int, int>> p;
for (int i = 0; i < n; i++)
{
int x, y;
scanf("%d%d", &x, &y);
p.push_back(make_pair(x, y));
}
vector<pair<int, int>> p1;
for (int i = 0; i < p.size(); i++)
{
int x = p[i].first;
int y = p[i].second;
if (find(p.begin(), p.end(), make_pair(x + 1, y)) != p.end() &&
find(p.begin(), p.end(), make_pair(x - 1, y)) != p.end() &&
find(p.begin(), p.end(), make_pair(x, y + 1)) != p.end() &&
find(p.begin(), p.end(), make_pair(x, y - 1)) != p.end())
p1.push_back(make_pair(x, y));
}
int s[5] = {0};
for (int i = 0; i < p1.size(); i++)
{
int x = p1[i].first;
int y = p1[i].second;
int score = 0;
if (find(p.begin(), p.end(), make_pair(x + 1, y + 1)) != p.end())
score++;
if (find(p.begin(), p.end(), make_pair(x + 1, y - 1)) != p.end())
score++;
if (find(p.begin(), p.end(), make_pair(x - 1, y + 1)) != p.end())
score++;
if (find(p.begin(), p.end(), make_pair(x - 1, y - 1)) != p.end())
score++;
s[score]++;
}
for (int i = 0; i <= 4; i++)
printf("%d\n", s[i]);
// Point p1[MAXN];
// Point p2[MAXN];
// int hash[MAXN] = {0};
// for (int i = 0; i < n; i++)
// {
// scanf("%d%d", p1[i].x, p1[i].y);
// p2[i].x = p1[i].x, p2[i].y = p1[i].y;
// }
// sort(p1, p1 + n, cmp1);
// sort(p2, p2 + n, cmp2);
// for (int i = 0; i < n; i++)
// {
// int j = i + 1;
// while (!(p1[j].x == p1[i].x + 1 && p1[j].y >= p1[i].y) &&
// !(p1[j].x > p1[i].x + 1))
// j++;
// if (p1[j].x == p1[i].x + 1 && p1[j].y == p1[i].y)
// hash[i]++;
// int j = i - 1;
// while (!(p1[j].x == p1[i].x - 1 && p1[j].y <= p1[i].y) &&
// !(p1[j].x < p1[i].x - 1))
// j--;
// if (p1[j].x == p1[i].x - 1 && p1[j].y == p1[i].y)
// hash[i]++;
// }
// for (int i = 0; i < n; i++)
// {
// int j = i + 1;
// while (!(p2[j].y == p2[i].y + 1 && p2[j].x >= p2[i].x) &&
// !(p2[j].y > p2[i].y + 1))
// j++;
// if (p2[j].y == p2[i].y + 1 && p2[j].x == p2[i].x)
// hash[i]++;
// int j = i - 1;
// while (!(p2[j].y == p2[i].y - 1 && p2[j].x <= p2[i].x) &&
// !(p2[j].y < p2[i].y - 1))
// j--;
// if (p2[j].y == p2[i].y - 1 && p2[j].x == p2[i].x)
// hash[i]++;
// }
// int score[5] = {0};
// for (int i = 0; i < n; i++)
// {
// if (hash[i] == 4)
// {
// }
// }
}
|
//
// Created by Nitish Mohan Shandilya on 7/13/20.
//
namespace PracticeExercisesWithoutTemplates {
// Exceptions
struct LinkedListEmptyException : exception {
const char* what() const noexcept {
return "Linked List is Empty!!";
}
};
struct Node {
int data;
Node* next;
Node(const int inputData) : data(inputData), next(nullptr) {}
};
struct LinkedList {
Node* head;
LinkedList() : head(nullptr) {}
void add(const int inputData);
bool removeByValue(const int inputData);
};
void LinkedList::add(const int inputData) {
Node* newNode = new Node(inputData);
if (head == nullptr) {
head = newNode;
} else {
Node* temp = head;
while (temp->next != nullptr)
temp = temp->next;
temp->next = newNode;
}
}
bool LinkedList::removeByValue(const int inputData) {
if (head == nullptr) throw LinkedListEmptyException();
if (head->data == inputData) {
Node* toDelete = head;
head = head->next;
delete toDelete;
return true;
}
Node* temp = head;
while (temp->next != nullptr) {
if (temp->next->data == inputData) {
Node* toDelete = temp->next;
temp->next = temp->next->next;
delete toDelete;
return true;
}
temp = temp->next;
}
return false;
}
void testLinkedList() {
try {
LinkedList* linkedList = new LinkedList();
linkedList->add(2);
linkedList->add(3);
linkedList->removeByValue(2);
linkedList->removeByValue(3);
//linkedList->removeByValue(3);
delete linkedList;
} catch (exception& e) {
cout << e.what() << endl;
}
}
}
|
// C++ for the Windows Runtime vv1.0.170303.6
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
#include "../base.h"
#include "Windows.ApplicationModel.Search.0.h"
#include "Windows.Storage.Streams.0.h"
#include "Windows.Foundation.1.h"
#include "Windows.Foundation.Collections.1.h"
#include "Windows.Storage.1.h"
WINRT_EXPORT namespace winrt {
namespace ABI::Windows::ApplicationModel::Search {
struct __declspec(uuid("eeaeb062-743d-456e-84a3-23f06f2d15d7")) __declspec(novtable) ILocalContentSuggestionSettings : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall put_Enabled(bool value) = 0;
virtual HRESULT __stdcall get_Enabled(bool * value) = 0;
virtual HRESULT __stdcall get_Locations(Windows::Foundation::Collections::IVector<Windows::Storage::StorageFolder> ** value) = 0;
virtual HRESULT __stdcall put_AqsFilter(hstring value) = 0;
virtual HRESULT __stdcall get_AqsFilter(hstring * value) = 0;
virtual HRESULT __stdcall get_PropertiesToMatch(Windows::Foundation::Collections::IVector<hstring> ** value) = 0;
};
struct __declspec(uuid("fdacec38-3700-4d73-91a1-2f998674238a")) __declspec(novtable) ISearchPane : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall put_SearchHistoryEnabled(bool value) = 0;
virtual HRESULT __stdcall get_SearchHistoryEnabled(bool * value) = 0;
virtual HRESULT __stdcall put_SearchHistoryContext(hstring value) = 0;
virtual HRESULT __stdcall get_SearchHistoryContext(hstring * value) = 0;
virtual HRESULT __stdcall put_PlaceholderText(hstring value) = 0;
virtual HRESULT __stdcall get_PlaceholderText(hstring * value) = 0;
virtual HRESULT __stdcall get_QueryText(hstring * value) = 0;
virtual HRESULT __stdcall get_Language(hstring * value) = 0;
virtual HRESULT __stdcall get_Visible(bool * value) = 0;
virtual HRESULT __stdcall add_VisibilityChanged(Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneVisibilityChangedEventArgs> * handler, event_token * token) = 0;
virtual HRESULT __stdcall remove_VisibilityChanged(event_token token) = 0;
virtual HRESULT __stdcall add_QueryChanged(Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneQueryChangedEventArgs> * handler, event_token * token) = 0;
virtual HRESULT __stdcall remove_QueryChanged(event_token token) = 0;
virtual HRESULT __stdcall add_SuggestionsRequested(Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestedEventArgs> * handler, event_token * token) = 0;
virtual HRESULT __stdcall remove_SuggestionsRequested(event_token token) = 0;
virtual HRESULT __stdcall add_QuerySubmitted(Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneQuerySubmittedEventArgs> * handler, event_token * token) = 0;
virtual HRESULT __stdcall remove_QuerySubmitted(event_token token) = 0;
virtual HRESULT __stdcall add_ResultSuggestionChosen(Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneResultSuggestionChosenEventArgs> * handler, event_token * token) = 0;
virtual HRESULT __stdcall remove_ResultSuggestionChosen(event_token token) = 0;
virtual HRESULT __stdcall abi_SetLocalContentSuggestionSettings(Windows::ApplicationModel::Search::ILocalContentSuggestionSettings * settings) = 0;
virtual HRESULT __stdcall abi_ShowOverloadDefault() = 0;
virtual HRESULT __stdcall abi_ShowOverloadWithQuery(hstring query) = 0;
virtual HRESULT __stdcall put_ShowOnKeyboardInput(bool value) = 0;
virtual HRESULT __stdcall get_ShowOnKeyboardInput(bool * value) = 0;
virtual HRESULT __stdcall abi_TrySetQueryText(hstring query, bool * succeeded) = 0;
};
struct __declspec(uuid("3c064fe9-2351-4248-a529-7110f464a785")) __declspec(novtable) ISearchPaneQueryChangedEventArgs : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_QueryText(hstring * value) = 0;
virtual HRESULT __stdcall get_Language(hstring * value) = 0;
virtual HRESULT __stdcall get_LinguisticDetails(Windows::ApplicationModel::Search::ISearchPaneQueryLinguisticDetails ** value) = 0;
};
struct __declspec(uuid("82fb460e-0940-4b6d-b8d0-642b30989e15")) __declspec(novtable) ISearchPaneQueryLinguisticDetails : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_QueryTextAlternatives(Windows::Foundation::Collections::IVectorView<hstring> ** value) = 0;
virtual HRESULT __stdcall get_QueryTextCompositionStart(uint32_t * value) = 0;
virtual HRESULT __stdcall get_QueryTextCompositionLength(uint32_t * value) = 0;
};
struct __declspec(uuid("143ba4fc-e9c5-4736-91b2-e8eb9cb88356")) __declspec(novtable) ISearchPaneQuerySubmittedEventArgs : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_QueryText(hstring * value) = 0;
virtual HRESULT __stdcall get_Language(hstring * value) = 0;
};
struct __declspec(uuid("460c92e5-4c32-4538-a4d4-b6b4400d140f")) __declspec(novtable) ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_LinguisticDetails(Windows::ApplicationModel::Search::ISearchPaneQueryLinguisticDetails ** value) = 0;
};
struct __declspec(uuid("c8316cc0-aed2-41e0-bce0-c26ca74f85ec")) __declspec(novtable) ISearchPaneResultSuggestionChosenEventArgs : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_Tag(hstring * value) = 0;
};
struct __declspec(uuid("9572adf1-8f1d-481f-a15b-c61655f16a0e")) __declspec(novtable) ISearchPaneStatics : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall abi_GetForCurrentView(Windows::ApplicationModel::Search::ISearchPane ** searchPane) = 0;
};
struct __declspec(uuid("00732830-50f1-4d03-99ac-c6644c8ed8b5")) __declspec(novtable) ISearchPaneStaticsWithHideThisApplication : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall abi_HideThisApplication() = 0;
};
struct __declspec(uuid("81b10b1c-e561-4093-9b4d-2ad482794a53")) __declspec(novtable) ISearchPaneSuggestionsRequest : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_IsCanceled(bool * value) = 0;
virtual HRESULT __stdcall get_SearchSuggestionCollection(Windows::ApplicationModel::Search::ISearchSuggestionCollection ** collection) = 0;
virtual HRESULT __stdcall abi_GetDeferral(Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequestDeferral ** deferral) = 0;
};
struct __declspec(uuid("a0d009f7-8748-4ee2-ad44-afa6be997c51")) __declspec(novtable) ISearchPaneSuggestionsRequestDeferral : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall abi_Complete() = 0;
};
struct __declspec(uuid("c89b8a2f-ac56-4460-8d2f-80023bec4fc5")) __declspec(novtable) ISearchPaneSuggestionsRequestedEventArgs : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_Request(Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequest ** value) = 0;
};
struct __declspec(uuid("3c4d3046-ac4b-49f2-97d6-020e6182cb9c")) __declspec(novtable) ISearchPaneVisibilityChangedEventArgs : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_Visible(bool * value) = 0;
};
struct __declspec(uuid("46a1205b-69c9-4745-b72f-a8a4fc8f24ae")) __declspec(novtable) ISearchQueryLinguisticDetails : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_QueryTextAlternatives(Windows::Foundation::Collections::IVectorView<hstring> ** value) = 0;
virtual HRESULT __stdcall get_QueryTextCompositionStart(uint32_t * value) = 0;
virtual HRESULT __stdcall get_QueryTextCompositionLength(uint32_t * value) = 0;
};
struct __declspec(uuid("cac6c3b8-3c64-4dfd-ad9f-479e4d4065a4")) __declspec(novtable) ISearchQueryLinguisticDetailsFactory : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall abi_CreateInstance(Windows::Foundation::Collections::IIterable<hstring> * queryTextAlternatives, uint32_t queryTextCompositionStart, uint32_t queryTextCompositionLength, Windows::ApplicationModel::Search::ISearchQueryLinguisticDetails ** value) = 0;
};
struct __declspec(uuid("323a8a4b-fbea-4446-abbc-3da7915fdd3a")) __declspec(novtable) ISearchSuggestionCollection : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_Size(uint32_t * value) = 0;
virtual HRESULT __stdcall abi_AppendQuerySuggestion(hstring text) = 0;
virtual HRESULT __stdcall abi_AppendQuerySuggestions(Windows::Foundation::Collections::IIterable<hstring> * suggestions) = 0;
virtual HRESULT __stdcall abi_AppendResultSuggestion(hstring text, hstring detailText, hstring tag, Windows::Storage::Streams::IRandomAccessStreamReference * image, hstring imageAlternateText) = 0;
virtual HRESULT __stdcall abi_AppendSearchSeparator(hstring label) = 0;
};
struct __declspec(uuid("4e4e26a7-44e5-4039-9099-6000ead1f0c6")) __declspec(novtable) ISearchSuggestionsRequest : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall get_IsCanceled(bool * value) = 0;
virtual HRESULT __stdcall get_SearchSuggestionCollection(Windows::ApplicationModel::Search::ISearchSuggestionCollection ** collection) = 0;
virtual HRESULT __stdcall abi_GetDeferral(Windows::ApplicationModel::Search::ISearchSuggestionsRequestDeferral ** deferral) = 0;
};
struct __declspec(uuid("b71598a9-c065-456d-a845-1eccec5dc28b")) __declspec(novtable) ISearchSuggestionsRequestDeferral : Windows::Foundation::IInspectable
{
virtual HRESULT __stdcall abi_Complete() = 0;
};
}
namespace ABI {
template <> struct traits<Windows::ApplicationModel::Search::LocalContentSuggestionSettings> { using default_interface = Windows::ApplicationModel::Search::ILocalContentSuggestionSettings; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPane> { using default_interface = Windows::ApplicationModel::Search::ISearchPane; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneQueryChangedEventArgs> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneQueryChangedEventArgs; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneQueryLinguisticDetails> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneQueryLinguisticDetails; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneQuerySubmittedEventArgs> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneQuerySubmittedEventArgs; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneResultSuggestionChosenEventArgs> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneResultSuggestionChosenEventArgs; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneSuggestionsRequest> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequest; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestDeferral> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequestDeferral; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestedEventArgs> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequestedEventArgs; };
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneVisibilityChangedEventArgs> { using default_interface = Windows::ApplicationModel::Search::ISearchPaneVisibilityChangedEventArgs; };
template <> struct traits<Windows::ApplicationModel::Search::SearchQueryLinguisticDetails> { using default_interface = Windows::ApplicationModel::Search::ISearchQueryLinguisticDetails; };
template <> struct traits<Windows::ApplicationModel::Search::SearchSuggestionCollection> { using default_interface = Windows::ApplicationModel::Search::ISearchSuggestionCollection; };
template <> struct traits<Windows::ApplicationModel::Search::SearchSuggestionsRequest> { using default_interface = Windows::ApplicationModel::Search::ISearchSuggestionsRequest; };
template <> struct traits<Windows::ApplicationModel::Search::SearchSuggestionsRequestDeferral> { using default_interface = Windows::ApplicationModel::Search::ISearchSuggestionsRequestDeferral; };
}
namespace Windows::ApplicationModel::Search {
template <typename D>
struct WINRT_EBO impl_ILocalContentSuggestionSettings
{
void Enabled(bool value) const;
bool Enabled() const;
Windows::Foundation::Collections::IVector<Windows::Storage::StorageFolder> Locations() const;
void AqsFilter(hstring_view value) const;
hstring AqsFilter() const;
Windows::Foundation::Collections::IVector<hstring> PropertiesToMatch() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPane
{
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void SearchHistoryEnabled(bool value) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] bool SearchHistoryEnabled() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void SearchHistoryContext(hstring_view value) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] hstring SearchHistoryContext() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void PlaceholderText(hstring_view value) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] hstring PlaceholderText() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] hstring QueryText() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] hstring Language() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] bool Visible() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] event_token VisibilityChanged(const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneVisibilityChangedEventArgs> & handler) const;
using VisibilityChanged_revoker = event_revoker<ISearchPane>;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] VisibilityChanged_revoker VisibilityChanged(auto_revoke_t, const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneVisibilityChangedEventArgs> & handler) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void VisibilityChanged(event_token token) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] event_token QueryChanged(const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneQueryChangedEventArgs> & handler) const;
using QueryChanged_revoker = event_revoker<ISearchPane>;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] QueryChanged_revoker QueryChanged(auto_revoke_t, const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneQueryChangedEventArgs> & handler) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void QueryChanged(event_token token) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] event_token SuggestionsRequested(const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestedEventArgs> & handler) const;
using SuggestionsRequested_revoker = event_revoker<ISearchPane>;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] SuggestionsRequested_revoker SuggestionsRequested(auto_revoke_t, const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestedEventArgs> & handler) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void SuggestionsRequested(event_token token) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] event_token QuerySubmitted(const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneQuerySubmittedEventArgs> & handler) const;
using QuerySubmitted_revoker = event_revoker<ISearchPane>;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] QuerySubmitted_revoker QuerySubmitted(auto_revoke_t, const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneQuerySubmittedEventArgs> & handler) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void QuerySubmitted(event_token token) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] event_token ResultSuggestionChosen(const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneResultSuggestionChosenEventArgs> & handler) const;
using ResultSuggestionChosen_revoker = event_revoker<ISearchPane>;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] ResultSuggestionChosen_revoker ResultSuggestionChosen(auto_revoke_t, const Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Search::SearchPane, Windows::ApplicationModel::Search::SearchPaneResultSuggestionChosenEventArgs> & handler) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void ResultSuggestionChosen(event_token token) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void SetLocalContentSuggestionSettings(const Windows::ApplicationModel::Search::LocalContentSuggestionSettings & settings) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void Show() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void Show(hstring_view query) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] void ShowOnKeyboardInput(bool value) const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] bool ShowOnKeyboardInput() const;
[[deprecated("ISearchPane may be altered or unavailable for releases after Windows 10.")]] bool TrySetQueryText(hstring_view query) const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneQueryChangedEventArgs
{
[[deprecated("ISearchPaneQueryChangedEventArgs may be altered or unavailable for releases after Windows 10.")]] hstring QueryText() const;
[[deprecated("ISearchPaneQueryChangedEventArgs may be altered or unavailable for releases after Windows 10.")]] hstring Language() const;
[[deprecated("ISearchPaneQueryChangedEventArgs may be altered or unavailable for releases after Windows 10.")]] Windows::ApplicationModel::Search::SearchPaneQueryLinguisticDetails LinguisticDetails() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneQueryLinguisticDetails
{
Windows::Foundation::Collections::IVectorView<hstring> QueryTextAlternatives() const;
uint32_t QueryTextCompositionStart() const;
uint32_t QueryTextCompositionLength() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneQuerySubmittedEventArgs
{
[[deprecated("ISearchPaneQuerySubmittedEventArgs may be altered or unavailable for releases after Windows 10.")]] hstring QueryText() const;
[[deprecated("ISearchPaneQuerySubmittedEventArgs may be altered or unavailable for releases after Windows 10.")]] hstring Language() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails
{
[[deprecated("ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails may be altered or unavailable for releases after Windows 10.")]] Windows::ApplicationModel::Search::SearchPaneQueryLinguisticDetails LinguisticDetails() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneResultSuggestionChosenEventArgs
{
[[deprecated("ISearchPaneResultSuggestionChosenEventArgs may be altered or unavailable for releases after Windows 10.")]] hstring Tag() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneStatics
{
[[deprecated("ISearchPaneStatics may be altered or unavailable for releases after Windows 10.")]] Windows::ApplicationModel::Search::SearchPane GetForCurrentView() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneStaticsWithHideThisApplication
{
[[deprecated("ISearchPaneStaticsWithHideThisApplication may be altered or unavailable for releases after Windows 10.")]] void HideThisApplication() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneSuggestionsRequest
{
[[deprecated("ISearchPaneSuggestionsRequest may be altered or unavailable for releases after Windows 10.")]] bool IsCanceled() const;
[[deprecated("ISearchPaneSuggestionsRequest may be altered or unavailable for releases after Windows 10.")]] Windows::ApplicationModel::Search::SearchSuggestionCollection SearchSuggestionCollection() const;
[[deprecated("ISearchPaneSuggestionsRequest may be altered or unavailable for releases after Windows 10.")]] Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestDeferral GetDeferral() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneSuggestionsRequestDeferral
{
[[deprecated("ISearchPaneSuggestionsRequestDeferral may be altered or unavailable for releases after Windows 10.")]] void Complete() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneSuggestionsRequestedEventArgs
{
[[deprecated("ISearchPaneSuggestionsRequestedEventArgs may be altered or unavailable for releases after Windows 10.")]] Windows::ApplicationModel::Search::SearchPaneSuggestionsRequest Request() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchPaneVisibilityChangedEventArgs
{
[[deprecated("ISearchPaneVisibilityChangedEventArgs may be altered or unavailable for releases after Windows 10.")]] bool Visible() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchQueryLinguisticDetails
{
Windows::Foundation::Collections::IVectorView<hstring> QueryTextAlternatives() const;
uint32_t QueryTextCompositionStart() const;
uint32_t QueryTextCompositionLength() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchQueryLinguisticDetailsFactory
{
Windows::ApplicationModel::Search::SearchQueryLinguisticDetails CreateInstance(iterable<hstring> queryTextAlternatives, uint32_t queryTextCompositionStart, uint32_t queryTextCompositionLength) const;
};
template <typename D>
struct WINRT_EBO impl_ISearchSuggestionCollection
{
uint32_t Size() const;
void AppendQuerySuggestion(hstring_view text) const;
void AppendQuerySuggestions(iterable<hstring> suggestions) const;
void AppendResultSuggestion(hstring_view text, hstring_view detailText, hstring_view tag, const Windows::Storage::Streams::IRandomAccessStreamReference & image, hstring_view imageAlternateText) const;
void AppendSearchSeparator(hstring_view label) const;
};
template <typename D>
struct WINRT_EBO impl_ISearchSuggestionsRequest
{
bool IsCanceled() const;
Windows::ApplicationModel::Search::SearchSuggestionCollection SearchSuggestionCollection() const;
Windows::ApplicationModel::Search::SearchSuggestionsRequestDeferral GetDeferral() const;
};
template <typename D>
struct WINRT_EBO impl_ISearchSuggestionsRequestDeferral
{
void Complete() const;
};
}
namespace impl {
template <> struct traits<Windows::ApplicationModel::Search::ILocalContentSuggestionSettings>
{
using abi = ABI::Windows::ApplicationModel::Search::ILocalContentSuggestionSettings;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ILocalContentSuggestionSettings<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPane>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPane;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPane<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneQueryChangedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneQueryChangedEventArgs;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneQueryChangedEventArgs<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneQueryLinguisticDetails>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneQueryLinguisticDetails;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneQueryLinguisticDetails<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneQuerySubmittedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneQuerySubmittedEventArgs;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneQuerySubmittedEventArgs<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneResultSuggestionChosenEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneResultSuggestionChosenEventArgs;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneResultSuggestionChosenEventArgs<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneStatics>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneStatics;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneStatics<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneStaticsWithHideThisApplication>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneStaticsWithHideThisApplication;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneStaticsWithHideThisApplication<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequest>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequest;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneSuggestionsRequest<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequestDeferral>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequestDeferral;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneSuggestionsRequestDeferral<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequestedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneSuggestionsRequestedEventArgs;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneSuggestionsRequestedEventArgs<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchPaneVisibilityChangedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchPaneVisibilityChangedEventArgs;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchPaneVisibilityChangedEventArgs<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchQueryLinguisticDetails>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchQueryLinguisticDetails;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchQueryLinguisticDetails<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchQueryLinguisticDetailsFactory>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchQueryLinguisticDetailsFactory;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchQueryLinguisticDetailsFactory<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchSuggestionCollection>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchSuggestionCollection;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchSuggestionCollection<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchSuggestionsRequest>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchSuggestionsRequest;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchSuggestionsRequest<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::ISearchSuggestionsRequestDeferral>
{
using abi = ABI::Windows::ApplicationModel::Search::ISearchSuggestionsRequestDeferral;
template <typename D> using consume = Windows::ApplicationModel::Search::impl_ISearchSuggestionsRequestDeferral<D>;
};
template <> struct traits<Windows::ApplicationModel::Search::LocalContentSuggestionSettings>
{
using abi = ABI::Windows::ApplicationModel::Search::LocalContentSuggestionSettings;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.LocalContentSuggestionSettings"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPane>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPane;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPane"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneQueryChangedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneQueryChangedEventArgs;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneQueryChangedEventArgs"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneQueryLinguisticDetails>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneQueryLinguisticDetails;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneQueryLinguisticDetails"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneQuerySubmittedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneQuerySubmittedEventArgs;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneQuerySubmittedEventArgs"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneResultSuggestionChosenEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneResultSuggestionChosenEventArgs;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneResultSuggestionChosenEventArgs"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneSuggestionsRequest>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneSuggestionsRequest;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneSuggestionsRequest"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestDeferral>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestDeferral;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneSuggestionsRequestDeferral"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneSuggestionsRequestedEventArgs;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneSuggestionsRequestedEventArgs"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchPaneVisibilityChangedEventArgs>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchPaneVisibilityChangedEventArgs;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchPaneVisibilityChangedEventArgs"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchQueryLinguisticDetails>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchQueryLinguisticDetails;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchQueryLinguisticDetails"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchSuggestionCollection>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchSuggestionCollection;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchSuggestionCollection"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchSuggestionsRequest>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchSuggestionsRequest;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchSuggestionsRequest"; }
};
template <> struct traits<Windows::ApplicationModel::Search::SearchSuggestionsRequestDeferral>
{
using abi = ABI::Windows::ApplicationModel::Search::SearchSuggestionsRequestDeferral;
static constexpr const wchar_t * name() noexcept { return L"Windows.ApplicationModel.Search.SearchSuggestionsRequestDeferral"; }
};
}
}
|
#include<iostream>
#define N 6
int parent[N];
using namespace std;
int cost[N][N] = {
{0, 8, 2, 0, 4, 0},
{8, 0, 4, 1, 0, 2},
{2, 4, 0, 0, 3, 7},
{0, 1, 0, 0, 0, 1},
{4, 0, 3, 0, 0, 9},
{0, 2, 7, 1, 9, 0},
};
int find_v(int i);
void union1(int i, int j);
void kruskalMST();
int main() {
}
int find_v(int i) {
int v = i;
while (parent[v] == v) {
v = parent[v];
}
return v;
}
void kruskalMST() {
}
|
#include <whiskey/Core/Types.hpp>
namespace whiskey {
unsigned int getCharWidth(Char32 value) {
if ((value & 0xff) == value) {
return 1;
} else if ((value & 0xffff) == value) {
return 2;
} else {
return 4;
}
}
}
|
//
// Copyright (c) 2017-2019 Native Instruments GmbH, Berlin
//
// 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.
//
#pragma once
#ifdef WINVER
#undef WINVER
#endif
#define WINVER _WIN32_WINNT_WIN7
#include <mfapi.h>
#include <mferror.h>
#include <mfidl.h>
#include <mfreadwrite.h>
#include <windows.h>
#include <Propvarutil.h>
#include <Wmcodecdsp.h>
#include <initguid.h>
#include <mutex>
// Alac is only defined in widows10 sdk and higher
#ifndef MFAudioFormat_ALAC
DEFINE_MEDIATYPE_GUID( MFAudioFormat_ALAC, 0x6C61 );
#endif
// Flac is only defined in widows10 sdk and higher
#ifndef MFAudioFormat_FLAC
DEFINE_MEDIATYPE_GUID( MFAudioFormat_FLAC, 0xF1AC );
#endif
// windows header defines min / max macros.
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
template <class Source>
class SyncronousByteStream : public IMFByteStream
{
auto tell() -> std::streamsize
{
auto pos = m_source.seek( boost::iostreams::stream_offset( 0 ), BOOST_IOS::cur );
return ( pos == std::streamsize{-1} ) ? m_size : std::streamsize{pos};
}
public:
SyncronousByteStream( Source&& buffer )
: m_source( std::move( buffer ) )
{
m_source.seek( boost::iostreams::stream_offset( 0 ), BOOST_IOS::end );
m_size = tell();
m_source.seek( boost::iostreams::stream_offset( 0 ), BOOST_IOS::beg );
}
HRESULT STDMETHODCALLTYPE Read( BYTE* buffer, ULONG toRead, ULONG* read )
{
std::lock_guard<std::mutex> lock( m_reading );
try
{
*read = static_cast<ULONG>( m_source.read( reinterpret_cast<char*>( buffer ), toRead ) );
return S_OK;
}
catch ( const std::system_error& )
{
return E_UNEXPECTED;
}
catch ( ... )
{
return E_FAIL;
}
}
HRESULT STDMETHODCALLTYPE BeginRead( BYTE* buffer, ULONG toRead, IMFAsyncCallback* callback, IUnknown* state )
{
if ( !callback || !buffer )
return E_INVALIDARG;
IMFAsyncResult* result;
ULONG read = 0;
auto hr = Read( buffer, toRead, &read );
auto readResult = new ReadResult( read );
hr = MFCreateAsyncResult( readResult, callback, state, &result );
readResult->Release();
if ( SUCCEEDED( hr ) )
{
result->SetStatus( S_OK );
hr = MFInvokeCallback( result );
}
return hr;
}
HRESULT STDMETHODCALLTYPE EndRead( IMFAsyncResult* readResultCb, ULONG* read )
{
if ( !readResultCb )
return E_INVALIDARG;
IUnknown* unknown;
if ( FAILED( readResultCb->GetObject( &unknown ) ) || !unknown )
return E_INVALIDARG;
auto readResult = static_cast<ReadResult*>( unknown );
*read = readResult->bytesRead();
readResult->Release();
HRESULT hr = readResultCb->GetStatus();
readResultCb->Release();
return hr;
}
HRESULT STDMETHODCALLTYPE BeginWrite( const BYTE*, ULONG, IMFAsyncCallback*, IUnknown* )
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE Close()
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE EndWrite( IMFAsyncResult*, ULONG* )
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE Flush()
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE GetCapabilities( DWORD* capabilities )
{
*capabilities = MFBYTESTREAM_IS_READABLE | MFBYTESTREAM_IS_SEEKABLE;
return S_OK;
}
HRESULT STDMETHODCALLTYPE GetCurrentPosition( QWORD* position )
{
std::lock_guard<std::mutex> lock( m_reading );
*position = tell();
return S_OK;
}
HRESULT STDMETHODCALLTYPE GetLength( QWORD* length )
{
std::lock_guard<std::mutex> lock( m_reading );
*length = m_size;
return S_OK;
}
HRESULT STDMETHODCALLTYPE IsEndOfStream( BOOL* endOfStream )
{
std::lock_guard<std::mutex> lock( m_reading );
*endOfStream = ( tell() >= m_size ) ? true : false;
return S_OK;
}
HRESULT STDMETHODCALLTYPE Seek( MFBYTESTREAM_SEEK_ORIGIN seekOrigin,
LONGLONG seekOffset,
DWORD,
QWORD* currentPosition )
{
std::lock_guard<std::mutex> lock( m_reading );
auto pos = ( seekOrigin == msoBegin ) ? static_cast<std::streamsize>( 0 ) : tell();
pos += seekOffset;
*currentPosition =
static_cast<QWORD>( m_source.seek( boost::iostreams::stream_offset( pos ), BOOST_IOS::beg ) );
return S_OK;
}
HRESULT STDMETHODCALLTYPE SetCurrentPosition( QWORD position )
{
std::lock_guard<std::mutex> lock( m_reading );
m_source.seek( boost::iostreams::stream_offset( position ), BOOST_IOS::beg );
return S_OK;
}
HRESULT STDMETHODCALLTYPE SetLength( QWORD )
{
return E_NOTIMPL;
}
HRESULT STDMETHODCALLTYPE Write( const BYTE*, ULONG, ULONG* )
{
return E_NOTIMPL;
}
ULONG STDMETHODCALLTYPE AddRef()
{
InterlockedIncrement( &m_references );
return m_references;
}
HRESULT STDMETHODCALLTYPE QueryInterface( REFIID riid, void** objectPtr )
{
if ( !objectPtr )
return E_POINTER;
if ( riid == IID_IMFByteStream )
{
*objectPtr = static_cast<IMFByteStream*>( this );
}
else if ( riid == IID_IUnknown )
{
*objectPtr = static_cast<IUnknown*>( this );
}
else
{
*objectPtr = NULL;
return E_NOINTERFACE;
}
AddRef();
return S_OK;
}
ULONG STDMETHODCALLTYPE Release()
{
ULONG refCount = InterlockedDecrement( &m_references );
if ( refCount == 0 )
delete this;
return refCount;
}
private:
class ReadResult : public IUnknown
{
ULONG m_references;
ULONG m_bytesRead;
public:
ReadResult( ULONG bytesRead )
: m_bytesRead( bytesRead )
, m_references( 1 )
{
}
ULONG STDMETHODCALLTYPE AddRef()
{
return InterlockedIncrement( &m_references );
}
ULONG STDMETHODCALLTYPE Release()
{
ULONG refCount = InterlockedDecrement( &m_references );
if ( refCount == 0 )
delete this;
return refCount;
}
HRESULT STDMETHODCALLTYPE QueryInterface( REFIID riid, void** objectPtr )
{
if ( !objectPtr )
return E_POINTER;
if ( riid == IID_IUnknown )
{
*objectPtr = static_cast<IUnknown*>( this );
}
else
{
*objectPtr = NULL;
return E_NOINTERFACE;
}
AddRef();
return S_OK;
}
auto bytesRead() const
{
return m_bytesRead;
}
};
Source m_source;
ULONG m_references = 1;
std::streamsize m_size = 0;
std::mutex m_reading;
};
|
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
#define pb push_back
#define rsz resize
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
using pi = pair<int, int>;
#define f first
#define s second
#define mp make_pair
void setIO(string name = "bcount") {
ios_base::sync_with_stdio(0); cin.tie(0);
if (sz(name)) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
}
int main() {
setIO();
int n, q;
cin >> n >> q;
vector<vector<int>> ps = { {0}, {0}, {0} };
for (int i = 0; i < n; ++i) {
int a;
cin >> a;
if (a == 1) {
ps[0].pb(ps[0][ps[0].size() - 1] + 1);
ps[1].pb(ps[1][ps[1].size() - 1]);
ps[2].pb(ps[2][ps[2].size() - 1]);
}
else if (a == 2) {
ps[1].pb(ps[1][ps[1].size() - 1] + 1);
ps[0].pb(ps[0][ps[0].size() - 1]);
ps[2].pb(ps[2][ps[2].size() - 1]);
}
else {
ps[2].pb(ps[2][ps[2].size() - 1] + 1);
ps[1].pb(ps[1][ps[1].size() - 1]);
ps[0].pb(ps[0][ps[0].size() - 1]);
}
}
for (int i = 0; i < q; ++i) {
int a, b;
cin >> a >> b;
cout << ps[0][b] - ps[0][a - 1] << " " << ps[1][b] - ps[1][a - 1] << " " << ps[2][b] - ps[2][a - 1] << endl;
}
}
|
/* NO WARRANTY
*
* BECAUSE THE PROGRAM IS IN THE PUBLIC DOMAIN, THERE IS NO
* WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
* LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE AUTHORS
* AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
* WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO
* THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD
* THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
* NECESSARY SERVICING, REPAIR OR CORRECTION.
*
* IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
* WRITING WILL ANY AUTHOR, OR ANY OTHER PARTY WHO MAY MODIFY
* AND/OR REDISTRIBUTE THE PROGRAM, BE LIABLE TO YOU FOR DAMAGES,
* INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
* DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM
* (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
* RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES
* OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
* PROGRAMS), EVEN IF SUCH AUTHOR OR OTHER PARTY HAS BEEN ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGES.
*/
#ifndef _DRAGDROPEDIT_H_
#define _DRAGDROPEDIT_H_
#include "DragDrop.h"
class DragDropText;
class DragDropTextEdit : public CEdit{
typedef CEdit inherited ;
public:
DragDropTextEdit();
DragDropTextEdit(const CString& pString, BOOL bAlwaysFit, DragDropText* pGoTextObject);
virtual ~DragDropTextEdit();
virtual BOOL Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CFont* pFont, CPoint cursorSP);
virtual DragDropText* GetTextObject() {return m_textObject;}
afx_msg void OnEnUpdate();
protected:
CPoint m_ptUpperLeftDP; // upper left relative to parent (in DP)
CPoint m_ptOriginDP; // origin (left, center or right) (in DP)
CPoint m_ptCursorSP; // location of mouse click that started this in screen points
DragDropText* m_textObject; // Related Text Object
CFont* m_pOldFont; // previous font
CFont* m_pFont;
CString m_strInitial; // Initial String.
int m_nAlign; // one of 'enum TextAlign' from go.h
BOOL m_bMultiline; // multiline control
BOOL m_bAlwaysFitExactly; // always fit editing rectangle to size needed
BOOL m_bFontSetupDone;
DWORD m_dwStyle;
UINT m_lLastKey;
//{{AFX_MSG(DragDropTextEdit)
afx_msg void OnChar (UINT nChar, UINT nRepCnt, UINT nFlags);
afx_msg void OnPaint();
afx_msg void OnSetFocus(CWnd* pWnd);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
DECLARE_DYNCREATE(DragDropTextEdit)
};
#endif
|
/*************************************************************
* > File Name : P3372_block_2.cpp
* > Author : Tony
* > Created Time : 2019/06/01 15:53:35
* > Algorithm : [DataStructure]Block
**************************************************************/
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
inline int read() {
int x = 0; int f = 1; char ch = getchar();
while (!isdigit(ch)) {if (ch == '-') f = -1; ch = getchar();}
while (isdigit(ch)) {x = x * 10 + ch - 48; ch = getchar();}
return x * f;
}
const int maxn = 100010;
struct Block {
LL a[maxn], sum[maxn], add[maxn];
int L[maxn], R[maxn];
int pos[maxn];
int n, m, t;
void change(int l, int r, LL d) {
int p = pos[l], q = pos[r];
if (p == q) {
for (int i = l; i <= r; ++i) a[i] += d;
sum[p] += d * (r - l + 1);
} else {
for (int i = p + 1; i <= q - 1; ++i) add[i] += d;
for (int i = l; i <= R[p]; ++i) a[i] += d;
sum[p] += d * (R[p] - l + 1);
for (int i = L[q]; i <= r; ++i) a[i] += d;
sum[q] += d * (r - L[q] + 1);
}
}
LL query(int l, int r) {
int p = pos[l], q = pos[r];
LL ans = 0;
if (p == q) {
for (int i = l; i <= r; ++i) ans += a[i];
ans += add[p] * (r - l + 1);
} else {
for (int i = p + 1; i <= q - 1; ++i) ans += sum[i] + add[i] * (R[i] - L[i] + 1);
for (int i = l; i <= R[p]; ++i) ans += a[i];
ans += add[p] * (R[p] - l + 1);
for (int i = L[q]; i <= r; ++i) ans += a[i];
ans += add[q] * (r - L[q] + 1);
}
return ans;
}
int solve() {
n = read(); m = read();
for (int i = 1; i <= n; ++i) scanf("%lld", &a[i]);
t = sqrt(n * 1.0);
for (int i = 1; i <= t; ++i) {
L[i] = (i - 1) * t + 1;
R[i] = i * t;
}
if (R[t] < n) t++, L[t] = R[t - 1] + 1, R[t] = n;
for (int i = 1; i <= t; ++i) {
for (int j = L[i]; j <= R[i]; ++j) {
pos[j] = i;
sum[i] += a[j];
}
}
while (m--) {
int opt = read(), l = read(), r = read(), d;
if (opt == 1) {
d = read();
change(l, r, d);
} else printf("%lld\n", query(l, r));
}
return 0;
}
}block;
int main() {
block.solve();
return 0;
}
|
// Problem : Mean Inequality
// Link: https://codeforces.com/contest/1526/problem/A
#include<bits/stdc++.h>
using namespace std;
int main(){
int t=0;
cin >> t;
while(t>0){
int n;
vector<int> integers;
cin >> n;
int a;
for(int i=0; i<2*n; ++i){
cin >> a;
integers.push_back(a);
}
sort(integers.begin(), integers.end());
int ans[2*n] = {0};
int index = 0;
for(int i=0; i<n; ++i){
ans[index] = integers[i];
index += 2;
}
index = 1;
for(int i=n; i<2*n; ++i){
ans[index] = integers[i];
index += 2;
}
for(int i=0; i<2*n; ++i){
cout << ans[i] << " ";
}
t--;
}
return 0;
}
|
# BinaryTreeThd
二叉树的线索化
#pragma once
#include<iostream>
#include<assert.h>
using namespace std;
enum PointerTag
{
THREAD,//需要线索化
LINK//不需要线索化
};
template<class T>
struct BinaryTreeNodeThd
{
public:
BinaryTreeNodeThd(const T& x)
:_data(x)
,_left(NULL)
,_right(NULL)
,_leftTag(LINK)
,_rightTag(LINK)
{}
public:
T _data;//数据
BinaryTreeNodeThd* _left;//左孩子
BinaryTreeNodeThd* _right;//右孩子
PointerTag _leftTag;//左孩子的线索化标志
PointerTag _rightTag;//右孩子的线索化标志
};
template<class T>
class BinaryTreeThd
{
public:
typedef BinaryTreeNodeThd<T> Node;
public:
BinaryTreeThd(const T* a, size_t size, const T& invalid)
{
size_t index = 0;//当前子树根节点的下标
_root= _CreateBinaryTree(a, size,invalid, index);
}
public:
void PrevOrderThreading()//先序线索化
{
Node* prev = NULL;
_PrevOrderThreading(_root,prev);
}
void InOrderThreading()//中序线索化
{
Node* prev = NULL;
_InOrderThreading(_root, prev);
}
void PosOrderThreading()//后序线索化
{
Node* prev = NULL;
_PosOrderThreading(_root,prev);
}
void PrevOrderThd();//先序遍历
void InOrderThd();//中序遍历
//void PosOrderThd();//后序遍历
protected:
Node* _CreateBinaryTree(const T*a, size_t size, const T& invalid, size_t& index);
void _PrevOrderThreading(Node* root, Node* &prev);
void _InOrderThreading(Node* root, Node* &prev);
void _PosOrderThreading(Node* root,Node* &prev);
private:
Node* _root;
};
//创建二叉树
template<class T>
BinaryTreeNodeThd<T>* BinaryTreeThd<T>::_CreateBinaryTree(const T*a, size_t size, const T& invalid, size_t& index)
{
assert(a);
Node* root = NULL;
if (index < size&&a[index] != invalid)
{
root = new Node(a[index]);//创建根节点
root->_left = _CreateBinaryTree(a, size, invalid, ++index);//递归创建左子树
root->_right = _CreateBinaryTree(a, size, invalid, ++index);//递归创建右子树
}
return root;
}
//先序线索化
template<class T>
void BinaryTreeThd<T>::_PrevOrderThreading(Node* root, Node* &prev)
{
Node* cur = root;
if (cur == NULL)
{
return;
}
//线索化-left
if (cur->_left == NULL)
{
cur->_left = prev;
cur->_leftTag = THREAD;
}
//线索化_right
if (prev && prev->_right == NULL)
{
prev->_right = cur;
prev->_rightTag = THREAD;
}
//更新prev
prev = cur;
if (cur->_leftTag == LINK)
{
_PrevOrderThreading(cur->_left, prev);//递归遍历并线索化左子树
}
if (cur->_rightTag == LINK)
{
_PrevOrderThreading(cur->_right, prev);//递归遍历并线索化右子树
}
}
////先序遍历二叉树
//template<class T>
//void BinaryTreeThd<T>::PrevOrderThd()
//{
// Node* cur = _root;
// while (cur)
// {
// cout << cur->_data << " ";
// //左子树有孩子
// if (cur->_leftTag == LINK)
// {
// cur = cur->_left;
// continue;//结束本次循环
// }
//
// //不管右子树有没有孩子,均当成一个子问题来解决
// cur = cur->_right;
//
// }
//}
//先序遍历二叉树
template<class T>
void BinaryTreeThd<T>::PrevOrderThd()
{
Node* cur = _root;
while (cur)
{
//遍历最左边
while (cur->_leftTag == LINK)
{
cout << cur->_data << " ";
cur = cur->_left;
}
cout << cur->_data << " ";
//不管右子树有没有孩子,均看成子问题
cur = cur->_right;
}
}
//
////先序遍历二叉树
//template<class T>
//void BinaryTreeThd<T>::PrevOrderThd()
//{
// Node* cur = _root;
// while (cur)
// {
// //遍历最左边
// while (cur->_leftTag == LINK)
// {
// cout << cur->_data << " ";
// cur = cur->_left;
// }
// cout << cur->_data << " ";
//
// //遍历其连续后继
// while (cur->_rightTag == THREAD)
// {
// cur = cur->_right;
// cout << cur->_data << " ";
// }
//
// //后继节点左孩子不为空
// if (cur->_leftTag == LINK)
// {
// cur = cur->_left;
// }
// //遍历后继结点右孩子
// else
// {
// cur = cur->_right;
// }
//
// }
//}
//中序线索化
template<class T>
void BinaryTreeThd<T>::_InOrderThreading(Node* root, Node* &prev)
{
Node* cur = root;
if (cur == NULL)
{
return;
}
_InOrderThreading(cur->_left, prev);
//线索化-left
if(cur->_left == NULL)
{
cur->_left = prev;
cur->_leftTag = THREAD;
}
//线索化_right
if (prev && prev->_right == NULL)
{
prev->_right = cur;
prev->_rightTag = THREAD;
}
//更新prev
prev = cur;
_InOrderThreading(cur->_right, prev);
}
//中序遍历二叉树
template<class T>
void BinaryTreeThd<T>::InOrderThd()
{
Node* cur = _root;
while (cur)
{
//找到最左下角的节点
while (cur->_leftTag == LINK)
{
cur = cur->_left;
}
cout << cur->_data << " ";
//当cur的右孩子标志域为THREAD时,直接访问其后继,可能有多个连续的后继
while (cur->_rightTag == THREAD)
{
cur = cur->_right;
cout << cur->_data << " ";
}
//右孩子为LINK时,转换为子问题
cur = cur->_right;
}
}
//后序线索化
template<class T>
void BinaryTreeThd<T>::_PosOrderThreading(Node* root, Node* &prev)
{
Node* cur = root;
if (cur == NULL)
{
return;
}
if (cur->_leftTag == LINK)
{
_PosOrderThreading(cur->_left, prev);//递归遍历并线索化左子树
}
if (cur->_rightTag == LINK)
{
_PosOrderThreading(cur->_right, prev);//递归遍历并线索化右子树
}
//线索化-left
if (cur->_left == NULL)
{
cur->_left = prev;
cur->_leftTag = THREAD;
}
//线索化_right
if (prev && prev->_right == NULL)
{
prev->_right = cur;
prev->_rightTag = THREAD;
}
//更新prev
prev = cur;
}
////后续遍历二叉线索树
//template<class T>
//void BinaryTreeThd<T>::_PosOrderThd(Node* root)
//{
// Node* cur = root;
// Node* prev = NULL;
// while (cur)
// {
// while (cur->_leftTag == LINK&&cur->_left!=prev)
// {
// cur = cur->_left;
// }
//
// if (cur->_left == LINK || prev == cur->_right)
// {
// cout << cur->_data << " ";
// cur = prev;
// }
// else
// {
// cur = cur->_right;
// }
// }
//}
|
#ifdef HAS_VTK
///////////////////////////////////////////////////////////////
// Find the average distance of a set of points from a surface
//
#include <vtkPointData.h>
#include <vtkPolyData.h>
#include <vtkPolyDataReader.h>
#include <irtkImage.h>
char *surface_name = NULL;
int main(int argc, char **argv){
bool ok;
if (argc < 2){
cerr << argv[0] << " [surface] " << endl;
cerr << "" << endl;
exit(1);
}
surface_name = argv[1];
argv++;
argc--;
while (argc > 1){
ok = false;
// if ((ok == false) && (strcmp(argv[1], "-option") == 0)){
// argc--;
// argv++;
ok = true;
// }
if (ok == false){
cerr << "Can not parse argument " << argv[1] << endl;
exit(1);
}
}
cout << "Reading data ... "; cout.flush();
vtkPolyDataReader *reader = vtkPolyDataReader::New();
reader->SetFileName(surface_name);
reader->Update();
vtkPolyData* surface = vtkPolyData::New();
surface = reader->GetOutput();
cout << "done" << endl;
int n = surface->GetNumberOfPoints();
double cofgx, cofgy, cofgz;
double point[3];
cofgx = cofgy = cofgz = 0.0;
for (int i = 0; i < n; i++){
surface->GetPoint (i, point);
cofgx += point[0];
cofgy += point[1];
cofgz += point[2];
}
if (n > 0){
cofgx /= n;
cofgy /= n;
cofgz /= n;
}
cout << "C of G : (" << cofgx << ", " << cofgy << ", " << cofgz << ")" << endl;
}
#else
#include <irtkImage.h>
int main( int argc, char *argv[] ){
cerr << argv[0] << " needs to be compiled with the VTK library " << endl;
}
#endif
|
#include "stdafx.h"
#include "Hero.h"
Hero::Hero() {
// Set stats
level = 3;
health = 10;
maxHealth = 10;
xp = 0;
attack = 2;
strength = 2;
defence = 1;
gameOver = false;
gameWon = false;
}
Hero::~Hero() {}
void Hero::increaseLevel()
{
level++;
attack++;
strength++;
defence++;
maxHealth = (maxHealth + 2);
cout << "Congratulations! You just increased in combat! You're now level " << level;
}
bool Hero::healHero() {
if (health < maxHealth) {
health = maxHealth;
return true;
}
else {
return false;
}
}
void Hero::removeHealth(int value)
{
health -= value;
if (health <= 0) {
gameOver = true;
cout << "\n\nGAME OVER!!! \n\n";
}
}
void Hero::addHealth(int value) {
health += value;
if (maxHealth < health) { health = maxHealth; }
}
void Hero::increaseXp(int value)
{
xp += value;
if (level == 3 && xp > 30) {
increaseLevel();
}else if(level == 4 && xp > 90) {
increaseLevel();
}
else if (level == 5 && xp > 200) {
increaseLevel();
}
else if (level == 6 && xp > 400) {
increaseLevel();
}
else if (level == 7 && xp > 800) {
increaseLevel();
}
else if (level == 8 && xp > 1600) {
increaseLevel();
}
else if (level == 9 && xp > 3200) {
increaseLevel();
}
else if (level == 10 && xp > 64000) {
increaseLevel();
}
}
void Hero::increaseAttack(int value = 1)
{
attack += value;
}
void Hero::increaseStrenght(int value = 1)
{
strength += value;
}
void Hero::increaseDefence(int value = 1)
{
defence += value;
}
void Hero::getHeroStats()
{
cout << "[[ Your currently level is: " << Hero::getLevel() << " and you've got " << Hero::getXp() << " experience! ]] \n"
<< "[[ Health: " << Hero::getHealth() << " HP || "
<< "Attack: " << Hero::getAttack() << " || "
<< "Strength: " << Hero::getStrength() << " || "
<< "Defence: " << Hero::getDefence() << " ]] \n";
}
void Hero::getHeroStatsFight()
{
cout << "[[ " << userName << " - level: " << getLevel() << " || "
<< "Health: " << getHealth() << " HP || "
<< "Attack: " << getAttack() << " || "
<< "Strength: " << getStrength() << " || "
<< "Defence: " << getDefence() << " ]] \n";
}
bool Hero::setUserName(string inputUserName) {
if (userName == "") {
userName = inputUserName;
return true;
}
else {
// UserName is already set!
return false;
}
}
string Hero::getRoomDescription()
{
return curroom->GetDescription();
}
void Hero::setRoom(Room* room)
{
curroom = room;
/*cout << "Coordinates are: \n";
cout << curroom->GetX();
cout << " ";
cout << curroom->GetY();*/
}
bool Hero::moveHero(int direction)
{
if (curroom->getTrap()) {
int trapRandom = rand() % curroom->getTrapKind() - getDefence();
if (trapRandom <= 0) { trapRandom = 1; }
removeHealth(trapRandom);
curroom->removeTrap();
cout << "A trap collapsed! You lost " << trapRandom << " HP! \n";
return false;
}
else {
bool success = curroom->MovePlayer(direction);
if (curroom->special != 0)
isonstairway = true;
return success;
}
}
bool Hero::gamePlaying()
{
if (gameWon || gameOver) {
return false;
}
else {
return true;
}
}
void Hero::setStairway(bool ios)
{
isonstairway = ios;
}
|
#include <iostream>
#include "strings.h"
using namespace std;
using namespace qtl;
void SplitTest(const string& s, const string& c);
int main() {
cout << "--------------------" << endl;
SplitTest("", "/");
cout << "--------------------" << endl;
SplitTest("http://www.baidu.com/?key=value#page1", "");
cout << "--------------------" << endl;
SplitTest("", "");
cout << "--------------------" << endl;
SplitTest("http://www.baidu.com/?key=value#page1", "//");
cout << "--------------------" << endl;
SplitTest("http://www.baidu.com/?key=value#page1", "#");
cout << "--------------------" << endl;
SplitTest("http://www.baidu.com/?key=value#page1", "##");
}
void SplitTest(const string& s, const string& c) {
cout << "s: " << s << endl;
cout << "c: " << c << endl;
string a, b;
strings::Split(s, a, b, c);
cout << "[" << a << "][" << b << "]" << endl;
strings::Split(s, a, b, c, true);
cout << "[" << a << "][" << b << "]" << endl;
}
|
#ifndef __VECN_FLEXIBLE__
#define __VECN_FLEXIBLE__
#include <vecn_interface_base.h>
namespace Common
{
// ****************************************
// submat
template <typename T>
class submatflex : public mat_interface_base<T>, public ele_set_base<T>
{
public:
submatflex(mat_interface_base<T> &mat_,
int const r_start_, int const c_start_, int const dimr_, int const dimc_)
: mat(mat_), r_start(r_start_), c_start(c_start_),
m_dimr(dimr_), m_dimc(dimc_), m_dim(dimr_ * dimc_)
{
//TODO: checks ....
}
virtual inline T &at(int i, int j) final
{
return mat.at(r_start + i, c_start + j);
}
virtual inline T const &at(int i, int j) const final
{
return mat.at(r_start + i, c_start + j);
}
virtual inline T &at(int i) final
{
return mat.at(r_start + i / dimc(), c_start + i % dimc());
}
virtual inline T const &at(int i) const final
{
return mat.at(r_start + i / dimc(), c_start + i % dimc());
}
virtual inline int dim() const { return m_dim; }
virtual inline int dimr() const { return m_dimr; }
virtual inline int dimc() const { return m_dimc; }
private:
int const r_start;
int const c_start;
int const m_dimr;
int const m_dimc;
int const m_dim;
mat_interface_base<T> &mat;
};
//TODO: flexible matmat
} // namespace Common
#endif
|
#include <FastCG/Rendering/RenderBatchStrategy.h>
#include <algorithm>
namespace
{
struct RenderBatchComparer
{
bool operator()(const FastCG::RenderBatch &rLhs, const FastCG::RenderBatch &rRhs) const
{
return rLhs.type < rRhs.type;
}
};
}
namespace FastCG
{
void RenderBatchStrategy::AddRenderable(const Renderable *pRenderable)
{
assert(pRenderable != nullptr);
if (pRenderable->GetMesh() == nullptr)
{
return;
}
if (pRenderable->IsShadowCaster())
{
AddToShadowCastersRenderBatch(pRenderable);
}
if (pRenderable->GetMaterial() == nullptr)
{
return;
}
AddToMaterialBasedRenderBatch(pRenderable);
}
void RenderBatchStrategy::RemoveRenderable(const Renderable *pRenderable)
{
assert(pRenderable != nullptr);
if (pRenderable->GetMesh() == nullptr)
{
return;
}
if (pRenderable->IsShadowCaster())
{
RemoveFromShadowCastersRenderBatch(pRenderable);
}
if (pRenderable->GetMaterial() == nullptr)
{
return;
}
RemoveFromMaterialBasedRenderBatch(pRenderable);
}
void RenderBatchStrategy::AddToShadowCastersRenderBatch(const Renderable *pRenderable)
{
AddToRenderBatch(*mRenderBatches.begin(), pRenderable);
}
void RenderBatchStrategy::RemoveFromShadowCastersRenderBatch(const Renderable *pRenderable)
{
RemoveFromRenderBatch(*mRenderBatches.begin(), pRenderable);
}
void RenderBatchStrategy::AddToMaterialBasedRenderBatch(const Renderable *pRenderable)
{
const auto *pMaterial = pRenderable->GetMaterial().get();
auto it = std::find_if(mRenderBatches.begin(), mRenderBatches.end(), [pMaterial](const auto &rRenderBatch)
{ return rRenderBatch.pMaterial == pMaterial; });
if (it == mRenderBatches.end())
{
mRenderBatches.emplace_back(RenderBatch{pMaterial->GetGraphicsContextState().blend ? RenderBatchType::TRANSPARENT_MATERIAL : RenderBatchType::OPAQUE_MATERIAL, pMaterial});
it = std::prev(mRenderBatches.end());
AddToRenderBatch(*it, pRenderable);
std::sort(mRenderBatches.begin(), mRenderBatches.end(), RenderBatchComparer());
}
else
{
AddToRenderBatch(*it, pRenderable);
}
}
void RenderBatchStrategy::RemoveFromMaterialBasedRenderBatch(const Renderable *pRenderable)
{
const auto *pMaterial = pRenderable->GetMaterial().get();
auto it = std::find_if(mRenderBatches.begin(), mRenderBatches.end(), [pMaterial](const auto &rRenderBatch)
{ return rRenderBatch.pMaterial == pMaterial; });
if (it != mRenderBatches.end())
{
RemoveFromRenderBatch(*it, pRenderable);
}
}
void RenderBatchStrategy::AddToRenderBatch(RenderBatch &rRenderBatch, const Renderable *pRenderable)
{
auto &rRenderablesPerMesh = rRenderBatch.renderablesPerMesh;
const auto *pMesh = pRenderable->GetMesh().get();
auto it = rRenderablesPerMesh.find(pMesh);
if (it == rRenderablesPerMesh.end())
{
it = rRenderablesPerMesh.emplace(pMesh, std::vector<const Renderable *>{}).first;
}
it->second.emplace_back(pRenderable);
}
inline bool RenderBatchStrategy::RemoveFromRenderBatch(RenderBatch &rRenderBatch, const Renderable *pRenderable)
{
auto &rRenderablesPerMesh = rRenderBatch.renderablesPerMesh;
const auto *pMesh = pRenderable->GetMesh().get();
auto renderablesPerMeshIt = rRenderablesPerMesh.find(pMesh);
if (renderablesPerMeshIt == rRenderablesPerMesh.end())
{
return false;
}
auto &rRenderables = renderablesPerMeshIt->second;
auto renderableIt = std::find(rRenderables.cbegin(), rRenderables.cend(), pRenderable);
assert(renderableIt != rRenderables.cend());
rRenderables.erase(renderableIt);
if (rRenderables.empty())
{
auto renderBatchIt = std::find_if(mRenderBatches.begin(), mRenderBatches.end(), [&rRenderBatch](const auto &rOtherRenderBatch)
{ return &rRenderBatch == &rOtherRenderBatch; });
assert(renderBatchIt != mRenderBatches.end());
if (renderBatchIt->type != RenderBatchType::SHADOW_CASTERS)
{
mRenderBatches.erase(renderBatchIt);
}
}
return true;
}
}
|
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <algorithm>
#include <functional>
#include <iterator>
#include <list>
#include <limits>
#include <queue>
#include <memory>
#include <unordered_map>
#include <numeric>
#include <math.h>
|
#pragma once
#ifndef __MICVOL_H__
#define __MICVOL_H__
#include <Mmsystem.h>
typedef struct MixerControlStruct {
short nIndex;
short nDeviceNum;
unsigned int nLineID;
int nMax;
char DeviceName[64];
MIXERCONTROL m_ctlMixerSpeaker;
MIXERCONTROL m_ctlMixerMute;
} MCS;
class CMicVolume
{
public:
HMIXER h_mix; //장치 핸들
MCS m_WavOut, m_WavIn, m_MicIn, m_MicOut;
float nVolStep;
public:
CMicVolume(void);
~CMicVolume(void);
BOOL Init(); //초기화및 설정
HMIXER MixDevice(HMIXER current_mix, unsigned int mix_id); // MixDevice를 ID값에 맞게 읽어드린다
void GetMicDevice(); // 마이크 볼륨 조정 디바이스 드라이버를 읽어드린다.
BOOL GetDevice(); // 등록된 장치의 정보를 읽을 수 없습니다
float VolDevice(MCS *pData); // 장치의 볼륨을 얻어 온다
void GetDeviceCtrl(MCS *pData);
void SetDeviceCtrl(MCS *pData, float vol); //장치의 볼륨을 조절한다, max 볼륨은 각 사운드 카드마다 틀리다
};
#endif
#ifdef MICVOL_CPP
class CMicVolume cmicvol;
#else
extern class CMicVolume cmicvol;
#endif
|
#ifndef SCORE_HPP
#define SCORE_HPP
#include <vector>
#include <stdio.h>
#include "logging/term_display.h"
#include "Mark.hpp"
/* multi criterion score computation */
// Using heritage of mark since a score can be used as a Mark of a score
class Score : public Mark {//TODO pass Mark to private and handle conflicts
protected:
std::vector<Mark *> marks;
using Mark::showScore;
void showScore(std::string name,
int detailLevel,
std::string prefix = "") const;
public:
Score(std::string name,
double weight = 1.0,
double value = 0.0) : Mark(name, "", weight, value) {};
virtual ~Score(){
for (unsigned int i = 0; i < marks.size(); i++){
delete marks[i];
}
};
void updateName(std::string newName);
double getScore() const;
virtual bool isFailed() const;
// Score shouldn't be touched once this method has been called
void addMark(Mark * m);
void showMarks(int detailLevel = 0) const;
/* weights are relative,
* if value is less than min_value, then score will be 0 (note eliminatoire)
* value is in [0,1] */
void mark(std::string mark_name,
std::string note,
double weight,
double value,
double min_value = -1.0);
/* the more the value is small the more the mark is high,
* value and max_value must be positive
* if value is less than min_value, then the score will be 0 */
void mark_from_comparison(std::string mark_name,
std::string note,
double weight,
double value,
double tolerance,
double max_value,
double kill_value = -1.0);
void pp(FILE * output = stdout);
};
#endif//SCORE_HPP
|
#pragma once
#include <vector>
#include "drake/examples/kuka_iiwa_arm/iiwa_world/iiwa_wsg_diagram_factory.h"
#include "drake/examples/kuka_iiwa_arm/pick_and_place/pick_and_place_configuration.h"
#include "drake/multibody/rigid_body_plant/rigid_body_plant.h"
#include "drake/systems/framework/diagram.h"
namespace drake {
namespace examples {
namespace kuka_iiwa_arm {
namespace pick_and_place {
/** A custom systems::Diagram comprised of an IiwaWsgPlantWithStateEstimator, a
simulated Optitrack system, and SchunkWsgControllers for each gripper in the
plant. The purpose of this system is to provide a drop-in replacement for the
hardware + drivers. Note that LCM publishers and subscribers are intentionally
omitted from this system so that it can be directly connected to other systems.
The block diagram for a system with a single arm is shown below:
┌─────────┐ ┌───────────┐ ┌───────────┐
│ Frame │ │ Optitrack │ │ Optitrack │ optitrack
┌───▶│ Pose ├───▶│ Encoder ├───▶│ LCM ├──▶frame
│ │ Tracker │ │ │ │ Frame │
│ │ │ │ │ │ Sender │
│ └─────────┘ └───────────┘ └───────────┘
└────────────────────────────────────┐
│
│
┌──────────────┐ │
│ │ │
│ │ │
│ ├────┘
iiwa │ │
┌──────────┐ desired │ │ iiwa ┌────────┐
iiwa │ Iiwa │ state │ │ state │ Iiwa │ iiwa
cmd──▶│ Command ├───────────▶│ IiwaWsgPlant ├──────▶│ Status ├──▶status
│ Receiver │ │ │ │ Sender │
└──────────┘ │ │ └────────┘
┌───────────┐ wsg │ │ wsg ┌────────┐
wsg │ Wsg │ input │ │ state │ Schunk │ wsg
cmd──▶│ Controller├──────────▶│ ├───┬──▶│ Wsg ├──▶status
│ │ │ │ │ │ Status │
┌───▶│ │ │ │ │ │ Sender │
│ └───────────┘ └──────────────┘ │ └────────┘
│ │
│ │
└───────────────────────────────────────────────┘
**/
class LcmPlant : public systems::Diagram<double> {
public:
LcmPlant(
const pick_and_place::SimulatedPlantConfiguration& plant_configuration,
const pick_and_place::OptitrackConfiguration& optitrack_configuration);
const systems::InputPort<double>& get_input_port_iiwa_command(
int index) const {
return this->get_input_port(input_port_iiwa_command_.at(index));
}
const systems::InputPort<double>& get_input_port_wsg_command(
int index) const {
return this->get_input_port(input_port_wsg_command_.at(index));
}
const systems::OutputPort<double>& get_output_port_iiwa_status(
int index) const {
return this->get_output_port(output_port_iiwa_status_.at(index));
}
const systems::OutputPort<double>& get_output_port_wsg_status(
int index) const {
return this->get_output_port(output_port_wsg_status_.at(index));
}
const systems::OutputPort<double>& get_output_port_optitrack_frame() const {
return this->get_output_port(output_port_optitrack_frame_);
}
const systems::OutputPort<double>& get_output_port_contact_results() const {
return this->get_output_port(output_port_contact_results_);
}
const systems::OutputPort<double>& get_output_port_plant_state() const {
return this->get_output_port(output_port_plant_state_);
}
const RigidBodyTree<double>& get_tree() const {
return this->iiwa_and_wsg_plant_->get_tree();
}
int num_iiwa() const { return input_port_iiwa_command_.size(); }
int num_wsg() const { return input_port_wsg_command_.size(); }
private:
std::vector<int> input_port_iiwa_command_;
std::vector<int> input_port_wsg_command_;
std::vector<int> output_port_iiwa_status_;
std::vector<int> output_port_wsg_status_;
int output_port_optitrack_frame_{-1};
int output_port_contact_results_{-1};
int output_port_plant_state_{-1};
IiwaAndWsgPlantWithStateEstimator<double>* iiwa_and_wsg_plant_;
};
} // namespace pick_and_place
} // namespace kuka_iiwa_arm
} // namespace examples
} // namespace drake
|
// Fill out your copyright notice in the Description page of Project Settings.
#include "TTT.h"
#include "TTTPlayerController.h"
#include "TTTIronPlayer.h"
#include "TTTPawn.h"
#include "GameField.h"
#include "TTTGameMode.h"
ATTTGameMode::ATTTGameMode()
{
PlayerControllerClass = ATTTPlayerController::StaticClass();
DefaultPawnClass = ATTTPawn::StaticClass();
WinSize = 3;
FieldSize = 3;
DifficultyLevel = 3;
}
ATTTGameMode::~ATTTGameMode()
{
delete FieldData;
}
void ATTTGameMode::BeginPlay()
{
Super::BeginPlay();
IsGameOver = false;
ATTTPawn* Pawn = Cast<ATTTPawn>(*GetWorld()->GetPawnIterator());
Pawn->Camera->SetWorldLocationAndRotation(FVector(0, 0, 1000.0f), FRotationMatrix::MakeFromX(FVector(0, 0, -1)).Rotator());
GameField = GetWorld()->SpawnActor<AGameField>(FVector(0), FRotator(0, 0, 0), FActorSpawnParameters());
GameField->Size = FieldSize;
FieldData = new TField(FieldSize, FieldSize, WinSize);
Players.Add(Pawn);
auto* AI = GetWorld()->SpawnActor<ATTTIronPlayer>(FVector(), FRotator());
AI->DifficultyLevel = DifficultyLevel;
Players.Add(AI);
CurrentPlayer = FMath::RandRange(0, Players.Num() - 1);
for (int32 i = 0; i < Players.Num(); i++)
{
Players[i]->PlayerNumber = i;
Players[i]->Sign = i == CurrentPlayer ? ESign::X : ESign::O;
}
Players[CurrentPlayer]->OnTurn();
}
void ATTTGameMode::SetCellSign(const int32 PlayerNumber, const FPosition& Position)
{
if (IsGameOver || FieldData->Get(Position) != EMPTY_POSITION || PlayerNumber != CurrentPlayer)
return;
FieldData->Set(Position, PlayerNumber);
UClass* SignActor = Players[CurrentPlayer]->Sign == ESign::X ? SignXActor : SignOActor;
FVector Location = GameField->GetActorLocation() + GameField->GetRelativeLocationByPosition(Position) + FVector(0, 0, 50);
GetWorld()->SpawnActor(SignActor, &Location);
if (FieldData->IsWinPosition(Position))
{
IsGameOver = true;
Players[CurrentPlayer]->OnWin();
for (int32 i = 0; i < Players.Num(); i++)
if (i != CurrentPlayer)
Players[i]->OnLose();
}
else if (FieldData->IsFull())
{
IsGameOver = true;
for (int32 i = 0; i < Players.Num(); i++)
Players[i]->OnLose();
}
else
TurnNextPlayer();
}
int32 ATTTGameMode::GetNextPlayer(int32 Player)
{
Player++;
if (!Players.IsValidIndex(Player))
Player = 0;
return Player;
}
void ATTTGameMode::TurnNextPlayer()
{
CurrentPlayer = GetNextPlayer(CurrentPlayer);
Players[CurrentPlayer]->OnTurn();
}
|
/*
Copyright (c) 2013-2014 Sam Hardeman
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 "OpCodeHandler.h"
using namespace IceNet;
OpCodeHandler* OpCodeHandler::m_Singleton = 0;
OpCodeHandler::OpCodeHandler( void )
{
memset( m_OpCodes, 0, sizeof( PACKET_HANDLING_FUNCTION ) * USHRT_MAX );
memset( m_ClientData, 0, sizeof( void* ) * USHRT_MAX );
}
OpCodeHandler::~OpCodeHandler( void )
{}
OpCodeHandler* OpCodeHandler::GetSingleton( void )
{
if ( m_Singleton == 0 )
{
m_Singleton = new OpCodeHandler();
}
return m_Singleton;
}
void OpCodeHandler::LinkOpCodeFunction( OPCODE codeNumber, PACKET_HANDLING_FUNCTION fun, void* clientData )
{
if ( (unsigned short) ( codeNumber + 256 ) < 256 ) return;
m_OpCodes[ codeNumber + 256 ] = fun;
m_ClientData[ codeNumber + 256 ] = clientData;
}
void OpCodeHandler::LinkOpCodeFunctionInternal( OPCODE codeNumber, PACKET_HANDLING_FUNCTION fun )
{
m_OpCodes[ codeNumber ] = fun;
}
void OpCodeHandler::CallOpCodeFunction( OPCODE codeNumber, Packet* packet )
{
PACKET_HANDLING_FUNCTION fun = m_OpCodes[ codeNumber ];
if ( fun != 0 )
{
fun( *packet, m_ClientData[ codeNumber ] );
}
}
void OpCodeHandler::SetClientData( OPCODE codeNumber, void* clientData )
{
if ( (unsigned short) ( codeNumber + 256 ) < 256 ) return;
m_ClientData[ codeNumber + 256 ] = clientData;
}
void* OpCodeHandler::GetClientData( OPCODE codeNumber )
{
if ( (unsigned short) ( codeNumber + 256 ) < 256 ) return 0;
return m_ClientData[ codeNumber + 256 ];
}
|
#include <iostream>
#include "gcd.h"
#include "fib.h"
using namespace std;
int main() {
cout << "gcd(60, 24) = " << t_gcd<60, 24>::res << endl;
cout << "gcd(8, 18) = " << t_gcd<8, 18>::res << endl;
cout << "-----" << endl;
cout << "gcd(60, 24) = " << c_gcd(60, 24) << endl;
cout << "gcd(8, 18) = " << c_gcd(8, 18) << endl;
cout << "-----" << endl;
cout << "fib(1) = " << t_fib<1>::res << endl;
cout << "fib(7) = " << t_fib<7>::res << endl;
cout << "-----" << endl;
cout << "fib(1) = " << c_fib(1) << endl;
cout << "fib(7) = " << c_fib(7) << endl;
return 0;
}
|
#include<iostream>
#include<cmath>
using namespace std;
int maxSumSubarray(int arr[], int n) {
int maxend = arr[0];
int res = arr[0];
for (int i = 1; i < n; i++) {
maxend = max((maxend + arr[i]), arr[i]);
res = max(maxend, res);
}
return res;
}
int main() {
int arr[] = { 1, -2, 3, -1, 2 }, n = 5;
cout << maxSumSubarray(arr, n);
}
|
#pragma once
#ifndef TUPLE_H
#define TUPLE_H
#include <string>
#include <vector>
using namespace std;
class Tuple : public vector<string> {
public:
Tuple();
private:
};
#endif
|
#include <iostream>
using namespace std;
int main () {
bool f[26][26][100];
int a[26][26];
int n;
cin>>n;
for (int i=1; i<=n; i++)
for (int j=1; j<=i; j++)
cin>>a[i][j];
f[1][1][a[1][1]] = true;
for (int i=2; i<=n; i++)
for (int j=1; j<=i; j++)
for (int k=0; k<=99; k++) {
if(f[i-1][j][k] == true)
f[i][j][(k+a[i][j])%100] = true;
if(j-1>0 && f[i-1][j-1][k] == true)
f[i][j][(k+a[i][j])%100] = true;
}
int ans=0;
for (int i=1; i<=n; i++)
for (int k=0; k<=99; k++)
if (f[n][i][k]==true && k>ans)
ans = k;
cout<<ans;
return 0;
}
|
/*#include "Application.h"
Application::Application()
{
}
Application::~Application()
{
}
void Application::run()
{
/*bool program_exit = false;
string directory;
int choice;
while (!program_exit)
{
cout << "---------------------------" << endl;
cout << "1. 이메일 검색" << endl;
cout << "2. 주민등록번호 검색" << endl;
cout << "0. 프로그램 종료" << endl;
cout << "---------------------------" << endl;
cin >> choice;
switch (choice)
{
case 1:
E.run();
break;
case 2:
R.run();
break;
case 0:
program_exit = true;
break;
default:
cout << "잘못된 입력입니다." << endl;
break;
}
}
}
*/
|
#include<bits/stdc++.h>
using namespace std;
#define MAX 1000000
typedef long long ll;
void getprimes(vector<int>& pri)
{
bool* primes = new bool[MAX+1];
for(int i=0;i<=MAX;i++)
{
primes[i]=true;
}
primes[0]=false;
primes[1]=false;
for(int i=2;i*i<=MAX;i++)
{
if(primes[i]==true) // is a prime
{
// make all its multiple false
for(int j=i*i;j<=MAX;j+=i)
{
primes[j]=false;
}
}
}
for(int i=2;i<=MAX;i++)
{
if(primes[i]==true)
{
pri.push_back(i);
}
}
return ;
}
ll solve(ll l,ll r,int k,vector<int>& pri)
{
ll* output = new ll[r-l+1];
for(int i=0;i<=(r-l);i++)
{
output[i]=i+l;
}
for(int i=0;pri[i]<=r;i++)
{
int cur_p = pri[i];
ll base = (l/cur_p)*cur_p;
if(base < l)
{
base = base + cur_p;
}
for(ll i=base;i<=r;i+=cur_p)
{
output[i-l] = (output[i-l]*(cur_p-1))/cur_p;
}
if(base==cur_p)
{
output[base-l]= base;
}
}
for(int i=0;i<=(r-l);i++)
{
if(output[i]==(i+l))
{
output[i]=i+l-1;
}
}
int count = 0;
for(int i=0;i<=(r-l);i++)
{
if(output[i]==0)
{
continue;
}
if((output[i]%k)==0)
{
count++;
}
}
return count;
}
int main()
{
int t;
cin >> t;
vector<int> pri;
getprimes(pri);
while(t--)
{
ll l,r;
int k;
cin >> l >> r >> k;
double d = (r-l+1);
double ans = solve(l,r,k,pri)/d;
cout << fixed << setprecision(6) << ans << endl;
}
return 0;
}
|
/*
* SPDX-FileCopyrightText: (C) 2014 Daniel Nicoletti <dantti12@gmail.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "hello.h"
#include "root.h"
#include <Cutelyst/Plugins/Session/Session>
#include <QCoreApplication>
#include <QDebug>
HelloWorld::HelloWorld(QObject *parent)
: Cutelyst::Application(parent)
{
QCoreApplication::setApplicationName(QStringLiteral("HelloWorld"));
qDebug() << "HelloWorld::HelloWorld" << QCoreApplication::applicationPid();
}
HelloWorld::~HelloWorld()
{
}
bool HelloWorld::init()
{
new Root(this);
if (qEnvironmentVariableIsSet("TEST_SESSION")) {
new Session(this);
}
return true;
}
bool HelloWorld::postFork()
{
qDebug() << "HelloWorld::postFork" << QCoreApplication::applicationPid();
return true;
}
|
stack<int> s;
int min1;
MinStack::MinStack() {
min1=-1;
while(!s.empty())s.pop();
}
void MinStack::push(int x) {
if(s.empty())
{
s.push(x);
min1=x;
}
else
{
if(x<min1)
{
s.push(2*x-min1);
min1=x;
}
else s.push(x);
}
}
void MinStack::pop() {
if(s.empty())return;
if(s.top()<min1)
{
int val=2*min1-s.top();
min1=val;
s.pop();
}
else
{
s.pop();
}
}
int MinStack::top() {
if(s.empty())return -1;
if(s.top()<min1)return min1;
return s.top();
}
int MinStack::getMin() {
if(s.empty())return -1;
return min1;
}
|
#ifndef PROTOCOL_H
#define PROTOCOL_H
#include "../CommonFiles/Constants.h"
class Protocol
{
public:
static QString serverEmptyRespond();
static QString clientLastVersionRequest();
static QString serverVersionRespond (const QString &version);
static QString clientSignUpRequest(const QString& login, const QString& password);
static QString serverSignedUpRespond();
static QString serverLoginIsTakenRespond();
static QString clientSignInRequest(const QString& login, const QString& password);
static QString serverSignedInRespond();
static QString serverSignedInBadLoginRespond();
static QString serverSignedInBadPasswordRespond();
static QString serverAlreadySignedIn();
static QString clientFindingGameRequest();
static QString clientStoppedSearchingRequest();
static QString serverFindingStartedRespond();
static QString serverMatchCreated(const QString& color, int id, const QString& opponent, int time);
static QString clientMatchAcceptedRespond();
static QString clientMatchDeclinedRespond();
static QString serverAcceptPerformed();
static QString clientMoved(int x, int y);
static QString serverOpponentDisconnected();
static QString moveBack(int x, int y);
static QString clientDrawRequest();
static QString clientMessageToOpponent(const QString& string);
static QString clientWonRequest();
static QString clientSurrenderRequest();
static QString serverClientWonTheGame();
static QString serverClientLostTheGame();
static QString serverDrawGame();
static QString clientDisabledChat();
static QString clientMatchHistoryRequest();
static QString serverMatchHistorySendingStartedRespond();
static QString serverMatchHistoryOneGameRespond(const QString& string);
static QString serverMatchHistorySendingEndedRespond();
static QString clientGetOpenedGamesRequest();
static QString serverGamesRespond(const QString& gameString);
static QString clientOpenGameRequest(const QString& loginOfOwner, int pos, int time);
};
#endif // PROTOCOL_H
|
/////////////////////////////////////////////////////////////////////////////
// Name: wx/richtext/richtextbuffer.h
// Purpose: Buffer for wxRichTextCtrl
// Author: Julian Smart
// Modified by:
// Created: 2005-09-30
// RCS-ID: $Id: richtextbuffer.h 61097 2009-06-17 21:10:29Z JS $
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_RICHTEXTBUFFER_H_
#define _WX_RICHTEXTBUFFER_H_
/*
Data structures
===============
Data is represented by a hierarchy of objects, all derived from
wxRichTextObject.
The top of the hierarchy is the buffer, a kind of wxRichTextParagraphLayoutBox.
These boxes will allow flexible placement of text boxes on a page, but
for now there is a single box representing the document, and this box is
a wxRichTextParagraphLayoutBox which contains further wxRichTextParagraph
objects, each of which can include text and images.
Each object maintains a range (start and end position) measured
from the start of the main parent box.
A paragraph object knows its range, and a text fragment knows its range
too. So, a character or image in a page has a position relative to the
start of the document, and a character in an embedded text box has
a position relative to that text box. For now, we will not be dealing with
embedded objects but it's something to bear in mind for later.
Note that internally, a range (5,5) represents a range of one character.
In the public wx[Rich]TextCtrl API, this would be passed to e.g. SetSelection
as (5,6). A paragraph with one character might have an internal range of (0, 1)
since the end of the paragraph takes up one position.
Layout
======
When Layout is called on an object, it is given a size which the object
must limit itself to, or one or more flexible directions (vertical
or horizontal). So for example a centered paragraph is given the page
width to play with (minus any margins), but can extend indefinitely
in the vertical direction. The implementation of Layout can then
cache the calculated size and position within the parent.
*/
/*!
* Includes
*/
#include "wx/defs.h"
#if wxUSE_RICHTEXT
#include "wx/list.h"
#include "wx/textctrl.h"
#include "wx/bitmap.h"
#include "wx/image.h"
#include "wx/cmdproc.h"
#include "wx/txtstrm.h"
#if wxUSE_DATAOBJ
#include "wx/dataobj.h"
#endif
// Compatibility
#define wxRichTextAttr wxTextAttr
#define wxTextAttrEx wxTextAttr
// Setting wxRICHTEXT_USE_OWN_CARET to 1 implements a
// cursor reliably without using wxClientDC in case there
// are platform-specific problems with the generic caret.
#ifdef __WXMAC__
#define wxRICHTEXT_USE_OWN_CARET 1
#else
#define wxRICHTEXT_USE_OWN_CARET 0
#endif
// Switch off for binary compatibility, on for faster drawing
// Note: this seems to be buggy (overzealous use of extents) so
// don't use for now
#define wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING 0
/*!
* Special characters
*/
extern WXDLLIMPEXP_RICHTEXT const wxChar wxRichTextLineBreakChar;
/*!
* File types in wxRichText context.
*/
enum wxRichTextFileType
{
wxRICHTEXT_TYPE_ANY = 0,
wxRICHTEXT_TYPE_TEXT,
wxRICHTEXT_TYPE_XML,
wxRICHTEXT_TYPE_HTML,
wxRICHTEXT_TYPE_RTF,
wxRICHTEXT_TYPE_PDF
};
/*!
* Forward declarations
*/
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCtrl;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextObject;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCacheObject;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextObjectList;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextLine;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextParagraph;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextFileHandler;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextStyleSheet;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextListStyleDefinition;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextEvent;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextRenderer;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextBuffer;
/*!
* Flags determining the available space, passed to Layout
*/
#define wxRICHTEXT_FIXED_WIDTH 0x01
#define wxRICHTEXT_FIXED_HEIGHT 0x02
#define wxRICHTEXT_VARIABLE_WIDTH 0x04
#define wxRICHTEXT_VARIABLE_HEIGHT 0x08
// Only lay out the part of the buffer that lies within
// the rect passed to Layout.
#define wxRICHTEXT_LAYOUT_SPECIFIED_RECT 0x10
/*!
* Flags to pass to Draw
*/
// Ignore paragraph cache optimization, e.g. for printing purposes
// where one line may be drawn higher (on the next page) compared
// with the previous line
#define wxRICHTEXT_DRAW_IGNORE_CACHE 0x01
/*!
* Flags returned from hit-testing
*/
enum wxRichTextHitTestFlags
{
// The point was not on this object
wxRICHTEXT_HITTEST_NONE = 0x01,
// The point was before the position returned from HitTest
wxRICHTEXT_HITTEST_BEFORE = 0x02,
// The point was after the position returned from HitTest
wxRICHTEXT_HITTEST_AFTER = 0x04,
// The point was on the position returned from HitTest
wxRICHTEXT_HITTEST_ON = 0x08,
// The point was on space outside content
wxRICHTEXT_HITTEST_OUTSIDE = 0x10
};
/*!
* Flags for GetRangeSize
*/
#define wxRICHTEXT_FORMATTED 0x01
#define wxRICHTEXT_UNFORMATTED 0x02
#define wxRICHTEXT_CACHE_SIZE 0x04
#define wxRICHTEXT_HEIGHT_ONLY 0x08
/*!
* Flags for SetStyle/SetListStyle
*/
#define wxRICHTEXT_SETSTYLE_NONE 0x00
// Specifies that this operation should be undoable
#define wxRICHTEXT_SETSTYLE_WITH_UNDO 0x01
// Specifies that the style should not be applied if the
// combined style at this point is already the style in question.
#define wxRICHTEXT_SETSTYLE_OPTIMIZE 0x02
// Specifies that the style should only be applied to paragraphs,
// and not the content. This allows content styling to be
// preserved independently from that of e.g. a named paragraph style.
#define wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY 0x04
// Specifies that the style should only be applied to characters,
// and not the paragraph. This allows content styling to be
// preserved independently from that of e.g. a named paragraph style.
#define wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY 0x08
// For SetListStyle only: specifies starting from the given number, otherwise
// deduces number from existing attributes
#define wxRICHTEXT_SETSTYLE_RENUMBER 0x10
// For SetListStyle only: specifies the list level for all paragraphs, otherwise
// the current indentation will be used
#define wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL 0x20
// Resets the existing style before applying the new style
#define wxRICHTEXT_SETSTYLE_RESET 0x40
// Removes the given style instead of applying it
#define wxRICHTEXT_SETSTYLE_REMOVE 0x80
/*!
* Flags for text insertion
*/
#define wxRICHTEXT_INSERT_NONE 0x00
#define wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE 0x01
#define wxRICHTEXT_INSERT_INTERACTIVE 0x02
// A special flag telling the buffer to keep the first paragraph style
// as-is, when deleting a paragraph marker. In future we might pass a
// flag to InsertFragment and DeleteRange to indicate the appropriate mode.
#define wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE 0x10000000
/*!
* Default superscript/subscript font multiplication factor
*/
#define wxSCRIPT_MUL_FACTOR 1.5
/*!
* wxRichTextFontTable
* Manages quick access to a pool of fonts for rendering rich text
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextFontTable: public wxObject
{
public:
wxRichTextFontTable();
wxRichTextFontTable(const wxRichTextFontTable& table);
virtual ~wxRichTextFontTable();
bool IsOk() const { return m_refData != NULL; }
wxFont FindFont(const wxTextAttr& fontSpec);
void Clear();
void operator= (const wxRichTextFontTable& table);
bool operator == (const wxRichTextFontTable& table) const;
bool operator != (const wxRichTextFontTable& table) const { return !(*this == table); }
protected:
DECLARE_DYNAMIC_CLASS(wxRichTextFontTable)
};
/*!
* wxRichTextRange class declaration
* This stores beginning and end positions for a range of data.
* TODO: consider renaming wxTextRange and using for all text controls.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextRange
{
public:
// Constructors
wxRichTextRange() { m_start = 0; m_end = 0; }
wxRichTextRange(long start, long end) { m_start = start; m_end = end; }
wxRichTextRange(const wxRichTextRange& range) { m_start = range.m_start; m_end = range.m_end; }
~wxRichTextRange() {}
void operator =(const wxRichTextRange& range) { m_start = range.m_start; m_end = range.m_end; }
bool operator ==(const wxRichTextRange& range) const { return (m_start == range.m_start && m_end == range.m_end); }
bool operator !=(const wxRichTextRange& range) const { return (m_start != range.m_start || m_end != range.m_end); }
wxRichTextRange operator -(const wxRichTextRange& range) const { return wxRichTextRange(m_start - range.m_start, m_end - range.m_end); }
wxRichTextRange operator +(const wxRichTextRange& range) const { return wxRichTextRange(m_start + range.m_start, m_end + range.m_end); }
void SetRange(long start, long end) { m_start = start; m_end = end; }
void SetStart(long start) { m_start = start; }
long GetStart() const { return m_start; }
void SetEnd(long end) { m_end = end; }
long GetEnd() const { return m_end; }
/// Returns true if this range is completely outside 'range'
bool IsOutside(const wxRichTextRange& range) const { return range.m_start > m_end || range.m_end < m_start; }
/// Returns true if this range is completely within 'range'
bool IsWithin(const wxRichTextRange& range) const { return m_start >= range.m_start && m_end <= range.m_end; }
/// Returns true if the given position is within this range. Allow
/// for the possibility of an empty range - assume the position
/// is within this empty range. NO, I think we should not match with an empty range.
// bool Contains(long pos) const { return pos >= m_start && (pos <= m_end || GetLength() == 0); }
bool Contains(long pos) const { return pos >= m_start && pos <= m_end ; }
/// Limit this range to be within 'range'
bool LimitTo(const wxRichTextRange& range) ;
/// Gets the length of the range
long GetLength() const { return m_end - m_start + 1; }
/// Swaps the start and end
void Swap() { long tmp = m_start; m_start = m_end; m_end = tmp; }
/// Convert to internal form: (n, n) is the range of a single character.
wxRichTextRange ToInternal() const { return wxRichTextRange(m_start, m_end-1); }
/// Convert from internal to public API form: (n, n+1) is the range of a single character.
wxRichTextRange FromInternal() const { return wxRichTextRange(m_start, m_end+1); }
protected:
long m_start;
long m_end;
};
#define wxRICHTEXT_ALL wxRichTextRange(-2, -2)
#define wxRICHTEXT_NONE wxRichTextRange(-1, -1)
/*!
* wxRichTextObject class declaration
* This is the base for drawable objects.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextObject: public wxObject
{
DECLARE_CLASS(wxRichTextObject)
public:
// Constructors
wxRichTextObject(wxRichTextObject* parent = NULL);
virtual ~wxRichTextObject();
// Overrideables
/// Draw the item, within the given range. Some objects may ignore the range (for
/// example paragraphs) while others must obey it (lines, to implement wrapping)
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style) = 0;
/// Lay the item out at the specified position with the given size constraint.
/// Layout must set the cached size.
virtual bool Layout(wxDC& dc, const wxRect& rect, int style) = 0;
/// Hit-testing: returns a flag indicating hit test details, plus
/// information about position
virtual int HitTest(wxDC& WXUNUSED(dc), const wxPoint& WXUNUSED(pt), long& WXUNUSED(textPosition)) { return false; }
/// Finds the absolute position and row height for the given character position
virtual bool FindPosition(wxDC& WXUNUSED(dc), long WXUNUSED(index), wxPoint& WXUNUSED(pt), int* WXUNUSED(height), bool WXUNUSED(forceLineStart)) { return false; }
/// Get the best size, i.e. the ideal starting size for this object irrespective
/// of available space. For a short text string, it will be the size that exactly encloses
/// the text. For a longer string, it might use the parent width for example.
virtual wxSize GetBestSize() const { return m_size; }
/// Get the object size for the given range. Returns false if the range
/// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const = 0;
/// Do a split, returning an object containing the second part, and setting
/// the first part in 'this'.
virtual wxRichTextObject* DoSplit(long WXUNUSED(pos)) { return NULL; }
/// Calculate range. By default, guess that the object is 1 unit long.
virtual void CalculateRange(long start, long& end) { end = start ; m_range.SetRange(start, end); }
/// Delete range
virtual bool DeleteRange(const wxRichTextRange& WXUNUSED(range)) { return false; }
/// Returns true if the object is empty
virtual bool IsEmpty() const { return false; }
/// Get any text in this object for the given range
virtual wxString GetTextForRange(const wxRichTextRange& WXUNUSED(range)) const { return wxEmptyString; }
/// Returns true if this object can merge itself with the given one.
virtual bool CanMerge(wxRichTextObject* WXUNUSED(object)) const { return false; }
/// Returns true if this object merged itself with the given one.
/// The calling code will then delete the given object.
virtual bool Merge(wxRichTextObject* WXUNUSED(object)) { return false; }
/// Dump to output stream for debugging
virtual void Dump(wxTextOutputStream& stream);
// Accessors
/// Get/set the cached object size as calculated by Layout.
virtual wxSize GetCachedSize() const { return m_size; }
virtual void SetCachedSize(const wxSize& sz) { m_size = sz; }
/// Get/set the object position
virtual wxPoint GetPosition() const { return m_pos; }
virtual void SetPosition(const wxPoint& pos) { m_pos = pos; }
/// Get the rectangle enclosing the object
virtual wxRect GetRect() const { return wxRect(GetPosition(), GetCachedSize()); }
/// Set the range
void SetRange(const wxRichTextRange& range) { m_range = range; }
/// Get the range
const wxRichTextRange& GetRange() const { return m_range; }
wxRichTextRange& GetRange() { return m_range; }
/// Get/set dirty flag (whether the object needs Layout to be called)
virtual bool GetDirty() const { return m_dirty; }
virtual void SetDirty(bool dirty) { m_dirty = dirty; }
/// Is this composite?
virtual bool IsComposite() const { return false; }
/// Get/set the parent.
virtual wxRichTextObject* GetParent() const { return m_parent; }
virtual void SetParent(wxRichTextObject* parent) { m_parent = parent; }
/// Set the margin around the object
virtual void SetMargins(int margin);
virtual void SetMargins(int leftMargin, int rightMargin, int topMargin, int bottomMargin);
virtual int GetLeftMargin() const { return m_leftMargin; }
virtual int GetRightMargin() const { return m_rightMargin; }
virtual int GetTopMargin() const { return m_topMargin; }
virtual int GetBottomMargin() const { return m_bottomMargin; }
/// Set attributes object
void SetAttributes(const wxTextAttr& attr) { m_attributes = attr; }
const wxTextAttr& GetAttributes() const { return m_attributes; }
wxTextAttr& GetAttributes() { return m_attributes; }
/// Set/get stored descent
void SetDescent(int descent) { m_descent = descent; }
int GetDescent() const { return m_descent; }
/// Gets the containing buffer
wxRichTextBuffer* GetBuffer() const;
// Operations
/// Clone the object
virtual wxRichTextObject* Clone() const { return NULL; }
/// Copy
void Copy(const wxRichTextObject& obj);
/// Reference-counting allows us to use the same object in multiple
/// lists (not yet used)
void Reference() { m_refCount ++; }
void Dereference();
/// Convert units in tenths of a millimetre to device units
int ConvertTenthsMMToPixels(wxDC& dc, int units);
static int ConvertTenthsMMToPixels(int ppi, int units);
protected:
wxSize m_size;
wxPoint m_pos;
int m_descent; // Descent for this object (if any)
bool m_dirty;
int m_refCount;
wxRichTextObject* m_parent;
/// The range of this object (start position to end position)
wxRichTextRange m_range;
/// Margins
int m_leftMargin;
int m_rightMargin;
int m_topMargin;
int m_bottomMargin;
/// Attributes
wxTextAttr m_attributes;
};
WX_DECLARE_LIST_WITH_DECL( wxRichTextObject, wxRichTextObjectList, class WXDLLIMPEXP_RICHTEXT );
/*!
* wxRichTextCompositeObject class declaration
* Objects of this class can contain other objects.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextCompositeObject: public wxRichTextObject
{
DECLARE_CLASS(wxRichTextCompositeObject)
public:
// Constructors
wxRichTextCompositeObject(wxRichTextObject* parent = NULL);
virtual ~wxRichTextCompositeObject();
// Overrideables
/// Hit-testing: returns a flag indicating hit test details, plus
/// information about position
virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition);
/// Finds the absolute position and row height for the given character position
virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
/// Calculate range
virtual void CalculateRange(long start, long& end);
/// Delete range
virtual bool DeleteRange(const wxRichTextRange& range);
/// Get any text in this object for the given range
virtual wxString GetTextForRange(const wxRichTextRange& range) const;
/// Dump to output stream for debugging
virtual void Dump(wxTextOutputStream& stream);
// Accessors
/// Get the children
wxRichTextObjectList& GetChildren() { return m_children; }
const wxRichTextObjectList& GetChildren() const { return m_children; }
/// Get the child count
size_t GetChildCount() const ;
/// Get the nth child
wxRichTextObject* GetChild(size_t n) const ;
/// Get/set dirty flag
virtual bool GetDirty() const { return m_dirty; }
virtual void SetDirty(bool dirty) { m_dirty = dirty; }
/// Is this composite?
virtual bool IsComposite() const { return true; }
/// Returns true if the buffer is empty
virtual bool IsEmpty() const { return GetChildCount() == 0; }
// Operations
/// Copy
void Copy(const wxRichTextCompositeObject& obj);
/// Assignment
void operator= (const wxRichTextCompositeObject& obj) { Copy(obj); }
/// Append a child, returning the position
size_t AppendChild(wxRichTextObject* child) ;
/// Insert the child in front of the given object, or at the beginning
bool InsertChild(wxRichTextObject* child, wxRichTextObject* inFrontOf) ;
/// Delete the child
bool RemoveChild(wxRichTextObject* child, bool deleteChild = false) ;
/// Delete all children
bool DeleteChildren() ;
/// Recursively merge all pieces that can be merged.
bool Defragment(const wxRichTextRange& range = wxRICHTEXT_ALL);
protected:
wxRichTextObjectList m_children;
};
/*!
* wxRichTextBox class declaration
* This defines a 2D space to lay out objects
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextBox: public wxRichTextCompositeObject
{
DECLARE_DYNAMIC_CLASS(wxRichTextBox)
public:
// Constructors
wxRichTextBox(wxRichTextObject* parent = NULL);
wxRichTextBox(const wxRichTextBox& obj): wxRichTextCompositeObject() { Copy(obj); }
// Overrideables
/// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
/// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
/// Get/set the object size for the given range. Returns false if the range
/// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
// Accessors
// Operations
/// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextBox(*this); }
/// Copy
void Copy(const wxRichTextBox& obj);
protected:
};
/*!
* wxRichTextParagraphBox class declaration
* This box knows how to lay out paragraphs.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextParagraphLayoutBox: public wxRichTextBox
{
DECLARE_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox)
public:
// Constructors
wxRichTextParagraphLayoutBox(wxRichTextObject* parent = NULL);
wxRichTextParagraphLayoutBox(const wxRichTextParagraphLayoutBox& obj): wxRichTextBox() { Init(); Copy(obj); }
// Overrideables
/// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
/// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
/// Get/set the object size for the given range. Returns false if the range
/// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
/// Delete range
virtual bool DeleteRange(const wxRichTextRange& range);
/// Get any text in this object for the given range
virtual wxString GetTextForRange(const wxRichTextRange& range) const;
// Accessors
/// Associate a control with the buffer, for operations that for example require refreshing the window.
void SetRichTextCtrl(wxRichTextCtrl* ctrl) { m_ctrl = ctrl; }
/// Get the associated control.
wxRichTextCtrl* GetRichTextCtrl() const { return m_ctrl; }
/// Get/set whether the last paragraph is partial or complete
void SetPartialParagraph(bool partialPara) { m_partialParagraph = partialPara; }
bool GetPartialParagraph() const { return m_partialParagraph; }
/// If this is a buffer, returns the current style sheet. The base layout box
/// class doesn't have an associated style sheet.
virtual wxRichTextStyleSheet* GetStyleSheet() const { return NULL; }
// Operations
/// Initialize the object.
void Init();
/// Clear all children
virtual void Clear();
/// Clear and initialize with one blank paragraph
virtual void Reset();
/// Convenience function to add a paragraph of text
virtual wxRichTextRange AddParagraph(const wxString& text, wxTextAttr* paraStyle = NULL);
/// Convenience function to add an image
virtual wxRichTextRange AddImage(const wxImage& image, wxTextAttr* paraStyle = NULL);
/// Adds multiple paragraphs, based on newlines.
virtual wxRichTextRange AddParagraphs(const wxString& text, wxTextAttr* paraStyle = NULL);
/// Get the line at the given position. If caretPosition is true, the position is
/// a caret position, which is normally a smaller number.
virtual wxRichTextLine* GetLineAtPosition(long pos, bool caretPosition = false) const;
/// Get the line at the given y pixel position, or the last line.
virtual wxRichTextLine* GetLineAtYPosition(int y) const;
/// Get the paragraph at the given character or caret position
virtual wxRichTextParagraph* GetParagraphAtPosition(long pos, bool caretPosition = false) const;
/// Get the line size at the given position
virtual wxSize GetLineSizeAtPosition(long pos, bool caretPosition = false) const;
/// Given a position, get the number of the visible line (potentially many to a paragraph),
/// starting from zero at the start of the buffer. We also have to pass a bool (startOfLine)
/// that indicates whether the caret is being shown at the end of the previous line or at the start
/// of the next, since the caret can be shown at 2 visible positions for the same underlying
/// position.
virtual long GetVisibleLineNumber(long pos, bool caretPosition = false, bool startOfLine = false) const;
/// Given a line number, get the corresponding wxRichTextLine object.
virtual wxRichTextLine* GetLineForVisibleLineNumber(long lineNumber) const;
/// Get the leaf object in a paragraph at this position.
/// Given a line number, get the corresponding wxRichTextLine object.
virtual wxRichTextObject* GetLeafObjectAtPosition(long position) const;
/// Get the paragraph by number
virtual wxRichTextParagraph* GetParagraphAtLine(long paragraphNumber) const;
/// Get the paragraph for a given line
virtual wxRichTextParagraph* GetParagraphForLine(wxRichTextLine* line) const;
/// Get the length of the paragraph
virtual int GetParagraphLength(long paragraphNumber) const;
/// Get the number of paragraphs
virtual int GetParagraphCount() const { return static_cast<int>(GetChildCount()); }
/// Get the number of visible lines
virtual int GetLineCount() const;
/// Get the text of the paragraph
virtual wxString GetParagraphText(long paragraphNumber) const;
/// Convert zero-based line column and paragraph number to a position.
virtual long XYToPosition(long x, long y) const;
/// Convert zero-based position to line column and paragraph number
virtual bool PositionToXY(long pos, long* x, long* y) const;
/// Set text attributes: character and/or paragraph styles.
virtual bool SetStyle(const wxRichTextRange& range, const wxTextAttr& style, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
/// Get the conbined text attributes for this position.
virtual bool GetStyle(long position, wxTextAttr& style);
/// Get the content (uncombined) attributes for this position.
virtual bool GetUncombinedStyle(long position, wxTextAttr& style);
/// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
/// context attributes.
virtual bool DoGetStyle(long position, wxTextAttr& style, bool combineStyles = true);
/// Get the combined style for a range - if any attribute is different within the range,
/// that attribute is not present within the flags
virtual bool GetStyleForRange(const wxRichTextRange& range, wxTextAttr& style);
/// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
/// content.
bool CollectStyle(wxTextAttr& currentStyle, const wxTextAttr& style, long& multipleStyleAttributes, int& multipleTextEffectAttributes, int& absentStyleAttributes, int& absentTextEffectAttributes);
/// Set list style
virtual bool SetListStyle(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
virtual bool SetListStyle(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
/// Clear list for given range
virtual bool ClearListStyle(const wxRichTextRange& range, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
/// Number/renumber any list elements in the given range.
/// def/defName can be NULL/empty to indicate that the existing list style should be used.
virtual bool NumberList(const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
virtual bool NumberList(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
/// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
/// def/defName can be NULL/empty to indicate that the existing list style should be used.
virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
/// Helper for NumberList and PromoteList, that does renumbering and promotion simultaneously
/// def/defName can be NULL/empty to indicate that the existing list style should be used.
virtual bool DoNumberList(const wxRichTextRange& range, const wxRichTextRange& promotionRange, int promoteBy, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
/// Fills in the attributes for numbering a paragraph after previousParagraph.
virtual bool FindNextParagraphNumber(wxRichTextParagraph* previousParagraph, wxTextAttr& attr) const;
/// Test if this whole range has character attributes of the specified kind. If any
/// of the attributes are different within the range, the test fails. You
/// can use this to implement, for example, bold button updating. style must have
/// flags indicating which attributes are of interest.
virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxTextAttr& style) const;
/// Test if this whole range has paragraph attributes of the specified kind. If any
/// of the attributes are different within the range, the test fails. You
/// can use this to implement, for example, centering button updating. style must have
/// flags indicating which attributes are of interest.
virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxTextAttr& style) const;
/// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextParagraphLayoutBox(*this); }
/// Insert fragment into this box at the given position. If partialParagraph is true,
/// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
/// marker.
virtual bool InsertFragment(long position, wxRichTextParagraphLayoutBox& fragment);
/// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
virtual bool CopyFragment(const wxRichTextRange& range, wxRichTextParagraphLayoutBox& fragment);
/// Apply the style sheet to the buffer, for example if the styles have changed.
virtual bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet);
/// Copy
void Copy(const wxRichTextParagraphLayoutBox& obj);
/// Assignment
void operator= (const wxRichTextParagraphLayoutBox& obj) { Copy(obj); }
/// Calculate ranges
virtual void UpdateRanges() { long end; CalculateRange(0, end); }
/// Get all the text
virtual wxString GetText() const;
/// Set default style for new content. Setting it to a default attribute
/// makes new content take on the 'basic' style.
virtual bool SetDefaultStyle(const wxTextAttr& style);
/// Get default style
virtual const wxTextAttr& GetDefaultStyle() const { return m_defaultAttributes; }
/// Set basic (overall) style
virtual void SetBasicStyle(const wxTextAttr& style) { m_attributes = style; }
/// Get basic (overall) style
virtual const wxTextAttr& GetBasicStyle() const { return m_attributes; }
/// Invalidate the buffer. With no argument, invalidates whole buffer.
void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
/// Get invalid range, rounding to entire paragraphs if argument is true.
wxRichTextRange GetInvalidRange(bool wholeParagraphs = false) const;
protected:
wxRichTextCtrl* m_ctrl;
wxTextAttr m_defaultAttributes;
/// The invalidated range that will need full layout
wxRichTextRange m_invalidRange;
// Is the last paragraph partial or complete?
bool m_partialParagraph;
};
/*!
* wxRichTextLine class declaration
* This object represents a line in a paragraph, and stores
* offsets from the start of the paragraph representing the
* start and end positions of the line.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextLine
{
public:
// Constructors
wxRichTextLine(wxRichTextParagraph* parent);
wxRichTextLine(const wxRichTextLine& obj) { Init( NULL); Copy(obj); }
virtual ~wxRichTextLine() {}
// Overrideables
// Accessors
/// Set the range
void SetRange(const wxRichTextRange& range) { m_range = range; }
void SetRange(long from, long to) { m_range = wxRichTextRange(from, to); }
/// Get the parent paragraph
wxRichTextParagraph* GetParent() { return m_parent; }
/// Get the range
const wxRichTextRange& GetRange() const { return m_range; }
wxRichTextRange& GetRange() { return m_range; }
/// Get the absolute range
wxRichTextRange GetAbsoluteRange() const;
/// Get/set the line size as calculated by Layout.
virtual wxSize GetSize() const { return m_size; }
virtual void SetSize(const wxSize& sz) { m_size = sz; }
/// Get/set the object position relative to the parent
virtual wxPoint GetPosition() const { return m_pos; }
virtual void SetPosition(const wxPoint& pos) { m_pos = pos; }
/// Get the absolute object position
virtual wxPoint GetAbsolutePosition() const;
/// Get the rectangle enclosing the line
virtual wxRect GetRect() const { return wxRect(GetAbsolutePosition(), GetSize()); }
/// Set/get stored descent
void SetDescent(int descent) { m_descent = descent; }
int GetDescent() const { return m_descent; }
#if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
wxArrayInt& GetObjectSizes() { return m_objectSizes; }
const wxArrayInt& GetObjectSizes() const { return m_objectSizes; }
#endif
// Operations
/// Initialisation
void Init(wxRichTextParagraph* parent);
/// Copy
void Copy(const wxRichTextLine& obj);
/// Clone
virtual wxRichTextLine* Clone() const { return new wxRichTextLine(*this); }
protected:
/// The range of the line (start position to end position)
/// This is relative to the parent paragraph.
wxRichTextRange m_range;
/// Size and position measured relative to top of paragraph
wxPoint m_pos;
wxSize m_size;
/// Maximum descent for this line (location of text baseline)
int m_descent;
// The parent object
wxRichTextParagraph* m_parent;
#if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
wxArrayInt m_objectSizes;
#endif
};
WX_DECLARE_LIST_WITH_DECL( wxRichTextLine, wxRichTextLineList , class WXDLLIMPEXP_RICHTEXT );
/*!
* wxRichTextParagraph class declaration
* This object represents a single paragraph (or in a straight text editor, a line).
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph: public wxRichTextBox
{
DECLARE_DYNAMIC_CLASS(wxRichTextParagraph)
public:
// Constructors
wxRichTextParagraph(wxRichTextObject* parent = NULL, wxTextAttr* style = NULL);
wxRichTextParagraph(const wxString& text, wxRichTextObject* parent = NULL, wxTextAttr* paraStyle = NULL, wxTextAttr* charStyle = NULL);
virtual ~wxRichTextParagraph();
wxRichTextParagraph(const wxRichTextParagraph& obj): wxRichTextBox() { Copy(obj); }
// Overrideables
/// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
/// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
/// Get/set the object size for the given range. Returns false if the range
/// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
/// Finds the absolute position and row height for the given character position
virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
/// Hit-testing: returns a flag indicating hit test details, plus
/// information about position
virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition);
/// Calculate range
virtual void CalculateRange(long start, long& end);
// Accessors
/// Get the cached lines
wxRichTextLineList& GetLines() { return m_cachedLines; }
// Operations
/// Copy
void Copy(const wxRichTextParagraph& obj);
/// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextParagraph(*this); }
/// Clear the cached lines
void ClearLines();
// Implementation
/// Apply paragraph styles such as centering to the wrapped lines
virtual void ApplyParagraphStyle(const wxTextAttr& attr, const wxRect& rect, wxDC& dc);
/// Insert text at the given position
virtual bool InsertText(long pos, const wxString& text);
/// Split an object at this position if necessary, and return
/// the previous object, or NULL if inserting at beginning.
virtual wxRichTextObject* SplitAt(long pos, wxRichTextObject** previousObject = NULL);
/// Move content to a list from this point
virtual void MoveToList(wxRichTextObject* obj, wxList& list);
/// Add content back from list
virtual void MoveFromList(wxList& list);
/// Get the plain text searching from the start or end of the range.
/// The resulting string may be shorter than the range given.
bool GetContiguousPlainText(wxString& text, const wxRichTextRange& range, bool fromStart = true);
/// Find a suitable wrap position. wrapPosition is the last position in the line to the left
/// of the split.
bool FindWrapPosition(const wxRichTextRange& range, wxDC& dc, int availableSpace, long& wrapPosition, wxArrayInt* partialExtents);
/// Find the object at the given position
wxRichTextObject* FindObjectAtPosition(long position);
/// Get the bullet text for this paragraph.
wxString GetBulletText();
/// Allocate or reuse a line object
wxRichTextLine* AllocateLine(int pos);
/// Clear remaining unused line objects, if any
bool ClearUnusedLines(int lineCount);
/// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
/// retrieve the actual style.
wxTextAttr GetCombinedAttributes(const wxTextAttr& contentStyle) const;
/// Get combined attributes of the base style and paragraph style.
wxTextAttr GetCombinedAttributes() const;
/// Get the first position from pos that has a line break character.
long GetFirstLineBreakPosition(long pos);
/// Create default tabstop array
static void InitDefaultTabs();
/// Clear default tabstop array
static void ClearDefaultTabs();
/// Get default tabstop array
static const wxArrayInt& GetDefaultTabs() { return sm_defaultTabs; }
protected:
/// The lines that make up the wrapped paragraph
wxRichTextLineList m_cachedLines;
/// Default tabstops
static wxArrayInt sm_defaultTabs;
};
/*!
* wxRichTextPlainText class declaration
* This object represents a single piece of text.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextPlainText: public wxRichTextObject
{
DECLARE_DYNAMIC_CLASS(wxRichTextPlainText)
public:
// Constructors
wxRichTextPlainText(const wxString& text = wxEmptyString, wxRichTextObject* parent = NULL, wxTextAttr* style = NULL);
wxRichTextPlainText(const wxRichTextPlainText& obj): wxRichTextObject() { Copy(obj); }
// Overrideables
/// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
/// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
/// Get/set the object size for the given range. Returns false if the range
/// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
/// Get any text in this object for the given range
virtual wxString GetTextForRange(const wxRichTextRange& range) const;
/// Do a split, returning an object containing the second part, and setting
/// the first part in 'this'.
virtual wxRichTextObject* DoSplit(long pos);
/// Calculate range
virtual void CalculateRange(long start, long& end);
/// Delete range
virtual bool DeleteRange(const wxRichTextRange& range);
/// Returns true if the object is empty
virtual bool IsEmpty() const { return m_text.empty(); }
/// Returns true if this object can merge itself with the given one.
virtual bool CanMerge(wxRichTextObject* object) const;
/// Returns true if this object merged itself with the given one.
/// The calling code will then delete the given object.
virtual bool Merge(wxRichTextObject* object);
/// Dump to output stream for debugging
virtual void Dump(wxTextOutputStream& stream);
/// Get the first position from pos that has a line break character.
long GetFirstLineBreakPosition(long pos);
// Accessors
/// Get the text
const wxString& GetText() const { return m_text; }
/// Set the text
void SetText(const wxString& text) { m_text = text; }
// Operations
/// Copy
void Copy(const wxRichTextPlainText& obj);
/// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextPlainText(*this); }
private:
bool DrawTabbedString(wxDC& dc, const wxTextAttr& attr, const wxRect& rect, wxString& str, wxCoord& x, wxCoord& y, bool selected);
protected:
wxString m_text;
};
/*!
* wxRichTextImageBlock stores information about an image, in binary in-memory form
*/
class WXDLLIMPEXP_FWD_BASE wxDataInputStream;
class WXDLLIMPEXP_FWD_BASE wxDataOutputStream;
class WXDLLIMPEXP_RICHTEXT wxRichTextImageBlock: public wxObject
{
public:
wxRichTextImageBlock();
wxRichTextImageBlock(const wxRichTextImageBlock& block);
virtual ~wxRichTextImageBlock();
void Init();
void Clear();
// Load the original image into a memory block.
// If the image is not a JPEG, we must convert it into a JPEG
// to conserve space.
// If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
// load the image a 2nd time.
virtual bool MakeImageBlock(const wxString& filename, wxBitmapType imageType,
wxImage& image, bool convertToJPEG = true);
// Make an image block from the wxImage in the given
// format.
virtual bool MakeImageBlock(wxImage& image, wxBitmapType imageType, int quality = 80);
// Write to a file
bool Write(const wxString& filename);
// Write data in hex to a stream
bool WriteHex(wxOutputStream& stream);
// Read data in hex from a stream
bool ReadHex(wxInputStream& stream, int length, wxBitmapType imageType);
// Copy from 'block'
void Copy(const wxRichTextImageBlock& block);
// Load a wxImage from the block
bool Load(wxImage& image);
//// Operators
void operator=(const wxRichTextImageBlock& block);
//// Accessors
unsigned char* GetData() const { return m_data; }
size_t GetDataSize() const { return m_dataSize; }
wxBitmapType GetImageType() const { return m_imageType; }
void SetData(unsigned char* image) { m_data = image; }
void SetDataSize(size_t size) { m_dataSize = size; }
void SetImageType(wxBitmapType imageType) { m_imageType = imageType; }
bool Ok() const { return IsOk(); }
bool IsOk() const { return GetData() != NULL; }
// Gets the extension for the block's type
wxString GetExtension() const;
/// Implementation
// Allocate and read from stream as a block of memory
static unsigned char* ReadBlock(wxInputStream& stream, size_t size);
static unsigned char* ReadBlock(const wxString& filename, size_t size);
// Write memory block to stream
static bool WriteBlock(wxOutputStream& stream, unsigned char* block, size_t size);
// Write memory block to file
static bool WriteBlock(const wxString& filename, unsigned char* block, size_t size);
protected:
// Size in bytes of the image stored.
// This is in the raw, original form such as a JPEG file.
unsigned char* m_data;
size_t m_dataSize;
wxBitmapType m_imageType;
};
/*!
* wxRichTextImage class declaration
* This object represents an image.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextImage: public wxRichTextObject
{
DECLARE_DYNAMIC_CLASS(wxRichTextImage)
public:
// Constructors
wxRichTextImage(wxRichTextObject* parent = NULL): wxRichTextObject(parent) { }
wxRichTextImage(const wxImage& image, wxRichTextObject* parent = NULL, wxTextAttr* charStyle = NULL);
wxRichTextImage(const wxRichTextImageBlock& imageBlock, wxRichTextObject* parent = NULL, wxTextAttr* charStyle = NULL);
wxRichTextImage(const wxRichTextImage& obj): wxRichTextObject() { Copy(obj); }
// Overrideables
/// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
/// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
/// Get the object size for the given range. Returns false if the range
/// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
/// Returns true if the object is empty
virtual bool IsEmpty() const { return !m_image.Ok(); }
// Accessors
/// Get the image
const wxImage& GetImage() const { return m_image; }
/// Set the image
void SetImage(const wxImage& image) { m_image = image; }
/// Get the image block containing the raw data
wxRichTextImageBlock& GetImageBlock() { return m_imageBlock; }
// Operations
/// Copy
void Copy(const wxRichTextImage& obj);
/// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextImage(*this); }
/// Load wxImage from the block
virtual bool LoadFromBlock();
/// Make block from the wxImage
virtual bool MakeBlock();
protected:
// TODO: reduce the multiple representations of data
wxImage m_image;
wxBitmap m_bitmap;
wxRichTextImageBlock m_imageBlock;
};
/*!
* wxRichTextBuffer class declaration
* This is a kind of box, used to represent the whole buffer
*/
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCommand;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction;
class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer: public wxRichTextParagraphLayoutBox
{
DECLARE_DYNAMIC_CLASS(wxRichTextBuffer)
public:
// Constructors
wxRichTextBuffer() { Init(); }
wxRichTextBuffer(const wxRichTextBuffer& obj): wxRichTextParagraphLayoutBox() { Init(); Copy(obj); }
virtual ~wxRichTextBuffer() ;
// Accessors
/// Gets the command processor
wxCommandProcessor* GetCommandProcessor() const { return m_commandProcessor; }
/// Set style sheet, if any.
void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { m_styleSheet = styleSheet; }
virtual wxRichTextStyleSheet* GetStyleSheet() const { return m_styleSheet; }
/// Set style sheet and notify of the change
bool SetStyleSheetAndNotify(wxRichTextStyleSheet* sheet);
/// Push style sheet to top of stack
bool PushStyleSheet(wxRichTextStyleSheet* styleSheet);
/// Pop style sheet from top of stack
wxRichTextStyleSheet* PopStyleSheet();
/// Set/get table storing fonts
wxRichTextFontTable& GetFontTable() { return m_fontTable; }
const wxRichTextFontTable& GetFontTable() const { return m_fontTable; }
void SetFontTable(const wxRichTextFontTable& table) { m_fontTable = table; }
// Operations
/// Initialisation
void Init();
/// Clears the buffer, adds an empty paragraph, and clears the command processor.
virtual void ResetAndClearCommands();
/// Load a file
virtual bool LoadFile(const wxString& filename, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
/// Save a file
virtual bool SaveFile(const wxString& filename, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
/// Load from a stream
virtual bool LoadFile(wxInputStream& stream, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
/// Save to a stream
virtual bool SaveFile(wxOutputStream& stream, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
/// Set the handler flags, controlling loading and saving
void SetHandlerFlags(int flags) { m_handlerFlags = flags; }
/// Get the handler flags, controlling loading and saving
int GetHandlerFlags() const { return m_handlerFlags; }
/// Convenience function to add a paragraph of text
virtual wxRichTextRange AddParagraph(const wxString& text, wxTextAttr* paraStyle = NULL) { Modify(); return wxRichTextParagraphLayoutBox::AddParagraph(text, paraStyle); }
/// Begin collapsing undo/redo commands. Note that this may not work properly
/// if combining commands that delete or insert content, changing ranges for
/// subsequent actions.
virtual bool BeginBatchUndo(const wxString& cmdName);
/// End collapsing undo/redo commands
virtual bool EndBatchUndo();
/// Collapsing commands?
virtual bool BatchingUndo() const { return m_batchedCommandDepth > 0; }
/// Submit immediately, or delay according to whether collapsing is on
virtual bool SubmitAction(wxRichTextAction* action);
/// Get collapsed command
virtual wxRichTextCommand* GetBatchedCommand() const { return m_batchedCommand; }
/// Begin suppressing undo/redo commands. The way undo is suppressed may be implemented
/// differently by each command. If not dealt with by a command implementation, then
/// it will be implemented automatically by not storing the command in the undo history
/// when the action is submitted to the command processor.
virtual bool BeginSuppressUndo();
/// End suppressing undo/redo commands.
virtual bool EndSuppressUndo();
/// Collapsing commands?
virtual bool SuppressingUndo() const { return m_suppressUndo > 0; }
/// Copy the range to the clipboard
virtual bool CopyToClipboard(const wxRichTextRange& range);
/// Paste the clipboard content to the buffer
virtual bool PasteFromClipboard(long position);
/// Can we paste from the clipboard?
virtual bool CanPasteFromClipboard() const;
/// Begin using a style
virtual bool BeginStyle(const wxTextAttr& style);
/// End the style
virtual bool EndStyle();
/// End all styles
virtual bool EndAllStyles();
/// Clear the style stack
virtual void ClearStyleStack();
/// Get the size of the style stack, for example to check correct nesting
virtual size_t GetStyleStackSize() const { return m_attributeStack.GetCount(); }
/// Begin using bold
bool BeginBold();
/// End using bold
bool EndBold() { return EndStyle(); }
/// Begin using italic
bool BeginItalic();
/// End using italic
bool EndItalic() { return EndStyle(); }
/// Begin using underline
bool BeginUnderline();
/// End using underline
bool EndUnderline() { return EndStyle(); }
/// Begin using point size
bool BeginFontSize(int pointSize);
/// End using point size
bool EndFontSize() { return EndStyle(); }
/// Begin using this font
bool BeginFont(const wxFont& font);
/// End using a font
bool EndFont() { return EndStyle(); }
/// Begin using this colour
bool BeginTextColour(const wxColour& colour);
/// End using a colour
bool EndTextColour() { return EndStyle(); }
/// Begin using alignment
bool BeginAlignment(wxTextAttrAlignment alignment);
/// End alignment
bool EndAlignment() { return EndStyle(); }
/// Begin left indent
bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0);
/// End left indent
bool EndLeftIndent() { return EndStyle(); }
/// Begin right indent
bool BeginRightIndent(int rightIndent);
/// End right indent
bool EndRightIndent() { return EndStyle(); }
/// Begin paragraph spacing
bool BeginParagraphSpacing(int before, int after);
/// End paragraph spacing
bool EndParagraphSpacing() { return EndStyle(); }
/// Begin line spacing
bool BeginLineSpacing(int lineSpacing);
/// End line spacing
bool EndLineSpacing() { return EndStyle(); }
/// Begin numbered bullet
bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD);
/// End numbered bullet
bool EndNumberedBullet() { return EndStyle(); }
/// Begin symbol bullet
bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL);
/// End symbol bullet
bool EndSymbolBullet() { return EndStyle(); }
/// Begin standard bullet
bool BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD);
/// End standard bullet
bool EndStandardBullet() { return EndStyle(); }
/// Begin named character style
bool BeginCharacterStyle(const wxString& characterStyle);
/// End named character style
bool EndCharacterStyle() { return EndStyle(); }
/// Begin named paragraph style
bool BeginParagraphStyle(const wxString& paragraphStyle);
/// End named character style
bool EndParagraphStyle() { return EndStyle(); }
/// Begin named list style
bool BeginListStyle(const wxString& listStyle, int level = 1, int number = 1);
/// End named character style
bool EndListStyle() { return EndStyle(); }
/// Begin URL
bool BeginURL(const wxString& url, const wxString& characterStyle = wxEmptyString);
/// End URL
bool EndURL() { return EndStyle(); }
// Event handling
/// Add an event handler
bool AddEventHandler(wxEvtHandler* handler);
/// Remove an event handler
bool RemoveEventHandler(wxEvtHandler* handler, bool deleteHandler = false);
/// Clear event handlers
void ClearEventHandlers();
/// Send event to event handlers. If sendToAll is true, will send to all event handlers,
/// otherwise will stop at the first successful one.
bool SendEvent(wxEvent& event, bool sendToAll = true);
// Implementation
/// Copy
void Copy(const wxRichTextBuffer& obj);
/// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextBuffer(*this); }
/// Submit command to insert paragraphs
bool InsertParagraphsWithUndo(long pos, const wxRichTextParagraphLayoutBox& paragraphs, wxRichTextCtrl* ctrl, int flags = 0);
/// Submit command to insert the given text
bool InsertTextWithUndo(long pos, const wxString& text, wxRichTextCtrl* ctrl, int flags = 0);
/// Submit command to insert a newline
bool InsertNewlineWithUndo(long pos, wxRichTextCtrl* ctrl, int flags = 0);
/// Submit command to insert the given image
bool InsertImageWithUndo(long pos, const wxRichTextImageBlock& imageBlock, wxRichTextCtrl* ctrl, int flags = 0);
/// Submit command to delete this range
bool DeleteRangeWithUndo(const wxRichTextRange& range, wxRichTextCtrl* ctrl);
/// Mark modified
void Modify(bool modify = true) { m_modified = modify; }
bool IsModified() const { return m_modified; }
/// Get the style that is appropriate for a new paragraph at this position.
/// If the previous paragraph has a paragraph style name, look up the next-paragraph
/// style.
wxTextAttr GetStyleForNewParagraph(long pos, bool caretPosition = false, bool lookUpNewParaStyle=false) const;
/// Dumps contents of buffer for debugging purposes
virtual void Dump();
virtual void Dump(wxTextOutputStream& stream) { wxRichTextParagraphLayoutBox::Dump(stream); }
/// Returns the file handlers
static wxList& GetHandlers() { return sm_handlers; }
/// Adds a handler to the end
static void AddHandler(wxRichTextFileHandler *handler);
/// Inserts a handler at the front
static void InsertHandler(wxRichTextFileHandler *handler);
/// Removes a handler
static bool RemoveHandler(const wxString& name);
/// Finds a handler by name
static wxRichTextFileHandler *FindHandler(const wxString& name);
/// Finds a handler by extension and type
static wxRichTextFileHandler *FindHandler(const wxString& extension, wxRichTextFileType imageType);
/// Finds a handler by filename or, if supplied, type
static wxRichTextFileHandler *FindHandlerFilenameOrType(const wxString& filename,
wxRichTextFileType imageType);
/// Finds a handler by type
static wxRichTextFileHandler *FindHandler(wxRichTextFileType imageType);
/// Gets a wildcard incorporating all visible handlers. If 'types' is present,
/// will be filled with the file type corresponding to each filter. This can be
/// used to determine the type to pass to LoadFile given a selected filter.
static wxString GetExtWildcard(bool combine = false, bool save = false, wxArrayInt* types = NULL);
/// Clean up handlers
static void CleanUpHandlers();
/// Initialise the standard handlers
static void InitStandardHandlers();
/// Get renderer
static wxRichTextRenderer* GetRenderer() { return sm_renderer; }
/// Set renderer, deleting old one
static void SetRenderer(wxRichTextRenderer* renderer);
/// Minimum margin between bullet and paragraph in 10ths of a mm
static int GetBulletRightMargin() { return sm_bulletRightMargin; }
static void SetBulletRightMargin(int margin) { sm_bulletRightMargin = margin; }
/// Factor to multiply by character height to get a reasonable bullet size
static float GetBulletProportion() { return sm_bulletProportion; }
static void SetBulletProportion(float prop) { sm_bulletProportion = prop; }
/// Scale factor for calculating dimensions
double GetScale() const { return m_scale; }
void SetScale(double scale) { m_scale = scale; }
protected:
/// Command processor
wxCommandProcessor* m_commandProcessor;
/// Table storing fonts
wxRichTextFontTable m_fontTable;
/// Has been modified?
bool m_modified;
/// Collapsed command stack
int m_batchedCommandDepth;
/// Name for collapsed command
wxString m_batchedCommandsName;
/// Current collapsed command accumulating actions
wxRichTextCommand* m_batchedCommand;
/// Whether to suppress undo
int m_suppressUndo;
/// Style sheet, if any
wxRichTextStyleSheet* m_styleSheet;
/// List of event handlers that will be notified of events
wxList m_eventHandlers;
/// Stack of attributes for convenience functions
wxList m_attributeStack;
/// Flags to be passed to handlers
int m_handlerFlags;
/// File handlers
static wxList sm_handlers;
/// Renderer
static wxRichTextRenderer* sm_renderer;
/// Minimum margin between bullet and paragraph in 10ths of a mm
static int sm_bulletRightMargin;
/// Factor to multiply by character height to get a reasonable bullet size
static float sm_bulletProportion;
/// Scaling factor in use: needed to calculate correct dimensions when printing
double m_scale;
};
/*!
* The command identifiers
*
*/
enum wxRichTextCommandId
{
wxRICHTEXT_INSERT,
wxRICHTEXT_DELETE,
wxRICHTEXT_CHANGE_STYLE
};
/*!
* Command classes for undo/redo
*
*/
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction;
class WXDLLIMPEXP_RICHTEXT wxRichTextCommand: public wxCommand
{
public:
// Ctor for one action
wxRichTextCommand(const wxString& name, wxRichTextCommandId id, wxRichTextBuffer* buffer,
wxRichTextCtrl* ctrl, bool ignoreFirstTime = false);
// Ctor for multiple actions
wxRichTextCommand(const wxString& name);
virtual ~wxRichTextCommand();
bool Do();
bool Undo();
void AddAction(wxRichTextAction* action);
void ClearActions();
wxList& GetActions() { return m_actions; }
protected:
wxList m_actions;
};
/*!
* wxRichTextAction class declaration
* There can be more than one action in a command.
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextAction: public wxObject
{
public:
wxRichTextAction(wxRichTextCommand* cmd, const wxString& name, wxRichTextCommandId id, wxRichTextBuffer* buffer,
wxRichTextCtrl* ctrl, bool ignoreFirstTime = false);
virtual ~wxRichTextAction();
bool Do();
bool Undo();
/// Update the control appearance
void UpdateAppearance(long caretPosition, bool sendUpdateEvent = false,
wxArrayInt* optimizationLineCharPositions = NULL, wxArrayInt* optimizationLineYPositions = NULL, bool isDoCmd = true);
/// Replace the buffer paragraphs with the given fragment.
void ApplyParagraphs(const wxRichTextParagraphLayoutBox& fragment);
/// Get the fragments
wxRichTextParagraphLayoutBox& GetNewParagraphs() { return m_newParagraphs; }
wxRichTextParagraphLayoutBox& GetOldParagraphs() { return m_oldParagraphs; }
/// Calculate arrays for refresh optimization
void CalculateRefreshOptimizations(wxArrayInt& optimizationLineCharPositions, wxArrayInt& optimizationLineYPositions);
/// Set/get the position used for e.g. insertion
void SetPosition(long pos) { m_position = pos; }
long GetPosition() const { return m_position; }
/// Set/get the range for e.g. deletion
void SetRange(const wxRichTextRange& range) { m_range = range; }
const wxRichTextRange& GetRange() const { return m_range; }
/// Get name
const wxString& GetName() const { return m_name; }
protected:
// Action name
wxString m_name;
// Buffer
wxRichTextBuffer* m_buffer;
// Control
wxRichTextCtrl* m_ctrl;
// Stores the new paragraphs
wxRichTextParagraphLayoutBox m_newParagraphs;
// Stores the old paragraphs
wxRichTextParagraphLayoutBox m_oldParagraphs;
// The affected range
wxRichTextRange m_range;
// The insertion point for this command
long m_position;
// Ignore 1st 'Do' operation because we already did it
bool m_ignoreThis;
// The command identifier
wxRichTextCommandId m_cmdId;
};
/*!
* Handler flags
*/
// Include style sheet when loading and saving
#define wxRICHTEXT_HANDLER_INCLUDE_STYLESHEET 0x0001
// Save images to memory file system in HTML handler
#define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY 0x0010
// Save images to files in HTML handler
#define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_FILES 0x0020
// Save images as inline base64 data in HTML handler
#define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_BASE64 0x0040
// Don't write header and footer (or BODY), so we can include the fragment
// in a larger document
#define wxRICHTEXT_HANDLER_NO_HEADER_FOOTER 0x0080
// Convert the more common face names to names that will work on the current platform
// in a larger document
#define wxRICHTEXT_HANDLER_CONVERT_FACENAMES 0x0100
/*!
* wxRichTextFileHandler
* Base class for file handlers
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler: public wxObject
{
DECLARE_CLASS(wxRichTextFileHandler)
public:
wxRichTextFileHandler(const wxString& name = wxEmptyString, const wxString& ext = wxEmptyString, int type = 0)
: m_name(name), m_extension(ext), m_type(type), m_flags(0), m_visible(true)
{ }
#if wxUSE_STREAMS
bool LoadFile(wxRichTextBuffer *buffer, wxInputStream& stream)
{ return DoLoadFile(buffer, stream); }
bool SaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream)
{ return DoSaveFile(buffer, stream); }
#endif
#if wxUSE_FFILE && wxUSE_STREAMS
virtual bool LoadFile(wxRichTextBuffer *buffer, const wxString& filename);
virtual bool SaveFile(wxRichTextBuffer *buffer, const wxString& filename);
#endif // wxUSE_STREAMS && wxUSE_STREAMS
/// Can we handle this filename (if using files)? By default, checks the extension.
virtual bool CanHandle(const wxString& filename) const;
/// Can we save using this handler?
virtual bool CanSave() const { return false; }
/// Can we load using this handler?
virtual bool CanLoad() const { return false; }
/// Should this handler be visible to the user?
virtual bool IsVisible() const { return m_visible; }
virtual void SetVisible(bool visible) { m_visible = visible; }
/// The name of the nandler
void SetName(const wxString& name) { m_name = name; }
wxString GetName() const { return m_name; }
/// The default extension to recognise
void SetExtension(const wxString& ext) { m_extension = ext; }
wxString GetExtension() const { return m_extension; }
/// The handler type
void SetType(int type) { m_type = type; }
int GetType() const { return m_type; }
/// Flags controlling how loading and saving is done
void SetFlags(int flags) { m_flags = flags; }
int GetFlags() const { return m_flags; }
/// Encoding to use when saving a file. If empty, a suitable encoding is chosen
void SetEncoding(const wxString& encoding) { m_encoding = encoding; }
const wxString& GetEncoding() const { return m_encoding; }
protected:
#if wxUSE_STREAMS
virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream) = 0;
virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream) = 0;
#endif
wxString m_name;
wxString m_encoding;
wxString m_extension;
int m_type;
int m_flags;
bool m_visible;
};
/*!
* wxRichTextPlainTextHandler
* Plain text handler
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextPlainTextHandler: public wxRichTextFileHandler
{
DECLARE_CLASS(wxRichTextPlainTextHandler)
public:
wxRichTextPlainTextHandler(const wxString& name = wxT("Text"),
const wxString& ext = wxT("txt"),
wxRichTextFileType type = wxRICHTEXT_TYPE_TEXT)
: wxRichTextFileHandler(name, ext, type)
{ }
/// Can we save using this handler?
virtual bool CanSave() const { return true; }
/// Can we load using this handler?
virtual bool CanLoad() const { return true; }
protected:
#if wxUSE_STREAMS
virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream);
virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream);
#endif
};
#if wxUSE_DATAOBJ
/*!
* The data object for a wxRichTextBuffer
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextBufferDataObject: public wxDataObjectSimple
{
public:
// ctor doesn't copy the pointer, so it shouldn't go away while this object
// is alive
wxRichTextBufferDataObject(wxRichTextBuffer* richTextBuffer = NULL);
virtual ~wxRichTextBufferDataObject();
// after a call to this function, the buffer is owned by the caller and it
// is responsible for deleting it
wxRichTextBuffer* GetRichTextBuffer();
// Returns the id for the new data format
static const wxChar* GetRichTextBufferFormatId() { return ms_richTextBufferFormatId; }
// base class pure virtuals
virtual wxDataFormat GetPreferredFormat(Direction dir) const;
virtual size_t GetDataSize() const;
virtual bool GetDataHere(void *pBuf) const;
virtual bool SetData(size_t len, const void *buf);
// prevent warnings
virtual size_t GetDataSize(const wxDataFormat&) const { return GetDataSize(); }
virtual bool GetDataHere(const wxDataFormat&, void *buf) const { return GetDataHere(buf); }
virtual bool SetData(const wxDataFormat&, size_t len, const void *buf) { return SetData(len, buf); }
private:
wxDataFormat m_formatRichTextBuffer; // our custom format
wxRichTextBuffer* m_richTextBuffer; // our data
static const wxChar* ms_richTextBufferFormatId; // our format id
};
#endif
/*!
* wxRichTextRenderer isolates common drawing functionality
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextRenderer: public wxObject
{
public:
wxRichTextRenderer() {}
virtual ~wxRichTextRenderer() {}
/// Draw a standard bullet, as specified by the value of GetBulletName
virtual bool DrawStandardBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& attr, const wxRect& rect) = 0;
/// Draw a bullet that can be described by text, such as numbered or symbol bullets
virtual bool DrawTextBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& attr, const wxRect& rect, const wxString& text) = 0;
/// Draw a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName
virtual bool DrawBitmapBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& attr, const wxRect& rect) = 0;
/// Enumerate the standard bullet names currently supported
virtual bool EnumerateStandardBulletNames(wxArrayString& bulletNames) = 0;
};
/*!
* wxRichTextStdRenderer: standard renderer
*/
class WXDLLIMPEXP_RICHTEXT wxRichTextStdRenderer: public wxRichTextRenderer
{
public:
wxRichTextStdRenderer() {}
/// Draw a standard bullet, as specified by the value of GetBulletName
virtual bool DrawStandardBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& attr, const wxRect& rect);
/// Draw a bullet that can be described by text, such as numbered or symbol bullets
virtual bool DrawTextBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& attr, const wxRect& rect, const wxString& text);
/// Draw a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName
virtual bool DrawBitmapBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& attr, const wxRect& rect);
/// Enumerate the standard bullet names currently supported
virtual bool EnumerateStandardBulletNames(wxArrayString& bulletNames);
};
/*!
* Utilities
*
*/
inline bool wxRichTextHasStyle(int flags, int style)
{
return ((flags & style) == style);
}
/// Compare two attribute objects
WXDLLIMPEXP_RICHTEXT bool wxTextAttrEq(const wxTextAttr& attr1, const wxTextAttr& attr2);
WXDLLIMPEXP_RICHTEXT bool wxTextAttrEq(const wxTextAttr& attr1, const wxTextAttr& attr2);
/// Compare two attribute objects, but take into account the flags
/// specifying attributes of interest.
WXDLLIMPEXP_RICHTEXT bool wxTextAttrEqPartial(const wxTextAttr& attr1, const wxTextAttr& attr2, int flags);
/// Apply one style to another
WXDLLIMPEXP_RICHTEXT bool wxRichTextApplyStyle(wxTextAttr& destStyle, const wxTextAttr& style, wxTextAttr* compareWith = NULL);
// Remove attributes
WXDLLIMPEXP_RICHTEXT bool wxRichTextRemoveStyle(wxTextAttr& destStyle, const wxTextAttr& style);
/// Combine two bitlists
WXDLLIMPEXP_RICHTEXT bool wxRichTextCombineBitlists(int& valueA, int valueB, int& flagsA, int flagsB);
/// Compare two bitlists
WXDLLIMPEXP_RICHTEXT bool wxRichTextBitlistsEqPartial(int valueA, int valueB, int flags);
/// Split into paragraph and character styles
WXDLLIMPEXP_RICHTEXT bool wxRichTextSplitParaCharStyles(const wxTextAttr& style, wxTextAttr& parStyle, wxTextAttr& charStyle);
/// Compare tabs
WXDLLIMPEXP_RICHTEXT bool wxRichTextTabsEq(const wxArrayInt& tabs1, const wxArrayInt& tabs2);
/// Convert a decimal to Roman numerals
WXDLLIMPEXP_RICHTEXT wxString wxRichTextDecimalToRoman(long n);
WXDLLIMPEXP_RICHTEXT void wxRichTextModuleInit();
#endif
// wxUSE_RICHTEXT
#endif
// _WX_RICHTEXTBUFFER_H_
|
#include "turncomponenton.h"
TurnComponentOn::TurnComponentOn(Room *r)
{
_room = r;
}
void TurnComponentOn::execute(std::string s)
{
_room->turnOnComponent(s);
}
|
#include "PoolConnections.h"
namespace database {
std::unique_ptr<PoolConnections> PoolConnections::instance_(nullptr);
std::mutex PoolConnections::my_mutex_;
PoolConnections::PoolConnections() {
for (std::size_t i = 0; i < POOL_SIZE; ++i) {
Connection conn;
pool_.emplace_back(std::pair<Connection, int> (conn, FREE_CONN));
}
}
PoolConnections* PoolConnections::GetInstance() {
std::lock_guard<std::mutex> lock(my_mutex_);
if (instance_ == nullptr) {
instance_ = std::unique_ptr<PoolConnections>(new PoolConnections());
}
return instance_.get();
}
int PoolConnections::SetParams(const std::string& filename = "config.txt") {
std::lock_guard<std::mutex> lock(my_mutex_);
FileHandler fh;
config_params_ = fh.ParseConfig(filename);
return static_cast<int>(config_params_.status_code);
}
int PoolConnections::GetConnection(Connection& conn) {
std::lock_guard<std::mutex> lock(my_mutex_);
if (pool_.empty()) {
return false;
}
std::size_t old_size = pool_.size();
int ind = 0;
for (auto & elem : pool_) {
if (!elem.first.IsOpen() && elem.second == FREE_CONN) {
bool out = elem.first.Connect(config_params_.url, config_params_.password,
config_params_.user, config_params_.database);
if (out) {
conn = std::move(elem.first);
elem.second = BUSY_CONN;
return ind;
}
else {
return -1;
}
}
++ind;
}
if (!GrowPool()) {
std::cout << "You've reached max pool size!" << std::endl;
return false;
}
bool out = pool_[old_size].first.Connect(config_params_.url, config_params_.password,
config_params_.user, config_params_.database);
if (out) {
conn = std::move(pool_[old_size].first);
pool_[old_size].second = BUSY_CONN;
return static_cast<int>(old_size);
}
else {
return -1;
}
}
void PoolConnections::ReturnConnection(Connection& conn, int& ind) {
pool_[ind].first = std::move(conn);
pool_[ind].first.Close();
pool_[ind].second = FREE_CONN;
ind = -1;
}
bool PoolConnections::GrowPool() {
std::size_t pool_size = pool_.size();
if (pool_size >= MAX_POOL_SIZE) {
return false;
}
pool_.resize(2 * pool_size);
std::generate(pool_.begin(), pool_.end(), [](){
Connection conn;
return std::make_pair(conn, FREE_CONN);
});
return true;
}
} // namespace database
|
#include "span/io/streams/Filter.hh"
#if __has_include(<string_view>)
#include <string_view>
using std::string_view;
#else
#include <experimental/string_view>
using std::experimental::string_view;
#endif
#include "span/Common.hh"
#include "span/exceptions/Assert.hh"
namespace span {
namespace io {
namespace streams {
int64 MutatingFilterStream::seek(int64 offset, Anchor anchor) {
SPAN_NOT_REACHED("MutatingFilterStream::seek");
}
int64 MutatingFilterStream::size() {
SPAN_NOT_REACHED("MutatingFilterStream::size");
}
void MutatingFilterStream::truncate(int64 size) {
SPAN_NOT_REACHED("MutatingFilterStream::truncate");
}
ptrdiff_t MutatingFilterStream::find(char delim, size_t sanitySize, bool throwIfNotFound) {
SPAN_NOT_REACHED("MutatingFilterStream::find");
}
ptrdiff_t MutatingFilterStream::find(const string_view str, size_t sanitySize, bool throwIfNotFound) {
SPAN_NOT_REACHED("MutatingFilterStream::find");
}
void MutatingFilterStream::unread(const Buffer *buff, size_t len) {
SPAN_NOT_REACHED("MutatingFilterStream::unread");
}
} // namespace streams
} // namespace io
} // namespace span
|
#pragma once
#include "client\Graphics\Shader.h"
#include "SGeode.h"
#include <vector>
using namespace std;
#define POSITION_LOCATION 0
#define NORMAL_LOCATION 1
#define OFFSET_LOCATION 2
#define NOISES_LOCATION 3
#define SCALES_LOCATION 4
#define M_PI 3.14159265359
#define M_PI_2 1.57079632679
class Clouds : public SGeode {
private:
Shader *shader;
//Cloud Shape
float radius;
unsigned int rings;
unsigned int sectors;
glm::vec3 center;
vector<glm::vec3> vertices;
vector<glm::vec3> normals;
vector<GLuint> indices;
//cloud instance rendering
vector<glm::vec3> offsets;
vector<GLfloat> noises;
vector<GLfloat> scales;
//Cloud time
float prevTime = 0;
float currCloudTime = 0;
float lastCloudCreated = 0;
//location
GLuint modelLoc;
GLuint viewLoc;
GLuint projLoc;
GLuint expansionDirectionLoc;
GLuint timeLoc;
/* Render data */
GLuint VAO, EBO;
GLuint verticesBuffer;
GLuint normalsBuffer;
GLuint offsetsBuffer;
GLuint noiseBuffer, scaleBuffer;
void setupCloud();
void setUpBuffer();
void setupUniformLoc();
void bindBuffers();
//cloud sky creation
const int NUMBER_OF_SPHERES = 2000;
const int SPHERES_PER_CLOUD = 1;
const float FLOATING_SPEED_PER_SECOND = 30.0f;
const float SKYBOX_LENGTH = 1000; //pass in?
const glm::vec3 INITIAL_EXPANSION_DIRECTION = glm::vec3(1.0f, 0.0f, 1.0f);
const float MIN_CLOUD_CREATION_DISTANCE_SECONDS = .05f;
const float SPAWN_CLOUD_LIKELYHOOD = 0.35f * SPHERES_PER_CLOUD / NUMBER_OF_SPHERES;
const float CLOUD_PLANE_HEIGHT = SKYBOX_LENGTH * 0.1f;
const float NOISE_FACTOR = 100;
const float MAX_CLOUD_SCALE = 10.0f;
const float MIN_CLOUD_SCALE = 4.0f;
const float MORPHING_SPEED_PER_SECOND = .1f;
glm::vec3 expansionDirection = glm::vec3(1.0f, 0.0f, 0.0f);
void updateScene(float passedSeconds, float totalPassedTime);
void addCloud(int numberOfSpheres);
void addSphere(glm::vec3 offset);
void createCloudPlane();
public:
Clouds(Shader *shader, float radius, int rings, int sectors, glm::vec3 center=glm::vec3(0.f,0.f,0.f));
~Clouds();
virtual void update(UpdateData&);
virtual void draw(DrawData&);
};
|
// distance.cpp
// increment counter variable with ++ operator
// uses unnamed temporary object
#include <iostream>
using namespace std;
#include "distance.h"
//Display as 2'-9" format
void Distance::ShowDist() const
{
std::cout << feet() << "\'- " << inches() << "\"" << std::endl;
}
// Create operator to combine two distances
Distance Distance::operator + (Distance rhs) const
{
int feet = feet_ + rhs.feet_;
float inches = inches_ + rhs.inches_;
// Update if more than 12 inches
if (inches > 12.0)
{
inches -= 12.0;
feet++;
}
return Distance(feet, inches);
}
// Define "<<"" operator
// returning ref to output stream "os"
// Do not include '\n' or endl, let user define
std::ostream& operator << (std::ostream& os, const Distance& distance)
{
os << "feet: " << distance.feet_ << " inches: " << distance.inches_;
return os;
}
// Define "-" operator
Distance Distance::operator - (Distance rhs) const
{
int ft = feet_ - rhs.feet_;
float in = 0;
// Update if less than 12 inches
if (inches_ < rhs.inches_)
{
ft -= 1;
in = (inches_ +12) - rhs.inches_;
}
return Distance(ft, in);
}
// Update function
void Distance::update_distance(int ft, float in)
{
set_feet(ft);
set_inches(in);
}
|
/*
* Copyright (c) 2012 Joey Yore
*
* 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.
*/
#ifndef HMC5883L_H
#define HMC5883L_H
#include "_I2C.h"
#include "util.h"
#include <iostream>
using namespace std;
#define HMC5883L_ID 0x1E
#define HMC5883L_IDR 0x3D
#define HMC5883L_IDW 0x3C
//Register Addresses
#define HMC5883L_CONFIG_A 0x00
#define HMC5883L_CONFIG_B 0x01
#define HMC5883L_MODE 0x02
#define HMC5883L_DATA_X_MSB 0x03
#define HMC5883L_DATA_X_LSB 0x04
#define HMC5883L_DATA_Z_MSB 0x05
#define HMC5883L_DATA_Z_LSB 0x06
#define HMC5883L_DATA_Y_MSB 0x07
#define HMC5883L_DATA_Y_LSB 0x08
#define HMC5883L_STATUS 0x09
#define HMC5883L_ID_A 0x0A
#define HMC5883L_ID_B 0x0B
#define HMC5883L_ID_C 0x0C
//Samples to Avg - Part of Config A
#define HMC5883L_SAMPLES_AVG_1 0x00
#define HMC5883L_SAMPLES_AVG_2 0x01
#define HMC5883L_SAMPLES_AVG_4 0x02
#define HMC5883L_SAMPLES_AVG_8 0x03
//Data Output Rate (Hz) - Part of Config A
#define HMC5883L_OUTPUT_RATE_0_75 0x00
#define HMC5883L_OUTPUT_RATE_1_5 0x01
#define HMC5883L_OUTPUT_RATE_3_0 0x02
#define HMC5883L_OUTPUT_RATE_7_5 0x03
#define HMC5883L_OUTPUT_RATE_15_0 0x04
#define HMC5883L_OUTPUT_RATE_30_0 0x05
#define HMC5883L_OUTPUT_RATE_75_0 0x06
//Measurement Mode - Part of Config A
#define HMC5883L_MEASURE_MODE_NORM 0x00
#define HMC5883L_MEASURE_MODE_POS_BIAS 0x01
#define HMC5883L_MEASURE_MODE_NEG_BIAS 0x02
//Gain Configuration (LSB/Gauss) - For Config B
#define HMC5883L_GAIN_1370 0x00 //Field Range: +-0.88 Ga
#define HMC5883L_GAIN_1090 0x01 //Field Range: +-1.3 Ga
#define HMC5883L_GAIN_820 0x02 //Field Range: +-1.9 Ga
#define HMC5883L_GAIN_660 0x03 //Field Range: +-2.5 Ga
#define HMC5883L_GAIN_440 0x04 //Field Range: +-4.0 Ga
#define HMC5883L_GAIN_390 0x05 //Field Range: +-4.7 Ga
#define HMC5883L_GAIN_330 0x06 //Field Range: +-5.6 Ga
#define HMC5883L_GAIN_230 0x07 //Field Range: +-8.1 Ga
//Chip Mode
#define HMC5883L_MODE_CONTINUOUS_MEASUREMENT 0x00
#define HMC5883L_MODE_SINGLE_MEASUREMENT 0x01
#define HMC5883L_MODE_IDLE 0x02
#define HMC5883L_MODE_IDLE2 0x03
//Status
#define HMC5883L_STATUS_LOCK 0x02
#define HMC5883L_STATUS_RDY 0x01
class HMC5883L : public m_I2C {
private:
int iscale;
public:
//Constructors
HMC5883L(PinName a, PinName b);
//Destructors
~HMC5883L();
//Methods
int get_config_a(unsigned char &MA, unsigned char &DO, unsigned char &MS);
int set_config_a(unsigned char MA, unsigned char DO, unsigned char MS);
int get_config_b(unsigned char &GN);
int set_config_b(unsigned char GN);
int get_measurement_mode(unsigned char &mode);
int set_measurement_mode(unsigned char mode);
int get_data_x_raw(short int &x);
int get_data_y_raw(short int &y);
int get_data_z_raw(short int &z);
int get_status(unsigned char &status);
int get_id_a(unsigned char &id);
int get_id_b(unsigned char &id);
int get_id_c(unsigned char &id);
int set_register_pointer(unsigned char ®);
};
HMC5883L::HMC5883L(PinName a, PinName b) : m_I2C(2,HMC5883L_IDR,HMC5883L_IDW,a,b) {
}
HMC5883L::~HMC5883L() {
}
int HMC5883L::get_config_a(unsigned char &MA, unsigned char &DO, unsigned char &MS) {
unsigned char reg;
int status = read_byte(HMC5883L_CONFIG_A,reg);
MA = (reg >> 5);
DO = ((reg & 0x1F) >> 2);
MS = (reg & 0x3);
return status;
}
int HMC5883L::set_config_a(unsigned char MA, unsigned char DO, unsigned char MS) {
unsigned char reg = 0x00;
reg |= (MA & 0x03) << 5;
reg |= (DO & 0x07) << 2;
reg |= (MA & 0x03);
return write_byte(HMC5883L_CONFIG_A,reg);
}
int HMC5883L::get_config_b(unsigned char &GN) {
int status = read_byte(HMC5883L_CONFIG_B,GN);
GN >>= 5;
return status;
}
int HMC5883L::set_config_b(unsigned char GN) {
unsigned char reg = GN << 5;
return write_byte(HMC5883L_CONFIG_B,reg);
}
int HMC5883L::get_measurement_mode(unsigned char &mode) {
return read_byte(HMC5883L_MODE,mode);
}
int HMC5883L::set_measurement_mode(unsigned char mode) {
return write_byte(HMC5883L_MODE,mode);
}
int HMC5883L::get_data_x_raw(short int &x) {
unsigned char lsb = 0;
unsigned char msb = 0;
int status = read_byte(HMC5883L_DATA_X_MSB,msb);
status += read_byte(HMC5883L_DATA_X_LSB,lsb);
x = ((short int)msb << 8) | lsb;
return status;
}
int HMC5883L::get_data_y_raw(short int &y) {
unsigned char lsb = 0;
unsigned char msb = 0;
int status = read_byte(HMC5883L_DATA_Y_MSB,msb);
status += read_byte(HMC5883L_DATA_Y_LSB,lsb);
y = ((short int)msb << 8) | lsb;
return status;
}
int HMC5883L::get_data_z_raw(short int &z) {
unsigned char lsb = 0;
unsigned char msb = 0;
int status = read_byte(HMC5883L_DATA_Z_MSB,msb);
status += read_byte(HMC5883L_DATA_Z_LSB,lsb);
z = ((short int)msb << 8) | lsb;
return status;
}
int HMC5883L::get_status(unsigned char &status) {
return read_byte(HMC5883L_STATUS,status);
}
int HMC5883L::get_id_a(unsigned char &id) {
return read_byte(HMC5883L_ID_A,id);
}
int HMC5883L::get_id_b(unsigned char &id) {
return read_byte(HMC5883L_ID_B,id);
}
int HMC5883L::get_id_c(unsigned char &id){
return read_byte(HMC5883L_ID_C,id);
}
double HMC5883L_scale_output(short int v) {
return (double)v/1090;
}
#endif
|
#include <iostream>
using namespace std;
int main()
{
int n, s;
cin >> n;
int a[n];
for (int i=0; i<n; ++i){
a[i]=0;
}
for (int i=0; i<n; i++)
{
cin >> s;
a[s]++;
}
int tong =0;
for (int i=0; i<10; i++) {
if (a[i]>0){
tong++;
break;
}
}
if (tong==0){
cout << "No";
} else {
cout << "Yes";
}
}
|
#include "NCK.h"
#include "..\MyLog.h"
#include <string.h>
#define ErrorMsg Shim::Logging::PrintLog
#define MAX_G_CODE_BLOCK 256
#define MAX_G_CODE_LENGTH 256
namespace Shim
{
namespace CNC
{
namespace NCK
{
namespace Interpreter
{
static Queue<char*> G_Code_Buffer(MAX_G_CODE_BLOCK);
static bool bRemain = false;
void Interpreter(void* pv);
int Input_G_Code(char* G_Code);
int Input_G_Code(wchar_t* G_Code);
void Clear();
}
namespace Interpreter
{
void Interpreter(void* pv)
{
static G_Code_Data G_Code_Res;
char** ppCode;
pv=pv;
do{
if(bRemain)
{
if(Interpolator::Input_G_Code_Data(&G_Code_Res)==0)
{
bRemain = false;
}else
{
return;
}
}
if(!bRemain)
{
ppCode = G_Code_Buffer.front();
if(ppCode == NULL) return;
G_Code_Buffer.pop();
Interpreter(*ppCode, &G_Code_Res);
delete *ppCode;
if( G_Code_Res.err != Error::ERR_SUCCESS )
{
ErrorMsg("G_Code 해석기 에러, ErrorCode : 0x%x\n", G_Code_Res.err);
//printf("G_Code 해석기 에러, ErrorCode : %x\n", err);
if( G_Code_Res.err & Error::ERR_NO_POSITION )
{
ErrorMsg("입력된 좌표가 없습니다. Group과 FeedRate만 변경하고 아무 동작도 하지 않습니다.\n");
return; // 입력된 좌표가 없으면 Group과 Feed만 저장하고 버림.
}
}
else bRemain = true;
}
}while(bRemain);
// printf("G : %2d, F : %.2f\n", G_Code_Res.Group, G_Code_Res.FeedRate);
// printf("SX : %.2f, SY : %.2f, SZ : %.2f\n", G_Code_Res.StartPos.x, G_Code_Res.StartPos.y, G_Code_Res.StartPos.z);
// printf("DX : %.2f, DY : %.2f, DZ : %.2f\n", G_Code_Res.EndPos.x, G_Code_Res.EndPos.y, G_Code_Res.EndPos.z);
}
int Input_G_Code(char* G_Code)
{
char* p;// = new char[MAX_G_CODE_LENGTH];
bool bEnd = false;
int i, res=0;
for(i=0; !bEnd ; ++i)
{
switch(G_Code[i])
{
case '\0' : bEnd = true;
case ';' :
case '\n' :
p = new char[MAX_G_CODE_LENGTH];
G_Code[i] = '\0';
strcpy(p, G_Code);
if( bEnd )
{
p[ strlen(p)+1 ] = '\0';
p[ strlen(p) ] = VK_ESC;
}
res = G_Code_Buffer.push(&p);
if( res != 0 )
{
delete p;
return res;
}else
{
G_Code += (i+1);
}
i=0;
break;
}
}
return res;
}
int Input_G_Code(wchar_t* G_Code)
{
char temp[MAX_G_CODE_LENGTH]={0,};
int i;
for(i=0; i<MAX_G_CODE_LENGTH && G_Code[i] != '\0'; ++i)
{
temp[i] = (char)G_Code[i];
}
return Input_G_Code(temp);
}
void Clear()
{
char** ppCode;
Clear2();
bRemain = FALSE;
do{
ppCode = G_Code_Buffer.front();
if(ppCode != NULL)
delete *ppCode;
}while(ppCode != NULL);
}
////////////
}//Interpreter
}//NCK
}//CNC
}//Shim
|
#include "DUIPopupWindow.h"
#include "DUIDdb.h"
#include "DUIToolBar.h"
#if WINVER < 0x0500
#define COMPILE_MULTIMON_STUBS
#include <multimon.h>
#endif // WINVER < 0x0500
DUI_BGN_NAMESPCE
//////////////// CMinMaxInfo ////////////////////////
CMinMaxInfo::CMinMaxInfo()
{
m_ptMaxTrackSize.x = m_ptMaxTrackSize.y = 0;
m_ptMinTrackSize.x = m_ptMinTrackSize.y = 0;
}
BOOL CMinMaxInfo::IsEmpty() const
{
return m_ptMaxTrackSize.x == 0
&& m_ptMaxTrackSize.y == 0
&& m_ptMinTrackSize.x == 0
&& m_ptMinTrackSize.y == 0;
}
//////////////// CMinMaxInfo ////////////////////////
///////////////////// CDUIPopupWindow ////////////////
CDUIPopupWindow::CDUIPopupWindow()
{
m_nCaptionHeight = 0;
m_dwDUIStyle = 0;
m_pLastFocusControl = NULL;
}
CDUIPopupWindow::~CDUIPopupWindow()
{
}
VOID CDUIPopupWindow::OnDUINotify(const DUINotify& info, BOOL& bHandled)
{
CheckSystemNotification(info, bHandled);
if(!bHandled)
{
theBase::OnDUINotify(info, bHandled);
}
}
VOID CDUIPopupWindow::OnBuilderWindowAttribute(const CDUIString& strAttriName, const CDUIString& strAttriValue)
{
if(strAttriName.compare(_T("nc_style")) == 0)
{
DWORD dwStyle(0);
if(strAttriValue.find(_T("layered")) != -1)
{
dwStyle |= DUI_WS_LAYERED;
}
if(strAttriValue.find(_T("custom_nc")) != -1)
{
dwStyle |= DUI_WS_CUSTOM_NC;
}
if(strAttriValue.find(_T("region_nc")) != -1)
{
dwStyle |= DUI_WS_NC_RGN;
}
if(strAttriValue.find(_T("size_nc")) != -1)
{
dwStyle |= DUI_WS_NC_SIZABLE;
}
SetDUIStyle(0, dwStyle);
}
else if(strAttriName.compare(_T("min_size")) == 0)
{
TCHAR szValue[128] = {0};
lstrcpyn(szValue, strAttriValue.c_str(), sizeof(szValue) / sizeof(TCHAR) - 1);
LPTSTR pstr = szValue;
INT nWidth = _tcstol(pstr, &pstr, 10);
INT nHeight = _tcstol(pstr + 1, &pstr, 10);
m_MinMaxInfo.m_ptMinTrackSize.x = nWidth;
m_MinMaxInfo.m_ptMinTrackSize.y = nHeight;
}
else if(strAttriName.compare(_T("max_size")) == 0)
{
TCHAR szValue[128] = {0};
lstrcpyn(szValue, strAttriValue.c_str(), sizeof(szValue) / sizeof(TCHAR) - 1);
LPTSTR pstr = szValue;
INT nWidth = _tcstol(pstr, &pstr, 10);
INT nHeight = _tcstol(pstr + 1, &pstr, 10);
m_MinMaxInfo.m_ptMaxTrackSize.x = nWidth;
m_MinMaxInfo.m_ptMaxTrackSize.y = nHeight;
}
else if(strAttriName.compare(_T("caption_height")) == 0)
{
SetCaptionHeight(_ttol(strAttriValue.c_str()));
}
else
{
theBase::OnBuilderWindowAttribute(strAttriName, strAttriValue);
}
}
VOID CDUIPopupWindow::SetCaptionHeight(INT nHeight)
{
m_nCaptionHeight = nHeight;
}
BOOL CDUIPopupWindow::PreTranslateMessage(MSG* pMsg)
{
// DUI_DEBUG_MSG(pMsg)
BOOL bHandled(FALSE);
if(pMsg->hwnd == NULL) return FALSE;
if(pMsg->hwnd == m_hWnd)
{
if(!IsNcActivate()) return FALSE;
if(pMsg->message == WM_SYSCHAR)
{
TCHAR cShortcut = (TCHAR)(toupper(pMsg->wParam));
IDUIControl* pControl = m_pRootControl->FindControl(ContorlFromShortcutCallBack
, &cShortcut, FIND_FLAG_VISIBLE | FIND_FLAG_ENABLED | FIND_FLAG_MEFIRST);
if(pControl != NULL)
{
pControl->SetFocus();
pControl->Activate();
bHandled = TRUE;
}
}
else if(pMsg->message == WM_KEYDOWN)
{
OnPreKeyDown(pMsg->message, pMsg->wParam, pMsg->lParam, bHandled);
}
}
if(bHandled) return TRUE;
return theBase::PreTranslateMessage(pMsg);
}
LRESULT CDUIPopupWindow::OnPreKeyDown(UINT, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
bHandled = FALSE;
if(wParam == VK_TAB)
{
if(::GetKeyState(VK_LCONTROL) < 0
|| ::GetKeyState(VK_RCONTROL) < 0) //ctrl+tab
{
bHandled = SetNextTabPage(::GetKeyState(VK_SHIFT) >= 0);
}
else //only tab
{
bHandled = SetNextTabControl(::GetKeyState(VK_SHIFT) >= 0);
}
}
else if(wParam == VK_RETURN)
{
IDUIControl* pControl = GetControlByName(DUI_STR_OK, FALSE);
if(pControl != NULL && m_pFocusControl != pControl)
{
if(m_pFocusControl == NULL
|| !(m_pFocusControl->GetStyle() & CONTROL_STYLE_WANTRETURN))
{
pControl->Activate();
bHandled = TRUE;
}
}
}
else if(wParam == VK_ESCAPE)
{
IDUIControl* pControl = GetControlByName(DUI_STR_CANCEL, FALSE);
if(pControl != NULL)
{
pControl->Activate();
bHandled = TRUE;
}
}
return S_OK;
}
BOOL CDUIPopupWindow::SetNextTabPage(BOOL bForward /* = TRUE */)
{
IDUIControl* pControl = GetControlByInterface(ITabBar);
if(pControl == NULL) return FALSE;
IDUITabBar* pTabBar = (IDUITabBar*)pControl->GetInterface(ITabBar);
DUI_ASSERT(pTabBar != NULL);
return pTabBar->SelectNextItem(bForward, TRUE);
}
BOOL CDUIPopupWindow::SetNextTabControl(BOOL bForward /* = TRUE */)
{
FINDTABINFO info1 = { 0 };
info1.pFocus = m_pFocusControl;
info1.bForward = bForward;
IDUIControl* pControl = m_pRootControl->FindControl(ControlFromTabCallBack
, &info1, FIND_FLAG_VISIBLE | FIND_FLAG_ENABLED | FIND_FLAG_MEFIRST);
if( pControl == NULL )
{
if( bForward )
{
// Wrap around
FINDTABINFO info2 = { 0 };
info2.pFocus = bForward ? NULL : info1.pLast;
info2.bForward = bForward;
pControl = m_pRootControl->FindControl(ControlFromTabCallBack
, &info2, FIND_FLAG_VISIBLE | FIND_FLAG_ENABLED | FIND_FLAG_MEFIRST);
}
else
{
pControl = info1.pLast;
}
}
if( pControl != NULL )
{
pControl->SetFocus(TRUE);
return TRUE;
}
else
{
return FALSE;
}
}
LRESULT CDUIPopupWindow::OnCreate(UINT nMsgType, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
CheckDUIStyle();
IDUIApp* pDUIApp = DUIGetAppInstance();
if(pDUIApp != NULL)
{
CDUIMessageLoop* pMsgLoop = pDUIApp->GetMessageLoop();
pMsgLoop->AddMessageFilter(this);
}
m_pLastFocusControl = NULL;
bHandled = FALSE;
return S_OK;
}
LRESULT CDUIPopupWindow::OnDestroy(UINT nMsgType, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
IDUIApp* pDUIApp = DUIGetAppInstance();
if(pDUIApp != NULL)
{
CDUIMessageLoop* pMsgLoop = pDUIApp->GetMessageLoop();
pMsgLoop->RemoveMessageFilter(this);
}
m_pLastFocusControl = NULL;
bHandled = FALSE;
return S_OK;
}
LRESULT CDUIPopupWindow::OnSize(UINT, WPARAM, LPARAM, BOOL& bHandled)
{
bHandled = FALSE;
if(!IsIconic() && IsDUISetNCRgn())
{
CRefPtr<CDUIFrameBK> pFrameBK = GetCurrentFrameBK();
if(!pFrameBK.IsNull()
&& !pFrameBK->IsEmpty())
{
pFrameBK->SetWinFrameRgn(m_hWnd);
}
}
CheckSysButtonStatus();
return S_OK;
}
LRESULT CDUIPopupWindow::OnSetFocus(UINT, WPARAM, LPARAM, BOOL& bHandled)
{
if(m_pLastFocusControl != NULL)
{
m_pLastFocusControl->SetFocus(TRUE);
}
bHandled = FALSE;
return S_OK;
}
LRESULT CDUIPopupWindow::OnKillFocus(UINT, WPARAM, LPARAM, BOOL& bHandled)
{
if(m_pFocusControl != NULL)
{
m_pLastFocusControl = m_pFocusControl;
}
bHandled = FALSE;
return S_OK;
}
LRESULT CDUIPopupWindow::OnSysCommand(UINT, WPARAM wParam, LPARAM, BOOL& bHandled)
{
bHandled = FALSE;
return S_OK;
}
VOID CDUIPopupWindow::CheckSysButtonStatus()
{
IDUIControl* pMaxBtn = GetControlByName(DUI_SYS_MAX_BTN);
IDUIControl* pRestoreBtn = GetControlByName(DUI_SYS_RESTORE_BTN);
if(IsZoomed())
{
if(pMaxBtn != NULL)
{
pMaxBtn->ModifyStyle(CONTROL_STYLE_VISIBLE, 0);
}
if(pRestoreBtn != NULL)
{
pRestoreBtn->ModifyStyle(0, CONTROL_STYLE_VISIBLE);
}
}
else
{
if(pMaxBtn != NULL)
{
pMaxBtn->ModifyStyle(0, CONTROL_STYLE_VISIBLE);
}
if(pRestoreBtn != NULL)
{
pRestoreBtn->ModifyStyle(CONTROL_STYLE_VISIBLE, 0);
}
}
}
VOID CDUIPopupWindow::CheckSystemNotification(const DUINotify& info, BOOL& bHandled)
{
IDUIControl* pControl = info.pSender;
switch(info.dwMsgType)
{
case WM_NOTIFY_BUTTON_CLICKED:
if(pControl != NULL)
{
const CDUIString& strName = pControl->GetName();
if(strName.compare(DUI_SYS_MIN_BTN) == 0)
{
if(GetStyle()&WS_SYSMENU)
{
PostMessage(WM_SYSCOMMAND, SC_MINIMIZE, 0);
}
else
{
ShowWindow(SW_MINIMIZE);
}
bHandled = TRUE;
}
else if( strName.compare(DUI_SYS_MAX_BTN) == 0)
{
if(GetStyle()&WS_SYSMENU)
PostMessage(WM_SYSCOMMAND, SC_MAXIMIZE, 0);
else
ShowWindow(SW_MAXIMIZE);
bHandled = TRUE;
}
else if( strName.compare(DUI_SYS_RESTORE_BTN) == 0)
{
if(GetStyle()&WS_SYSMENU)
PostMessage(WM_SYSCOMMAND, SC_RESTORE, 0);
else
ShowWindow(SW_RESTORE);
bHandled = TRUE;
}
else if(strName.compare(DUI_SYS_CLOSE_BTN) == 0)
{
if(GetStyle()&WS_SYSMENU)
PostMessage(WM_SYSCOMMAND, SC_CLOSE, 0);
else
PostMessage(WM_CLOSE, 0 , 0);
bHandled = TRUE;
}
}
break;
default:
break;
}
}
DWORD CDUIPopupWindow::GetDUIStyle() const
{
return m_dwDUIStyle;
}
DWORD CDUIPopupWindow::SetDUIStyle(DWORD dwStyleRemove, DWORD dwStyleAdd)
{
DWORD dwNewStyle = (m_dwDUIStyle & ~dwStyleRemove) | dwStyleAdd;
if(m_dwDUIStyle != dwNewStyle)
{
m_dwDUIStyle = dwNewStyle;
CheckDUIStyle();
}
return m_dwDUIStyle;
}
VOID CDUIPopupWindow::SetDUIMinMaxInfo(const CMinMaxInfo& info)
{
m_MinMaxInfo = info;
}
BOOL CDUIPopupWindow::IsNcActivate()
{
return m_bNCActivate;
}
BOOL CDUIPopupWindow::IsDUILayeredWindow()
{
if(IsWindow())
{
return GetExStyle()&WS_EX_LAYERED;
}
else
{
return GetDUIStyle()&DUI_WS_LAYERED;
}
}
BOOL CDUIPopupWindow::IsDUICustomNC()
{
return GetDUIStyle()&DUI_WS_CUSTOM_NC;
}
BOOL CDUIPopupWindow::IsDUISetNCRgn()
{
return (IsDUICustomNC() && (GetDUIStyle()&DUI_WS_NC_RGN));
}
BOOL CDUIPopupWindow::IsDUINCSizable()
{
return (IsDUICustomNC() && (GetDUIStyle()&DUI_WS_NC_SIZABLE));
}
INT CDUIPopupWindow::NcHitTest(const POINT& ptHit)
{
RECT rtClient;
GetClientRect(&rtClient);
RECT rtFrame = {0};
CRefPtr<CDUIFrameBK> pFrameBK = GetCurrentFrameBK();
if(!pFrameBK.IsNull())
{
rtFrame = pFrameBK->GetFrameBorder();
}
RECT rtTop = rtClient;
rtTop.bottom = rtTop.top + rtFrame.top;
RECT rtBottom = rtClient;
rtBottom.top = rtBottom.bottom - rtFrame.bottom;
RECT rtLeft = rtClient;
rtLeft.right = rtLeft.left + rtFrame.left;
rtLeft.top = rtTop.bottom;
rtLeft.bottom = rtBottom.top;
RECT rtRight = rtLeft;
rtRight.right = rtClient.right;
rtRight.left = rtRight.right - rtFrame.right;
INT nHitRet(HTNOWHERE);
BOOL bNCSizable = IsDUINCSizable();
if(IsZoomed()) bNCSizable = FALSE;
if(PtInRect(&rtBottom, ptHit))
{
nHitRet = (bNCSizable? HTBOTTOM: HTBORDER);
}
else if(PtInRect(&rtLeft, ptHit))
{
nHitRet = (bNCSizable? HTLEFT: HTBORDER);
}
else if(PtInRect(&rtTop, ptHit))
{
nHitRet = (bNCSizable? HTTOP: HTBORDER);
}
else if(PtInRect(&rtRight, ptHit))
{
nHitRet = (bNCSizable? HTRIGHT: HTBORDER);
}
const INT nDiffer = 3;
INT nTopBorder = rtTop.bottom - rtTop.top + nDiffer;
INT nBottomBorder = rtBottom.bottom - rtBottom.top + nDiffer;
RECT rtLeftTop = {rtTop.left, rtTop.top, rtTop.left + nTopBorder, rtTop.top + nTopBorder};
RECT rtRightTop = {rtTop.right - nTopBorder, rtTop.top, rtTop.right, rtTop.top + nTopBorder};
RECT rtLeftBottom = { rtBottom.left, rtBottom.bottom - nBottomBorder, rtBottom.left + nBottomBorder, rtBottom.bottom};
RECT rtRightBottom = { rtBottom.right - nBottomBorder, rtBottom.bottom - nBottomBorder, rtBottom.right, rtBottom.bottom};
if(PtInRect(&rtLeftTop, ptHit))
{
nHitRet = (bNCSizable? HTTOPLEFT: HTBORDER);
}
else if(PtInRect(&rtRightTop, ptHit))
{
nHitRet = (bNCSizable? HTTOPRIGHT: HTBORDER);
}
else if(PtInRect(&rtLeftBottom, ptHit))
{
nHitRet = (bNCSizable? HTBOTTOMLEFT: HTBORDER);
}
else if(PtInRect(&rtRightBottom, ptHit))
{
nHitRet = (bNCSizable? HTBOTTOMRIGHT: HTBORDER);
}
if(nHitRet == HTNOWHERE)
{
RECT rtCaption = {0};
if(m_nCaptionHeight > 0)
{
RECT rtClient = {0};
GetDUIClientRect(&rtClient);
rtCaption = rtClient;
rtCaption.bottom = rtCaption.top + m_nCaptionHeight;
}
if(!IsRectEmpty(&rtCaption))
{
if(::PtInRect(&rtCaption, ptHit))
{
POINT ptControl = ptHit;
IDUIControl* pControl = FindControl(&ptControl);
if(pControl == NULL
|| (pControl->GetInterface(IButton) == NULL))
{
nHitRet = HTCAPTION;
}
}
}
}
return nHitRet;
}
VOID CDUIPopupWindow::CheckDUIStyle()
{
if(!IsWindow()) return;
DWORD dwWinStyle = GetStyle();
DWORD dwWinExStyle = GetExStyle();
BOOL bDUILayered = (m_dwDUIStyle&DUI_WS_LAYERED);
BOOL bWinLayered = (dwWinExStyle&WS_EX_LAYERED);
BOOL bUpdate(FALSE);
if(bDUILayered != bWinLayered)
{
if(bDUILayered)
{
ModifyStyleEx(0, WS_EX_LAYERED, 0);
}
else
{
ModifyStyleEx(WS_EX_LAYERED,0 , 0);
}
bUpdate = TRUE;
}
BOOL bCustomNC = IsDUICustomNC();
DWORD dwBorderStyle = WS_BORDER | WS_CAPTION | WS_DLGFRAME;
BOOL bWinBorder = (dwWinStyle&dwBorderStyle);
if(bCustomNC && bWinBorder)
{
ModifyStyle(dwBorderStyle, 0);
bUpdate = TRUE;
}
if(bUpdate)
{
InvalidateRect(NULL, TRUE);
}
}
LRESULT CDUIPopupWindow::OnNcHitTest(UINT, WPARAM, LPARAM lParam, BOOL& bHandled)
{
bHandled = FALSE;
if(!IsDUICustomNC()) return S_OK;
POINT ptHit = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) };
::ScreenToClient(m_hWnd, &ptHit);
INT nHitPos = NcHitTest(ptHit);
if(nHitPos != HTNOWHERE) bHandled = TRUE;
return nHitPos;
}
LRESULT CDUIPopupWindow::OnNcActivate(UINT, WPARAM wParam, LPARAM, BOOL& bHandled)
{
bHandled = FALSE;
m_bNCActivate = (BOOL)wParam;
Invalidate(TRUE);
return S_OK;
}
LRESULT CDUIPopupWindow::OnNcCalcSize(UINT, WPARAM, LPARAM, BOOL& bHandled)
{
if(IsDUICustomNC())
{
bHandled = TRUE;
}
else
{
bHandled = FALSE;
}
return 0;
}
LRESULT CDUIPopupWindow::OnNcPaint(UINT, WPARAM, LPARAM, BOOL& bHandled)
{
if(IsDUICustomNC())
{
bHandled = TRUE;
}
else
{
bHandled = FALSE;
}
return 0;
}
LRESULT CDUIPopupWindow::OnGetMinMaxInfo(UINT, WPARAM, LPARAM lParam, BOOL& bHandled)
{
MINMAXINFO* pInfo = (MINMAXINFO*)lParam;
if(!m_MinMaxInfo.IsEmpty())
{
if(m_MinMaxInfo.m_ptMinTrackSize.x > 0)
{
pInfo->ptMinTrackSize.x = m_MinMaxInfo.m_ptMinTrackSize.x;
}
if(m_MinMaxInfo.m_ptMinTrackSize.y > 0)
{
pInfo->ptMinTrackSize.y = m_MinMaxInfo.m_ptMinTrackSize.y;
}
if(m_MinMaxInfo.m_ptMaxTrackSize.x > 0)
{
pInfo->ptMaxTrackSize.x = pInfo->ptMaxSize.x = m_MinMaxInfo.m_ptMaxTrackSize.x;
}
if(m_MinMaxInfo.m_ptMaxTrackSize.y > 0)
{
pInfo->ptMaxTrackSize.y = pInfo->ptMaxSize.y = m_MinMaxInfo.m_ptMaxTrackSize.y;
}
}
else
{
MONITORINFO oMonitor = {0};
oMonitor.cbSize = sizeof(oMonitor);
::GetMonitorInfo(::MonitorFromWindow(*this, MONITOR_DEFAULTTOPRIMARY), &oMonitor);
RECT rcWork = oMonitor.rcWork;
::OffsetRect(&rcWork, -rcWork.left, -rcWork.top);
pInfo->ptMaxPosition.x = rcWork.left;
pInfo->ptMaxPosition.y = rcWork.top;
pInfo->ptMaxSize.x = rcWork.right;
pInfo->ptMaxSize.y = rcWork.bottom;
}
return S_OK;
}
///////////////////// CDUIPopupWindow ////////////////
DUI_END_NAMESPCE
|
#ifndef PC_ALGORITHMS_H
#define PC_ALGORITHMS_H
#include <iostream>
#include <pcl/io/io.h>
#include <pcl/io/pcd_io.h>
#include <pcl/io/ply_io.h>
#include <pcl/visualization/cloud_viewer.h>
#include <pcl/point_types.h>
#include <pcl/filters/passthrough.h>
#include <pcl/filters/statistical_outlier_removal.h>
#include <pcl/filters/conditional_removal.h>
//#include <pcl/console/parse.h>
#include <pcl/filters/voxel_grid.h>
#include <pcl/kdtree/kdtree_flann.h>
#include <pcl/surface/mls.h>
#include <pcl/common/transforms.h>
#include <pcl/features/normal_3d.h>
#include <pcl/registration/icp.h>
#include <pcl/registration/ia_ransac.h>
#include <cstddef>
#include <cstdint>
#include <pcl/features/normal_3d_omp.h>
#include <pcl/surface/gp3.h>
#include <pcl/io/vtk_io.h>
#include <pcl/surface/poisson.h>
#include <pcl/surface/grid_projection.h>
#include <pcl/surface/vtk_smoothing/vtk_mesh_smoothing_laplacian.h>
#include <pcl/surface/marching_cubes_hoppe.h>
#include <pcl/surface/mls.h>
#include <opencv/cv.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/PolygonMesh.h>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "kinect_rgbd_grabber.h"
#include <boost/make_shared.hpp>
#include <pcl/point_types.h>
#include <pcl/point_cloud.h>
#include <pcl/point_representation.h>
#include <pcl/io/pcd_io.h>
#include <pcl/filters/voxel_grid.h>
#include <pcl/filters/filter.h>
#include <pcl/features/normal_3d.h>
#include <pcl/registration/icp.h>
#include <pcl/registration/icp_nl.h>
#include <pcl/registration/transforms.h>
#include <string>
class PC_Algorithms
{
public:
//Constructor
PC_Algorithms();
//Convert matches of keypoints to 3D pointclouds. Input takes 2 depth images (where depth will be extracted), a vector of matches and his corresondence vectors of Keypoints.
//The number of best matches must be introduced (we use to use 50).
void keypoints_to_pc(const cv::Mat &depth_query, const cv::Mat &depth_train,std::vector< cv::DMatch > *matches, std::vector< cv::DMatch > *matches_output, std::vector<cv::KeyPoint> &keyPts_query,std::vector<cv::KeyPoint> &keyPts_train,int n_matches, pcl::PointCloud<pcl::PointXYZ>::Ptr& cloud_query, pcl::PointCloud<pcl::PointXYZ>::Ptr& cloud_train);
//Compute ICP Normal with 2 different pointclouds and return the transformation Marix obtained.
Eigen::Matrix4f ICPNormal(pcl::PointCloud<pcl::PointXYZRGB>::Ptr src, pcl::PointCloud<pcl::PointXYZRGB>::Ptr tgt, float MaxDistance=0.1, float RansacVar = 0.01, float Iterations = 100);
//Compute SVD to obtain the transformation matrix between 2 sets of points (pointclouds). The idea is to solve a linear system y=Tx
void LLS(Eigen::Matrix4f& transformation, pcl::PointCloud<pcl::PointXYZ>::Ptr & cloud_in, pcl::PointCloud<pcl::PointXYZ>::Ptr& cloud_out);
//Downsample a pointcloud
void Downsampling(pcl::PointCloud<pcl::PointXYZRGB>::Ptr input_cloud, pcl::PointCloud<pcl::PointXYZRGB>::Ptr sampled_cloud, float sz = 0.05);
//Obtain a color mesh from a XYZRGB pointcloud
void color_mesh(pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud,pcl::PolygonMesh& mesh);
};
#endif // PC_ALGORITHMS_H
|
#ifndef MockICompressor_h
#define MockICompressor_h
#include <gmock/gmock.h>
#include <compressor/compressor.h>
#include <compressor/task/encoder.h>
#include <compressor/task/decoder.h>
class MockICompressor : public compressor::ICompressor {
public:
MOCK_METHOD(void, encode, (compressor::IEncoderTask&), (override));
MOCK_METHOD(void, decode, (compressor::IDecoderTask&), (override));
};
#endif /* MockICompressor_h */
|
// Program to find maximum, minimum among two numbers.
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
int max, min;
if (n1 > n2)
{
max = n1;
min = n2;
}
else
{
max = n2;
min = n1;
}
cout << "Max" << max << endl;
cout << "Min" << min << endl;
return 0;
}
|
//#include <bits/stdc++.h>
#include <iostream>
#include <algorithm>
//#include <iomanip>
//#define LOCAL
#define Inf 0x3f3f3f3f
#define NeInf 0xc0c0c0c0
#define REP(i,n) for(int i=0;i<n;++i)
using namespace std;
int R,n;
int a[1005];
int main(){
#ifdef LOCAL
freopen("./file/in.txt","r",stdin);
//freopen("./file/out.txt","w",stdout);
#endif // LOCAL
ios::sync_with_stdio(0);
//cin.tie(0);
//cout << fixed << setprecision(3);
while(cin >> R >> n && R!=-1){
REP(i,n) cin >> a[i];
sort(a,a+n);
int cnt=0;
REP(i,n){
int t=a[i];
while(i+1<n && a[i+1]-t<=R) ++i;
++cnt;
t=a[i];
while(i+1<n && a[i+1]-t<=R) ++i;
}
cout << cnt << "\n";
}
return 0;
}
|
#include "edge.hpp"
static PyObject* SkpCurve_getedges(SkpCurve *self, void *closure) {
SKP_GET_ELEMENTS(
SUCurveGetNumEdges,
SUCurveGetEdges,
SUEdgeRef,
_su_curve,
_su_edge,
"cannot get edges",
SkpEdge,
SkpEdgeType
)
}
|
#include <VirtualWire.h>
#include <Adafruit_Sensor.h>
#include <DHT.h>
float d1;
float d2;
float d3;
float d4;
float d5;
float d6;
float p1;
float p2;
float p3;
float p4;
float p5;
float p6;
float alfa = 0;
float alfa2 = 0;
float beta = 0;
float mat = 0;
int analogPin1 = 1;
int analogPin2 = 2;
int analogPin3 = 3;
int analogPin4 = 4;
int analogPin5 = 5;
int analogPin6 = 6;
float maior = 0;
float secmaior = 0;
char Valor_CharMsg[4];
int valRec;
char recebido_RF_char[4];
float valor;
#define DHTPIN A0 // pino que estamos conectado
#define DHTTYPE DHT11 // DHT 11
DHT dht(DHTPIN, DHTTYPE);
void setup()
{
Serial.begin(9600);
//RECEPTOR
vw_set_rx_pin(9);//Pino que estamos conectados
vw_setup(500);//Velocidade de bytes, quanto menor o valor, maior a precisão, porém, menor o alcance
vw_rx_start();
//TRANSMISSOR
vw_set_tx_pin(6);
vw_setup(500);
//SENSOR TEMPERATURA
dht.begin();
}
void loop()
{
//Sensor de temperatura
float h = dht.readHumidity();
float t = dht.readTemperature();
//Painel Solar
maior = p1;
if (p2 > maior) {
maior = p2;
}
if (p3 > maior) {
maior = p3;
}
if (p4 > maior) {
maior = p4;
}
if (p5 > maior) {
maior = p5;
}
if (p6 > maior) {
maior = p6;
}
d1 = maior - p1;
d2 = maior - p2;
d3 = maior - p3;
d4 = maior - p4;
d5 = maior - p5;
d6 = maior - p6;
secmaior = p1;
if (d2 < d1 && d2 > 0) {
p2 = secmaior;
}
if (d3 < d2 && d3 > 0) {
p3 = secmaior;
}
if (d4 < d3 && d4 > 0) {
p4 = secmaior;
}
if (d5 < d4 && d5 > 0) {
p5 = secmaior;
}
if (d6 < d5 && d6 > 0) {
p6 = secmaior;
}
p1 = analogRead(analogPin1) * 0.00488759;
p2 = analogRead(analogPin2) * 0.00488759;
p3 = analogRead(analogPin3) * 0.00488759;;
p4 = analogRead(analogPin4) * 0.00488759;;
p5 = analogRead(analogPin5) * 0.00488759;;
p6 = analogRead(analogPin6) * 0.00488759;;
mat = maior / secmaior;
alfa = atan(mat);
alfa2 = alfa * 57.2958;
beta = 90 - alfa2;
delay(1000);
//RECEPTOR
uint8_t buf[VW_MAX_MESSAGE_LEN];
uint8_t buflen = VW_MAX_MESSAGE_LEN;
if (vw_get_message(buf, &buflen))
{
int i;
for (i = 0; i < buflen; i++)
{
recebido_RF_char[i] = char(buf[i]); //Armazena os caracteres recebidos
}
recebido_RF_char[buflen] = '\0';
valRec = atoi(recebido_RF_char);
//TRANSMISSOR
//Estabilização
if (valRec == 1) {
valor = t;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
Serial.println(Valor_CharMsg);
//Envio Temperatura
if(valor = t)
{
delay(1000);
valor = t;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
Serial.println(Valor_CharMsg);
}}
//Estabilização
if (valRec == 2)
{
valor = h;
dtostrf (valor, 4, 2, Valor_CharMsg);//Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
Serial.println(Valor_CharMsg);
delay(1000);
valor = h;
dtostrf (valor, 4, 2, Valor_CharMsg);//Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
Serial.println(Valor_CharMsg);
}
//Envio Umidade
if(valor = h)
{
delay(1000);
valor = h;
dtostrf (valor, 4, 2, Valor_CharMsg);//Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
Serial.println(Valor_CharMsg);
}
//Estabilização
if (valRec == 3)
{
valor = p1;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = p1;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = p1;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
//Envio Painéis solares
if(valor = p1)
{
delay(1000);
valor = p1;
dtostrf (valor, 4, 2, Valor_CharMsg);//Converte valor para envio
delay(2000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
Serial.println(Valor_CharMsg);
delay(1000);
valor = p2;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(2000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = p3;
dtostrf (valor, 4, 2, Valor_CharMsg);//Converte valor para envio
delay(2000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = p4;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = p5;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = p6;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = alfa;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
delay(1000);
valor = beta;
dtostrf (valor, 4, 2, Valor_CharMsg); //Converte valor para envio
delay(1000);
vw_send((uint8_t *)Valor_CharMsg, strlen(Valor_CharMsg)); //Envio dos dados
vw_wait_tx(); //Aguarda envio dos dados
}
}
}
}
|
/*******************************************************************************
* Cristian Alexandrescu *
* 2163013577ba2bc237f22b3f4d006856 *
* 11a4bb2c77aca6a9927b85f259d9af10db791ce5cf884bb31e7f7a889d4fb385 *
* bc9a53289baf23d369484f5343ed5d6c *
*******************************************************************************/
/* Problem 545 - Heads */
/*
1 / (2 ^ n) = x.abcE-y
log10(1 / (2 ^ n)) = log10(x.abcE-y) ==> -n * log10(2) = log10(x.abc * (10 ^ (-y)))
==> -n * log10(2) = log10(x.abc) + log10(10 ^ (-y)))
==> -n * log10(2) = log10(x.abc) - y
==> log10(x.abc) = y - n * log10(2)
==> x.abc = 10 ^ (y - n * log10(2))
Since 0 < x.abc < 10 ==> 0 < y - n * log10(2) < 1 ==> n * log10(2) < y < 1 + n * log10(2)
==> y = int(1 + n * log10(2))
*/
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
int main() {
int nNoTestCasesLeft;
for (cin >> nNoTestCasesLeft; nNoTestCasesLeft--; ) {
int nN;
cin >> nN;
double lfLog10 = nN * log10(2.0);
int nY = 1 + lfLog10;
double lfBase = pow(10, nY - lfLog10);
cout << "2^" << "-" << nN << " = " << setprecision(3) << fixed << lfBase << "E-" << nY << endl;
}
return 0;
}
|
#ifndef ROSE_NAME_QUERY
#define ROSE_NAME_QUERY
#include "AstProcessing.h"
#include <functional>
typedef Rose_STL_Container< std::string > NameQuerySynthesizedAttributeType;
namespace NameQuery{
typedef AstQueryNamespace::QueryDepth QueryDepth;
typedef
NameQuerySynthesizedAttributeType (*roseFunctionPointerOneParameter)
(SgNode *);
typedef
NameQuerySynthesizedAttributeType (*roseFunctionPointerTwoParameters)
(SgNode *, std::string);
NameQuerySynthesizedAttributeType
queryNameArgumentNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameClassDeclarationNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameStructNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameUnionNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameMemberFunctionDeclarationNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameFunctionDeclarationNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameVariableTypeNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameVariableNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameClassFieldNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameUnionFieldNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameStructFieldNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameFunctionReferenceNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryVariableNamesWithTypeName (SgNode * astNode, std::string matchingName);
NameQuerySynthesizedAttributeType
queryNameTypedefDeclarationNames (SgNode * astNode);
NameQuerySynthesizedAttributeType
queryNameTypeName (SgNode * astNode);
enum TypeOfQueryTypeOneParameter
{
UnknownListElementType = 0,
VariableNames = 1,
VariableTypeNames = 2,
FunctionDeclarationNames = 3,
MemberFunctionDeclarationNames = 4,
ClassDeclarationNames = 5,
ArgumentNames = 6,
ClassFieldNames = 7,
UnionFieldNames = 8,
StructFieldNames = 9,
FunctionReferenceNames = 10,
StructNames = 11,
UnionNames = 12,
TypedefDeclarationNames = 13,
TypeNames = 14,
END_OF_NAME_TYPE_LIST
};
enum TypeOfQueryTypeTwoParameters
{
UnknownListElementTypeTwoParameters = 0,
VariableNamesWithTypeName = 1,
END_OF_NODE_TYPE_LIST_TWO_PARAMETERS
};
/**************************************************************************************************************
* The function
* std::pointer_to_unary_function<SgNode*, std::list<SgNode*> > getFunction(TypeOfQueryTypeOneParameter oneParam);
* will return a functor wrapping the pre-implemented function for TypeOfQueryTypeOneParameter.
**************************************************************************************************************/
std::pointer_to_unary_function < SgNode *,
Rose_STL_Container<std::string> >getFunction (TypeOfQueryTypeOneParameter oneParam);
/**************************************************************************************************************
* The function
* std::pointer_to_binary_function<SgNode*, SgNode*, std::list<SgNode*> > getFunction(TypeOfQueryTypeTwoParameters twoParam);
* will return a functor wrapping the pre-implemented function for TypeOfQueryTypeTwoParameters.
**************************************************************************************************************/
std::pointer_to_binary_function < SgNode *, std::string,
Rose_STL_Container<std::string> > getFunction (TypeOfQueryTypeTwoParameters twoParam);
// get the SgNode's conforming to the test in querySolverFunction or
// get the SgNode's conforming to the test in the TypeOfQueryTypeOneParamter the user specify.
/********************************************************************************************
*
* The function
* querySubTree (SgNode * subTree, TypeOfQueryTypeOneParameter elementReturnType,
* AstQueryNamespace::QueryDepth defineQueryType = AstQueryNamespace::AllNodes);
* returns a list of all strings in the sub-tree of the variable 'subTree' found by the
* preimplemented function 'elementReturnType'.
*******************************************************************************************/
NameQuerySynthesizedAttributeType
querySubTree
(SgNode * subTree,
TypeOfQueryTypeOneParameter elementReturnType,
AstQueryNamespace::QueryDepth defineQueryType =
AstQueryNamespace::AllNodes);
NameQuerySynthesizedAttributeType queryNodeList
(Rose_STL_Container< SgNode * > nodeList,
TypeOfQueryTypeOneParameter elementReturnType);
/********************************************************************************************
*
* The function
* querySubTree (SgNode * subTree, roseFunctionPointerOneParameter elementReturnType,
* AstQueryNamespace::QueryDepth defineQueryType = AstQueryNamespace::AllNodes);
* returns a list of all stings in the sub-tree of the variable 'subTree' found by the
* function 'elementReturnType'.
*******************************************************************************************/
NameQuerySynthesizedAttributeType
querySubTree
(SgNode * subTree,
roseFunctionPointerOneParameter elementReturnType,
AstQueryNamespace::QueryDepth defineQueryType =
AstQueryNamespace::AllNodes);
NameQuerySynthesizedAttributeType queryNodeList
(Rose_STL_Container< SgNode * >nodeList,
roseFunctionPointerOneParameter querySolverFunction);
// get the SgNode's conforming to the test in querySolverFunction or
// get the SgNode's conforming to the test in the TypeOfQueryTypeTwoParamters the user specify.
/********************************************************************************************
*
* The function
* querySubTree (SgNode * subTree, SgNode* traversal, roseFunctionPointerTwoParameters elementReturnType,
* AstQueryNamespace::QueryDepth defineQueryType = AstQueryNamespace::AllNodes);
* returns a list of all strings in the sub-tree of the variable 'subTree' found by the
* function 'querySolverFunction' given a second argument 'traversal'.
*******************************************************************************************/
NameQuerySynthesizedAttributeType
querySubTree
(SgNode * subTree,
std::string traversal,
roseFunctionPointerTwoParameters querySolverFunction,
AstQueryNamespace::QueryDepth defineQueryType =
AstQueryNamespace::AllNodes);
NameQuerySynthesizedAttributeType queryNodeList
(Rose_STL_Container< SgNode * >nodeList,
std::string targetNode,
roseFunctionPointerTwoParameters querySolverFunction);
/********************************************************************************************
*
* The function
* querySubTree (SgNode * subTree, SgNode* traversal, TypeOfQueryTypeTwoParameters elementReturnType,
* AstQueryNamespace::QueryDepth defineQueryType = AstQueryNamespace::AllNodes);
* returns a list of all strings in the sub-tree of the variable 'subTree' found by the
* preimplemented function 'elementReturnType' given a second argument 'traversal'.
*******************************************************************************************/
NameQuerySynthesizedAttributeType
querySubTree
(SgNode * subTree,
std::string traversal,
TypeOfQueryTypeTwoParameters elementReturnType,
AstQueryNamespace::QueryDepth defineQueryType =
AstQueryNamespace::AllNodes);
NameQuerySynthesizedAttributeType queryNodeList
(Rose_STL_Container< SgNode * >nodeList,
std::string targetNode, TypeOfQueryTypeTwoParameters elementReturnType);
// perform a query on a list<SgNode>
// DQ (4/8/2004): Added query based on vector of variants
/********************************************************************************
* The function
* NameQuerySynthesizedAttributeType
* queryMemoryPool(NodeFunctional nodeFunc , VariantVector* targetVariantVector = NULL)
* will query the memory pool for IR nodes which satisfies the criteria specified in and
* returned by the predicate in the second argument in the nodes with a corresponding variant
* in VariantVector.
********************************************************************************/
template<typename NodeFunctional>
NameQuerySynthesizedAttributeType
queryMemoryPool(NodeFunctional nodeFunc , VariantVector* targetVariantVector = NULL)
{
return AstQueryNamespace::queryMemoryPool(nodeFunc,targetVariantVector);
};
/********************************************************************************
* The function
* NameQuerySynthesizedAttributeType queryMemoryPool (
* _Result (*__x)(SgNode*,_Arg), _Arg x_arg,
* VariantVector* ){
* will on every node of the memory pool which has a corresponding variant in VariantVector
* performa the action specified by the second argument and return a NodeQuerySynthesizedAttributeType.
********************************************************************************/
NameQuerySynthesizedAttributeType
queryMemoryPool
(
std::string traversal,
roseFunctionPointerTwoParameters querySolverFunction, VariantVector* targetVariantVector);
/********************************************************************************
* The function
* _Result queryMemoryPool (
* _Result (*__x)(SgNode*),
* VariantVector* ){
* will on every node of the memory pool which has a corresponding variant in VariantVector
* performa the action specified by the second argument and return a NodeQuerySynthesizedAttributeType.
********************************************************************************/
NameQuerySynthesizedAttributeType
queryMemoryPool
(
std::string traversal,
roseFunctionPointerOneParameter querySolverFunction, VariantVector* targetVariantVector = NULL);
/********************************************************************************
* The function
* _Result queryMemoryPool ( SgNode*,
* TypeOfQueryTypeTwoParameters,
* VariantVector* ){
* will on every node of the memory pool which has a corresponding variant in VariantVector
* performa the predefined action specified by the second argument and return a
* NodeQuerySynthesizedAttributeType.
********************************************************************************/
NameQuerySynthesizedAttributeType
queryMemoryPool
(
std::string traversal,
TypeOfQueryTypeTwoParameters elementReturnType,
VariantVector* targetVariantVector = NULL);
/********************************************************************************
* The function
* _Result queryMemoryPool (
* TypeOfQueryTypeOneParameter,
* VariantVector* ){
* will on every node of the memory pool which has a corresponding variant in VariantVector
* performa the predefined action specified by the second argument and return a
* NodeQuerySynthesizedAttributeType.
********************************************************************************/
NameQuerySynthesizedAttributeType
queryMemoryPool
(
TypeOfQueryTypeOneParameter elementReturnType,
VariantVector* targetVariantVector = NULL);
}
// endif for ROSE_NAME_QUERY
#endif
|
#include "framework.h"
#include "headers.h"
#include <ctime>
extern HWND ghWnd;
extern HDC hMainDC;
extern HDC hBufferDC;
extern HDC hBackBufferDC;
extern RECT clientRect;
extern void(*UPDATE)();
void(*EVENT)() = nullptr;
void run()
{
Camera& camera = Camera::getInstance();
static clock_t time = clock();
clock_t dt = clock() - time;
if (dt > 33) // 30fps
{
time = clock();
SoundManager::update();
ObjectManager::update(dt / 1000.0f);
if (EVENT)
EVENT();
if(GameObject* player = ObjectManager::findActor("player"))
Camera::Bound(player->pos);
MapManager::loadedMap->draw(hBufferDC, Camera::pos - POINT({ clientRect.right / 2, clientRect.bottom / 2 }), 0);
MapManager::loadedMap->draw(hBufferDC, Camera::pos - POINT({ clientRect.right / 2, clientRect.bottom / 2 }), 1);
ObjectManager::draw(hBufferDC);
MapManager::loadedMap->draw(hBufferDC, Camera::pos - POINT({ clientRect.right / 2, clientRect.bottom / 2 }), 2);
BitBlt(hMainDC, 0, 0, clientRect.right, clientRect.bottom, hBufferDC, 0, 0, SRCCOPY);
}
}
void initStage1()
{
MapManager& m = MapManager::getInstance();
SpriteManager& s = SpriteManager::getInstance();
AnimationManager& am = AnimationManager::getInstance();
MapManager::loadMap("debugZone.mapdata");
SoundManager::loadBGM("021-Field04.mid");
SoundManager::playBGM();
new Magician({ 300, 500 });
new Magician({ 500, 500 });
new Magician({ 700, 200 });
new Magician({ 600, 350 });
new Magician({ 1000, 800 });
new Magician({ 1000, 800 });
new Magician({ 1000, 800 });
new Magician({ 1000, 1700 });
new Magician({ 1000, 1500 });
new Magician({ 500, 1500 });
new Magician({ 300, 1500 });
new Enemy({ 1000, 800 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1100, 800 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1500, 300 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 300, 550 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 700, 800 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1300, 200 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1300, 100 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1000, 800 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1400, 500 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 300, 1300 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1700, 1700 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1750, 1700 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1500, 1700 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 1400, 1700 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 500, 1500 }, { 0,0 }, "slime", DIRECTION::D, 2);
new Enemy({ 200, 1600 }, { 0,0 }, "slime", DIRECTION::D, 2);
if(!ObjectManager::findActor("Player"))
new Player({ 1700, 300 });
UPDATE = run;
EVENT = enterCave;
}
void enterCave()
{
GameObject* player = ObjectManager::findActor("player");
if (player->pos.x > 1570 && player->pos.x <= 1630 && player->pos.y < 153)
{
SoundManager::playSE("Move.ogg");
SoundManager::releaseBGM();
releaseStage();
initStage2();
}
}
void releaseStage()
{
ObjectManager::releaseAll();
delete MapManager::loadedMap;
}
void initStage2()
{
MapManager& m = MapManager::getInstance();
SpriteManager& s = SpriteManager::getInstance();
AnimationManager& am = AnimationManager::getInstance();
MapManager::loadMap("cave.mapdata");
SoundManager::loadBGM("035-Dungeon01.mid");
SoundManager::playBGM();
GameObject* obj = ObjectManager::findActor("player");
new Magician({ 400, 500 });
new Magician({ 600, 500 });
new Magician({ 400, 550 });
new Magician({ 400, 600 });
new Magician({ 600, 550 });
new Magician({ 600, 600 });
new Magician({ 500, 600 });
if (obj == NULL)
new Player({ 300, 300 });
else
{
obj->pos = { 490, 540 };
obj->vel = { 0,0 };
}
UPDATE = run;
EVENT = enterCave;
}
|
#ifndef MATERIAL_H
#define MATERIAL_H
#include <string>
#include <glm/glm.hpp>
using namespace std;
class Material {
private:
string materialId;
string textureFile;
glm::vec3 ka;
glm::vec3 ks;
glm::vec3 kd;
float ns;
public:
Material(string materialId);
void setMaterialId(string materialId);
string getMaterialid();
void setTextureFile(string textureFile);
string getTextureFile();
void setKa(float r, float g, float b);
glm::vec3 getKa();
void setKs(float r, float g, float b);
glm::vec3 getKs();
void setKd(float r, float g, float b);
glm::vec3 getKd();
void setNs(float ns);
float getNs();
};
#endif
|
#include<bits/stdc++.h>
using namespace std;
class Solution
{
public:
int findJudge(int N, vector<vector<int>> &trust)
{
vector<bool> t(N, true);
for (auto a : trust)
t[a[0] - 1] = false;
int judge = -1;
for (int i = 0; i < N; i++)
if (t[i])
judge = i + 1;
if (judge == -1)
return -1;
int count = 0;
for (auto a : trust)
if (a[1] == judge)
count++;
if (count == N - 1)
return judge;
return -1;
}
};
|
// defines pins numbers
/*
*
* Project Name: E-Parking Management
* Author List: Chetan Malviya , Manas Solanki
* Filename: Nano_Code_.ino
* Functions: sensor1,sensor2,sensor3,sensor4
* Global Variables: trigPin1--trigPin4,echoPin1--echoPin4,led1--led4
* U1--U4, duration1--duration4,distance1--distance4
*/
// defines pins numbers
const int trigPin1 = 11; //D11
const int echoPin1 = 12; //D12
const int trigPin2 = 9; //D10
const int echoPin2 = 10; //D9
const int trigPin3 = 7; //D8
const int echoPin3 = 8; //D7
const int trigPin4 = 5; //D6
const int echoPin4 = 6; //D5
const int led1 = 13;
const int led2 = 2;
const int led3 = 3;
const int led4 = 4;
String U1;
String U2;
String U3;
String U4;
// defines variables
long duration1;
long duration2;
long duration3;
long duration4;
int distance=12;
int distance1;
int distance2;
int distance3;
int distance4;
int maxdistance;
int ind1; // locations
int ind2;
int ind3;
int ind4;
int ind5;
String readString; //main captured String
String Ledstatus1;
String Ledstatus2;
String Ledstatus3;
String Ledstatus4;
String flag;
void setup()
{
pinMode(trigPin1, OUTPUT); // Sets the trigPin as an Output A1
pinMode(echoPin1, INPUT); // Sets the echoPin as an Input A1
pinMode(trigPin2, OUTPUT); // Sets the trigPin as an Output A2
pinMode(echoPin2, INPUT); // Sets the echoPin as an Input A2
pinMode(trigPin3, OUTPUT); // Sets the trigPin as an Output A3
pinMode(echoPin3, INPUT); // Sets the echoPin as an Input A3
pinMode(trigPin4, OUTPUT); // Sets the trigPin as an Output A4
pinMode(echoPin4, INPUT); // Sets the echoPin as an Input A4
pinMode(led1, OUTPUT);
pinMode(led2, OUTPUT);
pinMode(led3, OUTPUT);
pinMode(led4, OUTPUT);
Serial.begin(9600); // Starts the serial communication
sensor1();
delay(1000);
sensor2();
delay(1000);
sensor3();
delay(1000);
sensor4();
delay(1000);
Serial.println("1," + U1 + ',' + U2 + ',' + U3 + ',' + U4 + '*'); //Status of Ultrasonic sensors in format( 1,1,0,1,1)
}
void sensor1()
{
digitalWrite(trigPin1, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin1, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin1, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration1 = pulseIn(echoPin1, HIGH);
// Calculating the distance
distance1= duration1*0.034/2;
//Serial.print("Car slot 1 ");
if(distance1<distance)
{
digitalWrite(led1, HIGH);
//Serial.println("Slot is alloted");
//Serial.println(distance1);
U1='1';
//Serial.println(U1);
}
else
{
digitalWrite(led1, LOW);
//Serial.println("Slot is free");
//Serial.println(distance1);
U1='0';
//Serial.println(U1);
}
}
void sensor2()
{
digitalWrite(trigPin2, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin2, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin2, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration2 = pulseIn(echoPin2, HIGH);
// Calculating the distance
distance2= duration2*0.034/2;
//Serial.print("Car slot 2 ");
if(distance2<distance)
{
digitalWrite(led2, HIGH);
//Serial.println("Slot is alloted");
//Serial.println(distance2);
U2='1';
}
else
{
digitalWrite(led2, LOW);
//Serial.println("Slot is free");
//Serial.println(distance2);
U2='0';
}
}
void sensor3()
{
digitalWrite(trigPin3, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin3, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin3, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration3 = pulseIn(echoPin3, HIGH);
// Calculating the distance
distance3= duration3*0.034/2;
//Serial.print("Car slot 3 ");
if(distance3<distance)
{
digitalWrite(led3, HIGH);
//Serial.println("Slot is alloted");
//Serial.println(distance3);
U3='1';
}
else
{
digitalWrite(led3, LOW);
//Serial.println("Slot is free");
//Serial.println(distance3);
U3='0';
}
}
void sensor4()
{
digitalWrite(trigPin4, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin4, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin4, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration4 = pulseIn(echoPin4, HIGH);
// Calculating the distance
distance4= duration4*0.034/2;
//Serial.print("Car slot 4 ");
if(distance4<distance)
{
digitalWrite(led4, HIGH);
//Serial.println("Slot is alloted");
//Serial.println(distance4);
U4='1';
}
else
{
digitalWrite(led4, LOW);
//Serial.println("Slot is free");
//Serial.println(distance4);
U4='0';
}
}
void loop()
{
//Expected string from serial input (0,Ledstatus1,Ledstatus2,Ledstatus3,Ledstatus4*)
if (Serial.available())
{
char c = Serial.read(); //gets one byte from serial buffer
if (c == '*')
{
//Serial.println(readString);
ind1 = readString.indexOf(','); //finds location of first ,
flag = readString.substring(0, ind1); //captures first data String
if (flag.toInt() == 0) // flag 0 indicates user data from remote side and parses the information
{
ind2 = readString.indexOf(',', ind1+1 ); //finds location of second ,
Ledstatus1 = readString.substring(ind1+1, ind2); //captures second data String
//Serial.println(Ledstatus1);
ind3 = readString.indexOf(',', ind2+1 );
Ledstatus2 = readString.substring(ind2+1,ind3);
//Serial.println(Ledstatus2);
ind4 = readString.indexOf(',', ind3+1 );//captures second data String
Ledstatus3 = readString.substring(ind3+1,ind4);
//Serial.println(Ledstatus3);
ind5 = readString.indexOf(',', ind4+1 );//captures second data String
Ledstatus4 = readString.substring(ind4+1);
//Serial.println(Ledstatus4);
readString="";
if (Ledstatus1.toInt()==1)
digitalWrite(led1, HIGH);
else
digitalWrite(led1, LOW);
if (Ledstatus2.toInt()==1)
digitalWrite(led2, HIGH);
else
digitalWrite(led2, LOW);
if (Ledstatus3.toInt()==1)
digitalWrite(led3, HIGH);
else
digitalWrite(led3, LOW);
if (Ledstatus4.toInt()==1)
digitalWrite(led4, HIGH);
else
digitalWrite(led4, LOW);
sensor1();
delay(1000);
sensor2();
delay(1000);
sensor3();
delay(1000);
sensor4();
delay(1000);
//Serial.println("hell0");
Serial.println( "1," + U1 + ',' + U2 + ',' + U3 + ',' + U4 + '*'); //Status of Ultrasonic sensors in format( 1,1,0,1,1*)
}
else
{
readString=""; //clears variable for new input
flag="";
}
}
else if (c == ':')
{
readString="";
}
else
{
readString += c; //makes the string readString
}
}
}
|
#include "Common.h"
class CircularBuffer {
private:
int tail;
int length;
//vector<float> buffer;
float *buffer;
int accessible;
public:
CircularBuffer();
CircularBuffer(int l);
void Put(float v);
void Put(int i, float v);
float AtPosition(int i);
};
|
/*
CTC GO! MOTION
PROJECT - Spin-A-Wheel
This sketch is written to accompany Stage 2 of the Spin-a-Wheel project
*/
#include <Servo.h>
______ servo_wheel;
______ servo_pointer;
int button_1 = 2;
int button_2 = 3;
int buttonState_1;
int buttonState_2;
void setup() {
pinMode(button_1, INPUT);
pinMode(button_2, INPUT);
servo_pointer.______(6);
servo_wheel.______(9);
Serial.begin(9600);
}
void loop() {
buttonState_1 = digitalRead(button_1);
buttonState_2 = digitalRead(button_2);
if(buttonState_1 == HIGH) {
Serial.println("Button 1 pressed");
servo_pointer.______(30);
delay(10);
servo_wheel.______(30);
delay(1000);
}
if(buttonState_2 == HIGH) {
Serial.println("Button 2 pressed");
______.______(70);
delay(10);
______.______(93);
delay(1000);
}
delay(100);
}
|
#pragma once
#include "../pch.h"
#include "ConfigFileException.h"
ConfigFileException::ConfigFileException(const std::string& msg) : errorMessage(msg) {}
const char* ConfigFileException::what() const throw ()
{
return errorMessage.c_str();
}
|
#ifndef ELLIPSE_H_
#define ELLIPSE_H_
#include "Graph.h"
#define PI 3.14159f
class Ellipse_ :public Graph
{
public:
Ellipse_();
void draw();
private:
};
#endif // !ELLIPSE_H_
#pragma once
|
/**
* Calculate the total luminosity and flux within the specified radius.
*
* Base on 'fit_beta_sbp.cpp' and supersede 'calc_lx.cpp'
*
* Author: Junhua Gu
*/
#include <iostream>
#include <fstream>
#include <sstream>
#include <list>
#include <algorithm>
#include "beta_cfg.hpp"
#include "dump_fit_qdp.hpp"
#include "report_error.hpp"
#include "vchisq.hpp"
#include "chisq.hpp"
#include "beta.hpp"
#include "models/beta1d.hpp"
#include <data_sets/default_data_set.hpp>
#include <methods/powell/powell_method.hpp>
#include <core/freeze_param.hpp>
#include <error_estimator/error_estimator.hpp>
#include "spline.hpp"
using namespace std;
using namespace opt_utilities;
//double s=5.63136645E20;
const double kpc=3.086E21;//kpc in cm
const double Mpc=kpc*1000;
double beta_func(double r, double n0, double rc, double beta)
{
return abs(n0) * pow(1+r*r/rc/rc, -3./2.*abs(beta));
}
//A class enclosing the spline interpolation method
class spline_func_obj
:public func_obj<double,double>
{
//has an spline object
spline<double> spl;
public:
//This function is used to calculate the intepolated value
double do_eval(const double& x)
{
return spl.get_value(x);
}
//we need this function, when this object is performing a clone of itself
spline_func_obj* do_clone()const
{
return new spline_func_obj(*this);
}
public:
//add points to the spline object, after which the spline will be initialized
void add_point(double x,double y)
{
spl.push_point(x,y);
}
//before getting the intepolated value, the spline should be initialzied by calling this function
void gen_spline()
{
spl.gen_spline(0,0);
}
};
int main(int argc,char* argv[])
{
if(argc<4)
{
cerr<<argv[0]<<" <sbp.conf> <rout_kpc> <cfunc_erg> [cfunc2_erg ...]"<<endl;
return -1;
}
//initialize the parameters list
ifstream cfg_file(argv[1]);
assert(cfg_file.is_open());
cfg_map cfg=parse_cfg_file(cfg_file);
const double z=cfg.z;
//initialize the radius list, sbp list and sbp error list
std::vector<double> radii;
std::vector<double> sbps;
std::vector<double> sbpe;
std::vector<double> radii_all;
std::vector<double> sbps_all;
std::vector<double> sbpe_all;
//prepend the zero point to radius list
radii.push_back(0.0);
radii_all.push_back(0.0);
//read sbp and sbp error data
ifstream ifs(cfg.sbp_data.c_str());
std::string line;
if (ifs.is_open())
{
while(std::getline(ifs, line))
{
if (line.empty())
continue;
std::istringstream iss(line);
double x, xe, y, ye;
if ((iss >> x >> xe >> y >> ye))
{
std::cerr << "sbprofile data: "
<< x << ", " << xe << ", " << y << ", " << ye
<< std::endl;
radii.push_back(x+xe); /* NOTE: use outer radii of regions */
radii_all.push_back(x+xe);
sbps.push_back(y);
sbps_all.push_back(y);
sbpe.push_back(ye);
sbpe_all.push_back(ye);
}
else
{
std::cerr << "skipped line: " << line << std::endl;
}
}
}
else
{
std::cerr << "ERROR: cannot open file: " << cfg.sbp_data.c_str()
<< std::endl;
return 1;
}
//initialize the cm/pixel value
double cm_per_pixel=cfg.cm_per_pixel;
double rmin;
if(cfg.rmin_pixel>0)
{
rmin=cfg.rmin_pixel;
}
else
{
rmin=cfg.rmin_kpc*kpc/cm_per_pixel;
}
cerr<<"rmin="<<rmin<<" (pixel)"<<endl;
std::list<double> radii_tmp,sbps_tmp,sbpe_tmp;
radii_tmp.resize(radii.size());
sbps_tmp.resize(sbps.size());
sbpe_tmp.resize(sbpe.size());
copy(radii.begin(),radii.end(),radii_tmp.begin());
copy(sbps.begin(),sbps.end(),sbps_tmp.begin());
copy(sbpe.begin(),sbpe.end(),sbpe_tmp.begin());
for(list<double>::iterator i=radii_tmp.begin();i!=radii_tmp.end();)
{
if(*i<rmin)
{
radii_tmp.pop_front();
sbps_tmp.pop_front();
sbpe_tmp.pop_front();
i=radii_tmp.begin();
continue;
}
++i;
}
radii.resize(radii_tmp.size());
sbps.resize(sbps_tmp.size());
sbpe.resize(sbpe_tmp.size());
copy(radii_tmp.begin(),radii_tmp.end(),radii.begin());
copy(sbps_tmp.begin(),sbps_tmp.end(),sbps.begin());
copy(sbpe_tmp.begin(),sbpe_tmp.end(),sbpe.begin());
//read cooling function data
spline_func_obj cf;
for(ifstream ifs(cfg.cfunc_profile.c_str());;)
{
assert(ifs.is_open());
double x,y;
ifs>>x>>y;
if(!ifs.good())
{
break;
}
cerr<<x<<"\t"<<y<<endl;
if(x>radii.back())
{
break;
}
cf.add_point(x,y);
}
cf.gen_spline();
//read temperature profile data
spline_func_obj Tprof;
int tcnt=0;
for(ifstream ifs1(cfg.tprofile.c_str());;++tcnt)
{
assert(ifs1.is_open());
double x,y;
ifs1>>x>>y;
if(!ifs1.good())
{
break;
}
cerr<<x<<"\t"<<y<<endl;
#if 0
if(tcnt==0)
{
Tprof.add_point(0,y);
}
#endif
Tprof.add_point(x,y);
}
Tprof.gen_spline();
default_data_set<std::vector<double>,std::vector<double> > ds;
ds.add_data(data<std::vector<double>,std::vector<double> >(radii,sbps,sbpe,sbpe,radii,radii));
//initial fitter
fitter<vector<double>,vector<double>,vector<double>,double> f;
f.load_data(ds);
//initial the object, which is used to calculate projection effect
projector<double> a;
beta<double> betao;
//attach the cooling function
a.attach_cfunc(cf);
a.set_cm_per_pixel(cm_per_pixel);
a.attach_model(betao);
f.set_model(a);
//chi^2 statistic
vchisq<double> c;
c.verbose(true);
c.set_limit();
f.set_statistic(c);
//optimization method
f.set_opt_method(powell_method<double,std::vector<double> >());
//initialize the initial values
/*
double n0=0;
double beta=0;
double rc=0;
*/
double bkg_level=0;
for(std::map<std::string,std::vector<double> >::iterator i=cfg.param_map.begin();
i!=cfg.param_map.end();++i)
{
std::string pname=i->first;
f.set_param_value(pname,i->second.at(0));
if(i->second.size()==3)
{
double a1=i->second[1];
double a2=i->second[2];
double u=std::max(a1,a2);
double l=std::min(a1,a2);
f.set_param_upper_limit(pname,u);
f.set_param_lower_limit(pname,l);
}
else
{
if(pname=="beta")
{
f.set_param_lower_limit(pname,.3);
f.set_param_upper_limit(pname,1.4);
}
}
}
f.fit();
f.fit();
std::vector<double> p=f.get_all_params();
/*
n0=f.get_param_value("n0");
rc=f.get_param_value("rc");
beta=f.get_param_value("beta");
*/
//output the datasets and fitting results
ofstream param_output("lx_beta_param.txt");
for(size_t i=0;i<f.get_num_params();++i)
{
if(f.get_param_info(i).get_name()=="rc")
{
cerr<<"rc_kpc"<<"\t"<<abs(f.get_param_info(i).get_value())*cm_per_pixel/kpc<<endl;
param_output<<"rc_kpc"<<"\t"<<abs(f.get_param_info(i).get_value())*cm_per_pixel/kpc<<endl;
}
cerr<<f.get_param_info(i).get_name()<<"\t"<<abs(f.get_param_info(i).get_value())<<endl;
param_output<<f.get_param_info(i).get_name()<<"\t"<<abs(f.get_param_info(i).get_value())<<endl;
}
cerr<<"reduced_chi^2="<<f.get_statistic_value()/(radii.size()-f.get_model().get_num_free_params())<<endl;
param_output<<"reduced_chi^2="<<f.get_statistic_value()/(radii.size()-f.get_model().get_num_free_params())<<endl;
std::vector<double> mv=f.eval_model_raw(radii_all,p);
int sbps_inner_cut_size=int(sbps_all.size()-sbps.size());
ofstream ofs_sbp("lx_sbp_fit.qdp");
ofs_sbp<<"read serr 2"<<endl;
ofs_sbp<<"skip single"<<endl;
ofs_sbp<<"line off "<<endl;
if(sbps_inner_cut_size>=1)
{
ofs_sbp<<"line on 2"<<endl;
ofs_sbp<<"line on 3"<<endl;
ofs_sbp<<"line on 4"<<endl;
ofs_sbp<<"line on 5"<<endl;
ofs_sbp<<"ls 2 on 2"<<endl;
ofs_sbp<<"ls 2 on 4"<<endl;
ofs_sbp<<"ls 2 on 5"<<endl;
ofs_sbp<<"line on 7"<<endl;
ofs_sbp<<"ls 2 on 7"<<endl;
ofs_sbp<<"ma 1 on 2"<<endl;
ofs_sbp<<"color 1 on 1"<<endl;
ofs_sbp<<"color 2 on 2"<<endl;
ofs_sbp<<"color 3 on 3"<<endl;
ofs_sbp<<"color 4 on 4"<<endl;
ofs_sbp<<"color 5 on 5"<<endl;
ofs_sbp<<"win 1"<<endl;
ofs_sbp<<"yplot 1 2 3 4 5"<<endl;
ofs_sbp<<"loc 0 0 1 1"<<endl;
ofs_sbp<<"vie .1 .4 .9 .9"<<endl;
ofs_sbp<<"la y cnt/s/pixel/cm^2"<<endl;
ofs_sbp<<"log x"<<endl;
ofs_sbp<<"log y"<<endl;
ofs_sbp<<"r x "<<(radii[1]+radii[0])/2*cm_per_pixel/kpc<<" "<<(radii[sbps.size()-2]+radii[sbps.size()-1])/2*cm_per_pixel/kpc<<endl;
ofs_sbp<<"win 2"<<endl;
ofs_sbp<<"yplot 6 7"<<endl;
ofs_sbp<<"loc 0 0 1 1"<<endl;
ofs_sbp<<"vie .1 .1 .9 .4"<<endl;
ofs_sbp<<"la x radius (kpc)"<<endl;
ofs_sbp<<"la y chi"<<endl;
ofs_sbp<<"log y off"<<endl;
ofs_sbp<<"log x"<<endl;
ofs_sbp<<"r x "<<(radii[1]+radii[0])/2*cm_per_pixel/kpc<<" "<<(radii[sbps.size()-2]+radii[sbps.size()-1])/2*cm_per_pixel/kpc<<endl;
}
else
{
ofs_sbp<<"line on 2"<<endl;
ofs_sbp<<"line on 3"<<endl;
ofs_sbp<<"line on 4"<<endl;
ofs_sbp<<"ls 2 on 3"<<endl;
ofs_sbp<<"ls 2 on 4"<<endl;
ofs_sbp<<"line on 6"<<endl;
ofs_sbp<<"ls 2 on 6"<<endl;
ofs_sbp<<"color 1 on 1"<<endl;
ofs_sbp<<"color 3 on 2"<<endl;
ofs_sbp<<"color 4 on 3"<<endl;
ofs_sbp<<"color 5 on 4"<<endl;
//ofs_sbp<<"ma 1 on 2"<<endl;
ofs_sbp<<"win 1"<<endl;
ofs_sbp<<"yplot 1 2 3 4"<<endl;
ofs_sbp<<"loc 0 0 1 1"<<endl;
ofs_sbp<<"vie .1 .4 .9 .9"<<endl;
ofs_sbp<<"la y cnt/s/pixel/cm^2"<<endl;
ofs_sbp<<"log x"<<endl;
ofs_sbp<<"log y"<<endl;
ofs_sbp<<"r x "<<(radii[1]+radii[0])/2*cm_per_pixel/kpc<<" "<<(radii[radii.size()-2]+radii[radii.size()-1])/2*cm_per_pixel/kpc<<endl;
ofs_sbp<<"win 2"<<endl;
ofs_sbp<<"yplot 5 6"<<endl;
ofs_sbp<<"loc 0 0 1 1"<<endl;
ofs_sbp<<"vie .1 .1 .9 .4"<<endl;
ofs_sbp<<"la x radius (kpc)"<<endl;
ofs_sbp<<"la y chi"<<endl;
ofs_sbp<<"log x"<<endl;
ofs_sbp<<"log y off"<<endl;
ofs_sbp<<"r x "<<(radii[1]+radii[0])/2*cm_per_pixel/kpc<<" "<<(radii[radii.size()-2]+radii[radii.size()-1])/2*cm_per_pixel/kpc<<endl;
}
// cout<<sbps_all.size()<<"\t"<<sbps.size()<<"\t"<<sbps_inner_cut_size<<endl;
for(size_t i=1;i<sbps_all.size();++i)
{
double x=(radii_all[i]+radii_all[i-1])/2;
double y=sbps_all[i-1];
double ye=sbpe_all[i-1];
ofs_sbp<<x*cm_per_pixel/kpc<<"\t"<<y<<"\t"<<ye<<endl;
}
if(sbps_inner_cut_size>=1)
{
ofs_sbp<<"no no no"<<endl;
for(int i=1;i<sbps_inner_cut_size+1;++i)
{
double x=(radii_all[i]+radii_all[i-1])/2;
double ym=mv[i-1];
ofs_sbp<<x*cm_per_pixel/kpc<<"\t"<<ym<<"\t"<<"0"<<endl;
}
}
ofs_sbp<<"no no no"<<endl;
for(size_t i=sbps_inner_cut_size;i<sbps_all.size();++i)
{
double x=(radii_all[i]+radii_all[i-1])/2;
double ym=mv[i-1];
ofs_sbp<<x*cm_per_pixel/kpc<<"\t"<<ym<<"\t"<<"0"<<endl;
}
ofs_sbp<<"no no no"<<endl;
//bkg level
bkg_level=abs(f.get_param_value("bkg"));
for(size_t i=0;i<sbps_all.size();++i)
{
double x=(radii_all[i]+radii_all[i-1])/2;
ofs_sbp<<x*cm_per_pixel/kpc<<"\t"<<bkg_level<<"\t0"<<endl;
}
ofs_sbp<<"no no no"<<endl;
//rc
double rc_kpc=abs(f.get_param_value("rc")*cm_per_pixel/kpc);
double max_sbp=*max_element(sbps_all.begin(),sbps_all.end());
double min_sbp=*min_element(sbps_all.begin(),sbps_all.end());
for(double x=min_sbp;x<=max_sbp;x+=(max_sbp-min_sbp)/100)
{
ofs_sbp<<rc_kpc<<"\t"<<x<<"\t"<<"0"<<endl;
}
//resid
ofs_sbp<<"no no no"<<endl;
for(size_t i=1;i<sbps.size();++i)
{
double x=(radii[i]+radii[i-1])/2;
//double y=sbps[i-1];
//double ye=sbpe[i-1];
double ym=mv[i-1];
ofs_sbp<<x*cm_per_pixel/kpc<<"\t"<<(ym-sbps[i-1])/sbpe[i-1]<<"\t"<<1<<endl;
}
//zero level of resid
ofs_sbp<<"no no no"<<endl;
for(size_t i=1;i<sbps.size();++i)
{
double x=(radii[i]+radii[i-1])/2;
//double y=sbps[i-1];
//double ye=sbpe[i-1];
//double ym=mv[i-1];
ofs_sbp<<x*cm_per_pixel/kpc<<"\t"<<0<<"\t"<<0<<endl;
}
mv=betao.eval(radii,p);
ofstream ofs_rho("lx_rho_fit.qdp");
ofstream ofs_rho_data("lx_rho_fit.dat");
ofs_rho<<"la x radius (kpc)"<<endl;
ofs_rho<<"la y density (cm\\u-3\\d)"<<endl;
/*
for(int i=1;i<sbps.size();++i)
{
double x=(radii[i]+radii[i-1])/2;
double ym=mv[i-1];
ofs_rho<<x*cm_per_pixel/kpc<<"\t"<<ym<<endl;
}
*/
p.back()=0;
radii.clear();
double rout=atof(argv[2])*kpc;
for(double r=0;r<rout;r+=1*kpc)//step size=1kpc
{
double r_pix=r/cm_per_pixel;
radii.push_back(r_pix);
}
double Da=cm_per_pixel/(.492/3600./180.*pi);
double Dl=Da*(1+z)*(1+z);
cout<<"dl="<<Dl/kpc<<endl;
for(int n=3;n<argc;++n)
{
spline_func_obj cf_erg;
for(ifstream ifs(argv[n]);;)
{
assert(ifs.is_open());
double x,y;
ifs>>x>>y;
if(!ifs.good())
{
break;
}
//cerr<<x<<"\t"<<y<<endl;
cf_erg.add_point(x,y);//change with source
}
cf_erg.gen_spline();
projector<double>& pj=dynamic_cast<projector<double>&>(f.get_model());
pj.attach_cfunc(cf_erg);
mv=f.eval_model_raw(radii,p);
double flux_erg=0;
for(size_t i=0;i<radii.size()-1;++i)
{
double S=pi*(radii[i+1]+radii[i])*(radii[i+1]-radii[i]);
flux_erg+=S*mv[i];
}
cout<<flux_erg*4*pi*Dl*Dl<<endl;
cout<<flux_erg<<endl;
param_output<<"Lx"<<n-2<<"\t"<<flux_erg*4*pi*Dl*Dl<<endl;
param_output<<"Fx"<<n-2<<"\t"<<flux_erg<<endl;
}
}
|
#include "drake/multibody/parsers/parser_common.h"
#include <string>
#include <utility>
#include "drake/common/text_logging.h"
#include "drake/multibody/joints/drake_joint.h"
#include "drake/multibody/joints/fixed_joint.h"
#include "drake/multibody/joints/floating_base_types.h"
#include "drake/multibody/joints/quaternion_floating_joint.h"
#include "drake/multibody/joints/roll_pitch_yaw_floating_joint.h"
#include "drake/multibody/parsers/xml_util.h"
using std::runtime_error;
using std::string;
using std::unique_ptr;
using std::vector;
namespace drake {
namespace parsers {
using drake::multibody::joints::FloatingBaseType;
using drake::multibody::joints::kFixed;
using drake::multibody::joints::kRollPitchYaw;
using drake::multibody::joints::kQuaternion;
using drake::systems::CompliantMaterial;
using tinyxml2::XMLElement;
const char* const FloatingJointConstants::kFloatingJointName = "base";
const char* const FloatingJointConstants::kWeldJointName = "weld";
int AddFloatingJoint(
const FloatingBaseType floating_base_type,
const vector<int>& body_indices,
const std::shared_ptr<RigidBodyFrame<double>> weld_to_frame,
const PoseMap* pose_map,
RigidBodyTree<double>* tree) {
string floating_joint_name;
RigidBody<double>* weld_to_body{nullptr};
Eigen::Isometry3d transform_to_world;
if (weld_to_frame == nullptr) {
// If weld_to_frame is not specified, weld the newly added model(s) to the
// world with zero offset.
weld_to_body = tree->get_bodies()[0].get();
floating_joint_name = FloatingJointConstants::kFloatingJointName;
transform_to_world = Eigen::Isometry3d::Identity();
} else {
// If weld_to_frame is specified and the model is being welded to the world,
// ensure the "body" variable within weld_to_frame is nullptr. Then, only
// use the transform_to_body variable within weld_to_frame to initialize
// the robot at the desired location in the world.
if (weld_to_frame->get_name() ==
string(RigidBodyTreeConstants::kWorldName)) {
// N.B. Because of the design of `RigidBodyTree`, the world can either be
// indicated by the unique world body of tree or a `nullptr`. We should
// check both of these.
if (!weld_to_frame->has_as_rigid_body(nullptr) &&
!weld_to_frame->has_as_rigid_body(&tree->world())) {
throw runtime_error(
"AddFloatingJoint: Attempted to weld robot to the world while "
"specifying a non-world body link!");
}
weld_to_body = tree->get_bodies()[0].get(); // the world's body
floating_joint_name = FloatingJointConstants::kFloatingJointName;
} else {
weld_to_body = weld_to_frame->get_mutable_rigid_body();
floating_joint_name = FloatingJointConstants::kWeldJointName;
}
transform_to_world = weld_to_frame->get_transform_to_body();
}
int num_floating_joints_added = 0;
for (auto i : body_indices) {
if (tree->get_bodies()[i]->get_parent() == nullptr) {
// The following code connects the parent-less link to the rigid body tree
// using a floating joint.
tree->get_bodies()[i]->set_parent(weld_to_body);
Eigen::Isometry3d transform_to_model = Eigen::Isometry3d::Identity();
if (pose_map != nullptr &&
pose_map->find(tree->get_bodies()[i]->get_name()) != pose_map->end())
transform_to_model = pose_map->at(tree->get_bodies()[i]->get_name());
switch (floating_base_type) {
case kFixed: {
unique_ptr<DrakeJoint> joint(new FixedJoint(
floating_joint_name, transform_to_world * transform_to_model));
tree->get_bodies()[i]->setJoint(move(joint));
num_floating_joints_added++;
} break;
case kRollPitchYaw: {
unique_ptr<DrakeJoint> joint(new RollPitchYawFloatingJoint(
floating_joint_name, transform_to_world * transform_to_model));
tree->get_bodies()[i]->setJoint(move(joint));
num_floating_joints_added++;
} break;
case kQuaternion: {
unique_ptr<DrakeJoint> joint(new QuaternionFloatingJoint(
floating_joint_name, transform_to_world * transform_to_model));
tree->get_bodies()[i]->setJoint(move(joint));
num_floating_joints_added++;
} break;
default:
throw runtime_error("Unknown floating base type.");
}
}
}
if (num_floating_joints_added == 0) {
// TODO(liang.fok) Handle this by disconnecting one of the internal nodes,
// replacing the disconnected joint with a loop joint, and then connecting
// the newly freed body (i.e., the body without a joint) to the world.
throw runtime_error(
"No root bodies found. Every body referenced by the supplied list of "
"body indices has a joint connecting it to some other body. This will "
"result in RigidBodyTree::compile() looping indefinitely. This "
"scenario currently not supported in Drake.");
}
return num_floating_joints_added;
}
CompliantMaterial ParseCollisionCompliance(XMLElement* node) {
CompliantMaterial material;
// TODO(SeanCurtis-TRI): Incomplete validation. This parsing allows redundant
// declarations of material. Confirm proper validation via an XSD.
XMLElement* compliant_node = node->FirstChildElement("drake_compliance");
if (compliant_node) {
double static_friction{-1};
double dynamic_friction{-1};
// Encode the friction values read via bit-masking; 0 = none, 1 = static,
// 2 = dynamic, 3 = both.
int friction_values_read = 0;
for (XMLElement* child = compliant_node->FirstChildElement(); child;
child = child->NextSiblingElement()) {
const std::string name(child->Value());
if (!child->FirstChild()) {
throw std::runtime_error("Compliant parameter specified (\"" + name +
"\") without any numerical value");
}
const double value = StringToDouble(child->FirstChild()->Value());
if (name == "youngs_modulus") {
material.set_youngs_modulus(value);
} else if (name == "dissipation") {
material.set_dissipation(value);
} else if (name == "static_friction") {
static_friction = value;
friction_values_read |= 1;
} else if (name == "dynamic_friction") {
dynamic_friction = value;
friction_values_read |= 2;
} else {
drake::log()->warn("Unrecognized element in drake_compliance: '{}'",
name);
}
}
// Handle friction
if (friction_values_read) {
if (friction_values_read < 3) {
throw std::runtime_error(
"When specifying coefficient of friction, "
"both static and dynamic coefficients must be defined");
}
material.set_friction(static_friction, dynamic_friction);
}
}
return material;
}
void ParseCollisionFilterGroup(RigidBodyTree<double>* tree, XMLElement* node,
int model_instance_id) {
const char* attr = node->Attribute("drake_ignore");
if (attr && (std::strcmp(attr, "true") == 0)) return;
// TODO(SeanCurtis-TRI): After upgrading to newest tinyxml, add line numbers
// to error messages.
attr = node->Attribute("name");
if (!attr) {
throw runtime_error(string(__FILE__) + ": " + __func__ + ": ERROR: "
"Collision filter group specification missing name attribute.");
}
string group_name(attr);
tree->DefineCollisionFilterGroup(group_name);
for (XMLElement* member_node = node->FirstChildElement("member"); member_node;
member_node = member_node->NextSiblingElement("member")) {
const char* link_name = member_node->Attribute("link");
if (!link_name) {
throw runtime_error(string(__FILE__) + ": " + __func__ + ": Collision "
"filter group " + group_name + " provides a member tag without "
"specifying the \"link\" attribute.");
}
tree->AddCollisionFilterGroupMember(group_name, link_name,
model_instance_id);
}
for (XMLElement* ignore_node =
node->FirstChildElement("ignored_collision_filter_group");
ignore_node; ignore_node = ignore_node->NextSiblingElement(
"ignored_collision_filter_group")) {
const char* target_name = ignore_node->Attribute("collision_filter_group");
if (!target_name) {
throw runtime_error(
string(__FILE__) + ": " + __func__ + ": Collision filter group "
"provides a tag specifying a group to ignore without specifying "
"the \"collision_filter_group\" attribute.");
}
tree->AddCollisionFilterIgnoreTarget(group_name, target_name);
}
}
} // namespace parsers
} // namespace drake
|
// Number of integers to be sorted = 100,000.
// Array stored in file "integer_array.txt".
#include<bits/stdc++.h>
using namespace std;
int* merge_sort(int* arr, int len);
long long int inversions = 0;
int main(){
int len = 100000;
int arr[len];
ifstream file("integer_array.txt");
if (file.is_open())
for (int i = 0; i < len; ++i)
file >> arr[i];
int* ptr = merge_sort(arr, len);
printf("\nNo of Inversions : %lld\n",inversions);
}
int* merge_sort(int* arr, int len) {
if (len == 1) {
// Base Case.
return arr;
}
else {
int len1 = len - len/2;
int len2 = len/2;
int arr1[len1];
int arr2[len2];
for(int i=0; i<len1; i++)
arr1[i] = arr[i];
for(int i=0; i<len2; i++)
arr2[i] = arr[i + len - len/2];
int* arr1_sorted = merge_sort(arr1, len1);
int* arr2_sorted = merge_sort(arr2, len2);
// Merging the soorted arrays.
int iter1 = 0;
int iter2 = 0;
for (int i=0; i<len; i++) {
if (iter1 == len1) {
// When List 1 has been iterated over.
arr[i] = arr2_sorted[iter2];
iter2++;
}
else if (iter2 == len2) {
// When List 2 has been iterated over.
arr[i] = arr1_sorted[iter1];
iter1++;
}
else {
if (arr1_sorted[iter1] < arr2_sorted[iter2]){
// Adding integer from List 1
arr[i] = arr1_sorted[iter1];
iter1++;
}
else {
// Adding integer from List 2
arr[i] = arr2_sorted[iter2];
inversions += len1 - iter1;
iter2++;
}
}
}
return arr;
}
}
|
#include <bits/stdc++.h>
#define ll long long
using namespace std;
typedef tuple<ll, ll, ll> tp;
typedef pair<ll, ll> pr;
const ll MOD = 1000000007;
const ll INF = 1e18;
template <typename T> void print(const T &t) {
std::copy(t.cbegin(), t.cend(),
std::ostream_iterator<typename T::value_type>(std::cout, " "));
cout << endl;
}
template <typename T> void print2d(const T &t) {
std::for_each(t.cbegin(), t.cend(), print<typename T::value_type>);
}
void setIO(string s) { // the argument is the filename without the extension
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
ll n;
string step;
vector<vector<bool>> G(4005, vector<bool>(4005));
vector<vector<bool>> visited(4005, vector<bool>(4005));
ll maxR = 2001, minR = 2001, maxC = 2001, minC = 2001;
ll startR = 2001;
ll startC = 2001;
void floodfill(ll r, ll c){
if(r > maxR || r < minR || c > maxC || c < minC){
return;
}
if(visited[r][c] || G[r][c]){
return;
}
visited[r][c] = true;
vector<ll> dR{1, 0, 0, -1};
vector<ll> dC{0, 1, -1, 0};
for(ll i = 0; i < dR.size(); i++){
floodfill(r + dR[i], c + dC[i]);
}
}
int main() {
cin.tie(0)->sync_with_stdio(0);
cin.exceptions(cin.failbit);
setIO("gates");
cin >> n >> step;
map<char, pair<ll ,ll>> mp{
{'N', {-1, 0}},
{'S', {1, 0}},
{'W', {0, -1}},
{'E', {0, 1}}
};
for(ll i = 0; i < n; i++){
G[startR + mp[step[i]].first][startC + mp[step[i]].second] = true;
G[startR + 2*mp[step[i]].first][startC + 2*mp[step[i]].second] = true;
startR += 2*mp[step[i]].first;
startC += 2*mp[step[i]].second;
maxR = max(maxR, startR);
minR = min(minR, startR);
maxC = max(maxC, startC);
minC = min(minC, startC);
}
maxR++;
minR--;
maxC++;
minC--;
ll ans = 0;
for(ll i = minR; i <= maxR ; i++){
for(ll j = minC; j <= maxC; j++){
if(!visited[i][j] && !G[i][j]){
floodfill(i, j);
ans++;
}
}
}
cout << ans - 1 << endl;
}
|
/*
* SPDX-FileCopyrightText: (C) 2013-2022 Daniel Nicoletti <dantti12@gmail.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef GRANTLEE_VIEW_P_H
#define GRANTLEE_VIEW_P_H
#include "grantleeview.h"
#include "view_p.h"
#include <grantlee/cachingloaderdecorator.h>
#include <grantlee/engine.h>
#include <grantlee/templateloader.h>
namespace Cutelyst {
class GrantleeViewPrivate : public ViewPrivate
{
public:
virtual ~GrantleeViewPrivate() override = default;
QStringList includePaths;
QString extension = QStringLiteral(".html");
QString wrapper;
QString cutelystVar;
Grantlee::Engine *engine;
QSharedPointer<Grantlee::FileSystemTemplateLoader> loader;
QSharedPointer<Grantlee::CachingLoaderDecorator> cache;
QHash<QLocale, QTranslator *> translators;
QHash<QString, QString> translationCatalogs;
};
} // namespace Cutelyst
#endif // GRANTLEE_VIEW_P_H
|
#include "Intern.hpp"
#include "RobotomyRequestForm.hpp"
#include "ShrubberyCreationForm.hpp"
#include "PresidentialPardonForm.hpp"
/* ************************************************************************** */
/* OUTTER FONCTIONS */
/* ************************************************************************** */
static int getIndex(std::string const &formName, std::string const *formNames, int size)
{
for (int i = 0; i < size; i++)
{
if (formName == formNames[i])
return i;
}
return -1;
}
Form *Intern::newPresidentialPardonForm(std::string const &target)
{
return new PresidentialPardonForm(target);
}
Form *Intern::newShrubberyCreationForm(std::string const &target)
{
return new ShrubberyCreationForm(target);
}
Form *Intern::newRobotomyRequestForm(std::string const &target)
{
return new RobotomyRequestForm(target);
}
/* ************************************************************************** */
/* DATA INIT */
/* ************************************************************************** */
const std::string Intern::_forms[3] = {
"robotomy request",
"shrubbery creation",
"presidential pardon"
};
Form* (*Intern::_formCreators[3])(std::string const &target) = {
newRobotomyRequestForm,
newShrubberyCreationForm,
newPresidentialPardonForm
};
/* ************************************************************************** */
/* CONSTRUCTOR - DESTRUCTOR */
/* ************************************************************************** */
Intern::Intern(void)
{
}
Intern::Intern(const Intern &src)
{
*this = src;
}
Intern::~Intern(void)
{
}
/* ************************************************************************** */
/* OVERLOAD FONCTIONS */
/* ************************************************************************** */
Intern &Intern::operator=(const Intern &right)
{
(void)right;
return (*this);
}
/* ************************************************************************** */
/* ACCES FONCTIONS */
/* ************************************************************************** */
/* ************************************************************************** */
/* MEMBER FONCTIONS */
/* ************************************************************************** */
Form *Intern::makeForm(std::string form, std::string target)
{
int index = getIndex(form, Intern::_forms, 3);
if (index == -1)
{
std::cout << "Intern: Form not found" << std::endl;
return NULL;
}
else
{
std::cout << "Intern creates " << Intern::_forms[index] << " for " << target << std::endl;
return Intern::_formCreators[index](target);
}
}
|
#include "system.h"
static unsigned int next_id = 0;
unsigned int ecs::SystemBase::nextID() {
return next_id++;;
}
|
#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);
}
};
// System.Action
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579;
// System.Action[]
struct ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.Action`1<Vuforia.ImageTargetBuilder/FrameQuality>
struct Action_1_tBEA0EDB3667CC5A2DCE7DFE6F81E5887CE768598;
// System.Action`1<Vuforia.ImageTargetBuilder/FrameQuality>[]
struct Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E;
// System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>
struct Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C;
// System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>[]
struct Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD;
// System.Action`1<Vuforia.TrackableBehaviour/StatusInfoChangeResult>
struct Action_1_t815FDCE2DC0C3334353668E93D550D2B896E8C02;
// System.Action`1<Vuforia.TrackableBehaviour/StatusInfoChangeResult>[]
struct Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8;
// System.Action`1<Vuforia.TrackableSource>
struct Action_1_t525D82D7C2572D72867F7D2F825C82EBD0B6696D;
// System.Action`1<Vuforia.TrackableSource>[]
struct Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E;
// System.Action`1<Vuforia.VirtualButtonBehaviour>
struct Action_1_tC93D09787D2D8EDD972075A6E2BA9F717FCBC8F2;
// System.Action`1<Vuforia.VirtualButtonBehaviour>[]
struct Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Vuforia.EditorClasses.JSONNode>[]
struct EntryU5BU5D_tA9278C3FF8C3B866DEC74AE1A02F90A216F3FA1F;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>[]
struct EntryU5BU5D_t5C1624AADAEA036FBA7813A519AABEB01040A694;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>[]
struct EntryU5BU5D_t68F254E95C8EB26421D23970884497BA48B49BF5;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,Vuforia.Tracker>[]
struct EntryU5BU5D_tA4D6CBB7516BD110F53AFF33264C5C57B78B83AC;
// System.Collections.Generic.Dictionary`2/Entry<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>[]
struct EntryU5BU5D_tCF9D295544DD21CF66F0B5989812D10E94E5EB60;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Vuforia.EditorClasses.JSONNode>
struct KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,Vuforia.Tracker>
struct KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0;
// System.Collections.Generic.Dictionary`2/KeyCollection<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Vuforia.EditorClasses.JSONNode>
struct ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,Vuforia.Tracker>
struct ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54;
// System.Collections.Generic.Dictionary`2/ValueCollection<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F;
// System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButtonBehaviour>
struct Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.EditorClasses.JSONNode>
struct Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E;
// System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346;
// System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3;
// System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>
struct Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5;
// System.Collections.Generic.Dictionary`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24;
// System.Collections.Generic.HashSet`1/Slot<Vuforia.BackgroundPlaneBehaviour>[]
struct SlotU5BU5D_t680A2D2B1FBB7F12B2EF35F314BC29B25C35E8ED;
// System.Collections.Generic.HashSet`1/Slot<Vuforia.VideoBackgroundBehaviour>[]
struct SlotU5BU5D_t046B47E1A715103646FC93D69AD4759C0A6BDAA3;
// System.Collections.Generic.HashSet`1<Vuforia.BackgroundPlaneBehaviour>
struct HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748;
// System.Collections.Generic.HashSet`1<Vuforia.VideoBackgroundBehaviour>
struct HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5;
// System.Collections.Generic.IEnumerable`1<Vuforia.TargetFinder>
struct IEnumerable_1_t86168A20BBE5B286D8B1B2CDBB58E541B96567FA;
// System.Collections.Generic.IEnumerable`1<Vuforia.TrackerData/TrackableResultData>
struct IEnumerable_1_tEE24B61D96F5606F758B2628E518C75C1026AB08;
// System.Collections.Generic.IEnumerator`1<Vuforia.TargetFinder>
struct IEnumerator_1_t458981048863137A7B217790D14C26348B10CA58;
// System.Collections.Generic.IEnumerator`1<Vuforia.TrackerData/TrackableResultData>
struct IEnumerator_1_t9AAA8B8E153D7E6D510E8B4F56B0F398524DC8EB;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
// System.Collections.Generic.IEqualityComparer`1<System.Type>
struct IEqualityComparer_1_t84A1E76CEF8A66F732C15925C1E1DBC7446DB3A4;
// System.Collections.Generic.IEqualityComparer`1<Vuforia.BackgroundPlaneBehaviour>
struct IEqualityComparer_1_t86E3686A1F85A2117FBC49997356EEFF219E213D;
// System.Collections.Generic.IEqualityComparer`1<Vuforia.PIXEL_FORMAT>
struct IEqualityComparer_1_tB64D49DC36C8C99407475AB0B84F482A9085CDF9;
// System.Collections.Generic.IEqualityComparer`1<Vuforia.VideoBackgroundBehaviour>
struct IEqualityComparer_1_t332736B78E9D8621B48A95BFF7F06FD66AE10DB5;
// System.Collections.Generic.IList`1<System.Action>
struct IList_1_t0D1D897F4DC797F20881AFFE26FCDC8E7B598016;
// System.Collections.Generic.IList`1<System.Action`1<Vuforia.ImageTargetBuilder/FrameQuality>>
struct IList_1_t9D2F1EADDB94BAF12B25216E2E62B68B3A4DF6A4;
// System.Collections.Generic.IList`1<System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>>
struct IList_1_t42F7F70EEC8486300C31A718CCB979C614D4FE47;
// System.Collections.Generic.IList`1<System.Action`1<Vuforia.TrackableBehaviour/StatusInfoChangeResult>>
struct IList_1_t265C7E69F12F2A12E719A52BE2DEEA4B2DE2E354;
// System.Collections.Generic.IList`1<System.Action`1<Vuforia.TrackableSource>>
struct IList_1_tADF954699CA8A8D8CD802C52C8BFD39534150AC4;
// System.Collections.Generic.IList`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct IList_1_tF7AEE68B1328F46C09CC3C28670926EF9AD91A33;
// System.Collections.Generic.IList`1<System.UInt32Enum>
struct IList_1_t66493B4D1F52D53768E5C678B3E21D6BA73999A9;
// System.Collections.Generic.IList`1<UnityEngine.Camera>
struct IList_1_t7E675C9888DDB929709F8CF52F659CF11936A949;
// System.Collections.Generic.IList`1<Vuforia.EditorClasses.JSONNode>
struct IList_1_tE09B310E2B89A4C441A2994852E7B487F5D087A6;
// System.Collections.Generic.IList`1<Vuforia.TargetFinder>
struct IList_1_t169BF05ACA1FFF4362B1E95F9D2FE069292B893D;
// System.Collections.Generic.IList`1<Vuforia.TrackerData/TrackableResultData>
struct IList_1_t142F45AD932B3AB12905753CB0D52E27ADCBD146;
// System.Collections.Generic.IList`1<Vuforia.VuforiaManager/TrackableIdPair>
struct IList_1_t4B1531E385E04815F2A8774DCB36720FF2B9EBD5;
// System.Collections.Generic.IList`1<Windows.Foundation.AsyncStatus>
struct IList_1_t11FAA6B9F830ECC6337186B07013DF74C2C3C522;
// System.Collections.Generic.IList`1<Windows.Foundation.FoundationContract>
struct IList_1_tAACDEC3572612F287D4D187841747394927AD2B4;
// System.Collections.Generic.IList`1<Windows.Foundation.Metadata.CompositionType>
struct IList_1_t2EBAB65770E4AFA423278C2F3AF44A3270C5AEB7;
// System.Collections.Generic.IList`1<Windows.Foundation.Point>
struct IList_1_tD51D57A7E83A494E22B6CFC58ECCB51D7A93B6A0;
// System.Collections.Generic.IList`1<Windows.Foundation.Rect>
struct IList_1_t78105B68BAF5D4013AC903AF588CD7E6E9CAFE83;
// System.Collections.Generic.IList`1<Windows.Foundation.Size>
struct IList_1_tEB2026C85D01C98DE5E5CB752963EE43DFE2D43C;
// System.Collections.Generic.List`1<System.Action>
struct List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7;
// System.Collections.Generic.List`1<System.Action`1<Vuforia.ImageTargetBuilder/FrameQuality>>
struct List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754;
// System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>>
struct List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88;
// System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableBehaviour/StatusInfoChangeResult>>
struct List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA;
// System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableSource>>
struct List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515;
// System.Collections.Generic.List`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809;
// System.Collections.Generic.List`1<UnityEngine.Camera>
struct List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372;
// System.Collections.Generic.List`1<Vuforia.EditorClasses.JSONNode>
struct List_1_t12494A17845A9914D067E6A42254AAEDD24443A6;
// System.Collections.Generic.List`1<Vuforia.TargetFinder>
struct List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522;
// System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>
struct List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D;
// System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>
struct List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Exception
struct Exception_t;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.UInt32>>
struct Func_2_t2DE17BAAB7C8A395FFA1D553866D96ABC5F46C97;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.VoidValueTypeParameter>>
struct Func_2_tCF92B89EA717C53455F13CB9ADFF9F97988DC755;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<Windows.Storage.Streams.IBuffer>>
struct Func_2_tF6DFA2E681528B410B6796B6D05C01C31A5DDDE0;
// System.Func`2<System.Type,Vuforia.Tracker>
struct Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653;
// System.Func`2<Vuforia.TargetFinder,System.Boolean>
struct Func_2_t66D295CE69A710F35487304B63F4B7518540DACF;
// System.Func`2<Vuforia.Tracker,System.Boolean>
struct Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8;
// System.Func`2<Vuforia.TrackerData/TrackableResultData,System.Boolean>
struct Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.String
struct String_t;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE;
// System.Threading.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676;
// System.Threading.SynchronizationContext
struct SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7;
// System.Threading.Tasks.StackGuard
struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155;
// System.Threading.Tasks.TaskFactory`1<System.UInt32>
struct TaskFactory_1_t4B1CB177FC575AD49A8B6BDA308F06C7075F366B;
// System.Threading.Tasks.TaskFactory`1<System.VoidValueTypeParameter>
struct TaskFactory_1_t410DD5370290DF7924E2357F4FAF09116A3366E9;
// System.Threading.Tasks.TaskFactory`1<Windows.Storage.Streams.IBuffer>
struct TaskFactory_1_t3D3F8CFD20FEF77056A4029C26A3D6992C5573E9;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>
struct TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>
struct TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>
struct TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3;
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB;
// System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Boolean>
struct TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1;
// System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Object>
struct TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF;
// System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>
struct TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A;
// System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>
struct TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B;
// System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>
struct TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5;
// System.Type
struct Type_t;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// System.VoidReferenceTypeParameter
struct VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Camera[]
struct CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9;
// Vuforia.BackgroundPlaneBehaviour
struct BackgroundPlaneBehaviour_t2615248F9F83AF94A06C6585EBB6C1D3BCF64338;
// Vuforia.EditorClasses.JSONNode
struct JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730;
// Vuforia.EditorClasses.JSONNode[]
struct JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E;
// Vuforia.TargetFinder
struct TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC;
// Vuforia.TargetFinder[]
struct TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84;
// Vuforia.Tracker
struct Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1;
// Vuforia.TrackerData/TrackableResultData[]
struct TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D;
// Vuforia.UnmanagedImage
struct UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8;
// Vuforia.VideoBackgroundBehaviour
struct VideoBackgroundBehaviour_t5FE09B8C02AFCA301B6D915668BE3C050CE37C00;
// Vuforia.VirtualButtonBehaviour
struct VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE;
// Vuforia.VuforiaManager/TrackableIdPair[]
struct TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957;
// Windows.Foundation.AsyncActionCompletedHandler
struct AsyncActionCompletedHandler_t1820A7A20AA2CF935463CD8EB21800005EFE488D;
// Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>
struct AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66;
// Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>
struct AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0;
// Windows.Foundation.AsyncOperationCompletedHandler`1<System.UInt32>
struct AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145;
// Windows.Foundation.AsyncOperationCompletedHandler`1<Windows.Storage.Streams.IBuffer>
struct AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0;
// Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>
struct AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD;
// Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>
struct AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8;
// Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>
struct AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367;
// Windows.Foundation.AsyncOperationProgressHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89;
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>
struct AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB;
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85;
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B;
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6;
// Windows.Foundation.Collections.IIterator`1<System.UInt32Enum>
struct IIterator_1_tFB7170E11EBF4524DF51185E5ADB42CBC19D2FD1;
// Windows.Foundation.Collections.IIterator`1<Windows.Foundation.FoundationContract>
struct IIterator_1_t24BE8D81998AA3D75CD891A738EE362C45E6889B;
// Windows.Foundation.Collections.IIterator`1<Windows.Foundation.Point>
struct IIterator_1_tA2F4E334454D08C5C9E0AC3C76D57B20671F1960;
// Windows.Foundation.Collections.IIterator`1<Windows.Foundation.Rect>
struct IIterator_1_tEE3BEEAE4E5550C7E66C35FB0ACA1BB925AC7953;
// Windows.Foundation.Collections.IIterator`1<Windows.Foundation.Size>
struct IIterator_1_t41554E725F79EEC45542DF0955D0013EAC3876BF;
// Windows.Foundation.EventHandler`1<System.Object>
struct EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A;
// Windows.Foundation.IAsyncOperationWithProgress`2<System.Object,System.Object>
struct IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1;
// Windows.Foundation.IAsyncOperationWithProgress`2<System.Object,System.UInt32>
struct IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D;
// Windows.Foundation.IAsyncOperationWithProgress`2<System.UInt32,System.UInt32>
struct IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3;
// Windows.Foundation.IAsyncOperationWithProgress`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792;
// Windows.Foundation.IAsyncOperation`1<System.Boolean>
struct IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18;
// Windows.Foundation.IAsyncOperation`1<System.Object>
struct IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1;
// Windows.Foundation.IAsyncOperation`1<System.UInt32>
struct IAsyncOperation_1_t601B0A980544E8D0164BE90BE9DF2B1FDB30E21D;
// Windows.Foundation.IAsyncOperation`1<Windows.Storage.Streams.IBuffer>
struct IAsyncOperation_1_t473239B080231B0B820ACD56AD1318AF9313F2CA;
// Windows.Storage.Streams.IBuffer
struct IBuffer_t13BCDB1D6DE32F79AB9F9E149514026CA6B4AAEF;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationCompletedHandler_1_Invoke_m585869CEB0F544C422C4A0194D81A0CE1CB95FAC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationProgressHandler_2_Invoke_m95E3276A19BA6239B14D4DD15256F87671BDE40D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationWithProgressCompletedHandler_2_Invoke_m9AA9B10D4FE96E4CD29E1E641BA59CF7DC4516AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m017C5C355FDA1992B23B476DC35C7662A69D855F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m83E040C7E14614C240AA25F9B9DF33EA4B20D561_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Completed_m2EA8F01A2740B566A60ABEEB9D86C8699424B66D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Completed_m3FE50AD2400A1E8E7C4195CAFA282B20CC76126C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Completed_m601052E62079FE991D5360BB78A1B1EE4AD1CF0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Completed_mA68EA69BA6979871A9B44B79D06DDEA805C2F77E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Completed_mEC05E85847C50339C45B75B4D8F3360E398F7C7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_ErrorCode_mF8F7FE6A9EE4CF8EBB3C72A320E8560D02F737C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m7993FCF220700C38589133E61AABE886BEB11A16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Progress_m2E2FD8FFAC087C69B6A14012A65DC7BC8E3A2F63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Progress_mA64CC5D93F015289D508EA55527DABB1E16BB67F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Progress_mD45A5B178A7C331FEB9FAE48E134F600540E749F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_mC3004519B021A82DABA6E1CE706340B659E5416D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationCompletedHandler_1_Invoke_m585869CEB0F544C422C4A0194D81A0CE1CB95FAC_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationProgressHandler_2_Invoke_m95E3276A19BA6239B14D4DD15256F87671BDE40D_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationWithProgressCompletedHandler_2_Invoke_m9AA9B10D4FE96E4CD29E1E641BA59CF7DC4516AE_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D_WindowsRuntimeManagedInvoker_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m017C5C355FDA1992B23B476DC35C7662A69D855F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m83E040C7E14614C240AA25F9B9DF33EA4B20D561_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mF8F7FE6A9EE4CF8EBB3C72A320E8560D02F737C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m7993FCF220700C38589133E61AABE886BEB11A16_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mC3004519B021A82DABA6E1CE706340B659E5416D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_GetResults_m0ACDB95A7BF00987D62964D2EA95E997E27549EE_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_GetResults_m192AC6B35298E03A2B3C136B3077DF2053FDB6A2_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_GetResults_m993BB462F191321B87C535695A7207D604A34D39_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_get_Completed_m84CD8A3DEB30C0DAF2CD1C070BBBF0A5F9C6B0C1_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_m2EA8F01A2740B566A60ABEEB9D86C8699424B66D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_get_Completed_mA97E7AD6FFA70605BC3D85B2BA81D9E73477C83C_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_mA68EA69BA6979871A9B44B79D06DDEA805C2F77E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_get_Completed_mC8B0DF1D983B538324F584457FA0A32B8EE96CA0_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_m3FE50AD2400A1E8E7C4195CAFA282B20CC76126C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_get_Progress_m52E5FA65A83D323DD051DE07DCD1197F3BAB915A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Progress_mD45A5B178A7C331FEB9FAE48E134F600540E749F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_get_Progress_m8FCB4F1054CC4C911C223A5EB575DE711E51ED40_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Progress_mA64CC5D93F015289D508EA55527DABB1E16BB67F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_get_Progress_mC5BB2B4E3E81BB01D64CAB93E64049091F860B77_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Progress_m2E2FD8FFAC087C69B6A14012A65DC7BC8E3A2F63_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_put_Completed_m24A7BD0A272762E01AB148F16C5A1E1450A636A1_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_put_Completed_m9AA2531FFB51D956562246763E80DE45603A1102_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_put_Completed_mFB0F42569BF3A6EA84B17C7FC562E077E24E1C1E_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_put_Progress_m350E9B9254A685DFB8C3FC2D3131246B8E51D04A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_put_Progress_m4803D2725A9442A29BC0AE0085F1674A0BA11B82_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperationWithProgress_2_put_Progress_mFB6FE604EEF5BB9E714EFACDDDEE09B5B1C62191_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperation_1_GetResults_m9512F1B6180476FC615EABE09C819D9FA551E911_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperation_1_GetResults_mD43ABCF581D914A85D4B9445991877915DFF56DA_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperation_1_get_Completed_m07CAA5869A884FEC2A68E5C00C7DA01E4576826B_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_mEC05E85847C50339C45B75B4D8F3360E398F7C7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperation_1_get_Completed_mF5FE7877C4022DAB662BB33D1DCB376892F71003_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_m601052E62079FE991D5360BB78A1B1EE4AD1CF0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperation_1_put_Completed_m0C7B8B4487E05BA966965F8D42142089B9326D45_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IAsyncOperation_1_put_Completed_mCD6E096799210DC80FFCA3C09D67B27800A90520_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ;
struct IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper;
struct IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper;
struct IAsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper;
struct IAsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper;
struct IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper;
struct IAsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper;
struct IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper;
struct IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper;
struct IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper;
struct IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper;
struct IAsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper;
struct IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper;
struct IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D;
struct IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792;
struct IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3;
struct IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1;
struct IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18;
struct IAsyncOperation_1_t473239B080231B0B820ACD56AD1318AF9313F2CA;
struct IAsyncOperation_1_t601B0A980544E8D0164BE90BE9DF2B1FDB30E21D;
struct IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1;
struct IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B;
struct IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E;
struct IBuffer_t13BCDB1D6DE32F79AB9F9E149514026CA6B4AAEF;
struct IIterator_1_t0979D6AE40DD58B191FD848FE224608112B69237;
struct IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616;
struct IIterator_1_t24BE8D81998AA3D75CD891A738EE362C45E6889B;
struct IIterator_1_t2B21213FEB0A065EE8EE08505D4993A125B94604;
struct IIterator_1_t41554E725F79EEC45542DF0955D0013EAC3876BF;
struct IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A;
struct IIterator_1_t7D121DD54685B5C3A67B4FBEBDB34A8EBACD6E4C;
struct IIterator_1_t7F38B71C86FBA6E318856632AD1AD4411A7F3D1B;
struct IIterator_1_tA2F4E334454D08C5C9E0AC3C76D57B20671F1960;
struct IIterator_1_tEE3BEEAE4E5550C7E66C35FB0ACA1BB925AC7953;
struct IIterator_1_tEE6F747A033DF451F5932F68A3A4AD290713B7C4;
struct IIterator_1_tFCCB84984712ACE35E2C9D0FFBB7CFE2CD913B43;
struct IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08;
struct IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818;
struct IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F;
struct IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A;
struct IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10;
struct IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196;
struct Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ;
struct Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ;
struct Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ;
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.IDisposable>
struct NOVTABLE IIterable_1_t9040704BA642F3FA15C2C50AF7FDF3484F397EE5 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m66AE02B95C12AA29398F853CBBCB981F758D1D7B(IIterator_1_tFCCB84984712ACE35E2C9D0FFBB7CFE2CD913B43** 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.IIterable`1<Windows.Foundation.AsyncStatus>
struct NOVTABLE IIterable_1_tCF77A499655EA00D6A22681299DE79364653661C : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m393DBADD362ED003032ED5E79E11D3F38B24521D(IIterator_1_tEE6F747A033DF451F5932F68A3A4AD290713B7C4** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<Windows.Foundation.FoundationContract>
struct NOVTABLE IIterable_1_t93C8EA2BFC687EF966A2DA5CD5174A1378B6FCE4 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m594C89A5405285FB4C6E586A9E4DF29FD149ABE4(IIterator_1_t24BE8D81998AA3D75CD891A738EE362C45E6889B** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<Windows.Foundation.Metadata.CompositionType>
struct NOVTABLE IIterable_1_t03D48AA86E0E5AC8C300D2337620A09EE64DEB7F : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m4C456A12215A1EF642A0BD8240E428CCB1701FFF(IIterator_1_t7F38B71C86FBA6E318856632AD1AD4411A7F3D1B** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<Windows.Foundation.Point>
struct NOVTABLE IIterable_1_t42A26D86C03100D2D000F54A9F11470BBB5C0FFF : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mDFD48986D037D31527C0FE6D115A92095FA88E62(IIterator_1_tA2F4E334454D08C5C9E0AC3C76D57B20671F1960** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<Windows.Foundation.Rect>
struct NOVTABLE IIterable_1_tAE9AAFF40AEFFD8B95D5AA3D2075D2796BA3BD84 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mE498E9BD287BD46B8DF12E2E88C09632ACCBFE62(IIterator_1_tEE3BEEAE4E5550C7E66C35FB0ACA1BB925AC7953** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<Windows.Foundation.Size>
struct NOVTABLE IIterable_1_t1864587EB7CE5B1570B2FA9C6E9D78E1C5CE6593 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m9FE8FA9031708EBA9C1D4B91A278DB4B5AFA5372(IIterator_1_t41554E725F79EEC45542DF0955D0013EAC3876BF** 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.IAsyncOperationWithProgress`2<System.Object,System.Object>
struct NOVTABLE IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Progress_mFB6FE604EEF5BB9E714EFACDDDEE09B5B1C62191(IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Progress_m8FCB4F1054CC4C911C223A5EB575DE711E51ED40(IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Completed_m9AA2531FFB51D956562246763E80DE45603A1102(IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Completed_mC8B0DF1D983B538324F584457FA0A32B8EE96CA0(IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_GetResults_m0ACDB95A7BF00987D62964D2EA95E997E27549EE(Il2CppIInspectable** comReturnValue) = 0;
};
// Windows.Foundation.IAsyncOperationWithProgress`2<System.Object,System.UInt32>
struct NOVTABLE IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Progress_m4803D2725A9442A29BC0AE0085F1674A0BA11B82(IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Progress_mC5BB2B4E3E81BB01D64CAB93E64049091F860B77(IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Completed_m24A7BD0A272762E01AB148F16C5A1E1450A636A1(IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Completed_m84CD8A3DEB30C0DAF2CD1C070BBBF0A5F9C6B0C1(IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_GetResults_m993BB462F191321B87C535695A7207D604A34D39(Il2CppIInspectable** comReturnValue) = 0;
};
// Windows.Foundation.IAsyncOperationWithProgress`2<System.UInt32,System.UInt32>
struct NOVTABLE IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Progress_m350E9B9254A685DFB8C3FC2D3131246B8E51D04A(IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Progress_m52E5FA65A83D323DD051DE07DCD1197F3BAB915A(IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Completed_mFB0F42569BF3A6EA84B17C7FC562E077E24E1C1E(IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Completed_mA97E7AD6FFA70605BC3D85B2BA81D9E73477C83C(IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_GetResults_m192AC6B35298E03A2B3C136B3077DF2053FDB6A2(uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.IAsyncOperationWithProgress`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct NOVTABLE IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Progress_mFF848C5B5B7BC734F5632ED85E95D7A6754DD09E(IAsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Progress_mECB0EFC8434856820CFF2023D53326ADE094E8D0(IAsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Completed_m65D2AFD798AB869DF9E4B7BC5ECED5113CFEC342(IAsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Completed_m7CB5DF03EAE5A06808E15B2C9C6C8247529DA35B(IAsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_GetResults_m66D7DB6053679B7E90EB2C24271FCBC3DC2F6207(IBuffer_t13BCDB1D6DE32F79AB9F9E149514026CA6B4AAEF** comReturnValue) = 0;
};
// Windows.Foundation.IAsyncOperation`1<System.Boolean>
struct NOVTABLE IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_put_Completed_mCD6E096799210DC80FFCA3C09D67B27800A90520(IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_get_Completed_m07CAA5869A884FEC2A68E5C00C7DA01E4576826B(IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_GetResults_mD43ABCF581D914A85D4B9445991877915DFF56DA(bool* comReturnValue) = 0;
};
// Windows.Foundation.IAsyncOperation`1<System.Object>
struct NOVTABLE IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_put_Completed_m0C7B8B4487E05BA966965F8D42142089B9326D45(IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_get_Completed_mF5FE7877C4022DAB662BB33D1DCB376892F71003(IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_GetResults_m9512F1B6180476FC615EABE09C819D9FA551E911(Il2CppIInspectable** comReturnValue) = 0;
};
// Windows.Foundation.IAsyncOperation`1<System.UInt32>
struct NOVTABLE IAsyncOperation_1_t601B0A980544E8D0164BE90BE9DF2B1FDB30E21D : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_put_Completed_mE4D347477BCE150FD04681D178DA9535A4695BE8(IAsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_get_Completed_m50BF0D4E42DC8E997DEB7002DEE6C470AC125B32(IAsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_GetResults_m9710952025FE194DE975E7978DCDD6EBC24E63D3(uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.IAsyncOperation`1<Windows.Storage.Streams.IBuffer>
struct NOVTABLE IAsyncOperation_1_t473239B080231B0B820ACD56AD1318AF9313F2CA : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_put_Completed_mB025C07A119AD69ABE8B24643A21F199C33E280F(IAsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper* ___handler0) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_get_Completed_m58958BFE43400FBB53527FDC4ECE97BB3B27AE2F(IAsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_GetResults_m446093AB051E3D5C6C1BC3E3667306D3CEF0FD91(IBuffer_t13BCDB1D6DE32F79AB9F9E149514026CA6B4AAEF** comReturnValue) = 0;
};
// Windows.Foundation.IClosable
struct NOVTABLE IClosable_t5808AF951019E4388C66F7A88AC569F52F581167 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6() = 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;
};
// System.Array_EmptyInternalEnumerator`1<System.Action>
struct EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.TrackableSource>>
struct EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.String,Vuforia.EditorClasses.JSONNode>>
struct EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,Vuforia.Tracker>>
struct EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.BackgroundPlaneBehaviour>>
struct EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.VideoBackgroundBehaviour>>
struct EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.VirtualButtonBehaviour>>
struct EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.EditorClasses.JSONNode>>
struct EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,Vuforia.Tracker>>
struct EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Func`2<System.Type,Vuforia.Tracker>>
struct EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Func`2<Vuforia.Tracker,System.Boolean>>
struct EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.UInt32Enum>
struct EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Vuforia.BackgroundPlaneBehaviour>
struct EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Vuforia.VideoBackgroundBehaviour>
struct EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Vuforia.WireframeBehaviour>
struct EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Windows.Foundation.AsyncStatus>
struct EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Windows.Foundation.FoundationContract>
struct EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Metadata.CompositionType>
struct EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Point>
struct EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Rect>
struct EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Size>
struct EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.String,Vuforia.EditorClasses.JSONNode>
struct KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327, ___dictionary_0)); }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6, ___dictionary_0)); }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8, ___dictionary_0)); }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Type,Vuforia.Tracker>
struct KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0, ___dictionary_0)); }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29, ___dictionary_0)); }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.String,Vuforia.EditorClasses.JSONNode>
struct ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478, ___dictionary_0)); }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635, ___dictionary_0)); }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C, ___dictionary_0)); }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Type,Vuforia.Tracker>
struct ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54, ___dictionary_0)); }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557, ___dictionary_0)); }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.EditorClasses.JSONNode>
struct Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E : 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_tA9278C3FF8C3B866DEC74AE1A02F90A216F3FA1F* ___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_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478 * ___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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___entries_1)); }
inline EntryU5BU5D_tA9278C3FF8C3B866DEC74AE1A02F90A216F3FA1F* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tA9278C3FF8C3B866DEC74AE1A02F90A216F3FA1F** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tA9278C3FF8C3B866DEC74AE1A02F90A216F3FA1F* 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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___keys_7)); }
inline KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327 * 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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ___values_8)); }
inline ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478 * get_values_8() const { return ___values_8; }
inline ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478 * 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_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E, ____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.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 : 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_t5C1624AADAEA036FBA7813A519AABEB01040A694* ___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_tCE3EE49D1913A61C6AD06F12995194833AE192D6 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635 * ___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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___entries_1)); }
inline EntryU5BU5D_t5C1624AADAEA036FBA7813A519AABEB01040A694* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t5C1624AADAEA036FBA7813A519AABEB01040A694** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t5C1624AADAEA036FBA7813A519AABEB01040A694* 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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___keys_7)); }
inline KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6 * 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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ___values_8)); }
inline ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635 * get_values_8() const { return ___values_8; }
inline ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635 * 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_t5F5375AD76FE9971AF2FB07A063F102608C84346, ____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.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 : 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_t68F254E95C8EB26421D23970884497BA48B49BF5* ___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_t9C4A2D003171F12A64704B736FB63ADB0C5005A8 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C * ___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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___entries_1)); }
inline EntryU5BU5D_t68F254E95C8EB26421D23970884497BA48B49BF5* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t68F254E95C8EB26421D23970884497BA48B49BF5** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t68F254E95C8EB26421D23970884497BA48B49BF5* 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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___keys_7)); }
inline KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8 * 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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ___values_8)); }
inline ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C * get_values_8() const { return ___values_8; }
inline ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C * 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_tCD4C115CF8E954D312EF950516A4F7131552B8F3, ____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.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>
struct Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 : 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_tA4D6CBB7516BD110F53AFF33264C5C57B78B83AC* ___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_tC6B6441C841190B33F00E1434FF2BD7141C63AA0 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54 * ___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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___entries_1)); }
inline EntryU5BU5D_tA4D6CBB7516BD110F53AFF33264C5C57B78B83AC* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tA4D6CBB7516BD110F53AFF33264C5C57B78B83AC** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tA4D6CBB7516BD110F53AFF33264C5C57B78B83AC* 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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___keys_7)); }
inline KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0 * 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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ___values_8)); }
inline ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54 * get_values_8() const { return ___values_8; }
inline ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54 * 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_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5, ____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.Collections.Generic.Dictionary`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 : 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_tCF9D295544DD21CF66F0B5989812D10E94E5EB60* ___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_t13869EE190893EA31B1042AD7A24D5D912F27E29 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557 * ___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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___entries_1)); }
inline EntryU5BU5D_tCF9D295544DD21CF66F0B5989812D10E94E5EB60* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tCF9D295544DD21CF66F0B5989812D10E94E5EB60** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tCF9D295544DD21CF66F0B5989812D10E94E5EB60* 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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___keys_7)); }
inline KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29 * 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_t825502D039662E4ADFA7BFCA59ED342336372E24, ___values_8)); }
inline ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557 * get_values_8() const { return ___values_8; }
inline ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557 * 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_t825502D039662E4ADFA7BFCA59ED342336372E24, ____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.Collections.Generic.HashSet`1<Vuforia.BackgroundPlaneBehaviour>
struct HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____buckets_7;
// System.Collections.Generic.HashSet`1_Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_t680A2D2B1FBB7F12B2EF35F314BC29B25C35E8ED* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ____siInfo_14;
public:
inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____buckets_7)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__buckets_7() const { return ____buckets_7; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__buckets_7() { return &____buckets_7; }
inline void set__buckets_7(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
____buckets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
}
inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____slots_8)); }
inline SlotU5BU5D_t680A2D2B1FBB7F12B2EF35F314BC29B25C35E8ED* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_t680A2D2B1FBB7F12B2EF35F314BC29B25C35E8ED** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_t680A2D2B1FBB7F12B2EF35F314BC29B25C35E8ED* value)
{
____slots_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
}
inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____count_9)); }
inline int32_t get__count_9() const { return ____count_9; }
inline int32_t* get_address_of__count_9() { return &____count_9; }
inline void set__count_9(int32_t value)
{
____count_9 = value;
}
inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____lastIndex_10)); }
inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
inline void set__lastIndex_10(int32_t value)
{
____lastIndex_10 = value;
}
inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____freeList_11)); }
inline int32_t get__freeList_11() const { return ____freeList_11; }
inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
inline void set__freeList_11(int32_t value)
{
____freeList_11 = value;
}
inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____comparer_12)); }
inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
inline void set__comparer_12(RuntimeObject* value)
{
____comparer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
}
inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____version_13)); }
inline int32_t get__version_13() const { return ____version_13; }
inline int32_t* get_address_of__version_13() { return &____version_13; }
inline void set__version_13(int32_t value)
{
____version_13 = value;
}
inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748, ____siInfo_14)); }
inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * get__siInfo_14() const { return ____siInfo_14; }
inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** get_address_of__siInfo_14() { return &____siInfo_14; }
inline void set__siInfo_14(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * value)
{
____siInfo_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
}
};
// System.Collections.Generic.HashSet`1<Vuforia.VideoBackgroundBehaviour>
struct HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____buckets_7;
// System.Collections.Generic.HashSet`1_Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_t046B47E1A715103646FC93D69AD4759C0A6BDAA3* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ____siInfo_14;
public:
inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____buckets_7)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__buckets_7() const { return ____buckets_7; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__buckets_7() { return &____buckets_7; }
inline void set__buckets_7(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
____buckets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
}
inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____slots_8)); }
inline SlotU5BU5D_t046B47E1A715103646FC93D69AD4759C0A6BDAA3* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_t046B47E1A715103646FC93D69AD4759C0A6BDAA3** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_t046B47E1A715103646FC93D69AD4759C0A6BDAA3* value)
{
____slots_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
}
inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____count_9)); }
inline int32_t get__count_9() const { return ____count_9; }
inline int32_t* get_address_of__count_9() { return &____count_9; }
inline void set__count_9(int32_t value)
{
____count_9 = value;
}
inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____lastIndex_10)); }
inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
inline void set__lastIndex_10(int32_t value)
{
____lastIndex_10 = value;
}
inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____freeList_11)); }
inline int32_t get__freeList_11() const { return ____freeList_11; }
inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
inline void set__freeList_11(int32_t value)
{
____freeList_11 = value;
}
inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____comparer_12)); }
inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
inline void set__comparer_12(RuntimeObject* value)
{
____comparer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
}
inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____version_13)); }
inline int32_t get__version_13() const { return ____version_13; }
inline int32_t* get_address_of__version_13() { return &____version_13; }
inline void set__version_13(int32_t value)
{
____version_13 = value;
}
inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5, ____siInfo_14)); }
inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * get__siInfo_14() const { return ____siInfo_14; }
inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** get_address_of__siInfo_14() { return &____siInfo_14; }
inline void set__siInfo_14(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * value)
{
____siInfo_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Action>
struct List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7, ____items_1)); }
inline ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3* get__items_1() const { return ____items_1; }
inline ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_StaticFields, ____emptyArray_5)); }
inline ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3* get__emptyArray_5() const { return ____emptyArray_5; }
inline ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ActionU5BU5D_t7BDDAD9C74678DD3A8A0D9C109E1D5AD65392DE3* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754, ____items_1)); }
inline Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E* get__items_1() const { return ____items_1; }
inline Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_StaticFields, ____emptyArray_5)); }
inline Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E* get__emptyArray_5() const { return ____emptyArray_5; }
inline Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Action_1U5BU5D_t68CD80E3FFF459AC6BB277D951FF0B5869FFC91E* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88, ____items_1)); }
inline Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD* get__items_1() const { return ____items_1; }
inline Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_StaticFields, ____emptyArray_5)); }
inline Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD* get__emptyArray_5() const { return ____emptyArray_5; }
inline Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Action_1U5BU5D_t74F10408D238BA8A0D9E79F52E9A022EBF3E12DD* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA, ____items_1)); }
inline Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8* get__items_1() const { return ____items_1; }
inline Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_StaticFields, ____emptyArray_5)); }
inline Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8* get__emptyArray_5() const { return ____emptyArray_5; }
inline Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Action_1U5BU5D_t8513E10607017BE07100B57E63706A1356DBD7F8* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableSource>>
struct List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515, ____items_1)); }
inline Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E* get__items_1() const { return ____items_1; }
inline Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_StaticFields, ____emptyArray_5)); }
inline Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E* get__emptyArray_5() const { return ____emptyArray_5; }
inline Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Action_1U5BU5D_t988BDE5303A9D47626A957213360D30BD38C112E* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809, ____items_1)); }
inline Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4* get__items_1() const { return ____items_1; }
inline Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_StaticFields, ____emptyArray_5)); }
inline Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4* get__emptyArray_5() const { return ____emptyArray_5; }
inline Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Action_1U5BU5D_tF9721BF6D1D85702B73AFB0126EAD0491C2F51A4* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Camera>
struct List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372, ____items_1)); }
inline CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* get__items_1() const { return ____items_1; }
inline CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_StaticFields, ____emptyArray_5)); }
inline CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* get__emptyArray_5() const { return ____emptyArray_5; }
inline CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.EditorClasses.JSONNode>
struct List_1_t12494A17845A9914D067E6A42254AAEDD24443A6 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t12494A17845A9914D067E6A42254AAEDD24443A6, ____items_1)); }
inline JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* get__items_1() const { return ____items_1; }
inline JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t12494A17845A9914D067E6A42254AAEDD24443A6, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t12494A17845A9914D067E6A42254AAEDD24443A6, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t12494A17845A9914D067E6A42254AAEDD24443A6, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_StaticFields, ____emptyArray_5)); }
inline JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* get__emptyArray_5() const { return ____emptyArray_5; }
inline JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.TargetFinder>
struct List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522, ____items_1)); }
inline TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* get__items_1() const { return ____items_1; }
inline TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_StaticFields, ____emptyArray_5)); }
inline TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* get__emptyArray_5() const { return ____emptyArray_5; }
inline TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.TrackerData_TrackableResultData>
struct List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D, ____items_1)); }
inline TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* get__items_1() const { return ____items_1; }
inline TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_StaticFields, ____emptyArray_5)); }
inline TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* get__emptyArray_5() const { return ____emptyArray_5; }
inline TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.VuforiaManager_TrackableIdPair>
struct List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE, ____items_1)); }
inline TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957* get__items_1() const { return ____items_1; }
inline TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_StaticFields, ____emptyArray_5)); }
inline TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957* get__emptyArray_5() const { return ____emptyArray_5; }
inline TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TrackableIdPairU5BU5D_t029D6A29E755616A8B857517ECB340C268E12957* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.Stack`1<Vuforia.EditorClasses.JSONNode>
struct Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C, ____array_0)); }
inline JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* get__array_0() const { return ____array_0; }
inline JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(JSONNodeU5BU5D_t5BE82DFE6BDC7598F1A12CCADDBC378269B2F59E* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C, ____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__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action>
struct ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.TrackableSource>>
struct ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.UInt32Enum>
struct ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Camera>
struct ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.EditorClasses.JSONNode>
struct ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder>
struct ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData_TrackableResultData>
struct ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager_TrackableIdPair>
struct ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.AsyncStatus>
struct ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.FoundationContract>
struct ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Metadata.CompositionType>
struct ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Point>
struct ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Rect>
struct ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Size>
struct ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Linq.Enumerable_Iterator`1<Vuforia.TargetFinder>
struct Iterator_1_tE032F9B368E7116924F83307E29A83D36675348F : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable_Iterator`1::threadId
int32_t ___threadId_0;
// System.Int32 System.Linq.Enumerable_Iterator`1::state
int32_t ___state_1;
// TSource System.Linq.Enumerable_Iterator`1::current
TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC * ___current_2;
public:
inline static int32_t get_offset_of_threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_tE032F9B368E7116924F83307E29A83D36675348F, ___threadId_0)); }
inline int32_t get_threadId_0() const { return ___threadId_0; }
inline int32_t* get_address_of_threadId_0() { return &___threadId_0; }
inline void set_threadId_0(int32_t value)
{
___threadId_0 = value;
}
inline static int32_t get_offset_of_state_1() { return static_cast<int32_t>(offsetof(Iterator_1_tE032F9B368E7116924F83307E29A83D36675348F, ___state_1)); }
inline int32_t get_state_1() const { return ___state_1; }
inline int32_t* get_address_of_state_1() { return &___state_1; }
inline void set_state_1(int32_t value)
{
___state_1 = value;
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(Iterator_1_tE032F9B368E7116924F83307E29A83D36675348F, ___current_2)); }
inline TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC * get_current_2() const { return ___current_2; }
inline TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC ** get_address_of_current_2() { return &___current_2; }
inline void set_current_2(TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC * value)
{
___current_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_2), (void*)value);
}
};
// 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
{
};
// System.__Il2CppComObject
// System.Array_InternalEnumerator`1<System.Action>
struct InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Action`1<Vuforia.TrackableSource>>
struct InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.String,Vuforia.EditorClasses.JSONNode>>
struct InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,Vuforia.Tracker>>
struct InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.BackgroundPlaneBehaviour>>
struct InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.VideoBackgroundBehaviour>>
struct InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.VirtualButtonBehaviour>>
struct InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.EditorClasses.JSONNode>>
struct InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,Vuforia.Tracker>>
struct InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Func`2<System.Type,Vuforia.Tracker>>
struct InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Func`2<Vuforia.Tracker,System.Boolean>>
struct InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.UInt32Enum>
struct InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Vuforia.BackgroundPlaneBehaviour>
struct InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Vuforia.VideoBackgroundBehaviour>
struct InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Vuforia.WireframeBehaviour>
struct InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Windows.Foundation.AsyncStatus>
struct InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Windows.Foundation.FoundationContract>
struct InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Windows.Foundation.Metadata.CompositionType>
struct InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Windows.Foundation.Point>
struct InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Windows.Foundation.Rect>
struct InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<Windows.Foundation.Size>
struct InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.String,Vuforia.EditorClasses.JSONNode>
struct Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * ___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
String_t* ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96, ___dictionary_0)); }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * 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_t2DF4669EFEA24BC95673AB109453544F4214EE96, ___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_t2DF4669EFEA24BC95673AB109453544F4214EE96, ___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_t2DF4669EFEA24BC95673AB109453544F4214EE96, ___currentKey_3)); }
inline String_t* get_currentKey_3() const { return ___currentKey_3; }
inline String_t** get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(String_t* value)
{
___currentKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * ___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
Type_t * ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216, ___dictionary_0)); }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * 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_t05D1202157E6A169D8277280F5AC9D2B164B4216, ___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_t05D1202157E6A169D8277280F5AC9D2B164B4216, ___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_t05D1202157E6A169D8277280F5AC9D2B164B4216, ___currentKey_3)); }
inline Type_t * get_currentKey_3() const { return ___currentKey_3; }
inline Type_t ** get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(Type_t * value)
{
___currentKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * ___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
Type_t * ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299, ___dictionary_0)); }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * 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_tD642741DCC1CA2772B7179BFF94674594580B299, ___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_tD642741DCC1CA2772B7179BFF94674594580B299, ___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_tD642741DCC1CA2772B7179BFF94674594580B299, ___currentKey_3)); }
inline Type_t * get_currentKey_3() const { return ___currentKey_3; }
inline Type_t ** get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(Type_t * value)
{
___currentKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Type,Vuforia.Tracker>
struct Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * ___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
Type_t * ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76, ___dictionary_0)); }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * 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_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76, ___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_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76, ___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_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76, ___currentKey_3)); }
inline Type_t * get_currentKey_3() const { return ___currentKey_3; }
inline Type_t ** get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(Type_t * value)
{
___currentKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,Vuforia.VirtualButtonBehaviour>
struct Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB * ___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
VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26, ___dictionary_0)); }
inline Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB * 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_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26, ___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_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26, ___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_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26, ___currentValue_3)); }
inline VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE * get_currentValue_3() const { return ___currentValue_3; }
inline VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.String,Vuforia.EditorClasses.JSONNode>
struct Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * ___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
JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73, ___dictionary_0)); }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * 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_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73, ___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_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73, ___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_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73, ___currentValue_3)); }
inline JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * get_currentValue_3() const { return ___currentValue_3; }
inline JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * ___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
Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48, ___dictionary_0)); }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * 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_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48, ___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_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48, ___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_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48, ___currentValue_3)); }
inline Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 * get_currentValue_3() const { return ___currentValue_3; }
inline Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * ___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
Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB, ___dictionary_0)); }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * 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_t3DC08862EBFEBE21D2E2D7361311A41B394286BB, ___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_t3DC08862EBFEBE21D2E2D7361311A41B394286BB, ___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_t3DC08862EBFEBE21D2E2D7361311A41B394286BB, ___currentValue_3)); }
inline Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 * get_currentValue_3() const { return ___currentValue_3; }
inline Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Type,Vuforia.Tracker>
struct Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * ___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
Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F, ___dictionary_0)); }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * 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_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F, ___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_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F, ___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_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F, ___currentValue_3)); }
inline Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 * get_currentValue_3() const { return ___currentValue_3; }
inline Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * ___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
UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12, ___dictionary_0)); }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * 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_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12, ___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_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12, ___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_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12, ___currentValue_3)); }
inline UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 * get_currentValue_3() const { return ___currentValue_3; }
inline UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Enumerator<Vuforia.BackgroundPlaneBehaviour>
struct Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set
HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748 * ____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
BackgroundPlaneBehaviour_t2615248F9F83AF94A06C6585EBB6C1D3BCF64338 * ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7, ____set_0)); }
inline HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748 * get__set_0() const { return ____set_0; }
inline HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748 ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748 * 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_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7, ____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_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7, ____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_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7, ____current_3)); }
inline BackgroundPlaneBehaviour_t2615248F9F83AF94A06C6585EBB6C1D3BCF64338 * get__current_3() const { return ____current_3; }
inline BackgroundPlaneBehaviour_t2615248F9F83AF94A06C6585EBB6C1D3BCF64338 ** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(BackgroundPlaneBehaviour_t2615248F9F83AF94A06C6585EBB6C1D3BCF64338 * value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Enumerator<Vuforia.VideoBackgroundBehaviour>
struct Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set
HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5 * ____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
VideoBackgroundBehaviour_t5FE09B8C02AFCA301B6D915668BE3C050CE37C00 * ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277, ____set_0)); }
inline HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5 * get__set_0() const { return ____set_0; }
inline HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5 ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5 * 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_t74521CEBC0C664C440DD637AB359BEF68481E277, ____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_t74521CEBC0C664C440DD637AB359BEF68481E277, ____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_t74521CEBC0C664C440DD637AB359BEF68481E277, ____current_3)); }
inline VideoBackgroundBehaviour_t5FE09B8C02AFCA301B6D915668BE3C050CE37C00 * get__current_3() const { return ____current_3; }
inline VideoBackgroundBehaviour_t5FE09B8C02AFCA301B6D915668BE3C050CE37C00 ** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(VideoBackgroundBehaviour_t5FE09B8C02AFCA301B6D915668BE3C050CE37C00 * value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.VirtualButtonBehaviour>
struct KeyValuePair_2_tFEDE338F836A65A0182954F75E8FBDC522906361
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFEDE338F836A65A0182954F75E8FBDC522906361, ___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_tFEDE338F836A65A0182954F75E8FBDC522906361, ___value_1)); }
inline VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE * get_value_1() const { return ___value_1; }
inline VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(VirtualButtonBehaviour_tD6CB39E767B87A0527253A412F4DB6F813BD6FEE * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.EditorClasses.JSONNode>
struct KeyValuePair_2_tDB40BE2D6636CFCD84582A263196B4E879C43FC2
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tDB40BE2D6636CFCD84582A263196B4E879C43FC2, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tDB40BE2D6636CFCD84582A263196B4E879C43FC2, ___value_1)); }
inline JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * get_value_1() const { return ___value_1; }
inline JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct KeyValuePair_2_tD48A9B23862FC63FCC4FEF7DF9C95F941043EDC6
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Type_t * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD48A9B23862FC63FCC4FEF7DF9C95F941043EDC6, ___key_0)); }
inline Type_t * get_key_0() const { return ___key_0; }
inline Type_t ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Type_t * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD48A9B23862FC63FCC4FEF7DF9C95F941043EDC6, ___value_1)); }
inline Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 * get_value_1() const { return ___value_1; }
inline Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Func_2_t51E32FFFA8C011605D4EBC41F0D491FF04EC3653 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct KeyValuePair_2_tDC77D56005CEE77F5A473702ECC73344FA60F846
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Type_t * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tDC77D56005CEE77F5A473702ECC73344FA60F846, ___key_0)); }
inline Type_t * get_key_0() const { return ___key_0; }
inline Type_t ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Type_t * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tDC77D56005CEE77F5A473702ECC73344FA60F846, ___value_1)); }
inline Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 * get_value_1() const { return ___value_1; }
inline Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Func_2_t1FEBC594C1CDC0755D9D4416BBC9C0D79E4CDEE8 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Type,Vuforia.Tracker>
struct KeyValuePair_2_t45B55F7C3A8556881F16EEC293CB8136BB26E3C5
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Type_t * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t45B55F7C3A8556881F16EEC293CB8136BB26E3C5, ___key_0)); }
inline Type_t * get_key_0() const { return ___key_0; }
inline Type_t ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Type_t * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t45B55F7C3A8556881F16EEC293CB8136BB26E3C5, ___value_1)); }
inline Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 * get_value_1() const { return ___value_1; }
inline Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Tracker_t11C8E7B84615512E8125186CDC5DF90D9D7B58F1 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Action>
struct Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7 * ___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
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16, ___list_0)); }
inline List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7 * get_list_0() const { return ___list_0; }
inline List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7 * 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_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16, ___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_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16, ___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_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16, ___current_3)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_current_3() const { return ___current_3; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754 * ___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
Action_1_tBEA0EDB3667CC5A2DCE7DFE6F81E5887CE768598 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE, ___list_0)); }
inline List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754 * get_list_0() const { return ___list_0; }
inline List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754 * 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_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE, ___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_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE, ___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_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE, ___current_3)); }
inline Action_1_tBEA0EDB3667CC5A2DCE7DFE6F81E5887CE768598 * get_current_3() const { return ___current_3; }
inline Action_1_tBEA0EDB3667CC5A2DCE7DFE6F81E5887CE768598 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Action_1_tBEA0EDB3667CC5A2DCE7DFE6F81E5887CE768598 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88 * ___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
Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003, ___list_0)); }
inline List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88 * get_list_0() const { return ___list_0; }
inline List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88 * 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_tFC34ED47620DC97DC277EEE7F79F405C0C749003, ___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_tFC34ED47620DC97DC277EEE7F79F405C0C749003, ___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_tFC34ED47620DC97DC277EEE7F79F405C0C749003, ___current_3)); }
inline Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * get_current_3() const { return ___current_3; }
inline Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA * ___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
Action_1_t815FDCE2DC0C3334353668E93D550D2B896E8C02 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D, ___list_0)); }
inline List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA * get_list_0() const { return ___list_0; }
inline List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA * 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_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D, ___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_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D, ___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_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D, ___current_3)); }
inline Action_1_t815FDCE2DC0C3334353668E93D550D2B896E8C02 * get_current_3() const { return ___current_3; }
inline Action_1_t815FDCE2DC0C3334353668E93D550D2B896E8C02 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Action_1_t815FDCE2DC0C3334353668E93D550D2B896E8C02 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.TrackableSource>>
struct Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515 * ___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
Action_1_t525D82D7C2572D72867F7D2F825C82EBD0B6696D * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A, ___list_0)); }
inline List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515 * get_list_0() const { return ___list_0; }
inline List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515 * 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_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A, ___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_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A, ___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_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A, ___current_3)); }
inline Action_1_t525D82D7C2572D72867F7D2F825C82EBD0B6696D * get_current_3() const { return ___current_3; }
inline Action_1_t525D82D7C2572D72867F7D2F825C82EBD0B6696D ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Action_1_t525D82D7C2572D72867F7D2F825C82EBD0B6696D * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809 * ___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
Action_1_tC93D09787D2D8EDD972075A6E2BA9F717FCBC8F2 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF, ___list_0)); }
inline List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809 * get_list_0() const { return ___list_0; }
inline List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809 * 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_t23570BE5267E7DF73BB2EF6644175D62BE8694EF, ___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_t23570BE5267E7DF73BB2EF6644175D62BE8694EF, ___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_t23570BE5267E7DF73BB2EF6644175D62BE8694EF, ___current_3)); }
inline Action_1_tC93D09787D2D8EDD972075A6E2BA9F717FCBC8F2 * get_current_3() const { return ___current_3; }
inline Action_1_tC93D09787D2D8EDD972075A6E2BA9F717FCBC8F2 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Action_1_tC93D09787D2D8EDD972075A6E2BA9F717FCBC8F2 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.Camera>
struct Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 * ___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
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1, ___list_0)); }
inline List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 * get_list_0() const { return ___list_0; }
inline List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372 * 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_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1, ___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_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1, ___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_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1, ___current_3)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_current_3() const { return ___current_3; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<Vuforia.EditorClasses.JSONNode>
struct Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t12494A17845A9914D067E6A42254AAEDD24443A6 * ___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
JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7, ___list_0)); }
inline List_1_t12494A17845A9914D067E6A42254AAEDD24443A6 * get_list_0() const { return ___list_0; }
inline List_1_t12494A17845A9914D067E6A42254AAEDD24443A6 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t12494A17845A9914D067E6A42254AAEDD24443A6 * 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_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7, ___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_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7, ___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_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7, ___current_3)); }
inline JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * get_current_3() const { return ___current_3; }
inline JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(JSONNode_tCB06F3E32A8867B1AA8F25C6C78361D0A1E4A730 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<Vuforia.TargetFinder>
struct Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 * ___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
TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F, ___list_0)); }
inline List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 * get_list_0() const { return ___list_0; }
inline List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 * 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_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F, ___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_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F, ___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_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F, ___current_3)); }
inline TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC * get_current_3() const { return ___current_3; }
inline TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(TargetFinder_t2AFA3E4A66C461FA522FE35048DB093003A7B1AC * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)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.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.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.Linq.Enumerable_WhereArrayIterator`1<Vuforia.TargetFinder>
struct WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A : public Iterator_1_tE032F9B368E7116924F83307E29A83D36675348F
{
public:
// TSource[] System.Linq.Enumerable_WhereArrayIterator`1::source
TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereArrayIterator`1::predicate
Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * ___predicate_4;
// System.Int32 System.Linq.Enumerable_WhereArrayIterator`1::index
int32_t ___index_5;
public:
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A, ___source_3)); }
inline TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* get_source_3() const { return ___source_3; }
inline TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(TargetFinderU5BU5D_t1841E6B31BDD8899EDCB728615B42F52DF895A84* value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value);
}
inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A, ___predicate_4)); }
inline Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t66D295CE69A710F35487304B63F4B7518540DACF ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * value)
{
___predicate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value);
}
inline static int32_t get_offset_of_index_5() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A, ___index_5)); }
inline int32_t get_index_5() const { return ___index_5; }
inline int32_t* get_address_of_index_5() { return &___index_5; }
inline void set_index_5(int32_t value)
{
___index_5 = value;
}
};
// System.Linq.Enumerable_WhereEnumerableIterator`1<Vuforia.TargetFinder>
struct WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE : public Iterator_1_tE032F9B368E7116924F83307E29A83D36675348F
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable_WhereEnumerableIterator`1::source
RuntimeObject* ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereEnumerableIterator`1::predicate
Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * ___predicate_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable_WhereEnumerableIterator`1::enumerator
RuntimeObject* ___enumerator_5;
public:
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE, ___source_3)); }
inline RuntimeObject* get_source_3() const { return ___source_3; }
inline RuntimeObject** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(RuntimeObject* value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value);
}
inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE, ___predicate_4)); }
inline Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t66D295CE69A710F35487304B63F4B7518540DACF ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * value)
{
___predicate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value);
}
inline static int32_t get_offset_of_enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE, ___enumerator_5)); }
inline RuntimeObject* get_enumerator_5() const { return ___enumerator_5; }
inline RuntimeObject** get_address_of_enumerator_5() { return &___enumerator_5; }
inline void set_enumerator_5(RuntimeObject* value)
{
___enumerator_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumerator_5), (void*)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.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// System.VoidValueTypeParameter
struct VoidValueTypeParameter_t4218889FC907F3892F775433493F080BD1A41CAA
{
public:
union
{
struct
{
};
uint8_t VoidValueTypeParameter_t4218889FC907F3892F775433493F080BD1A41CAA__padding[1];
};
public:
};
// System.__Il2CppComDelegate
struct __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD : public Il2CppComObject
{
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.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;
}
};
// Vuforia.VuforiaManager_TrackableIdPair
struct TrackableIdPair_t0ED43F39A2E02ABE4CC16B7E1EAB75CA03F3443F
{
public:
// System.Int32 Vuforia.VuforiaManager_TrackableIdPair::TrackableId
int32_t ___TrackableId_0;
// System.Int32 Vuforia.VuforiaManager_TrackableIdPair::ResultId
int32_t ___ResultId_1;
public:
inline static int32_t get_offset_of_TrackableId_0() { return static_cast<int32_t>(offsetof(TrackableIdPair_t0ED43F39A2E02ABE4CC16B7E1EAB75CA03F3443F, ___TrackableId_0)); }
inline int32_t get_TrackableId_0() const { return ___TrackableId_0; }
inline int32_t* get_address_of_TrackableId_0() { return &___TrackableId_0; }
inline void set_TrackableId_0(int32_t value)
{
___TrackableId_0 = value;
}
inline static int32_t get_offset_of_ResultId_1() { return static_cast<int32_t>(offsetof(TrackableIdPair_t0ED43F39A2E02ABE4CC16B7E1EAB75CA03F3443F, ___ResultId_1)); }
inline int32_t get_ResultId_1() const { return ___ResultId_1; }
inline int32_t* get_address_of_ResultId_1() { return &___ResultId_1; }
inline void set_ResultId_1(int32_t value)
{
___ResultId_1 = value;
}
};
// Windows.Foundation.FoundationContract
struct FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9
{
public:
public:
};
// 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_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_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;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,Vuforia.VirtualButtonBehaviour>
struct Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB * ___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_tFEDE338F836A65A0182954F75E8FBDC522906361 ___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_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE, ___dictionary_0)); }
inline Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBA26DB7EF80FA70EE2C6073D1F2443D888F7D6AB * 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_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE, ___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_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE, ___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_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE, ___current_3)); }
inline KeyValuePair_2_tFEDE338F836A65A0182954F75E8FBDC522906361 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tFEDE338F836A65A0182954F75E8FBDC522906361 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tFEDE338F836A65A0182954F75E8FBDC522906361 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_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE, ___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.Collections.Generic.Dictionary`2_Enumerator<System.String,Vuforia.EditorClasses.JSONNode>
struct Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * ___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_tDB40BE2D6636CFCD84582A263196B4E879C43FC2 ___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_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152, ___dictionary_0)); }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E * 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_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152, ___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_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152, ___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_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152, ___current_3)); }
inline KeyValuePair_2_tDB40BE2D6636CFCD84582A263196B4E879C43FC2 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tDB40BE2D6636CFCD84582A263196B4E879C43FC2 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tDB40BE2D6636CFCD84582A263196B4E879C43FC2 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152, ___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.Collections.Generic.Dictionary`2_Enumerator<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * ___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_tD48A9B23862FC63FCC4FEF7DF9C95F941043EDC6 ___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_tA7B545559E9A8113ECE66521F215C24AE3479C94, ___dictionary_0)); }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346 * 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_tA7B545559E9A8113ECE66521F215C24AE3479C94, ___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_tA7B545559E9A8113ECE66521F215C24AE3479C94, ___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_tA7B545559E9A8113ECE66521F215C24AE3479C94, ___current_3)); }
inline KeyValuePair_2_tD48A9B23862FC63FCC4FEF7DF9C95F941043EDC6 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tD48A9B23862FC63FCC4FEF7DF9C95F941043EDC6 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tD48A9B23862FC63FCC4FEF7DF9C95F941043EDC6 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94, ___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.Collections.Generic.Dictionary`2_Enumerator<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * ___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_tDC77D56005CEE77F5A473702ECC73344FA60F846 ___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_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF, ___dictionary_0)); }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3 * 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_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF, ___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_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF, ___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_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF, ___current_3)); }
inline KeyValuePair_2_tDC77D56005CEE77F5A473702ECC73344FA60F846 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tDC77D56005CEE77F5A473702ECC73344FA60F846 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tDC77D56005CEE77F5A473702ECC73344FA60F846 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF, ___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.Collections.Generic.Dictionary`2_Enumerator<System.Type,Vuforia.Tracker>
struct Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * ___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_t45B55F7C3A8556881F16EEC293CB8136BB26E3C5 ___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_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D, ___dictionary_0)); }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5 * 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_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D, ___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_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D, ___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_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D, ___current_3)); }
inline KeyValuePair_2_t45B55F7C3A8556881F16EEC293CB8136BB26E3C5 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t45B55F7C3A8556881F16EEC293CB8136BB26E3C5 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t45B55F7C3A8556881F16EEC293CB8136BB26E3C5 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D, ___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.Collections.Generic.List`1_Enumerator<Vuforia.VuforiaManager_TrackableIdPair>
struct Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE * ___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
TrackableIdPair_t0ED43F39A2E02ABE4CC16B7E1EAB75CA03F3443F ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283, ___list_0)); }
inline List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE * get_list_0() const { return ___list_0; }
inline List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE * 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_t1E8F24191ED11929F534514D2EE40D5DEF3BC283, ___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_t1E8F24191ED11929F534514D2EE40D5DEF3BC283, ___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_t1E8F24191ED11929F534514D2EE40D5DEF3BC283, ___current_3)); }
inline TrackableIdPair_t0ED43F39A2E02ABE4CC16B7E1EAB75CA03F3443F get_current_3() const { return ___current_3; }
inline TrackableIdPair_t0ED43F39A2E02ABE4CC16B7E1EAB75CA03F3443F * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(TrackableIdPair_t0ED43F39A2E02ABE4CC16B7E1EAB75CA03F3443F value)
{
___current_3 = value;
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Linq.Enumerable_WhereListIterator`1<Vuforia.TargetFinder>
struct WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44 : public Iterator_1_tE032F9B368E7116924F83307E29A83D36675348F
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable_WhereListIterator`1::source
List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 * ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereListIterator`1::predicate
Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * ___predicate_4;
// System.Collections.Generic.List`1_Enumerator<TSource> System.Linq.Enumerable_WhereListIterator`1::enumerator
Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F ___enumerator_5;
public:
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44, ___source_3)); }
inline List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 * get_source_3() const { return ___source_3; }
inline List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 ** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522 * value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value);
}
inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44, ___predicate_4)); }
inline Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t66D295CE69A710F35487304B63F4B7518540DACF ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t66D295CE69A710F35487304B63F4B7518540DACF * value)
{
___predicate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value);
}
inline static int32_t get_offset_of_enumerator_5() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44, ___enumerator_5)); }
inline Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F get_enumerator_5() const { return ___enumerator_5; }
inline Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F * get_address_of_enumerator_5() { return &___enumerator_5; }
inline void set_enumerator_5(Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F value)
{
___enumerator_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___enumerator_5))->___list_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___enumerator_5))->___current_3), (void*)NULL);
#endif
}
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.FoundationContract>
struct IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84 : public RuntimeObject
{
public:
// Windows.Foundation.Collections.IIterator`1<T> System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::iterator
RuntimeObject* ___iterator_0;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::initialized
bool ___initialized_1;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::hadCurrent
bool ___hadCurrent_2;
// T System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::current
FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84, ___iterator_0)); }
inline RuntimeObject* get_iterator_0() const { return ___iterator_0; }
inline RuntimeObject** get_address_of_iterator_0() { return &___iterator_0; }
inline void set_iterator_0(RuntimeObject* value)
{
___iterator_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iterator_0), (void*)value);
}
inline static int32_t get_offset_of_initialized_1() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84, ___initialized_1)); }
inline bool get_initialized_1() const { return ___initialized_1; }
inline bool* get_address_of_initialized_1() { return &___initialized_1; }
inline void set_initialized_1(bool value)
{
___initialized_1 = value;
}
inline static int32_t get_offset_of_hadCurrent_2() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84, ___hadCurrent_2)); }
inline bool get_hadCurrent_2() const { return ___hadCurrent_2; }
inline bool* get_address_of_hadCurrent_2() { return &___hadCurrent_2; }
inline void set_hadCurrent_2(bool value)
{
___hadCurrent_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84, ___current_3)); }
inline FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 get_current_3() const { return ___current_3; }
inline FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 value)
{
___current_3 = value;
}
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.Point>
struct IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10 : public RuntimeObject
{
public:
// Windows.Foundation.Collections.IIterator`1<T> System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::iterator
RuntimeObject* ___iterator_0;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::initialized
bool ___initialized_1;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::hadCurrent
bool ___hadCurrent_2;
// T System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::current
Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10, ___iterator_0)); }
inline RuntimeObject* get_iterator_0() const { return ___iterator_0; }
inline RuntimeObject** get_address_of_iterator_0() { return &___iterator_0; }
inline void set_iterator_0(RuntimeObject* value)
{
___iterator_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iterator_0), (void*)value);
}
inline static int32_t get_offset_of_initialized_1() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10, ___initialized_1)); }
inline bool get_initialized_1() const { return ___initialized_1; }
inline bool* get_address_of_initialized_1() { return &___initialized_1; }
inline void set_initialized_1(bool value)
{
___initialized_1 = value;
}
inline static int32_t get_offset_of_hadCurrent_2() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10, ___hadCurrent_2)); }
inline bool get_hadCurrent_2() const { return ___hadCurrent_2; }
inline bool* get_address_of_hadCurrent_2() { return &___hadCurrent_2; }
inline void set_hadCurrent_2(bool value)
{
___hadCurrent_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10, ___current_3)); }
inline Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC get_current_3() const { return ___current_3; }
inline Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC value)
{
___current_3 = value;
}
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.Rect>
struct IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA : public RuntimeObject
{
public:
// Windows.Foundation.Collections.IIterator`1<T> System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::iterator
RuntimeObject* ___iterator_0;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::initialized
bool ___initialized_1;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::hadCurrent
bool ___hadCurrent_2;
// T System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::current
Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA, ___iterator_0)); }
inline RuntimeObject* get_iterator_0() const { return ___iterator_0; }
inline RuntimeObject** get_address_of_iterator_0() { return &___iterator_0; }
inline void set_iterator_0(RuntimeObject* value)
{
___iterator_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iterator_0), (void*)value);
}
inline static int32_t get_offset_of_initialized_1() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA, ___initialized_1)); }
inline bool get_initialized_1() const { return ___initialized_1; }
inline bool* get_address_of_initialized_1() { return &___initialized_1; }
inline void set_initialized_1(bool value)
{
___initialized_1 = value;
}
inline static int32_t get_offset_of_hadCurrent_2() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA, ___hadCurrent_2)); }
inline bool get_hadCurrent_2() const { return ___hadCurrent_2; }
inline bool* get_address_of_hadCurrent_2() { return &___hadCurrent_2; }
inline void set_hadCurrent_2(bool value)
{
___hadCurrent_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA, ___current_3)); }
inline Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 get_current_3() const { return ___current_3; }
inline Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 value)
{
___current_3 = value;
}
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.Size>
struct IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726 : public RuntimeObject
{
public:
// Windows.Foundation.Collections.IIterator`1<T> System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::iterator
RuntimeObject* ___iterator_0;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::initialized
bool ___initialized_1;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::hadCurrent
bool ___hadCurrent_2;
// T System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::current
Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726, ___iterator_0)); }
inline RuntimeObject* get_iterator_0() const { return ___iterator_0; }
inline RuntimeObject** get_address_of_iterator_0() { return &___iterator_0; }
inline void set_iterator_0(RuntimeObject* value)
{
___iterator_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iterator_0), (void*)value);
}
inline static int32_t get_offset_of_initialized_1() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726, ___initialized_1)); }
inline bool get_initialized_1() const { return ___initialized_1; }
inline bool* get_address_of_initialized_1() { return &___initialized_1; }
inline void set_initialized_1(bool value)
{
___initialized_1 = value;
}
inline static int32_t get_offset_of_hadCurrent_2() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726, ___hadCurrent_2)); }
inline bool get_hadCurrent_2() const { return ___hadCurrent_2; }
inline bool* get_address_of_hadCurrent_2() { return &___hadCurrent_2; }
inline void set_hadCurrent_2(bool value)
{
___hadCurrent_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726, ___current_3)); }
inline Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 get_current_3() const { return ___current_3; }
inline Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 value)
{
___current_3 = value;
}
};
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task_ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_action_5), (void*)value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_stateObject_6), (void*)value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskScheduler_7)); }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_taskScheduler_7), (void*)value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_parent_8)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_parent_8), (void*)value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_continuationObject_10), (void*)value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_contingentProperties_15)); }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_contingentProperties_15), (void*)value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task_ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_factory_3)); }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_factory_3), (void*)value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCompletionSentinel_11), (void*)value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_currentActiveTasks_13), (void*)value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_activeTasksLock_14), (void*)value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCancelCallback_16), (void*)value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_createContingentProperties_17), (void*)value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_completedTask_18)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_completedTask_18), (void*)value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsExceptionObservedByParentPredicate_19), (void*)value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ecCallback_20), (void*)value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsTaskContinuationNullPredicate_21), (void*)value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_currentTask_0), (void*)value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_stackGuard_1), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
RuntimeObject * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
RuntimeObject * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____completedHandler_5)); }
inline RuntimeObject * get__completedHandler_5() const { return ____completedHandler_5; }
inline RuntimeObject ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(RuntimeObject * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____progressHandler_6)); }
inline RuntimeObject * get__progressHandler_6() const { return ____progressHandler_6; }
inline RuntimeObject ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(RuntimeObject * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>
struct TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
RuntimeObject * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
RuntimeObject * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____completedHandler_5)); }
inline RuntimeObject * get__completedHandler_5() const { return ____completedHandler_5; }
inline RuntimeObject ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(RuntimeObject * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____progressHandler_6)); }
inline RuntimeObject * get__progressHandler_6() const { return ____progressHandler_6; }
inline RuntimeObject ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(RuntimeObject * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
RuntimeObject * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
RuntimeObject * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____completedHandler_5)); }
inline RuntimeObject * get__completedHandler_5() const { return ____completedHandler_5; }
inline RuntimeObject ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(RuntimeObject * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____progressHandler_6)); }
inline RuntimeObject * get__progressHandler_6() const { return ____progressHandler_6; }
inline RuntimeObject ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(RuntimeObject * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
RuntimeObject * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
RuntimeObject * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____completedHandler_5)); }
inline RuntimeObject * get__completedHandler_5() const { return ____completedHandler_5; }
inline RuntimeObject ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(RuntimeObject * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____progressHandler_6)); }
inline RuntimeObject * get__progressHandler_6() const { return ____progressHandler_6; }
inline RuntimeObject ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(RuntimeObject * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>
struct TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
RuntimeObject * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
RuntimeObject * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____completedHandler_5)); }
inline RuntimeObject * get__completedHandler_5() const { return ____completedHandler_5; }
inline RuntimeObject ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(RuntimeObject * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____progressHandler_6)); }
inline RuntimeObject * get__progressHandler_6() const { return ____progressHandler_6; }
inline RuntimeObject ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(RuntimeObject * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
RuntimeObject * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
RuntimeObject * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____completedHandler_5)); }
inline RuntimeObject * get__completedHandler_5() const { return ____completedHandler_5; }
inline RuntimeObject ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(RuntimeObject * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____progressHandler_6)); }
inline RuntimeObject * get__progressHandler_6() const { return ____progressHandler_6; }
inline RuntimeObject ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(RuntimeObject * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
AsyncActionCompletedHandler_t1820A7A20AA2CF935463CD8EB21800005EFE488D * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____completedHandler_5)); }
inline AsyncActionCompletedHandler_t1820A7A20AA2CF935463CD8EB21800005EFE488D * get__completedHandler_5() const { return ____completedHandler_5; }
inline AsyncActionCompletedHandler_t1820A7A20AA2CF935463CD8EB21800005EFE488D ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(AsyncActionCompletedHandler_t1820A7A20AA2CF935463CD8EB21800005EFE488D * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____progressHandler_6)); }
inline VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * get__progressHandler_6() const { return ____progressHandler_6; }
inline VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____completedHandler_5)); }
inline AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * get__completedHandler_5() const { return ____completedHandler_5; }
inline AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____progressHandler_6)); }
inline VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * get__progressHandler_6() const { return ____progressHandler_6; }
inline VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____completedHandler_5)); }
inline AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * get__completedHandler_5() const { return ____completedHandler_5; }
inline AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____progressHandler_6)); }
inline VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * get__progressHandler_6() const { return ____progressHandler_6; }
inline VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(VoidReferenceTypeParameter_t255142D4EFCF5C11FA3FC962097F7D9B2D3B4F6E * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>
struct TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____completedHandler_5)); }
inline AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * get__completedHandler_5() const { return ____completedHandler_5; }
inline AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____progressHandler_6)); }
inline AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * get__progressHandler_6() const { return ____progressHandler_6; }
inline AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____completedHandler_5)); }
inline AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * get__completedHandler_5() const { return ____completedHandler_5; }
inline AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____progressHandler_6)); }
inline AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * get__progressHandler_6() const { return ____progressHandler_6; }
inline AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB : public RuntimeObject
{
public:
// System.Threading.CancellationTokenSource System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_cancelTokenSource
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ____cancelTokenSource_0;
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_id
uint32_t ____id_1;
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_error
Exception_t * ____error_2;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_state
int32_t ____state_3;
// System.Object System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_dataContainer
RuntimeObject * ____dataContainer_4;
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_completedHandler
AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * ____completedHandler_5;
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_progressHandler
AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * ____progressHandler_6;
// System.Threading.SynchronizationContext System.Threading.Tasks.TaskToAsyncInfoAdapter`4::_startingContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____startingContext_7;
public:
inline static int32_t get_offset_of__cancelTokenSource_0() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____cancelTokenSource_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get__cancelTokenSource_0() const { return ____cancelTokenSource_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of__cancelTokenSource_0() { return &____cancelTokenSource_0; }
inline void set__cancelTokenSource_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
____cancelTokenSource_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelTokenSource_0), (void*)value);
}
inline static int32_t get_offset_of__id_1() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____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__error_2() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____error_2)); }
inline Exception_t * get__error_2() const { return ____error_2; }
inline Exception_t ** get_address_of__error_2() { return &____error_2; }
inline void set__error_2(Exception_t * value)
{
____error_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____state_3)); }
inline int32_t get__state_3() const { return ____state_3; }
inline int32_t* get_address_of__state_3() { return &____state_3; }
inline void set__state_3(int32_t value)
{
____state_3 = value;
}
inline static int32_t get_offset_of__dataContainer_4() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____dataContainer_4)); }
inline RuntimeObject * get__dataContainer_4() const { return ____dataContainer_4; }
inline RuntimeObject ** get_address_of__dataContainer_4() { return &____dataContainer_4; }
inline void set__dataContainer_4(RuntimeObject * value)
{
____dataContainer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dataContainer_4), (void*)value);
}
inline static int32_t get_offset_of__completedHandler_5() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____completedHandler_5)); }
inline AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * get__completedHandler_5() const { return ____completedHandler_5; }
inline AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B ** get_address_of__completedHandler_5() { return &____completedHandler_5; }
inline void set__completedHandler_5(AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * value)
{
____completedHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completedHandler_5), (void*)value);
}
inline static int32_t get_offset_of__progressHandler_6() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____progressHandler_6)); }
inline AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * get__progressHandler_6() const { return ____progressHandler_6; }
inline AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 ** get_address_of__progressHandler_6() { return &____progressHandler_6; }
inline void set__progressHandler_6(AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * value)
{
____progressHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____progressHandler_6), (void*)value);
}
inline static int32_t get_offset_of__startingContext_7() { return static_cast<int32_t>(offsetof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB, ____startingContext_7)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__startingContext_7() const { return ____startingContext_7; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__startingContext_7() { return &____startingContext_7; }
inline void set__startingContext_7(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____startingContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____startingContext_7), (void*)value);
}
};
// System.UInt32Enum
struct UInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA
{
public:
// System.UInt32 System.UInt32Enum::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA, ___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;
}
};
// Vuforia.PIXEL_FORMAT
struct PIXEL_FORMAT_t2C0F763FCD84C633340917492F06896787FD9383
{
public:
// System.Int32 Vuforia.PIXEL_FORMAT::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PIXEL_FORMAT_t2C0F763FCD84C633340917492F06896787FD9383, ___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;
}
};
// Vuforia.TrackerData_PoseData
#pragma pack(push, tp, 1)
struct PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B
{
public:
// UnityEngine.Vector3 Vuforia.TrackerData_PoseData::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Quaternion Vuforia.TrackerData_PoseData::orientation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___orientation_1;
// System.Int32 Vuforia.TrackerData_PoseData::unused
int32_t ___unused_2;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B, ___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_orientation_1() { return static_cast<int32_t>(offsetof(PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B, ___orientation_1)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_orientation_1() const { return ___orientation_1; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_orientation_1() { return &___orientation_1; }
inline void set_orientation_1(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___orientation_1 = value;
}
inline static int32_t get_offset_of_unused_2() { return static_cast<int32_t>(offsetof(PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B, ___unused_2)); }
inline int32_t get_unused_2() const { return ___unused_2; }
inline int32_t* get_address_of_unused_2() { return &___unused_2; }
inline void set_unused_2(int32_t value)
{
___unused_2 = value;
}
};
#pragma pack(pop, tp)
// Windows.Foundation.AsyncStatus
struct AsyncStatus_tBDA7F4CE333BAE130A8BB6DF88FBC68E6A54340E
{
public:
// System.Int32 Windows.Foundation.AsyncStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncStatus_tBDA7F4CE333BAE130A8BB6DF88FBC68E6A54340E, ___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.Collections.IVectorView`1<Windows.Foundation.FoundationContract>
struct NOVTABLE IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m5DABB1377DD626ACB400E20D99D236AE61B3F154(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m4F46CE039C9A1845EEEF9C08E2AEFCF23F9C8DB1(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m16C8D2E7B0ABD499F063298C27C96A084EA2CB3B(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m3BEBC27EFC7F98AD4CE44297549F69153F032F29(uint32_t ___startIndex0, uint32_t ___items1ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<Windows.Foundation.Point>
struct NOVTABLE IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m8341DA1CF3E332A5F1EA0D4076A9E6AED2F969A7(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m67D9F06853A0A15E7800A5119B9ECF711033D3C5(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m3CFACEBC726101383EB22D58A597BDE3A90DF1B7(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m21B34F837ABE71B5D55EFA0BE3BBF2FDDA15FADC(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<Windows.Foundation.Rect>
struct NOVTABLE IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m734A830338CB26CABEFA2C5695BBECF65EED7065(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m71D8594BF82DB8DB6E01088630A2A1377099A7BC(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mB2FE1F154E9E9AC9C774989E83F480468C4CAF06(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m6359E11437D7FBAD999817FB25166D3A186443BA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<Windows.Foundation.Size>
struct NOVTABLE IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m70D898CC4FD186906812F8D0F78D15C6019D28E1(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m4B92B51E6040173F1642F5A9BEF9DF32E2A0B5E5(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m591A718A8A5E8EBE24E822543033D2F2DED1E420(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mE77488F6FE6C0A8246BBA501F65D3068B61F6F74(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVector`1<Windows.Foundation.FoundationContract>
struct NOVTABLE IVector_1_t0193ECCC628113CCFB2F5740E909F69232FBCADC : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m951C1B7DE57F4C8572D0215DFE41F176B9EACAF7(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mAE30F1BD5B4507E0A4FC18687DBEF3A1EDEB362E(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m0F28BBB5CB404355BB9341F7484BB1C00BE4C227(IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m8D19C0A8F02F6C0CF42276921F6D9B8226A35B6E(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m4E483747010E1C8ED315101B739247324DBE10A6(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m77E5D6B852EDC423EE7FAED96225C6C49EB16410(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m6186F9C286584957E0A2624961791E0225AFD0F4(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m497BAC66C481FD771FEEBAEEF5637F369B287BC8(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mC55BA5C6D327E2A1408AA8E3D5058D794A37730F() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m507FFEFF7D75953761DC2BED4219927927CE533A() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m87A30B2DD08A81D8D052C6E980F8AB862ABF19FF(uint32_t ___startIndex0, uint32_t ___items1ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m13B46B83B055CFC99F16E0F6FE967706A2BFF185(uint32_t ___items0ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<Windows.Foundation.Point>
struct NOVTABLE IVector_1_t63505E39BCA91C0982B33CE4A27996981A3F2E32 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m8BA866DE595CC926E9199EADB07579702C6D1126(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mC1E7F0B41BE75A6D18DE7F862F244D9B25787532(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m2478E841B92C43884E2B81D0B24284E13AAF2711(IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mCA65357BBB22860599FDBE65C11C21DEAB00AF3D(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m8016275FBE819F24697096ADAD84550BAFE3088A(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mA94639C77B6950A6CF162D1D9AB32C3A507D5860(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m847D12BCF034A61F6A17453CEA6EB1222685C995(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m62C8B4C608BEEE1FD361F797734565DDD5B7AA54(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m8972706596A0BC853A746CA9A1BABE64B31D860C() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m8771F68C5FDB3A346DA7B329D6221A3BDA215EEE() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m29726076130125E00063041869C1E40CA0293220(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m67424FCCC5CA01EE9B2BE4BF208BEBA9A8DD4455(uint32_t ___items0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<Windows.Foundation.Rect>
struct NOVTABLE IVector_1_t70376E7B2E033946CAE37F842D951D15221E40DE : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m860F0546EEF04C53AE9E130D82C9D5C81E38F09D(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m3E1D322E8655F4B70AFBE017BE7A6F42646E21FF(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m05A680DA4953F6B1E966F0E4225E51C793AD1FCB(IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mAB40CD0B4752E5591FDD6C776A8695E8C111757F(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m490C9C336951F48684ACE2923444C39F1154D996(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m224C85A02047BC927A6C591EDEF611D123A17FB1(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m5FE938D8EBDE480C3840150B2F4A3171E9B1C6C7(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m1CBE39B7EAE7085E7B64826C9282409373919FD3(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m6FCE80AA09525EE84D12058358DA3DE7C3A0B58A() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m83A22DD6F46061AA1483B9B6680F63E0DB1ABF18() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m6CF0E0E78CE9CCF30FE35F8C3647F4D88E45F2E0(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m8F32DCA07484FF4EA900247DB3CF32D4DD7743B5(uint32_t ___items0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<Windows.Foundation.Size>
struct NOVTABLE IVector_1_tFF499B0D2C4CFA234C8341A0E67F1C5B0558E080 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mAC9D4AFE60AF9E4E11B2019A7E88E67FD01220CA(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m93AB379C287998CCBCF3BBF4635268B5608FF13E(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m38F209F24483F082E5AD878010A48BBEF2458632(IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m7933EC9C9B848E96FD16B456DF0E1A3BFD14744C(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m7DA1C114B3E0F26C588D69EC13508B01B352AEE3(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m1BEDCF33DA4CD24F0BF7620012C8099D8A729719(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m2A4572D5CF6A270795166405A6F5F1F047B3CB71(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m99432F5987C7225E0764DD8720AF6BFAFE9A4354(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mC54947181B8F2AC3E762D2FBFD426DDF9E577E85() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mB673D334EF55E4F986BF7DEBEEC06526772E147E() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m43CCD31EBDF2988B76478D534FE8876C56981780(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m43A4A257320A29444AF981687B4BE67E8266AB81(uint32_t ___items0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items0) = 0;
};
// Windows.Foundation.Metadata.CompositionType
struct CompositionType_t7B9CE8339998B57B071D1998F3D23E27AEFA0B66
{
public:
// System.Int32 Windows.Foundation.Metadata.CompositionType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompositionType_t7B9CE8339998B57B071D1998F3D23E27AEFA0B66, ___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_KeyCollection_Enumerator<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * ___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
int32_t ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9, ___dictionary_0)); }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * 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_t77D5E84F5223F98F52723CCB78FC935039CE9ED9, ___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_t77D5E84F5223F98F52723CCB78FC935039CE9ED9, ___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_t77D5E84F5223F98F52723CCB78FC935039CE9ED9, ___currentKey_3)); }
inline int32_t get_currentKey_3() const { return ___currentKey_3; }
inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(int32_t value)
{
___currentKey_3 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct KeyValuePair_2_t52C466EFA6AF0F8C97968AB675621D0057E211B4
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t52C466EFA6AF0F8C97968AB675621D0057E211B4, ___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_t52C466EFA6AF0F8C97968AB675621D0057E211B4, ___value_1)); }
inline UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 * get_value_1() const { return ___value_1; }
inline UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(UnmanagedImage_t25361F313AED6365259963C09E461283A8C188B8 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<System.UInt32Enum>
struct IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B : public RuntimeObject
{
public:
// Windows.Foundation.Collections.IIterator`1<T> System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::iterator
RuntimeObject* ___iterator_0;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::initialized
bool ___initialized_1;
// System.Boolean System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::hadCurrent
bool ___hadCurrent_2;
// T System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1::current
uint32_t ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B, ___iterator_0)); }
inline RuntimeObject* get_iterator_0() const { return ___iterator_0; }
inline RuntimeObject** get_address_of_iterator_0() { return &___iterator_0; }
inline void set_iterator_0(RuntimeObject* value)
{
___iterator_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iterator_0), (void*)value);
}
inline static int32_t get_offset_of_initialized_1() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B, ___initialized_1)); }
inline bool get_initialized_1() const { return ___initialized_1; }
inline bool* get_address_of_initialized_1() { return &___initialized_1; }
inline void set_initialized_1(bool value)
{
___initialized_1 = value;
}
inline static int32_t get_offset_of_hadCurrent_2() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B, ___hadCurrent_2)); }
inline bool get_hadCurrent_2() const { return ___hadCurrent_2; }
inline bool* get_address_of_hadCurrent_2() { return &___hadCurrent_2; }
inline void set_hadCurrent_2(bool value)
{
___hadCurrent_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B, ___current_3)); }
inline uint32_t get_current_3() const { return ___current_3; }
inline uint32_t* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(uint32_t value)
{
___current_3 = value;
}
};
// System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Boolean>
struct TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 : public TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641
{
public:
public:
};
// System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Object>
struct TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF : public TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D
{
public:
public:
};
// System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>
struct TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A : public TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625
{
public:
public:
};
// System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>
struct TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B : public TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3
{
public:
public:
};
// System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>
struct TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 : public TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB
{
public:
public:
};
// System.Threading.Tasks.Task`1<System.UInt32>
struct Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
uint32_t ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F, ___m_result_22)); }
inline uint32_t get_m_result_22() const { return ___m_result_22; }
inline uint32_t* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(uint32_t value)
{
___m_result_22 = value;
}
};
struct Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t4B1CB177FC575AD49A8B6BDA308F06C7075F366B * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t2DE17BAAB7C8A395FFA1D553866D96ABC5F46C97 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t4B1CB177FC575AD49A8B6BDA308F06C7075F366B * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t4B1CB177FC575AD49A8B6BDA308F06C7075F366B ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t4B1CB177FC575AD49A8B6BDA308F06C7075F366B * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t2DE17BAAB7C8A395FFA1D553866D96ABC5F46C97 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t2DE17BAAB7C8A395FFA1D553866D96ABC5F46C97 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t2DE17BAAB7C8A395FFA1D553866D96ABC5F46C97 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value);
}
};
// System.Threading.Tasks.Task`1<System.VoidValueTypeParameter>
struct Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
VoidValueTypeParameter_t4218889FC907F3892F775433493F080BD1A41CAA ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E, ___m_result_22)); }
inline VoidValueTypeParameter_t4218889FC907F3892F775433493F080BD1A41CAA get_m_result_22() const { return ___m_result_22; }
inline VoidValueTypeParameter_t4218889FC907F3892F775433493F080BD1A41CAA * get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(VoidValueTypeParameter_t4218889FC907F3892F775433493F080BD1A41CAA value)
{
___m_result_22 = value;
}
};
struct Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t410DD5370290DF7924E2357F4FAF09116A3366E9 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_tCF92B89EA717C53455F13CB9ADFF9F97988DC755 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t410DD5370290DF7924E2357F4FAF09116A3366E9 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t410DD5370290DF7924E2357F4FAF09116A3366E9 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t410DD5370290DF7924E2357F4FAF09116A3366E9 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_tCF92B89EA717C53455F13CB9ADFF9F97988DC755 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_tCF92B89EA717C53455F13CB9ADFF9F97988DC755 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_tCF92B89EA717C53455F13CB9ADFF9F97988DC755 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value);
}
};
// System.Threading.Tasks.Task`1<Windows.Storage.Streams.IBuffer>
struct Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
RuntimeObject* ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C, ___m_result_22)); }
inline RuntimeObject* get_m_result_22() const { return ___m_result_22; }
inline RuntimeObject** get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(RuntimeObject* value)
{
___m_result_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_result_22), (void*)value);
}
};
struct Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t3D3F8CFD20FEF77056A4029C26A3D6992C5573E9 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_tF6DFA2E681528B410B6796B6D05C01C31A5DDDE0 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t3D3F8CFD20FEF77056A4029C26A3D6992C5573E9 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t3D3F8CFD20FEF77056A4029C26A3D6992C5573E9 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t3D3F8CFD20FEF77056A4029C26A3D6992C5573E9 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_tF6DFA2E681528B410B6796B6D05C01C31A5DDDE0 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_tF6DFA2E681528B410B6796B6D05C01C31A5DDDE0 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_tF6DFA2E681528B410B6796B6D05C01C31A5DDDE0 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value);
}
};
// Vuforia.TrackerData_TrackableResultData
#pragma pack(push, tp, 1)
struct TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA
{
public:
// Vuforia.TrackerData_PoseData Vuforia.TrackerData_TrackableResultData::pose
PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B ___pose_0;
// System.Double Vuforia.TrackerData_TrackableResultData::timeStamp
double ___timeStamp_1;
// System.Int32 Vuforia.TrackerData_TrackableResultData::statusInteger
int32_t ___statusInteger_2;
// System.Int32 Vuforia.TrackerData_TrackableResultData::statusInfo
int32_t ___statusInfo_3;
// System.Int32 Vuforia.TrackerData_TrackableResultData::id
int32_t ___id_4;
// System.Int32 Vuforia.TrackerData_TrackableResultData::unused
int32_t ___unused_5;
public:
inline static int32_t get_offset_of_pose_0() { return static_cast<int32_t>(offsetof(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA, ___pose_0)); }
inline PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B get_pose_0() const { return ___pose_0; }
inline PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B * get_address_of_pose_0() { return &___pose_0; }
inline void set_pose_0(PoseData_tBEB2E3213824EA43B0606A888A09A32D6433881B value)
{
___pose_0 = value;
}
inline static int32_t get_offset_of_timeStamp_1() { return static_cast<int32_t>(offsetof(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA, ___timeStamp_1)); }
inline double get_timeStamp_1() const { return ___timeStamp_1; }
inline double* get_address_of_timeStamp_1() { return &___timeStamp_1; }
inline void set_timeStamp_1(double value)
{
___timeStamp_1 = value;
}
inline static int32_t get_offset_of_statusInteger_2() { return static_cast<int32_t>(offsetof(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA, ___statusInteger_2)); }
inline int32_t get_statusInteger_2() const { return ___statusInteger_2; }
inline int32_t* get_address_of_statusInteger_2() { return &___statusInteger_2; }
inline void set_statusInteger_2(int32_t value)
{
___statusInteger_2 = value;
}
inline static int32_t get_offset_of_statusInfo_3() { return static_cast<int32_t>(offsetof(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA, ___statusInfo_3)); }
inline int32_t get_statusInfo_3() const { return ___statusInfo_3; }
inline int32_t* get_address_of_statusInfo_3() { return &___statusInfo_3; }
inline void set_statusInfo_3(int32_t value)
{
___statusInfo_3 = value;
}
inline static int32_t get_offset_of_id_4() { return static_cast<int32_t>(offsetof(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA, ___id_4)); }
inline int32_t get_id_4() const { return ___id_4; }
inline int32_t* get_address_of_id_4() { return &___id_4; }
inline void set_id_4(int32_t value)
{
___id_4 = value;
}
inline static int32_t get_offset_of_unused_5() { return static_cast<int32_t>(offsetof(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA, ___unused_5)); }
inline int32_t get_unused_5() const { return ___unused_5; }
inline int32_t* get_address_of_unused_5() { return &___unused_5; }
inline void set_unused_5(int32_t value)
{
___unused_5 = value;
}
};
#pragma pack(pop, tp)
// Windows.Foundation.Collections.IVectorView`1<Windows.Foundation.AsyncStatus>
struct NOVTABLE IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mCB5619101D9F9B80BCA5D030CF3F322260E0B839(uint32_t ___index0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m1C2578CD2646095418A03B9C1295B0D541A8BFF0(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mBF1B055C799C71B105FA01CDB3455A4FE2E502A7(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA8D0784A93FE5D07B9446DEEFF356BF66A5B3AAE(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<Windows.Foundation.Metadata.CompositionType>
struct NOVTABLE IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m2CC191E86D695EF9A4491542B9F19FCCE012EEA1(uint32_t ___index0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mAFC592308C4257005C1E18CBA1AA34E0002C5B4B(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mB7809143D1A893A278E167549C78B60518A36024(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m141B354672691149EB35C1314E5A607BE5585393(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVector`1<Windows.Foundation.AsyncStatus>
struct NOVTABLE IVector_1_t50F3447B76D279347664883EC76DC3374D50725C : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mFFEF0803EBAB0F90ECBABACC6EAC426EB3159FC4(uint32_t ___index0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mBFD0CE693C34B0CB0BA96D7DA1D8A2723F28CF0A(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m370A003BBA4C9087E189EE3B034374046C6EA545(IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m0B42DFA957BFF985DB37F4EFD2C545DFAC82B9BC(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mB6E6ED2D4D47E8610771C216D05D17201395FC7A(uint32_t ___index0, int32_t ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m03627878A0DD8FCB3F94B0F3B6FBF5FFBB0E7764(uint32_t ___index0, int32_t ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m7FAF3C7448C2231F73CF8C8693E372E564BB26E0(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m9995C58BFE8A978962B6A0A9E2A4A49CD180AABD(int32_t ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m5AA2534C01CF93519615168041537AA46C3DAEFB() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m774183382C7B47D4056A093C7995AB349FB1B785() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m1C8FA8DD26C3D541BF07D3606005DFFA3EFC05A0(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mCD19C2473570925AE549F2232AA99689255B1B25(uint32_t ___items0ArraySize, int32_t* ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<Windows.Foundation.Metadata.CompositionType>
struct NOVTABLE IVector_1_t7D04316782B513CD7CA0D1D3C94088FC07595F7E : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m0DFFB25BA08D43C73C2F6445A0437BFA839ADF3E(uint32_t ___index0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m96740C6444443C5DEFCA6C1CD98AA73341DDECD5(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m4BF62A0D1B7AB4D8F7837BE78FB7BDC7AB90BB0F(IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mF5A9D14E971E0EAC43A7F890FA1C0E006FC88BC0(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m894C30319046E1D3DF29A1E7370BA137F4B66D33(uint32_t ___index0, int32_t ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m1693258E397688648A60D11B4EA7AB6412D9AD3D(uint32_t ___index0, int32_t ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m966B1867161912AEF8C48E97D15031951E75BDF3(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mF66C5486E77CBB619BB754CF38BAACEE7987754F(int32_t ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mA7C2D22A599F6EFFC65869A7A0E7C4752A62F84A() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mB0745549345CDE3B529E28E8A63B122B16EE18E4() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mE0D1430C4722BE3B29D9C97DF74F0A5E6C2B1599(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m3D75C88A58F56F80CC4F646C9414A1D3AB93AA67(uint32_t ___items0ArraySize, int32_t* ___items0) = 0;
};
// Windows.Foundation.IAsyncInfo
struct NOVTABLE IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() = 0;
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() = 0;
};
// System.Collections.Generic.Dictionary`2_Enumerator<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * ___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_t52C466EFA6AF0F8C97968AB675621D0057E211B4 ___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_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5, ___dictionary_0)); }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24 * 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_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5, ___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_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5, ___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_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5, ___current_3)); }
inline KeyValuePair_2_t52C466EFA6AF0F8C97968AB675621D0057E211B4 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t52C466EFA6AF0F8C97968AB675621D0057E211B4 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t52C466EFA6AF0F8C97968AB675621D0057E211B4 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_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5, ___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.Collections.Generic.List`1_Enumerator<Vuforia.TrackerData_TrackableResultData>
struct Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D * ___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
TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95, ___list_0)); }
inline List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D * get_list_0() const { return ___list_0; }
inline List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D * 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_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95, ___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_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95, ___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_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95, ___current_3)); }
inline TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA get_current_3() const { return ___current_3; }
inline TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA value)
{
___current_3 = value;
}
};
// System.Linq.Enumerable_Iterator`1<Vuforia.TrackerData_TrackableResultData>
struct Iterator_1_t69933583F4E2FFFA4CC37444ECC23EC078F9C630 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable_Iterator`1::threadId
int32_t ___threadId_0;
// System.Int32 System.Linq.Enumerable_Iterator`1::state
int32_t ___state_1;
// TSource System.Linq.Enumerable_Iterator`1::current
TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA ___current_2;
public:
inline static int32_t get_offset_of_threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t69933583F4E2FFFA4CC37444ECC23EC078F9C630, ___threadId_0)); }
inline int32_t get_threadId_0() const { return ___threadId_0; }
inline int32_t* get_address_of_threadId_0() { return &___threadId_0; }
inline void set_threadId_0(int32_t value)
{
___threadId_0 = value;
}
inline static int32_t get_offset_of_state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t69933583F4E2FFFA4CC37444ECC23EC078F9C630, ___state_1)); }
inline int32_t get_state_1() const { return ___state_1; }
inline int32_t* get_address_of_state_1() { return &___state_1; }
inline void set_state_1(int32_t value)
{
___state_1 = value;
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t69933583F4E2FFFA4CC37444ECC23EC078F9C630, ___current_2)); }
inline TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA get_current_2() const { return ___current_2; }
inline TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA * get_address_of_current_2() { return &___current_2; }
inline void set_current_2(TrackableResultData_t8F9DBC763DE9DD5D9C7EB55F00ADABC5B2C1FBFA value)
{
___current_2 = value;
}
};
// Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>
struct AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>
struct IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>
struct AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>
struct IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.AsyncOperationCompletedHandler`1<System.UInt32>
struct AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationCompletedHandler`1<System.UInt32>
struct IAsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t601B0A980544E8D0164BE90BE9DF2B1FDB30E21D* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.AsyncOperationCompletedHandler`1<Windows.Storage.Streams.IBuffer>
struct AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationCompletedHandler`1<Windows.Storage.Streams.IBuffer>
struct IAsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t473239B080231B0B820ACD56AD1318AF9313F2CA* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>
struct AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>
struct IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1* ___asyncInfo0, Il2CppIInspectable* ___progressInfo1) = 0;
};
// Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>
struct AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>
struct IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D* ___asyncInfo0, uint32_t ___progressInfo1) = 0;
};
// Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>
struct AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>
struct IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3* ___asyncInfo0, uint32_t ___progressInfo1) = 0;
};
// Windows.Foundation.AsyncOperationProgressHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationProgressHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct IAsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792* ___asyncInfo0, uint32_t ___progressInfo1) = 0;
};
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>
struct AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>
struct IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>
struct IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>
struct IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6 : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct IAsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792* ___asyncInfo0, int32_t ___asyncStatus1) = 0;
};
// Windows.Foundation.EventHandler`1<System.Object>
struct EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.EventHandler`1<System.Object>
struct IEventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(Il2CppIInspectable* ___sender0, Il2CppIInspectable* ___args1) = 0;
};
// System.Linq.Enumerable_WhereArrayIterator`1<Vuforia.TrackerData_TrackableResultData>
struct WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285 : public Iterator_1_t69933583F4E2FFFA4CC37444ECC23EC078F9C630
{
public:
// TSource[] System.Linq.Enumerable_WhereArrayIterator`1::source
TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereArrayIterator`1::predicate
Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * ___predicate_4;
// System.Int32 System.Linq.Enumerable_WhereArrayIterator`1::index
int32_t ___index_5;
public:
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285, ___source_3)); }
inline TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* get_source_3() const { return ___source_3; }
inline TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(TrackableResultDataU5BU5D_t9F14AA7BB2B4B86B497397AA4ABC42C964D0477D* value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value);
}
inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285, ___predicate_4)); }
inline Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * value)
{
___predicate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value);
}
inline static int32_t get_offset_of_index_5() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285, ___index_5)); }
inline int32_t get_index_5() const { return ___index_5; }
inline int32_t* get_address_of_index_5() { return &___index_5; }
inline void set_index_5(int32_t value)
{
___index_5 = value;
}
};
// System.Linq.Enumerable_WhereEnumerableIterator`1<Vuforia.TrackerData_TrackableResultData>
struct WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F : public Iterator_1_t69933583F4E2FFFA4CC37444ECC23EC078F9C630
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable_WhereEnumerableIterator`1::source
RuntimeObject* ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereEnumerableIterator`1::predicate
Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * ___predicate_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable_WhereEnumerableIterator`1::enumerator
RuntimeObject* ___enumerator_5;
public:
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F, ___source_3)); }
inline RuntimeObject* get_source_3() const { return ___source_3; }
inline RuntimeObject** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(RuntimeObject* value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value);
}
inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F, ___predicate_4)); }
inline Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * value)
{
___predicate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value);
}
inline static int32_t get_offset_of_enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F, ___enumerator_5)); }
inline RuntimeObject* get_enumerator_5() const { return ___enumerator_5; }
inline RuntimeObject** get_address_of_enumerator_5() { return &___enumerator_5; }
inline void set_enumerator_5(RuntimeObject* value)
{
___enumerator_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumerator_5), (void*)value);
}
};
// System.Linq.Enumerable_WhereListIterator`1<Vuforia.TrackerData_TrackableResultData>
struct WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54 : public Iterator_1_t69933583F4E2FFFA4CC37444ECC23EC078F9C630
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable_WhereListIterator`1::source
List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D * ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereListIterator`1::predicate
Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * ___predicate_4;
// System.Collections.Generic.List`1_Enumerator<TSource> System.Linq.Enumerable_WhereListIterator`1::enumerator
Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95 ___enumerator_5;
public:
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54, ___source_3)); }
inline List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D * get_source_3() const { return ___source_3; }
inline List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D ** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D * value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value);
}
inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54, ___predicate_4)); }
inline Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t221C621AEB851E2AEE329455CEE887971F8D3F90 * value)
{
___predicate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value);
}
inline static int32_t get_offset_of_enumerator_5() { return static_cast<int32_t>(offsetof(WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54, ___enumerator_5)); }
inline Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95 get_enumerator_5() const { return ___enumerator_5; }
inline Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95 * get_address_of_enumerator_5() { return &___enumerator_5; }
inline void set_enumerator_5(Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95 value)
{
___enumerator_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___enumerator_5))->___list_0), (void*)NULL);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
il2cpp_hresult_t IClosable_Close_m9A054CE065D4C97FAF595A8F92B3CB3463C5BCD6_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue);
il2cpp_hresult_t IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** 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 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 IIterable_1_First_m66AE02B95C12AA29398F853CBBCB981F758D1D7B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tFCCB84984712ACE35E2C9D0FFBB7CFE2CD913B43** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m44403577D0A7FC49C192EC087DF22DC82ABD1BEC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t2B21213FEB0A065EE8EE08505D4993A125B94604** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m040BDF89865ADD81E4589B6F4D5E3FFD516CCEAE_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t7D121DD54685B5C3A67B4FBEBDB34A8EBACD6E4C** 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 IVector_1_GetAt_m8BA866DE595CC926E9199EADB07579702C6D1126_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_mC1E7F0B41BE75A6D18DE7F862F244D9B25787532_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m2478E841B92C43884E2B81D0B24284E13AAF2711_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_mCA65357BBB22860599FDBE65C11C21DEAB00AF3D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m8016275FBE819F24697096ADAD84550BAFE3088A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value1);
il2cpp_hresult_t IVector_1_InsertAt_mA94639C77B6950A6CF162D1D9AB32C3A507D5860_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m847D12BCF034A61F6A17453CEA6EB1222685C995_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m62C8B4C608BEEE1FD361F797734565DDD5B7AA54_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m8972706596A0BC853A746CA9A1BABE64B31D860C_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m8771F68C5FDB3A346DA7B329D6221A3BDA215EEE_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m29726076130125E00063041869C1E40CA0293220_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m67424FCCC5CA01EE9B2BE4BF208BEBA9A8DD4455_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items0);
il2cpp_hresult_t IIterable_1_First_mDFD48986D037D31527C0FE6D115A92095FA88E62_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tA2F4E334454D08C5C9E0AC3C76D57B20671F1960** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m8341DA1CF3E332A5F1EA0D4076A9E6AED2F969A7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m67D9F06853A0A15E7800A5119B9ECF711033D3C5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m3CFACEBC726101383EB22D58A597BDE3A90DF1B7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m21B34F837ABE71B5D55EFA0BE3BBF2FDDA15FADC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m860F0546EEF04C53AE9E130D82C9D5C81E38F09D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m3E1D322E8655F4B70AFBE017BE7A6F42646E21FF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m05A680DA4953F6B1E966F0E4225E51C793AD1FCB_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_mAB40CD0B4752E5591FDD6C776A8695E8C111757F_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m490C9C336951F48684ACE2923444C39F1154D996_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m224C85A02047BC927A6C591EDEF611D123A17FB1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m5FE938D8EBDE480C3840150B2F4A3171E9B1C6C7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m1CBE39B7EAE7085E7B64826C9282409373919FD3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m6FCE80AA09525EE84D12058358DA3DE7C3A0B58A_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m83A22DD6F46061AA1483B9B6680F63E0DB1ABF18_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m6CF0E0E78CE9CCF30FE35F8C3647F4D88E45F2E0_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m8F32DCA07484FF4EA900247DB3CF32D4DD7743B5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items0);
il2cpp_hresult_t IIterable_1_First_mE498E9BD287BD46B8DF12E2E88C09632ACCBFE62_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tEE3BEEAE4E5550C7E66C35FB0ACA1BB925AC7953** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m734A830338CB26CABEFA2C5695BBECF65EED7065_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m71D8594BF82DB8DB6E01088630A2A1377099A7BC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mB2FE1F154E9E9AC9C774989E83F480468C4CAF06_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m6359E11437D7FBAD999817FB25166D3A186443BA_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_mAC9D4AFE60AF9E4E11B2019A7E88E67FD01220CA_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m93AB379C287998CCBCF3BBF4635268B5608FF13E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m38F209F24483F082E5AD878010A48BBEF2458632_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m7933EC9C9B848E96FD16B456DF0E1A3BFD14744C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m7DA1C114B3E0F26C588D69EC13508B01B352AEE3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m1BEDCF33DA4CD24F0BF7620012C8099D8A729719_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m2A4572D5CF6A270795166405A6F5F1F047B3CB71_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m99432F5987C7225E0764DD8720AF6BFAFE9A4354_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_mC54947181B8F2AC3E762D2FBFD426DDF9E577E85_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_mB673D334EF55E4F986BF7DEBEEC06526772E147E_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m43CCD31EBDF2988B76478D534FE8876C56981780_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m43A4A257320A29444AF981687B4BE67E8266AB81_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items0);
il2cpp_hresult_t IIterable_1_First_m9FE8FA9031708EBA9C1D4B91A278DB4B5AFA5372_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t41554E725F79EEC45542DF0955D0013EAC3876BF** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m70D898CC4FD186906812F8D0F78D15C6019D28E1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m4B92B51E6040173F1642F5A9BEF9DF32E2A0B5E5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m591A718A8A5E8EBE24E822543033D2F2DED1E420_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mE77488F6FE6C0A8246BBA501F65D3068B61F6F74_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items1, uint32_t* comReturnValue);
IL2CPP_EXTERN_C void AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);;
IL2CPP_EXTERN_C void AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, RuntimeObject * ___progressInfo1, const RuntimeMethod* method);;
IL2CPP_EXTERN_C void AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);;
IL2CPP_EXTERN_C void AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, uint32_t ___progressInfo1, const RuntimeMethod* method);;
IL2CPP_EXTERN_C void AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);;
IL2CPP_EXTERN_C void AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);;
IL2CPP_EXTERN_C void AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, uint32_t ___progressInfo1, const RuntimeMethod* method);;
IL2CPP_EXTERN_C void AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_NativeInvoker (Il2CppComObject * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);;
il2cpp_hresult_t IVector_1_GetAt_mFFEF0803EBAB0F90ECBABACC6EAC426EB3159FC4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t* comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_mBFD0CE693C34B0CB0BA96D7DA1D8A2723F28CF0A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m370A003BBA4C9087E189EE3B034374046C6EA545_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m0B42DFA957BFF985DB37F4EFD2C545DFAC82B9BC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, int32_t ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_mB6E6ED2D4D47E8610771C216D05D17201395FC7A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m03627878A0DD8FCB3F94B0F3B6FBF5FFBB0E7764_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m7FAF3C7448C2231F73CF8C8693E372E564BB26E0_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m9995C58BFE8A978962B6A0A9E2A4A49CD180AABD_ComCallableWrapperProjectedMethod(RuntimeObject* __this, int32_t ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m5AA2534C01CF93519615168041537AA46C3DAEFB_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m774183382C7B47D4056A093C7995AB349FB1B785_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m1C8FA8DD26C3D541BF07D3606005DFFA3EFC05A0_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_mCD19C2473570925AE549F2232AA99689255B1B25_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, int32_t* ___items0);
il2cpp_hresult_t IIterable_1_First_m393DBADD362ED003032ED5E79E11D3F38B24521D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tEE6F747A033DF451F5932F68A3A4AD290713B7C4** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mCB5619101D9F9B80BCA5D030CF3F322260E0B839_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m1C2578CD2646095418A03B9C1295B0D541A8BFF0_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mBF1B055C799C71B105FA01CDB3455A4FE2E502A7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, int32_t ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mA8D0784A93FE5D07B9446DEEFF356BF66A5B3AAE_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m951C1B7DE57F4C8572D0215DFE41F176B9EACAF7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_mAE30F1BD5B4507E0A4FC18687DBEF3A1EDEB362E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m0F28BBB5CB404355BB9341F7484BB1C00BE4C227_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m8D19C0A8F02F6C0CF42276921F6D9B8226A35B6E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m4E483747010E1C8ED315101B739247324DBE10A6_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m77E5D6B852EDC423EE7FAED96225C6C49EB16410_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m6186F9C286584957E0A2624961791E0225AFD0F4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m497BAC66C481FD771FEEBAEEF5637F369B287BC8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_mC55BA5C6D327E2A1408AA8E3D5058D794A37730F_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m507FFEFF7D75953761DC2BED4219927927CE533A_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m87A30B2DD08A81D8D052C6E980F8AB862ABF19FF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m13B46B83B055CFC99F16E0F6FE967706A2BFF185_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items0);
il2cpp_hresult_t IIterable_1_First_m594C89A5405285FB4C6E586A9E4DF29FD149ABE4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t24BE8D81998AA3D75CD891A738EE362C45E6889B** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m5DABB1377DD626ACB400E20D99D236AE61B3F154_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m4F46CE039C9A1845EEEF9C08E2AEFCF23F9C8DB1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m16C8D2E7B0ABD499F063298C27C96A084EA2CB3B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m3BEBC27EFC7F98AD4CE44297549F69153F032F29_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m0DFFB25BA08D43C73C2F6445A0437BFA839ADF3E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t* comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m96740C6444443C5DEFCA6C1CD98AA73341DDECD5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m4BF62A0D1B7AB4D8F7837BE78FB7BDC7AB90BB0F_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_mF5A9D14E971E0EAC43A7F890FA1C0E006FC88BC0_ComCallableWrapperProjectedMethod(RuntimeObject* __this, int32_t ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m894C30319046E1D3DF29A1E7370BA137F4B66D33_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m1693258E397688648A60D11B4EA7AB6412D9AD3D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m966B1867161912AEF8C48E97D15031951E75BDF3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_mF66C5486E77CBB619BB754CF38BAACEE7987754F_ComCallableWrapperProjectedMethod(RuntimeObject* __this, int32_t ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_mA7C2D22A599F6EFFC65869A7A0E7C4752A62F84A_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_mB0745549345CDE3B529E28E8A63B122B16EE18E4_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_mE0D1430C4722BE3B29D9C97DF74F0A5E6C2B1599_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m3D75C88A58F56F80CC4F646C9414A1D3AB93AA67_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, int32_t* ___items0);
il2cpp_hresult_t IIterable_1_First_m4C456A12215A1EF642A0BD8240E428CCB1701FFF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t7F38B71C86FBA6E318856632AD1AD4411A7F3D1B** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m2CC191E86D695EF9A4491542B9F19FCCE012EEA1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, int32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_mAFC592308C4257005C1E18CBA1AA34E0002C5B4B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mB7809143D1A893A278E167549C78B60518A36024_ComCallableWrapperProjectedMethod(RuntimeObject* __this, int32_t ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m141B354672691149EB35C1314E5A607BE5585393_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue);
// System.Void Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,TProgress)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_gshared (AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * __this, RuntimeObject* ___asyncInfo0, RuntimeObject * ___progressInfo1, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,Windows.Foundation.AsyncStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_gshared (AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9_gshared (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method);
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95_gshared (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method);
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_ErrorCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332_gshared (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C_gshared (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D_gshared (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>::Invoke(Windows.Foundation.IAsyncOperation`1<TResult>,Windows.Foundation.AsyncStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_gshared (AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770_gshared (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method);
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006_gshared (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method);
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::get_ErrorCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D_gshared (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451_gshared (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23_gshared (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Object>::Windows.Foundation.IAsyncOperation<TResult>.put_Completed(Windows.Foundation.AsyncOperationCompletedHandler`1<TResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6_gshared (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF * __this, AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * ___handler0, const RuntimeMethod* method);
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::get_Completed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Completed_mC55731756D096FD2AAAC52400B5D311AFDACEE90_gshared (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method);
// TResult System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Object>::GetResults()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2_gshared (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF * __this, const RuntimeMethod* method);
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205_gshared (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method);
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD_gshared (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method);
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_ErrorCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8_gshared (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37_gshared (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4_gshared (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Progress(Windows.Foundation.AsyncOperationProgressHandler`2<TResult,TProgress>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF_gshared (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __this, AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * ___handler0, const RuntimeMethod* method);
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_Progress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Progress_mB0CCB9DB9FB9761818AB9146633200750D087717_gshared (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Completed(Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<TResult,TProgress>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E_gshared (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __this, AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * ___handler0, const RuntimeMethod* method);
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_Completed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Completed_m80D01A3ECF8F36C1D1FD98777600B63AC2EF7307_gshared (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method);
// TResult System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>::GetResults()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564_gshared (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __this, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,TProgress)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_gshared (AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * __this, RuntimeObject* ___asyncInfo0, uint32_t ___progressInfo1, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,Windows.Foundation.AsyncStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_gshared (AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,TProgress)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_gshared (AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * __this, RuntimeObject* ___asyncInfo0, uint32_t ___progressInfo1, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,Windows.Foundation.AsyncStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_gshared (AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>::Invoke(Windows.Foundation.IAsyncOperation`1<TResult>,Windows.Foundation.AsyncStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_gshared (AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36_gshared (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method);
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA_gshared (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method);
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_ErrorCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B_gshared (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960_gshared (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1_gshared (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Progress(Windows.Foundation.AsyncOperationProgressHandler`2<TResult,TProgress>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F_gshared (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __this, AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * ___handler0, const RuntimeMethod* method);
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_Progress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Progress_m6754BA54F97AC7769EF9C9036751F2D325D177A3_gshared (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Completed(Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<TResult,TProgress>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B_gshared (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __this, AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * ___handler0, const RuntimeMethod* method);
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_Completed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Completed_m007971B0E28DAB5D54A6814E94BFB972C1C0C650_gshared (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method);
// TResult System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>::GetResults()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97_gshared (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __this, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationCompletedHandler`1<System.UInt32>::Invoke(Windows.Foundation.IAsyncOperation`1<TResult>,Windows.Foundation.AsyncStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4_gshared (AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method);
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7_gshared (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method);
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3_gshared (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method);
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::get_ErrorCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9_gshared (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B_gshared (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B_gshared (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Boolean>::Windows.Foundation.IAsyncOperation<TResult>.put_Completed(Windows.Foundation.AsyncOperationCompletedHandler`1<TResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB_gshared (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 * __this, AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * ___handler0, const RuntimeMethod* method);
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::get_Completed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Completed_m82E47F8B146FB2B93B896879F15A89AF4AB3784D_gshared (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method);
// TResult System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Boolean>::GetResults()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF_gshared (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 * __this, const RuntimeMethod* method);
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA_gshared (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method);
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890_gshared (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method);
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_ErrorCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74_gshared (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E_gshared (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9_gshared (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Progress(Windows.Foundation.AsyncOperationProgressHandler`2<TResult,TProgress>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627_gshared (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __this, AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * ___handler0, const RuntimeMethod* method);
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_Progress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Progress_mC2A77D1F703328AADAF8AE93F9E5AB0B123D1371_gshared (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Completed(Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<TResult,TProgress>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF_gshared (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __this, AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * ___handler0, const RuntimeMethod* method);
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_Completed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncInfoAdapter_4_get_Completed_m59BB55E6B000EDA605B3E5F412551C96AE90B5CB_gshared (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method);
// TResult System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>::GetResults()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21_gshared (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __this, const RuntimeMethod* method);
// System.Void Windows.Foundation.EventHandler`1<System.Object>::Invoke(System.Object,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D_gshared (EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A * __this, RuntimeObject * ___sender0, RuntimeObject * ___args1, const RuntimeMethod* method);
// System.Void Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,TProgress)
inline void AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5 (AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * __this, RuntimeObject* ___asyncInfo0, RuntimeObject * ___progressInfo1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD *, RuntimeObject*, RuntimeObject *, const RuntimeMethod*))AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_gshared)(__this, ___asyncInfo0, ___progressInfo1, method);
}
// System.Void Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69 (AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m7993FCF220700C38589133E61AABE886BEB11A16 (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_mC3004519B021A82DABA6E1CE706340B659E5416D (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mF8F7FE6A9EE4CF8EBB3C72A320E8560D02F737C9 (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m017C5C355FDA1992B23B476DC35C7662A69D855F (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m83E040C7E14614C240AA25F9B9DF33EA4B20D561 (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9 (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95 (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332 (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D_gshared)(__this, method);
}
// System.Void Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>::Invoke(Windows.Foundation.IAsyncOperation`1<TResult>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0 (AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368 (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642 (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6 (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Object>::Windows.Foundation.IAsyncOperation<TResult>.put_Completed(Windows.Foundation.AsyncOperationCompletedHandler`1<TResult>)
inline void TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6 (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF * __this, AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF *, AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 *, const RuntimeMethod*))TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6_gshared)(__this, ___handler0, method);
}
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>::get_Completed()
inline AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * TaskToAsyncInfoAdapter_4_get_Completed_m601052E62079FE991D5360BB78A1B1EE4AD1CF0D (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __this, const RuntimeMethod* method)
{
return (( AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * (*) (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Completed_mC55731756D096FD2AAAC52400B5D311AFDACEE90_gshared)(__this, method);
}
// TResult System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Object>::GetResults()
inline RuntimeObject * TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2 (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF *, const RuntimeMethod*))TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770 (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006 (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451 (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23 (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348 (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69 (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335 (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Progress(Windows.Foundation.AsyncOperationProgressHandler`2<TResult,TProgress>)
inline void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __this, AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A *, AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF_gshared)(__this, ___handler0, method);
}
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>::get_Progress()
inline AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * TaskToAsyncInfoAdapter_4_get_Progress_mA64CC5D93F015289D508EA55527DABB1E16BB67F (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __this, const RuntimeMethod* method)
{
return (( AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * (*) (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Progress_mB0CCB9DB9FB9761818AB9146633200750D087717_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Completed(Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<TResult,TProgress>)
inline void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __this, AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A *, AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E_gshared)(__this, ___handler0, method);
}
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>::get_Completed()
inline AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * TaskToAsyncInfoAdapter_4_get_Completed_m3FE50AD2400A1E8E7C4195CAFA282B20CC76126C (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __this, const RuntimeMethod* method)
{
return (( AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * (*) (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Completed_m80D01A3ECF8F36C1D1FD98777600B63AC2EF7307_gshared)(__this, method);
}
// TResult System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>::GetResults()
inline RuntimeObject * TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564 (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205 (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8 (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37 (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4 (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4_gshared)(__this, method);
}
// System.Void Windows.Foundation.AsyncOperationProgressHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,TProgress)
inline void AsyncOperationProgressHandler_2_Invoke_m95E3276A19BA6239B14D4DD15256F87671BDE40D (AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89 * __this, RuntimeObject* ___asyncInfo0, uint32_t ___progressInfo1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89 *, RuntimeObject*, uint32_t, const RuntimeMethod*))AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_gshared)(__this, ___asyncInfo0, ___progressInfo1, method);
}
// System.Void Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,TProgress)
inline void AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B (AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * __this, RuntimeObject* ___asyncInfo0, uint32_t ___progressInfo1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 *, RuntimeObject*, uint32_t, const RuntimeMethod*))AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_gshared)(__this, ___asyncInfo0, ___progressInfo1, method);
}
// System.Void Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5 (AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.Void Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationWithProgressCompletedHandler_2_Invoke_m9AA9B10D4FE96E4CD29E1E641BA59CF7DC4516AE (AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6 *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.Void Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,TProgress)
inline void AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A (AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * __this, RuntimeObject* ___asyncInfo0, uint32_t ___progressInfo1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 *, RuntimeObject*, uint32_t, const RuntimeMethod*))AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_gshared)(__this, ___asyncInfo0, ___progressInfo1, method);
}
// System.Void Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>::Invoke(Windows.Foundation.IAsyncOperationWithProgress`2<TResult,TProgress>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA (AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.Void Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>::Invoke(Windows.Foundation.IAsyncOperation`1<TResult>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63 (AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650 (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192 (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1 (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Progress(Windows.Foundation.AsyncOperationProgressHandler`2<TResult,TProgress>)
inline void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __this, AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 *, AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F_gshared)(__this, ___handler0, method);
}
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>::get_Progress()
inline AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * TaskToAsyncInfoAdapter_4_get_Progress_mD45A5B178A7C331FEB9FAE48E134F600540E749F (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __this, const RuntimeMethod* method)
{
return (( AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * (*) (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Progress_m6754BA54F97AC7769EF9C9036751F2D325D177A3_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Completed(Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<TResult,TProgress>)
inline void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __this, AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 *, AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B_gshared)(__this, ___handler0, method);
}
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>::get_Completed()
inline AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * TaskToAsyncInfoAdapter_4_get_Completed_mA68EA69BA6979871A9B44B79D06DDEA805C2F77E (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __this, const RuntimeMethod* method)
{
return (( AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * (*) (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Completed_m007971B0E28DAB5D54A6814E94BFB972C1C0C650_gshared)(__this, method);
}
// TResult System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>::GetResults()
inline uint32_t TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97 (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36 (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960 (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1 (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1_gshared)(__this, method);
}
// System.Void Windows.Foundation.AsyncOperationCompletedHandler`1<System.UInt32>::Invoke(Windows.Foundation.IAsyncOperation`1<TResult>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4 (AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145 *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285 (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88 (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Boolean>::Windows.Foundation.IAsyncOperation<TResult>.put_Completed(Windows.Foundation.AsyncOperationCompletedHandler`1<TResult>)
inline void TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 * __this, AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 *, AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 *, const RuntimeMethod*))TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB_gshared)(__this, ___handler0, method);
}
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>::get_Completed()
inline AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * TaskToAsyncInfoAdapter_4_get_Completed_mEC05E85847C50339C45B75B4D8F3360E398F7C7D (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __this, const RuntimeMethod* method)
{
return (( AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * (*) (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Completed_m82E47F8B146FB2B93B896879F15A89AF4AB3784D_gshared)(__this, method);
}
// TResult System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Boolean>::GetResults()
inline bool TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 * __this, const RuntimeMethod* method)
{
return (( bool (*) (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 *, const RuntimeMethod*))TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7 (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3 (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9 (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973 (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Progress(Windows.Foundation.AsyncOperationProgressHandler`2<TResult,TProgress>)
inline void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627 (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __this, AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B *, AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627_gshared)(__this, ___handler0, method);
}
// TProgressHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>::get_Progress()
inline AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * TaskToAsyncInfoAdapter_4_get_Progress_m2E2FD8FFAC087C69B6A14012A65DC7BC8E3A2F63 (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __this, const RuntimeMethod* method)
{
return (( AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * (*) (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Progress_mC2A77D1F703328AADAF8AE93F9E5AB0B123D1371_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>::Windows.Foundation.IAsyncOperationWithProgress<TResult,TProgress>.put_Completed(Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<TResult,TProgress>)
inline void TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __this, AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * ___handler0, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B *, AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF_gshared)(__this, ___handler0, method);
}
// TCompletedHandler System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>::get_Completed()
inline AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * TaskToAsyncInfoAdapter_4_get_Completed_m2EA8F01A2740B566A60ABEEB9D86C8699424B66D (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __this, const RuntimeMethod* method)
{
return (( AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * (*) (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Completed_m59BB55E6B000EDA605B3E5F412551C96AE90B5CB_gshared)(__this, method);
}
// TResult System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>::GetResults()
inline RuntimeObject * TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21 (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B *, const RuntimeMethod*))TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21_gshared)(__this, method);
}
// System.UInt32 System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_Id()
inline uint32_t TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method)
{
return (( uint32_t (*) (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA_gshared)(__this, method);
}
// Windows.Foundation.AsyncStatus System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_Status()
inline int32_t TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890 (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890_gshared)(__this, method);
}
// System.Exception System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::get_ErrorCode()
inline Exception_t * TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74 (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method)
{
return (( Exception_t * (*) (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::Cancel()
inline void TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>::Close()
inline void TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9 (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __this, const RuntimeMethod* method)
{
(( void (*) (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *, const RuntimeMethod*))TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9_gshared)(__this, method);
}
// System.Void Windows.Foundation.AsyncOperationCompletedHandler`1<Windows.Storage.Streams.IBuffer>::Invoke(Windows.Foundation.IAsyncOperation`1<TResult>,Windows.Foundation.AsyncStatus)
inline void AsyncOperationCompletedHandler_1_Invoke_m585869CEB0F544C422C4A0194D81A0CE1CB95FAC (AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0 * __this, RuntimeObject* ___asyncInfo0, int32_t ___asyncStatus1, const RuntimeMethod* method)
{
(( void (*) (AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0 *, RuntimeObject*, int32_t, const RuntimeMethod*))AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_gshared)(__this, ___asyncInfo0, ___asyncStatus1, method);
}
// System.Void Windows.Foundation.EventHandler`1<System.Object>::Invoke(System.Object,T)
inline void EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D (EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A * __this, RuntimeObject * ___sender0, RuntimeObject * ___args1, const RuntimeMethod* method)
{
(( void (*) (EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D_gshared)(__this, ___sender0, ___args1, method);
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,Vuforia.VirtualButtonBehaviour>
struct Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26_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_Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t03E4ECAADD9F22E0CDF59503E34BC7928E8D0E26_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.VirtualButtonBehaviour>>
struct EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_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_EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t45EBA1DB298058B45E287224087BB83198DBDD99_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.VirtualButtonBehaviour>>
struct InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8_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_InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tE92DCAA6F0DD20E254ECBBE0E685FCDA8EA0FAF8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,Vuforia.VirtualButtonBehaviour>
struct Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE_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_Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t6F5BB925C1896EB77CC03E9273F1F78976AE85EE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Action>
struct EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_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_EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t14124BC4C4943B3E2E8EDAC8045DDF1372DB1CA8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Action>
struct InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690_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_InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t100F6D019DD00A32C921D9A536F0EAA1475EB690_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<System.Action>
struct List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t9E7F53A878191B703A76E69CE36AA90A372800E7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action>
struct ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t8516102CAF6065CD0D98E72D3BF46D1081A0B931_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<System.Action>
struct Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16_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_Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t7E3B70A058CE7B7B7B3276442A0F38B629D07A16_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24_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_Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_t825502D039662E4ADFA7BFCA59ED342336372E24_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_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_EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t0B28D02B36299269E4FAB1FD6DA6671B19057F8C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325_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_InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tDE0F77E547956CC0D51F2503C04586CCEFCF5325_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29_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_KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_t13869EE190893EA31B1042AD7A24D5D912F27E29_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9_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_Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t77D5E84F5223F98F52723CCB78FC935039CE9ED9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t9040704BA642F3FA15C2C50AF7FDF3484F397EE5, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557_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_t9040704BA642F3FA15C2C50AF7FDF3484F397EE5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t9040704BA642F3FA15C2C50AF7FDF3484F397EE5*>(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>(3);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t9040704BA642F3FA15C2C50AF7FDF3484F397EE5::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::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 IIterable_1_First_m66AE02B95C12AA29398F853CBBCB981F758D1D7B(IIterator_1_tFCCB84984712ACE35E2C9D0FFBB7CFE2CD913B43** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m66AE02B95C12AA29398F853CBBCB981F758D1D7B_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_ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_t39F18BE5AEB41BB029331FA59DAD0B7EAC7CE557_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12_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_Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tCCCDC6B7C2205681A5B84856A99EFFCD1C53CC12_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_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_EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t90EA102AF6BD4CC9D0299E743E2A28820427702F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>>
struct InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E_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_InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t42C6A556B8B636564B8AF0D86C6FF3732950CF8E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<Vuforia.PIXEL_FORMAT,Vuforia.UnmanagedImage>
struct Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5_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_Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tBCC111E5556BD88CFAB284049CC324AF8A4D00F5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<Vuforia.TrackerData_TrackableResultData>
struct List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::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 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());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tF598FE8F5F30620BE81EF4143B1B548F69E69B6D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData_TrackableResultData>
struct ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::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 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());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t3157F9B6ECD99CE37E6578DB7CE2FF3927AA604F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<Vuforia.TrackerData_TrackableResultData>
struct Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95_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_Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t39C8BCA24148FE3ACBF1D2E2E6FBDF452C45BC95_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereArrayIterator`1<Vuforia.TrackerData_TrackableResultData>
struct WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285_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_WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereArrayIterator_1_t0037709F9195401D0F7DEF92634D035FB4E62285_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereListIterator`1<Vuforia.TrackerData_TrackableResultData>
struct WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54_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_WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereListIterator_1_tFF6D4BE15458E7E244467D500EBA464B825C0E54_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereEnumerableIterator`1<Vuforia.TrackerData_TrackableResultData>
struct WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F_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_WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereEnumerableIterator_1_t87579FEB383B37858111E45A05573D89195A393F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<Vuforia.VuforiaManager_TrackableIdPair>
struct Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283_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_Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t1E8F24191ED11929F534514D2EE40D5DEF3BC283_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<Vuforia.VuforiaManager_TrackableIdPair>
struct List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::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 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());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tF572BA7E6E6635523140B2C3F4D170691888B1CE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager_TrackableIdPair>
struct ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::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 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());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t6B8627E5830C551852FBC076E7729B45CC9B28B9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereArrayIterator`1<Vuforia.TargetFinder>
struct WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A_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_WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereArrayIterator_1_t39AFD3D36E89F6A0B3DDAF6737BE8E83F90D577A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereListIterator`1<Vuforia.TargetFinder>
struct WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44_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_WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereListIterator_1_t90D70477387A54BCECD4690F1B9C5E181545FC44_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<Vuforia.TargetFinder>
struct List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t37B439B14B74ACA06E3B1C7514D1C9D5D8F0A522_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder>
struct ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tFC593B8432B50138EA401D15E390C8AE63CCDC94_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<Vuforia.TargetFinder>
struct Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F_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_Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tD7F7414F8E913D2974C7C018CB8A81C7A823B19F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereEnumerableIterator`1<Vuforia.TargetFinder>
struct WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE_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_WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereEnumerableIterator_1_t56AD7C81EB371AD57C6EBAADB6C58FF2E924A7EE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_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_EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t64BBF8CC105E5D72A09F87130E092B4D0EE93152_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1_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_InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tE8DEB53CA056755E3BD09B4D8DE9CBCFA9E81CC1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_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_EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tCD4F7808B32410132E3283722EDEEBF989697C1F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488_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_InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t3F63534EED779710F1AFC29CE541BBDC1A2CA488_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t7CFAC66CC5CC9B55693C4A4DD866771963EC4F88_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tEDDDED34568781C3DD9FF2B19A42848AE816B253_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>>
struct Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003_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_Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tFC34ED47620DC97DC277EEE7F79F405C0C749003_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tEDBC7DC0C0DB39D22C506B61027F064069493DAA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t327F2DAE1A7D167128D03999A262252276D0C00F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>>
struct Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D_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_Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tC406B7890F6ADAD813339084C8DDDB87B1A58F7D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>
struct Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5_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_Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_tE50430DC1C6FC2150C3FBF44714B1DF1CECDE0A5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,Vuforia.Tracker>>
struct EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_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_EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t0193FE9C10BDFA2A850E3DD8AD0944F93096B5C8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,Vuforia.Tracker>>
struct InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261_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_InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t8B390AAB3AA8F9ADD31BDC00E8BC5C36C8177261_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<System.Type,Vuforia.Tracker>
struct KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0_ComCallableWrapper>, IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0_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, &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_t20179CB00459FE9500911687A4A823EBD2751D45::IID;
interfaceIds[1] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::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_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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_tC6B6441C841190B33F00E1434FF2BD7141C63AA0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Type,Vuforia.Tracker>
struct Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76_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_Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tBD9B91FA180B70C3E86B4FDD901D3B84D7748C76_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<System.Type,Vuforia.Tracker>
struct ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54_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_ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_tA3903068BE76763D59512624BED605870E2AAF54_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Type,Vuforia.Tracker>
struct Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F_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_Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t9BAC81985265B13C1EE9C7CAEC211BCF6797E87F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,Vuforia.Tracker>>
struct EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_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_EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tD3523D4C47C49FE5A2BA1455F6A14C7CFC053095_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,Vuforia.Tracker>>
struct InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C_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_InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t4B7BA829EC96751044E0F3F17AEAECDC0E1FC11C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<System.Type,Vuforia.Tracker>
struct Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D_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_Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tA18F4E3A7238F784CFFFAC2B382B3A7AEEBF185D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346_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_Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_t5F5375AD76FE9971AF2FB07A063F102608C84346_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_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_EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tE1361A21390C3A913B20E60D8F1D0CDEA58AFEE9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC_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_InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tC03019FFAB852B982DCAC05BCC4FDE37262CFDFC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6_ComCallableWrapper>, IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6_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, &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_t20179CB00459FE9500911687A4A823EBD2751D45::IID;
interfaceIds[1] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::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_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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_tCE3EE49D1913A61C6AD06F12995194833AE192D6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216_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_Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t05D1202157E6A169D8277280F5AC9D2B164B4216_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635_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_ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_t43524AB8F76735259BC3B420E8320441047EF635_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48_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_Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t35066AAE07E6A1B7DBDBE4FCC17501E760413D48_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Func`2<System.Type,Vuforia.Tracker>>
struct EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_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_EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tB4908CB175302B9855E89926483F58E9B25F3098_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Func`2<System.Type,Vuforia.Tracker>>
struct InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304_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_InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tE32A46FE13E5BC44E39402F5CE5C3E9BE8003304_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_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_EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t4DBB3D8F9ADF7E4857C3BCBAD7CA47A1BA72C1D1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>>
struct InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081_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_InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t3D27CBBBE394DEEEA262A0951CD94823CE223081_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>
struct Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94_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_Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tA7B545559E9A8113ECE66521F215C24AE3479C94_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3_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_Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_tCD4C115CF8E954D312EF950516A4F7131552B8F3_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_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_EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t2EC48950960B02EBFE36EC0B5A94016E1D8198D8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B_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_InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t024A9066A3A5F988CEB3DE5C69AB608425F0223B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8_ComCallableWrapper>, IIterable_1_t20179CB00459FE9500911687A4A823EBD2751D45, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8_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, &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_t20179CB00459FE9500911687A4A823EBD2751D45::IID;
interfaceIds[1] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::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_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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_t9C4A2D003171F12A64704B736FB63ADB0C5005A8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299_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_Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tD642741DCC1CA2772B7179BFF94674594580B299_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C_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_ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_tEE174FF2D9C2267649D85D279E202CDB7E3CD34C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB_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_Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t3DC08862EBFEBE21D2E2D7361311A41B394286BB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Func`2<Vuforia.Tracker,System.Boolean>>
struct EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_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_EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t2DCD1BE67FE48431554002D8BEC45F33DF66AE52_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Func`2<Vuforia.Tracker,System.Boolean>>
struct InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472_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_InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t2E3314E5A272C166984083900E3F5B99E3C36472_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_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_EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t949393334C07F7107EECBED5AB3F143C558929B9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>>
struct InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE_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_InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t010C8F825C975BD26C8DE31EBF733D538A32D5AE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>
struct Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF_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_Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t4D09E6C8A63CFDF52B3A0B4F71D8FA46C944A6DF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_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_EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t0D196F5DA4F4BBB586B19E42CB29B6C5B5186CBF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2_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_InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t638667C5C8E898B7329027658ACEB28286E216F2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.TrackableSource>>
struct EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_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_EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t409617CC27DA41A22C051E633CCA566DB43FA060_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Action`1<Vuforia.TrackableSource>>
struct InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7_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_InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tB1A0130E5A5A0A0A36D7D257B1E8BD56A1C2A5B7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t477D866EAD3A75DB301C6A8079C8EA655B353754_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t1DB13CBD25E8E97748AF2F34627650A0E7BBFEA5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.ImageTargetBuilder_FrameQuality>>
struct Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE_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_Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t2A63DF24DBE1A904E4BFE59064DB38E2EA0125EE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<System.Action`1<Vuforia.TrackableSource>>
struct List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tCCA20E90107356D2976E7BF36B9888FF8286F515_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.TrackableSource>>
struct ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t982388E8877AFF240ECA9B9906904A0A2AA4C9F4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.TrackableSource>>
struct Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A_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_Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tFFBD79BBF9947CF9D779D784BE48470A4D41F88A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1<Vuforia.VideoBackgroundBehaviour>
struct HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5_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_HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HashSet_1_t973D6820EF90F3B0AA10962E6E961509AB4643E5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.VideoBackgroundBehaviour>>
struct EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_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_EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t6914DA9972311AAEDCAB4EFC467313DCC330E6B4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.VideoBackgroundBehaviour>>
struct InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63_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_InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t9E5188B5D82F563A8A4DB572F19002BF6CDBEF63_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Vuforia.VideoBackgroundBehaviour>
struct EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_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_EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tAB566DE8BCF350AACCC44FD3900FEF7A1A71BA93_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Vuforia.VideoBackgroundBehaviour>
struct InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56_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_InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t91EEE418088DAED5E2709C6316F7C1F7DBAAAA56_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1_Enumerator<Vuforia.VideoBackgroundBehaviour>
struct Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277_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_Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t74521CEBC0C664C440DD637AB359BEF68481E277_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1<Vuforia.BackgroundPlaneBehaviour>
struct HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748_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_HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HashSet_1_t95D0FBFBF1647F5911566D0D6370AD6AB9F1F748_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.BackgroundPlaneBehaviour>>
struct EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_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_EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t0D679A0C7A99C486E274A2E2DB2ACE416396497E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<Vuforia.BackgroundPlaneBehaviour>>
struct InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E_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_InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t87D492B03B6762250727D0A60A3773AB665EB81E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Vuforia.BackgroundPlaneBehaviour>
struct EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_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_EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tC8F99614F63B509916E72B0110EE84ABF30C73F0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Vuforia.BackgroundPlaneBehaviour>
struct InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8_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_InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t81E7494BFF2B87239952A7F011919FBF52A7D2F8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1_Enumerator<Vuforia.BackgroundPlaneBehaviour>
struct Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7_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_Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tD03A04F9F2DB18082C38371D1580EEF78A67E9C7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_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_EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tC0F8B3F413CFB4BC9918A64924D594210DFBC47A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5_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_InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tEB450758D2C894458F30E0C5F9EB1C25EBE727D5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tF0759540159BB4FCF81C226EA4D93DA0B9627809_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tF03053896B37B0866BCA1BD9D21D91C316B10D21_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<System.Action`1<Vuforia.VirtualButtonBehaviour>>
struct Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF_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_Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t23570BE5267E7DF73BB2EF6644175D62BE8694EF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.Camera>
struct List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t2E40B40F490CB64D707D2D3DE0F289444D311372_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Camera>
struct ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t72ADDBEC6880D416C1D54B44C0B373BC2463E845_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.Camera>
struct Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1_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_Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t3A1A8AE8E3954CD85125EEDB424AF0D83BE38EC1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Vuforia.WireframeBehaviour>
struct EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_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_EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t9E2BA68FB22F270BF9BEB2453DC8D7FB66DA7F63_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Vuforia.WireframeBehaviour>
struct InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1_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_InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t562CAAFB20A7E5FB87240C2CBA91A5A0E2E5B1D1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<Vuforia.EditorClasses.JSONNode>
struct Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C_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_Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_t14E69869DC770BB3337EDB4B6345C0493763C67C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<Vuforia.EditorClasses.JSONNode>
struct List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t12494A17845A9914D067E6A42254AAEDD24443A6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t12494A17845A9914D067E6A42254AAEDD24443A6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.EditorClasses.JSONNode>
struct ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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, &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] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[3] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::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 IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), 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 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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tE4CAA928B60A79049B2CD5B0FFB58891D73AD91B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<Vuforia.EditorClasses.JSONNode>
struct Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7_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_Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tD4E34BEAC8BFA0420ECDCBD1A128E6ACF0FF2ED7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<System.String,Vuforia.EditorClasses.JSONNode>
struct Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E_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_Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_t3833C9DB46B531950CD2EDEC91B97932A1CDAB6E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.String,Vuforia.EditorClasses.JSONNode>>
struct EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_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_EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t6DD8AC12386266EBEFD9777FCEF1B9DC1D551566_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.String,Vuforia.EditorClasses.JSONNode>>
struct InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227_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_InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tB244215B126EBC92AB1074257C502DADC2B52227_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<System.String,Vuforia.EditorClasses.JSONNode>
struct KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327_ComCallableWrapper>, IIterable_1_t3D3C61499BF616A0FC79BBE99A667948ED4235BC, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_t7AD27FF97F3631C2A53221E237A532F8259212D5, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327_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, &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>(5);
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;
*iidCount = 5;
*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);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_tE7CA4DA2E784F84E3224E4505F3C54EB6385C327_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.String,Vuforia.EditorClasses.JSONNode>
struct Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96_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_Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t2DF4669EFEA24BC95673AB109453544F4214EE96_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<System.String,Vuforia.EditorClasses.JSONNode>
struct ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478_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_ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_tFD2AB5370513D0CF5A2213EEF5906EFCBF4C6478_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.String,Vuforia.EditorClasses.JSONNode>
struct Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73_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_Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tDA674FE198E93F479F9D54F5E81CC332ECD7AD73_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.EditorClasses.JSONNode>>
struct EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_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_EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tB6DC0D735A75B4C44050A06DE2FECE32D6FED892_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.EditorClasses.JSONNode>>
struct InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6_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_InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tA0BD1F16E1C9F4A9EE6900D463543F9CF72149F6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<System.String,Vuforia.EditorClasses.JSONNode>
struct Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152_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_Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t2BE0D88E22122DB486DFFCF8DDF49BE18E008152_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Point>
struct EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_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_EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t1B613FA6FB17CFBC4401D1D30DB43BD583899236_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Windows.Foundation.Point>
struct InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716_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_InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tFE87932D7A602676850DAADCF93A4B3A7BF85716_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Point>
struct ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C_ComCallableWrapper>, IVector_1_t63505E39BCA91C0982B33CE4A27996981A3F2E32, IIterable_1_t42A26D86C03100D2D000F54A9F11470BBB5C0FFF, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F
{
inline ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C_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_t63505E39BCA91C0982B33CE4A27996981A3F2E32::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t63505E39BCA91C0982B33CE4A27996981A3F2E32*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t42A26D86C03100D2D000F54A9F11470BBB5C0FFF::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t42A26D86C03100D2D000F54A9F11470BBB5C0FFF*>(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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F*>(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>(5);
interfaceIds[0] = IVector_1_t63505E39BCA91C0982B33CE4A27996981A3F2E32::IID;
interfaceIds[1] = IIterable_1_t42A26D86C03100D2D000F54A9F11470BBB5C0FFF::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F::IID;
*iidCount = 5;
*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_m8BA866DE595CC926E9199EADB07579702C6D1126(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m8BA866DE595CC926E9199EADB07579702C6D1126_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mC1E7F0B41BE75A6D18DE7F862F244D9B25787532(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_mC1E7F0B41BE75A6D18DE7F862F244D9B25787532_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m2478E841B92C43884E2B81D0B24284E13AAF2711(IVectorView_1_t93F4CECB175AB2DF66D77D85EFD71B01930F5F6F** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m2478E841B92C43884E2B81D0B24284E13AAF2711_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mCA65357BBB22860599FDBE65C11C21DEAB00AF3D(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_mCA65357BBB22860599FDBE65C11C21DEAB00AF3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m8016275FBE819F24697096ADAD84550BAFE3088A(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m8016275FBE819F24697096ADAD84550BAFE3088A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mA94639C77B6950A6CF162D1D9AB32C3A507D5860(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_mA94639C77B6950A6CF162D1D9AB32C3A507D5860_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m847D12BCF034A61F6A17453CEA6EB1222685C995(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m847D12BCF034A61F6A17453CEA6EB1222685C995_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m62C8B4C608BEEE1FD361F797734565DDD5B7AA54(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m62C8B4C608BEEE1FD361F797734565DDD5B7AA54_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m8972706596A0BC853A746CA9A1BABE64B31D860C() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m8972706596A0BC853A746CA9A1BABE64B31D860C_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m8771F68C5FDB3A346DA7B329D6221A3BDA215EEE() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m8771F68C5FDB3A346DA7B329D6221A3BDA215EEE_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m29726076130125E00063041869C1E40CA0293220(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m29726076130125E00063041869C1E40CA0293220_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m67424FCCC5CA01EE9B2BE4BF208BEBA9A8DD4455(uint32_t ___items0ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m67424FCCC5CA01EE9B2BE4BF208BEBA9A8DD4455_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mDFD48986D037D31527C0FE6D115A92095FA88E62(IIterator_1_tA2F4E334454D08C5C9E0AC3C76D57B20671F1960** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mDFD48986D037D31527C0FE6D115A92095FA88E62_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 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 IVectorView_1_GetAt_m8341DA1CF3E332A5F1EA0D4076A9E6AED2F969A7(uint32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m8341DA1CF3E332A5F1EA0D4076A9E6AED2F969A7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m67D9F06853A0A15E7800A5119B9ECF711033D3C5(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m67D9F06853A0A15E7800A5119B9ECF711033D3C5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m3CFACEBC726101383EB22D58A597BDE3A90DF1B7(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m3CFACEBC726101383EB22D58A597BDE3A90DF1B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m21B34F837ABE71B5D55EFA0BE3BBF2FDDA15FADC(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m21B34F837ABE71B5D55EFA0BE3BBF2FDDA15FADC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t62A97F310A6E05144C666BF9193F6FB73D92CC9C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.Point>
struct IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10_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_IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_t4805028DFA319F90CB482CAB399AD4B7E779CE10_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Rect>
struct EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_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_EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t35C964CD6744DA019D160DF3598CCD9FE2D107BD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Windows.Foundation.Rect>
struct InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9_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_InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t8F2597EB89565B748313B1FD268CC0F82623BCC9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Rect>
struct ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E_ComCallableWrapper>, IVector_1_t70376E7B2E033946CAE37F842D951D15221E40DE, IIterable_1_tAE9AAFF40AEFFD8B95D5AA3D2075D2796BA3BD84, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08
{
inline ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E_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_t70376E7B2E033946CAE37F842D951D15221E40DE::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t70376E7B2E033946CAE37F842D951D15221E40DE*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tAE9AAFF40AEFFD8B95D5AA3D2075D2796BA3BD84::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tAE9AAFF40AEFFD8B95D5AA3D2075D2796BA3BD84*>(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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08*>(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>(5);
interfaceIds[0] = IVector_1_t70376E7B2E033946CAE37F842D951D15221E40DE::IID;
interfaceIds[1] = IIterable_1_tAE9AAFF40AEFFD8B95D5AA3D2075D2796BA3BD84::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08::IID;
*iidCount = 5;
*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_m860F0546EEF04C53AE9E130D82C9D5C81E38F09D(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m860F0546EEF04C53AE9E130D82C9D5C81E38F09D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m3E1D322E8655F4B70AFBE017BE7A6F42646E21FF(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m3E1D322E8655F4B70AFBE017BE7A6F42646E21FF_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m05A680DA4953F6B1E966F0E4225E51C793AD1FCB(IVectorView_1_t1B0784EAE2BADFCB600504F9AA05DA3836014F08** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m05A680DA4953F6B1E966F0E4225E51C793AD1FCB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mAB40CD0B4752E5591FDD6C776A8695E8C111757F(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_mAB40CD0B4752E5591FDD6C776A8695E8C111757F_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m490C9C336951F48684ACE2923444C39F1154D996(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m490C9C336951F48684ACE2923444C39F1154D996_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m224C85A02047BC927A6C591EDEF611D123A17FB1(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m224C85A02047BC927A6C591EDEF611D123A17FB1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m5FE938D8EBDE480C3840150B2F4A3171E9B1C6C7(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m5FE938D8EBDE480C3840150B2F4A3171E9B1C6C7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m1CBE39B7EAE7085E7B64826C9282409373919FD3(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m1CBE39B7EAE7085E7B64826C9282409373919FD3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m6FCE80AA09525EE84D12058358DA3DE7C3A0B58A() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m6FCE80AA09525EE84D12058358DA3DE7C3A0B58A_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m83A22DD6F46061AA1483B9B6680F63E0DB1ABF18() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m83A22DD6F46061AA1483B9B6680F63E0DB1ABF18_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m6CF0E0E78CE9CCF30FE35F8C3647F4D88E45F2E0(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m6CF0E0E78CE9CCF30FE35F8C3647F4D88E45F2E0_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m8F32DCA07484FF4EA900247DB3CF32D4DD7743B5(uint32_t ___items0ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m8F32DCA07484FF4EA900247DB3CF32D4DD7743B5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mE498E9BD287BD46B8DF12E2E88C09632ACCBFE62(IIterator_1_tEE3BEEAE4E5550C7E66C35FB0ACA1BB925AC7953** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mE498E9BD287BD46B8DF12E2E88C09632ACCBFE62_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 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 IVectorView_1_GetAt_m734A830338CB26CABEFA2C5695BBECF65EED7065(uint32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m734A830338CB26CABEFA2C5695BBECF65EED7065_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m71D8594BF82DB8DB6E01088630A2A1377099A7BC(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m71D8594BF82DB8DB6E01088630A2A1377099A7BC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mB2FE1F154E9E9AC9C774989E83F480468C4CAF06(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mB2FE1F154E9E9AC9C774989E83F480468C4CAF06_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m6359E11437D7FBAD999817FB25166D3A186443BA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m6359E11437D7FBAD999817FB25166D3A186443BA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t18DF608729C53A54C79C18CCD6A2FFC2CD4D3F3E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.Rect>
struct IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA_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_IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_tCE70086D5A85284C582C0F52C060283E10E60EDA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Size>
struct EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_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_EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t70DB85FAFD742FF2569AD1A28C2BB6B935ABA835_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Windows.Foundation.Size>
struct InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990_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_InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t0588929AD5000D5F4B17AA429A9645750FDAB990_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Size>
struct ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A_ComCallableWrapper>, IVector_1_tFF499B0D2C4CFA234C8341A0E67F1C5B0558E080, IIterable_1_t1864587EB7CE5B1570B2FA9C6E9D78E1C5CE6593, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10
{
inline ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A_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_tFF499B0D2C4CFA234C8341A0E67F1C5B0558E080::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_tFF499B0D2C4CFA234C8341A0E67F1C5B0558E080*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t1864587EB7CE5B1570B2FA9C6E9D78E1C5CE6593::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t1864587EB7CE5B1570B2FA9C6E9D78E1C5CE6593*>(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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10*>(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>(5);
interfaceIds[0] = IVector_1_tFF499B0D2C4CFA234C8341A0E67F1C5B0558E080::IID;
interfaceIds[1] = IIterable_1_t1864587EB7CE5B1570B2FA9C6E9D78E1C5CE6593::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10::IID;
*iidCount = 5;
*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_mAC9D4AFE60AF9E4E11B2019A7E88E67FD01220CA(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_mAC9D4AFE60AF9E4E11B2019A7E88E67FD01220CA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m93AB379C287998CCBCF3BBF4635268B5608FF13E(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m93AB379C287998CCBCF3BBF4635268B5608FF13E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m38F209F24483F082E5AD878010A48BBEF2458632(IVectorView_1_tB38D95C34E86785DC7A35B281E2B790453C65A10** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m38F209F24483F082E5AD878010A48BBEF2458632_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m7933EC9C9B848E96FD16B456DF0E1A3BFD14744C(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m7933EC9C9B848E96FD16B456DF0E1A3BFD14744C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m7DA1C114B3E0F26C588D69EC13508B01B352AEE3(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m7DA1C114B3E0F26C588D69EC13508B01B352AEE3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m1BEDCF33DA4CD24F0BF7620012C8099D8A729719(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m1BEDCF33DA4CD24F0BF7620012C8099D8A729719_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m2A4572D5CF6A270795166405A6F5F1F047B3CB71(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m2A4572D5CF6A270795166405A6F5F1F047B3CB71_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m99432F5987C7225E0764DD8720AF6BFAFE9A4354(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m99432F5987C7225E0764DD8720AF6BFAFE9A4354_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mC54947181B8F2AC3E762D2FBFD426DDF9E577E85() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_mC54947181B8F2AC3E762D2FBFD426DDF9E577E85_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mB673D334EF55E4F986BF7DEBEEC06526772E147E() IL2CPP_OVERRIDE
{
return IVector_1_Clear_mB673D334EF55E4F986BF7DEBEEC06526772E147E_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m43CCD31EBDF2988B76478D534FE8876C56981780(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m43CCD31EBDF2988B76478D534FE8876C56981780_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m43A4A257320A29444AF981687B4BE67E8266AB81(uint32_t ___items0ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m43A4A257320A29444AF981687B4BE67E8266AB81_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m9FE8FA9031708EBA9C1D4B91A278DB4B5AFA5372(IIterator_1_t41554E725F79EEC45542DF0955D0013EAC3876BF** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m9FE8FA9031708EBA9C1D4B91A278DB4B5AFA5372_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 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 IVectorView_1_GetAt_m70D898CC4FD186906812F8D0F78D15C6019D28E1(uint32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m70D898CC4FD186906812F8D0F78D15C6019D28E1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m4B92B51E6040173F1642F5A9BEF9DF32E2A0B5E5(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m4B92B51E6040173F1642F5A9BEF9DF32E2A0B5E5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m591A718A8A5E8EBE24E822543033D2F2DED1E420(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m591A718A8A5E8EBE24E822543033D2F2DED1E420_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mE77488F6FE6C0A8246BBA501F65D3068B61F6F74(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mE77488F6FE6C0A8246BBA501F65D3068B61F6F74_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t9FACA05D834E39CE3D91E133F1210270504A4F2A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.Size>
struct IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726_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_IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_tC4D3B035C7EE64736356E91EE04C2DA9C65EB726_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>
struct AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper>, IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper
{
inline AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_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, &IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1* ___asyncInfo0, Il2CppIInspectable* ___progressInfo1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Marshaling of parameter '___progressInfo1' to managed representation
RuntimeObject * ____progressInfo1_unmarshaled = NULL;
if (___progressInfo1 != NULL)
{
____progressInfo1_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___progressInfo1, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____progressInfo1_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____progressInfo1_unmarshaled), Il2CppIInspectable::IID, ___progressInfo1);
}
}
else
{
____progressInfo1_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * __thisValue = (AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD *)GetManagedObjectInline();
AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5(__thisValue, ____asyncInfo0_unmarshaled, ____progressInfo1_unmarshaled, AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>
struct AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper>, IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper
{
inline AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_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, &IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * __thisValue = (AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB *)GetManagedObjectInline();
AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.Task`1<System.VoidValueTypeParameter>
struct Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_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_Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Task_1_tC00A207FB8C25E4498366C42466B6F913AF48F5E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncActionCompletedHandler,System.VoidReferenceTypeParameter,System.VoidValueTypeParameter,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m7993FCF220700C38589133E61AABE886BEB11A16_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __thisValue = (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m7993FCF220700C38589133E61AABE886BEB11A16(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m7993FCF220700C38589133E61AABE886BEB11A16_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mC3004519B021A82DABA6E1CE706340B659E5416D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __thisValue = (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mC3004519B021A82DABA6E1CE706340B659E5416D(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mC3004519B021A82DABA6E1CE706340B659E5416D_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mF8F7FE6A9EE4CF8EBB3C72A320E8560D02F737C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __thisValue = (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mF8F7FE6A9EE4CF8EBB3C72A320E8560D02F737C9(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mF8F7FE6A9EE4CF8EBB3C72A320E8560D02F737C9_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m017C5C355FDA1992B23B476DC35C7662A69D855F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __thisValue = (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m017C5C355FDA1992B23B476DC35C7662A69D855F(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m017C5C355FDA1992B23B476DC35C7662A69D855F_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m83E040C7E14614C240AA25F9B9DF33EA4B20D561_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF * __thisValue = (TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m83E040C7E14614C240AA25F9B9DF33EA4B20D561(__thisValue, TaskToAsyncInfoAdapter_4_Close_m83E040C7E14614C240AA25F9B9DF33EA4B20D561_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_t6939D2A566A48D499669B8B0865212D2FB4A22BF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.VoidValueTypeParameter,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __thisValue = (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_mE3F4AF951FA8F667BE7830DCF7918D0AA276CBB9_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __thisValue = (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m848BF8A8417463D8B0D84387A7862E56864D3F95_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __thisValue = (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mD6B9D39E749AA2F1F6EC2BB46E75A94B7735C332_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __thisValue = (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m8200ED761BC5B80A2E0362DA86DAA797FB9B8B1C_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F * __thisValue = (TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D(__thisValue, TaskToAsyncInfoAdapter_4_Close_m9FB62019533C08F57B97F1B81EE49AAFA616870D_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_t7ED2445CF03BB4D275242341EA404EAA6634929F_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>
struct AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper>, IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper
{
inline AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_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, &IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * __thisValue = (AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 *)GetManagedObjectInline();
AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Object>
struct TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5, IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1
{
inline TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID;
interfaceIds[1] = IAsyncOperation_1_t8458F3AE31378AC0283AEFB66F34243CDFF9BBC1::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6(__thisValue, TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_put_Completed_m0C7B8B4487E05BA966965F8D42142089B9326D45(IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperation_1_put_Completed_m0C7B8B4487E05BA966965F8D42142089B9326D45_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0*)il2cpp_codegen_object_new(AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationCompletedHandler_1_Invoke_m7C13F1AE0BF8ECF243D11FD7374FEE0CA2DC59D0_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF * __thisValue = (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF *)GetManagedObjectInline();
TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mED1D17787787801E3773FA198994E58C490C4CF6_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_get_Completed_mF5FE7877C4022DAB662BB33D1DCB376892F71003(IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperation_1_get_Completed_mF5FE7877C4022DAB662BB33D1DCB376892F71003_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_m601052E62079FE991D5360BB78A1B1EE4AD1CF0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0 * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Completed_m601052E62079FE991D5360BB78A1B1EE4AD1CF0D(__thisValue, TaskToAsyncInfoAdapter_4_get_Completed_m601052E62079FE991D5360BB78A1B1EE4AD1CF0D_RuntimeMethod_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
IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationCompletedHandler_1_t985408C8A36FF9AA22CBADA53D6222BB9EA346B0_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_GetResults_m9512F1B6180476FC615EABE09C819D9FA551E911(Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperation_1_GetResults_m9512F1B6180476FC615EABE09C819D9FA551E911_CCW_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper_TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
RuntimeObject * returnValue;
try
{
TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF * __thisValue = (TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF *)GetManagedObjectInline();
returnValue = TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2(__thisValue, TaskToAsyncOperationAdapter_1_GetResults_m684FC025A2F7EFC2DB74C59FC5C8A15E1748EEF2_RuntimeMethod_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
Il2CppIInspectable* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(returnValue))
{
_returnValue_marshaled = il2cpp_codegen_com_query_interface<Il2CppIInspectable>(static_cast<Il2CppComObject*>(returnValue));
(_returnValue_marshaled)->AddRef();
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<Il2CppIInspectable>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncOperationAdapter_1_t7A47D9BC219BAD0EFB72A7FA5C381AF475F034CF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Object>,System.VoidReferenceTypeParameter,System.Object,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m4745F15D3A3EF92B40F603B136838C67AF1EC368_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mFD905057C5774A8C507908FCCCA893B91BCC9642_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mB9712A2372CFB56956FFDA899A97C56DAE31EF5A_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m0B6C9DE7DE2EC571A532523EA78D8F5F8D1E584E_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D * __thisValue = (TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6(__thisValue, TaskToAsyncInfoAdapter_4_Close_m666961EEF3F3C8BFD4BE2CD238B4C0C641DEF5F6_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_tBED7CFFD78DC899D7F699DA3F772D2AFE0F71C0D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __thisValue = (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_mA4887B82BEB797D9401FB5D0D9DE0C208DDA5770_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __thisValue = (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mB0CE992FCBE5997401EB59958D05E2ED615C3006_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __thisValue = (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mB8F64A63CE9FEDC3F0102003B542ACFC0905996D_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __thisValue = (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m021F6304332FC880C8887B7B38B29CE2A39D4451_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 * __thisValue = (TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23(__thisValue, TaskToAsyncInfoAdapter_4_Close_m8094FC6117FAFCA2625E128F7AC128A42946BB23_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_tDBBEEAADD8936DFD07DEAB554CF917DE19570EC5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.Object>
struct TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5, IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1
{
inline TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID;
interfaceIds[1] = IAsyncOperationWithProgress_2_tD50512E675329FF3A609906BA69059AC641D72B1::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A(__thisValue, TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Progress_mFB6FE604EEF5BB9E714EFACDDDEE09B5B1C62191(IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_put_Progress_mFB6FE604EEF5BB9E714EFACDDDEE09B5B1C62191_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD*)il2cpp_codegen_object_new(AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationProgressHandler_2_Invoke_mC37F7BE299DA14C660D5DF73A1661F984C0B6CB5_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A *)GetManagedObjectInline();
TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_m8A05758FF3FE525E5876E73586536D2B37528EDF_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Progress_m8FCB4F1054CC4C911C223A5EB575DE711E51ED40(IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_get_Progress_m8FCB4F1054CC4C911C223A5EB575DE711E51ED40_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Progress_mA64CC5D93F015289D508EA55527DABB1E16BB67F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Progress_mA64CC5D93F015289D508EA55527DABB1E16BB67F(__thisValue, TaskToAsyncInfoAdapter_4_get_Progress_mA64CC5D93F015289D508EA55527DABB1E16BB67F_RuntimeMethod_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
IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationProgressHandler_2_t9553C2F879A9E39FC1043CB0A40CBF3BD3F431AD_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Completed_m9AA2531FFB51D956562246763E80DE45603A1102(IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_put_Completed_m9AA2531FFB51D956562246763E80DE45603A1102_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB*)il2cpp_codegen_object_new(AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationWithProgressCompletedHandler_2_Invoke_m353CBF7792DB15887D6EFB051B530853C8EA9F69_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A *)GetManagedObjectInline();
TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m86F52220BDA0736EA9C81770923B7982453D867E_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Completed_mC8B0DF1D983B538324F584457FA0A32B8EE96CA0(IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_get_Completed_mC8B0DF1D983B538324F584457FA0A32B8EE96CA0_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_m3FE50AD2400A1E8E7C4195CAFA282B20CC76126C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Completed_m3FE50AD2400A1E8E7C4195CAFA282B20CC76126C(__thisValue, TaskToAsyncInfoAdapter_4_get_Completed_m3FE50AD2400A1E8E7C4195CAFA282B20CC76126C_RuntimeMethod_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
IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationWithProgressCompletedHandler_2_tA57BD53F38B97D88EEA02AEACE48D9175DFFAFEB_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_GetResults_m0ACDB95A7BF00987D62964D2EA95E997E27549EE(Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_GetResults_m0ACDB95A7BF00987D62964D2EA95E997E27549EE_CCW_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
RuntimeObject * returnValue;
try
{
TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A *)GetManagedObjectInline();
returnValue = TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564(__thisValue, TaskToAsyncOperationWithProgressAdapter_2_GetResults_m1E7FC914E26260F3BD10BBA5E13C57193132B564_RuntimeMethod_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
Il2CppIInspectable* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(returnValue))
{
_returnValue_marshaled = il2cpp_codegen_com_query_interface<Il2CppIInspectable>(static_cast<Il2CppComObject*>(returnValue));
(_returnValue_marshaled)->AddRef();
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<Il2CppIInspectable>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncOperationWithProgressAdapter_2_t68A9B8CB9B966DEF4D790772436D2CFF80C0A81A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.Object>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.Object>,System.Object,System.Object>
struct TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_mC385E4808908F9F882681A92DF1FED8CBEE27348_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mFD18D16AF73D07898C55166B6AC4845D08E30E69_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m45C661F79A3BD506D1276A9B261F243889335335_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_mA29DA92C704482BA3D7EAB7FE44841CE3BDE2BDC_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 * __thisValue = (TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A(__thisValue, TaskToAsyncInfoAdapter_4_Close_m5ADBEAEB6805A763862F008051E7F515845C9F4A_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_t761928F898BD1BF42F945EF715458EDEDF849625_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.Object>
struct TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __thisValue = (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m39130BE5B6EEECCD6C82A805BC384F05C722C205_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __thisValue = (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m3487F069C0C3BFC082AD85DC75C83C6D9FC18CCD_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __thisValue = (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mC359EFBFE5CEC61AF93B8CEB241A36D410C023D8_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __thisValue = (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m4959199E0E52C2B80D61913CC13D91B25A009F37_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E * __thisValue = (TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4(__thisValue, TaskToAsyncInfoAdapter_4_Close_m7CB1085D37C1FD9813D4AC07F39B27013069EDC4_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_t43F22E97021AEF051E55B6227D1BC36BAAD75C6E_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationProgressHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper>, IAsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper
{
inline AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_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, &IAsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationProgressHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792* ___asyncInfo0, uint32_t ___progressInfo1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationProgressHandler_2_Invoke_m95E3276A19BA6239B14D4DD15256F87671BDE40D_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89 * __thisValue = (AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89 *)GetManagedObjectInline();
AsyncOperationProgressHandler_2_Invoke_m95E3276A19BA6239B14D4DD15256F87671BDE40D(__thisValue, ____asyncInfo0_unmarshaled, ___progressInfo1, AsyncOperationProgressHandler_2_Invoke_m95E3276A19BA6239B14D4DD15256F87671BDE40D_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationProgressHandler_2_t63E8FDA8EB19569C2F25132499D6D4AEB5E52A89_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>
struct AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper>, IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper
{
inline AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_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, &IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D* ___asyncInfo0, uint32_t ___progressInfo1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * __thisValue = (AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 *)GetManagedObjectInline();
AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B(__thisValue, ____asyncInfo0_unmarshaled, ___progressInfo1, AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper>, IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper
{
inline AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_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, &IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * __thisValue = (AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 *)GetManagedObjectInline();
AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper>, IAsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper
{
inline AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_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, &IAsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<Windows.Storage.Streams.IBuffer,System.UInt32>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationWithProgressCompletedHandler_2_Invoke_m9AA9B10D4FE96E4CD29E1E641BA59CF7DC4516AE_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_t9F077679BB6FBB6BF4C0E8B56C7FEF3D661EA792::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6 * __thisValue = (AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6 *)GetManagedObjectInline();
AsyncOperationWithProgressCompletedHandler_2_Invoke_m9AA9B10D4FE96E4CD29E1E641BA59CF7DC4516AE(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationWithProgressCompletedHandler_2_Invoke_m9AA9B10D4FE96E4CD29E1E641BA59CF7DC4516AE_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationWithProgressCompletedHandler_2_tF04CE0C0951B83CB6BD82DC4376B10B01A3B1CE6_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>
struct AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper>, IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper
{
inline AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_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, &IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3* ___asyncInfo0, uint32_t ___progressInfo1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * __thisValue = (AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 *)GetManagedObjectInline();
AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A(__thisValue, ____asyncInfo0_unmarshaled, ___progressInfo1, AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>
struct AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper>, IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper
{
inline AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_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, &IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * __thisValue = (AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B *)GetManagedObjectInline();
AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>
struct AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper>, IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper
{
inline AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_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, &IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * __thisValue = (AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 *)GetManagedObjectInline();
AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.Task`1<System.UInt32>
struct Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_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_Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Task_1_tB8C8430765AEE1D5F24261F5BAD009C22AC7872F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.UInt32,System.UInt32>
struct TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5, IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3
{
inline TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID;
interfaceIds[1] = IAsyncOperationWithProgress_2_tC8BD3FE106054920900E2389AD70276493A309B3::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1(__thisValue, TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Progress_m350E9B9254A685DFB8C3FC2D3131246B8E51D04A(IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_put_Progress_m350E9B9254A685DFB8C3FC2D3131246B8E51D04A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367*)il2cpp_codegen_object_new(AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationProgressHandler_2_Invoke_mB085846293B659E8489666002B4978502E0C1A9A_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 *)GetManagedObjectInline();
TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mB49B26AB28F2113C2BEE58F01932EC1CC4C07C7F_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Progress_m52E5FA65A83D323DD051DE07DCD1197F3BAB915A(IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_get_Progress_m52E5FA65A83D323DD051DE07DCD1197F3BAB915A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Progress_mD45A5B178A7C331FEB9FAE48E134F600540E749F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367 * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Progress_mD45A5B178A7C331FEB9FAE48E134F600540E749F(__thisValue, TaskToAsyncInfoAdapter_4_get_Progress_mD45A5B178A7C331FEB9FAE48E134F600540E749F_RuntimeMethod_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
IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationProgressHandler_2_t59B024515C6DBD5934C514163689545A8EBEF367_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Completed_mFB0F42569BF3A6EA84B17C7FC562E077E24E1C1E(IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_put_Completed_mFB0F42569BF3A6EA84B17C7FC562E077E24E1C1E_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B*)il2cpp_codegen_object_new(AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationWithProgressCompletedHandler_2_Invoke_mF2EACB140DBBB4C680554544DAEEE83EE84C64BA_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 *)GetManagedObjectInline();
TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_m5CA8B93AE0350EDB3706BC0774A5EC5F9632B36B_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Completed_mA97E7AD6FFA70605BC3D85B2BA81D9E73477C83C(IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_get_Completed_mA97E7AD6FFA70605BC3D85B2BA81D9E73477C83C_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_mA68EA69BA6979871A9B44B79D06DDEA805C2F77E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Completed_mA68EA69BA6979871A9B44B79D06DDEA805C2F77E(__thisValue, TaskToAsyncInfoAdapter_4_get_Completed_mA68EA69BA6979871A9B44B79D06DDEA805C2F77E_RuntimeMethod_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
IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationWithProgressCompletedHandler_2_tF449555B6EE977A7635D662ED0C1D414CC60792B_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_GetResults_m192AC6B35298E03A2B3C136B3077DF2053FDB6A2(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_GetResults_m192AC6B35298E03A2B3C136B3077DF2053FDB6A2_CCW_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5 *)GetManagedObjectInline();
returnValue = TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97(__thisValue, TaskToAsyncOperationWithProgressAdapter_2_GetResults_mB85097443E0AABC61C693366D3E3B1A756518B97_RuntimeMethod_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;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncOperationWithProgressAdapter_2_t1764D6F59447900C2F491D702D44504AA8E124C5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.UInt32,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.UInt32,System.UInt32>,System.UInt32,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m900D8F19AA31CBFB61A071257A0E932233E00F4F_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mB2B9C5CB1F38FBF7D01C5702CD7F625A147B7650_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mD86573138764FFC35335DEA1182ABCD3573B6192_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_mDFF1DE354D55554E1C2F8EE2B6A270D9A1E3677E_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB * __thisValue = (TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1(__thisValue, TaskToAsyncInfoAdapter_4_Close_m821A2E42F0179A26389029419509163C49BDE4B1_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_tAC83A62C004CF61FBB215509034F89040FF6A2DB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.UInt32,System.UInt32>
struct TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __thisValue = (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m2C538E3EF79AB7096BCF010D2E7269B4B93EFF36_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __thisValue = (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m15AA357052F99B51D0A980ABE22256D17804FABA_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __thisValue = (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_mE6FDFC69291354C86382AAB143102542D318620B_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __thisValue = (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_mE17DC3D5C5A18F5210E28BE9B20CB45125EF8960_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 * __thisValue = (TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1(__thisValue, TaskToAsyncInfoAdapter_4_Close_m1B986F1E5A007822D9E3A21B878F4CAAC1BDA0A1_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_t3AA94352605C1F24CFFF5B559A73C39376F7B4B1_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationCompletedHandler`1<System.UInt32>
struct AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper>, IAsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper
{
inline AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_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, &IAsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationCompletedHandler`1<System.UInt32>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t601B0A980544E8D0164BE90BE9DF2B1FDB30E21D* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperation_1_t601B0A980544E8D0164BE90BE9DF2B1FDB30E21D::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145 * __thisValue = (AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145 *)GetManagedObjectInline();
AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationCompletedHandler_1_Invoke_m86B1E277FA1090FC41AE5DAEDC7FC6098297FED4_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationCompletedHandler_1_tCD771F2236AA004FAF4B9B6B7FD23917D8BB5145_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncOperationAdapter`1<System.Boolean>
struct TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5, IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18
{
inline TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID;
interfaceIds[1] = IAsyncOperation_1_t27E018F764B0C6E8EB0FA611CB25A52C1FD0FB18::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD(__thisValue, TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_put_Completed_mCD6E096799210DC80FFCA3C09D67B27800A90520(IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperation_1_put_Completed_mCD6E096799210DC80FFCA3C09D67B27800A90520_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66*)il2cpp_codegen_object_new(AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationCompletedHandler_1_Invoke_m3BC46241585B77A7BE507B2A2C3BB53282D40D63_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 * __thisValue = (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 *)GetManagedObjectInline();
TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationAdapter_1_Windows_Foundation_IAsyncOperationU3CTResultU3E_put_Completed_mFF78EF4FA0F65719ADC3503CF30FB60448E4EDFB_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_get_Completed_m07CAA5869A884FEC2A68E5C00C7DA01E4576826B(IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperation_1_get_Completed_m07CAA5869A884FEC2A68E5C00C7DA01E4576826B_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_mEC05E85847C50339C45B75B4D8F3360E398F7C7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66 * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Completed_mEC05E85847C50339C45B75B4D8F3360E398F7C7D(__thisValue, TaskToAsyncInfoAdapter_4_get_Completed_mEC05E85847C50339C45B75B4D8F3360E398F7C7D_RuntimeMethod_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
IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationCompletedHandler_1_t60A0D16C078315F375831514827E7956934AFB66_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperation_1_GetResults_mD43ABCF581D914A85D4B9445991877915DFF56DA(bool* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperation_1_GetResults_mD43ABCF581D914A85D4B9445991877915DFF56DA_CCW_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper_TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
bool returnValue;
try
{
TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 * __thisValue = (TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1 *)GetManagedObjectInline();
returnValue = TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF(__thisValue, TaskToAsyncOperationAdapter_1_GetResults_mE8183B2CC026311CB4687053E3A91D124F485FDF_RuntimeMethod_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;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncOperationAdapter_1_t42FB691752C287CF584F343E8EE84A649C9A86C1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationCompletedHandler`1<System.Boolean>,System.VoidReferenceTypeParameter,System.Boolean,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m1842C33EE8E8FBDEB36BFAF1D18E80D176907285_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m90A306F09963AB9C55D10BE1329166BFB64A3D1E_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m58197AB3BBD9015689C4EF6CA072A1142B05FF3F_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m73AAE345AC8853E2791C90B270D33784AB077E88_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 * __thisValue = (TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD(__thisValue, TaskToAsyncInfoAdapter_4_Close_m7138EC6DF8E9E035E2486EDF3C97A3733B1B42CD_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_t86B54206C772D2D4DD482EE385A781818835C641_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Boolean,System.VoidValueTypeParameter>
struct TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __thisValue = (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m78A85BFD7E4439A700B18EC654E3664E72ED29E7_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __thisValue = (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_mB83131E0817E07671A0E505628C877FF418619E3_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __thisValue = (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m1AFFACF8C280B77D9308BDA82753EF1B5BD1A2A9_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __thisValue = (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m8AFA0487A6F4A11F51F70A5896CEB9C9F39B740B_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 * __thisValue = (TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B(__thisValue, TaskToAsyncInfoAdapter_4_Close_m37FD921301AC2AE11BBDEB9CC54F1136B0DE305B_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_t99E829DEFA55BD468C6182AE40E2484E083EE0B9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.Task`1<Windows.Storage.Streams.IBuffer>
struct Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_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_Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Task_1_t84A3E8ADA0C56D0776B0FCEBCEA98E253DB4385C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncOperationWithProgressAdapter`2<System.Object,System.UInt32>
struct TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5, IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D
{
inline TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID;
interfaceIds[1] = IAsyncOperationWithProgress_2_t58A307F07CC4DEF3DB0E5155D12C31CFFEF4A55D::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973(__thisValue, TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Progress_m4803D2725A9442A29BC0AE0085F1674A0BA11B82(IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_put_Progress_m4803D2725A9442A29BC0AE0085F1674A0BA11B82_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8*)il2cpp_codegen_object_new(AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationProgressHandler_2_Invoke_m1FD2EDC8379CC922194D07A043EB10DFCEEA306B_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B *)GetManagedObjectInline();
TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Progress_mEB0E2065C476D5A9C7695B4324BB4FC9287C4627_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Progress_mC5BB2B4E3E81BB01D64CAB93E64049091F860B77(IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_get_Progress_mC5BB2B4E3E81BB01D64CAB93E64049091F860B77_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Progress_m2E2FD8FFAC087C69B6A14012A65DC7BC8E3A2F63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8 * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Progress_m2E2FD8FFAC087C69B6A14012A65DC7BC8E3A2F63(__thisValue, TaskToAsyncInfoAdapter_4_get_Progress_m2E2FD8FFAC087C69B6A14012A65DC7BC8E3A2F63_RuntimeMethod_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
IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationProgressHandler_2_tBE4195D29D5A4324DCD90062EB29BEA3AE9B0BE8_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_put_Completed_m24A7BD0A272762E01AB148F16C5A1E1450A636A1(IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper* ___handler0) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_put_Completed_m24A7BD0A272762E01AB148F16C5A1E1450A636A1_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___handler0' to managed representation
AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * ____handler0_unmarshaled = NULL;
if (___handler0 != NULL)
{
Il2CppIManagedObjectHolder* imanagedObject = NULL;
il2cpp_hresult_t hr = (___handler0)->QueryInterface(Il2CppIManagedObjectHolder::IID, reinterpret_cast<void**>(&imanagedObject));
if (IL2CPP_HR_SUCCEEDED(hr))
{
____handler0_unmarshaled = static_cast<AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 *>(imanagedObject->GetManagedObject());
imanagedObject->Release();
}
else
{
____handler0_unmarshaled = (AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85*)il2cpp_codegen_object_new(AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_il2cpp_TypeInfo_var);
____handler0_unmarshaled->set_method_ptr_0((Il2CppMethodPointer)AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_NativeInvoker);
intptr_t methodInfo;
methodInfo = reinterpret_cast<intptr_t>(AsyncOperationWithProgressCompletedHandler_2_Invoke_m2492C2F297F36FA0D8FD8804A036A28733F3CAE5_RuntimeMethod_var);
____handler0_unmarshaled->set_method_3(methodInfo);
____handler0_unmarshaled->set_m_target_2(il2cpp_codegen_com_get_or_create_rcw_for_sealed_class<__Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD>(___handler0, __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var));
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____handler0_unmarshaled->get_m_target_2()), IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper::IID, ___handler0);
}
}
else
{
____handler0_unmarshaled = NULL;
}
// Managed method invocation
try
{
TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B *)GetManagedObjectInline();
TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF(__thisValue, ____handler0_unmarshaled, TaskToAsyncOperationWithProgressAdapter_2_Windows_Foundation_IAsyncOperationWithProgressU3CTResultU2CTProgressU3E_put_Completed_mFF5F7CA5B2D19CEF80F77EB148A9B14F26500BDF_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_get_Completed_m84CD8A3DEB30C0DAF2CD1C070BBBF0A5F9C6B0C1(IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_get_Completed_m84CD8A3DEB30C0DAF2CD1C070BBBF0A5F9C6B0C1_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Completed_m2EA8F01A2740B566A60ABEEB9D86C8699424B66D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
AsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85 * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Completed_m2EA8F01A2740B566A60ABEEB9D86C8699424B66D(__thisValue, TaskToAsyncInfoAdapter_4_get_Completed_m2EA8F01A2740B566A60ABEEB9D86C8699424B66D_RuntimeMethod_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
IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
RuntimeObject* target = returnValue->get_m_target_2();
if (target != NULL && returnValue->get_delegates_11() == NULL && target->klass == __Il2CppComDelegate_t0A30496F74225C39A0CF7FADB94934C0536120FD_il2cpp_TypeInfo_var)
{
il2cpp_hresult_t hr = static_cast<Il2CppComObject *>(target)->identity->QueryInterface(IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper::IID, reinterpret_cast<void**>(&_returnValue_marshaled));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<IAsyncOperationWithProgressCompletedHandler_2_tD97B7CC6004FBEA3D052F954E4EC2123FCAECD85_ComCallableWrapper>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncOperationWithProgress_2_GetResults_m993BB462F191321B87C535695A7207D604A34D39(Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncOperationWithProgress_2_GetResults_m993BB462F191321B87C535695A7207D604A34D39_CCW_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper_TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
RuntimeObject * returnValue;
try
{
TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B * __thisValue = (TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B *)GetManagedObjectInline();
returnValue = TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21(__thisValue, TaskToAsyncOperationWithProgressAdapter_2_GetResults_m4B20BA5B4402DBA97818D632E0D467FC99B6FE21_RuntimeMethod_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
Il2CppIInspectable* _returnValue_marshaled = NULL;
if (returnValue != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(returnValue))
{
_returnValue_marshaled = il2cpp_codegen_com_query_interface<Il2CppIInspectable>(static_cast<Il2CppComObject*>(returnValue));
(_returnValue_marshaled)->AddRef();
}
else
{
_returnValue_marshaled = il2cpp_codegen_com_get_or_create_ccw<Il2CppIInspectable>(returnValue);
}
}
else
{
_returnValue_marshaled = NULL;
}
*comReturnValue = _returnValue_marshaled;
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncOperationWithProgressAdapter_2_t0323ECD882E0DF36F099DF7F4C0DE373DBD9AA3B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<Windows.Foundation.AsyncOperationWithProgressCompletedHandler`2<System.Object,System.UInt32>,Windows.Foundation.AsyncOperationProgressHandler`2<System.Object,System.UInt32>,System.Object,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_mB02DE18F0066E7DABC927A704F55B8F78CB8A7BA_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m47EF9ADEBA7C326AC8DBE83C8E8CDA89863EA8FE_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m2FF57AC5D11E7A38F2B9595D4913DE04357996EF_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m85D77D279BC75A2CE50DBC4CCABF62F7ECA54DEF_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 * __thisValue = (TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973(__thisValue, TaskToAsyncInfoAdapter_4_Close_m53D2187DD6C0F66CE8206E12F2BD2E910AA1F973_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_tD1CE0F9EDB3E12B812C89A5557481346220AE6B3_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Threading.Tasks.TaskToAsyncInfoAdapter`4<System.Object,System.Object,System.Object,System.UInt32>
struct TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper>, IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5
{
inline TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_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, &IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5*>(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] = IAsyncInfo_t9B58E0D0A013D06029CDEAE127A910A69D13FBB5::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 IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Id_mFB9E7E5D042A091EEA5ADBBB479329CE1248351B_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __thisValue = (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA(__thisValue, TaskToAsyncInfoAdapter_4_get_Id_m096FA242EDD1F181C3531C601C205967B53525FA_RuntimeMethod_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 IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_Status_m3D1D43B45DDBE38620B5178B88307B0759171F7A_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
int32_t returnValue;
try
{
TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __thisValue = (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890(__thisValue, TaskToAsyncInfoAdapter_4_get_Status_m9595320AC2D4B9FB30C6CC8D74C6E00B61E98890_RuntimeMethod_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 IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584(int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_get_ErrorCode_m9A8D01260F4211B8E794B3FC73D212F3F8CAB584_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
Exception_t * returnValue;
try
{
TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __thisValue = (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *)GetManagedObjectInline();
returnValue = TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74(__thisValue, TaskToAsyncInfoAdapter_4_get_ErrorCode_m07F2D6C22C2E016B87E9A23A8EA1CB87946B8E74_RuntimeMethod_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 != NULL ? reinterpret_cast<RuntimeException*>(returnValue)->hresult : IL2CPP_S_OK);
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Cancel_m71EA200C07A5E2B5A9BAE4BC2AB00EFF1D3AB5A8_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __thisValue = (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E(__thisValue, TaskToAsyncInfoAdapter_4_Cancel_m50ED5045FFCF0CA5053C703C6A61327906FC079E_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7() IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IAsyncInfo_Close_m197A13662E7E9A888B0E3FFAFDBA15410AA850E7_CCW_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper_TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
try
{
TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 * __thisValue = (TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0 *)GetManagedObjectInline();
TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9(__thisValue, TaskToAsyncInfoAdapter_4_Close_mC95899074C0D6757A37CD49CCC63C5EF1D23E5D9_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TaskToAsyncInfoAdapter_4_tB092193F7D9B6D22E3EA480D77ACDD33C41655E0_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.AsyncOperationCompletedHandler`1<Windows.Storage.Streams.IBuffer>
struct AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper>, IAsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper
{
inline AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_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, &IAsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IAsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.AsyncOperationCompletedHandler`1<Windows.Storage.Streams.IBuffer>
virtual il2cpp_hresult_t STDCALL Invoke(IAsyncOperation_1_t473239B080231B0B820ACD56AD1318AF9313F2CA* ___asyncInfo0, int32_t ___asyncStatus1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncOperationCompletedHandler_1_Invoke_m585869CEB0F544C422C4A0194D81A0CE1CB95FAC_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___asyncInfo0' to managed representation
RuntimeObject* ____asyncInfo0_unmarshaled = NULL;
if (___asyncInfo0 != NULL)
{
____asyncInfo0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___asyncInfo0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____asyncInfo0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____asyncInfo0_unmarshaled), IAsyncOperation_1_t473239B080231B0B820ACD56AD1318AF9313F2CA::IID, ___asyncInfo0);
}
}
else
{
____asyncInfo0_unmarshaled = NULL;
}
// Managed method invocation
try
{
AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0 * __thisValue = (AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0 *)GetManagedObjectInline();
AsyncOperationCompletedHandler_1_Invoke_m585869CEB0F544C422C4A0194D81A0CE1CB95FAC(__thisValue, ____asyncInfo0_unmarshaled, ___asyncStatus1, AsyncOperationCompletedHandler_1_Invoke_m585869CEB0F544C422C4A0194D81A0CE1CB95FAC_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) AsyncOperationCompletedHandler_1_tF3210EACF903209BD98D416B0DB5921E9983AFC0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Windows.Foundation.AsyncStatus>
struct EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_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_EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t3ABDE3438DFB35E589BFDD55FF915C37CFB1F322_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Windows.Foundation.AsyncStatus>
struct InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD_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_InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tD61DCAE133724CCBDB90F3EE62BCFC366E934ACD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.AsyncStatus>
struct ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341_ComCallableWrapper>, IVector_1_t50F3447B76D279347664883EC76DC3374D50725C, IIterable_1_tCF77A499655EA00D6A22681299DE79364653661C, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818
{
inline ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341_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_t50F3447B76D279347664883EC76DC3374D50725C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t50F3447B76D279347664883EC76DC3374D50725C*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCF77A499655EA00D6A22681299DE79364653661C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCF77A499655EA00D6A22681299DE79364653661C*>(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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818*>(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>(5);
interfaceIds[0] = IVector_1_t50F3447B76D279347664883EC76DC3374D50725C::IID;
interfaceIds[1] = IIterable_1_tCF77A499655EA00D6A22681299DE79364653661C::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818::IID;
*iidCount = 5;
*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_mFFEF0803EBAB0F90ECBABACC6EAC426EB3159FC4(uint32_t ___index0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_mFFEF0803EBAB0F90ECBABACC6EAC426EB3159FC4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mBFD0CE693C34B0CB0BA96D7DA1D8A2723F28CF0A(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_mBFD0CE693C34B0CB0BA96D7DA1D8A2723F28CF0A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m370A003BBA4C9087E189EE3B034374046C6EA545(IVectorView_1_t5CB437D3FDD487A03B7C8E6B6065B57B2A28C818** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m370A003BBA4C9087E189EE3B034374046C6EA545_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m0B42DFA957BFF985DB37F4EFD2C545DFAC82B9BC(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m0B42DFA957BFF985DB37F4EFD2C545DFAC82B9BC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mB6E6ED2D4D47E8610771C216D05D17201395FC7A(uint32_t ___index0, int32_t ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_mB6E6ED2D4D47E8610771C216D05D17201395FC7A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m03627878A0DD8FCB3F94B0F3B6FBF5FFBB0E7764(uint32_t ___index0, int32_t ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m03627878A0DD8FCB3F94B0F3B6FBF5FFBB0E7764_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m7FAF3C7448C2231F73CF8C8693E372E564BB26E0(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m7FAF3C7448C2231F73CF8C8693E372E564BB26E0_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m9995C58BFE8A978962B6A0A9E2A4A49CD180AABD(int32_t ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m9995C58BFE8A978962B6A0A9E2A4A49CD180AABD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m5AA2534C01CF93519615168041537AA46C3DAEFB() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m5AA2534C01CF93519615168041537AA46C3DAEFB_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m774183382C7B47D4056A093C7995AB349FB1B785() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m774183382C7B47D4056A093C7995AB349FB1B785_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m1C8FA8DD26C3D541BF07D3606005DFFA3EFC05A0(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m1C8FA8DD26C3D541BF07D3606005DFFA3EFC05A0_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mCD19C2473570925AE549F2232AA99689255B1B25(uint32_t ___items0ArraySize, int32_t* ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_mCD19C2473570925AE549F2232AA99689255B1B25_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m393DBADD362ED003032ED5E79E11D3F38B24521D(IIterator_1_tEE6F747A033DF451F5932F68A3A4AD290713B7C4** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m393DBADD362ED003032ED5E79E11D3F38B24521D_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 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 IVectorView_1_GetAt_mCB5619101D9F9B80BCA5D030CF3F322260E0B839(uint32_t ___index0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mCB5619101D9F9B80BCA5D030CF3F322260E0B839_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m1C2578CD2646095418A03B9C1295B0D541A8BFF0(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m1C2578CD2646095418A03B9C1295B0D541A8BFF0_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mBF1B055C799C71B105FA01CDB3455A4FE2E502A7(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mBF1B055C799C71B105FA01CDB3455A4FE2E502A7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA8D0784A93FE5D07B9446DEEFF356BF66A5B3AAE(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA8D0784A93FE5D07B9446DEEFF356BF66A5B3AAE_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t8A3CADC5201B6DA8E457392461AFDBE98E94D341_ComCallableWrapper(obj));
}
// COM Callable Wrapper class definition for Windows.Foundation.EventHandler`1<System.Object>
struct EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper>, IEventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper
{
inline EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper(RuntimeObject * obj) :
il2cpp::vm::CachedCCWBase<EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_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, &IEventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IEventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper*>(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();
}
// COM Callable invoker for Windows.Foundation.EventHandler`1<System.Object>
virtual il2cpp_hresult_t STDCALL Invoke(Il2CppIInspectable* ___sender0, Il2CppIInspectable* ___args1) override
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D_WindowsRuntimeManagedInvoker_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Marshaling of parameter '___sender0' to managed representation
RuntimeObject * ____sender0_unmarshaled = NULL;
if (___sender0 != NULL)
{
____sender0_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___sender0, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____sender0_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____sender0_unmarshaled), Il2CppIInspectable::IID, ___sender0);
}
}
else
{
____sender0_unmarshaled = NULL;
}
// Marshaling of parameter '___args1' to managed representation
RuntimeObject * ____args1_unmarshaled = NULL;
if (___args1 != NULL)
{
____args1_unmarshaled = il2cpp_codegen_com_get_or_create_rcw_from_iinspectable<RuntimeObject>(___args1, Il2CppComObject_il2cpp_TypeInfo_var);
if (il2cpp_codegen_is_import_or_windows_runtime(____args1_unmarshaled))
{
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(____args1_unmarshaled), Il2CppIInspectable::IID, ___args1);
}
}
else
{
____args1_unmarshaled = NULL;
}
// Managed method invocation
try
{
EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A * __thisValue = (EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A *)GetManagedObjectInline();
EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D(__thisValue, ____sender0_unmarshaled, ____args1_unmarshaled, EventHandler_1_Invoke_m8720228D7E2231A333CE9DFF2839AED43186E83D_RuntimeMethod_var);
}
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;
}
return IL2CPP_S_OK;
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EventHandler_1_t8EE04C3BDE6A36E7A9BE58F901620BA148F79A1A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Windows.Foundation.FoundationContract>
struct EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_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_EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t5A6E915FE5325468844D50B5D3F6BE9EEC7E429F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Windows.Foundation.FoundationContract>
struct InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1_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_InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t49818616FAF0BD88FA6EE8124E23B17734AFEDE1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.FoundationContract>
struct ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E_ComCallableWrapper>, IVector_1_t0193ECCC628113CCFB2F5740E909F69232FBCADC, IIterable_1_t93C8EA2BFC687EF966A2DA5CD5174A1378B6FCE4, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A
{
inline ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E_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_t0193ECCC628113CCFB2F5740E909F69232FBCADC::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t0193ECCC628113CCFB2F5740E909F69232FBCADC*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t93C8EA2BFC687EF966A2DA5CD5174A1378B6FCE4::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t93C8EA2BFC687EF966A2DA5CD5174A1378B6FCE4*>(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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A*>(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>(5);
interfaceIds[0] = IVector_1_t0193ECCC628113CCFB2F5740E909F69232FBCADC::IID;
interfaceIds[1] = IIterable_1_t93C8EA2BFC687EF966A2DA5CD5174A1378B6FCE4::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A::IID;
*iidCount = 5;
*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_m951C1B7DE57F4C8572D0215DFE41F176B9EACAF7(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m951C1B7DE57F4C8572D0215DFE41F176B9EACAF7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mAE30F1BD5B4507E0A4FC18687DBEF3A1EDEB362E(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_mAE30F1BD5B4507E0A4FC18687DBEF3A1EDEB362E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m0F28BBB5CB404355BB9341F7484BB1C00BE4C227(IVectorView_1_t9DDC0C5E50EAC03C9E99506F8F7D64D9C000228A** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m0F28BBB5CB404355BB9341F7484BB1C00BE4C227_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m8D19C0A8F02F6C0CF42276921F6D9B8226A35B6E(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m8D19C0A8F02F6C0CF42276921F6D9B8226A35B6E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m4E483747010E1C8ED315101B739247324DBE10A6(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m4E483747010E1C8ED315101B739247324DBE10A6_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m77E5D6B852EDC423EE7FAED96225C6C49EB16410(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m77E5D6B852EDC423EE7FAED96225C6C49EB16410_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m6186F9C286584957E0A2624961791E0225AFD0F4(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m6186F9C286584957E0A2624961791E0225AFD0F4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m497BAC66C481FD771FEEBAEEF5637F369B287BC8(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m497BAC66C481FD771FEEBAEEF5637F369B287BC8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mC55BA5C6D327E2A1408AA8E3D5058D794A37730F() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_mC55BA5C6D327E2A1408AA8E3D5058D794A37730F_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m507FFEFF7D75953761DC2BED4219927927CE533A() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m507FFEFF7D75953761DC2BED4219927927CE533A_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m87A30B2DD08A81D8D052C6E980F8AB862ABF19FF(uint32_t ___startIndex0, uint32_t ___items1ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m87A30B2DD08A81D8D052C6E980F8AB862ABF19FF_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m13B46B83B055CFC99F16E0F6FE967706A2BFF185(uint32_t ___items0ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m13B46B83B055CFC99F16E0F6FE967706A2BFF185_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m594C89A5405285FB4C6E586A9E4DF29FD149ABE4(IIterator_1_t24BE8D81998AA3D75CD891A738EE362C45E6889B** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m594C89A5405285FB4C6E586A9E4DF29FD149ABE4_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 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 IVectorView_1_GetAt_m5DABB1377DD626ACB400E20D99D236AE61B3F154(uint32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m5DABB1377DD626ACB400E20D99D236AE61B3F154_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m4F46CE039C9A1845EEEF9C08E2AEFCF23F9C8DB1(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m4F46CE039C9A1845EEEF9C08E2AEFCF23F9C8DB1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m16C8D2E7B0ABD499F063298C27C96A084EA2CB3B(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m16C8D2E7B0ABD499F063298C27C96A084EA2CB3B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m3BEBC27EFC7F98AD4CE44297549F69153F032F29(uint32_t ___startIndex0, uint32_t ___items1ArraySize, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 * ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m3BEBC27EFC7F98AD4CE44297549F69153F032F29_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tB5DA0C91C15B6581F489249F0735B9A8F626158E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<Windows.Foundation.FoundationContract>
struct IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84_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_IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_tE75CA22D34D38BE874A52CEE4AD8A51A934A0E84_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.UInt32Enum>
struct EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_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_EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t75C50F6BF71B065289393FBAC86709958FA179B4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.UInt32Enum>
struct InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4_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_InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t917986E0188FCA1D787753B8666C9395A098A9F4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<System.UInt32Enum>
struct IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B_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_IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_tC3E05D73B45244FECD78D0428A77BED74ABDDD3B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.UInt32Enum>
struct ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C_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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(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] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::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 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());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t794F0640CE76CCCC98428AD17303930EBC71DF9C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<Windows.Foundation.Metadata.CompositionType>
struct EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_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_EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tA402CFE58FC47182F5521C1B6EF85C179C0A9A8D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<Windows.Foundation.Metadata.CompositionType>
struct InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9_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_InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tDACB1562857C2D72B227AA2A915DDB6E0D1E79E9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<Windows.Foundation.Metadata.CompositionType>
struct ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA_ComCallableWrapper>, IVector_1_t7D04316782B513CD7CA0D1D3C94088FC07595F7E, IIterable_1_t03D48AA86E0E5AC8C300D2337620A09EE64DEB7F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196
{
inline ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA_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_t7D04316782B513CD7CA0D1D3C94088FC07595F7E::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t7D04316782B513CD7CA0D1D3C94088FC07595F7E*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t03D48AA86E0E5AC8C300D2337620A09EE64DEB7F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t03D48AA86E0E5AC8C300D2337620A09EE64DEB7F*>(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, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196*>(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>(5);
interfaceIds[0] = IVector_1_t7D04316782B513CD7CA0D1D3C94088FC07595F7E::IID;
interfaceIds[1] = IIterable_1_t03D48AA86E0E5AC8C300D2337620A09EE64DEB7F::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196::IID;
*iidCount = 5;
*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_m0DFFB25BA08D43C73C2F6445A0437BFA839ADF3E(uint32_t ___index0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m0DFFB25BA08D43C73C2F6445A0437BFA839ADF3E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m96740C6444443C5DEFCA6C1CD98AA73341DDECD5(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m96740C6444443C5DEFCA6C1CD98AA73341DDECD5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m4BF62A0D1B7AB4D8F7837BE78FB7BDC7AB90BB0F(IVectorView_1_tD13E17E5F0E682790368CAA10ACC86010F165196** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m4BF62A0D1B7AB4D8F7837BE78FB7BDC7AB90BB0F_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mF5A9D14E971E0EAC43A7F890FA1C0E006FC88BC0(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_mF5A9D14E971E0EAC43A7F890FA1C0E006FC88BC0_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m894C30319046E1D3DF29A1E7370BA137F4B66D33(uint32_t ___index0, int32_t ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m894C30319046E1D3DF29A1E7370BA137F4B66D33_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m1693258E397688648A60D11B4EA7AB6412D9AD3D(uint32_t ___index0, int32_t ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m1693258E397688648A60D11B4EA7AB6412D9AD3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m966B1867161912AEF8C48E97D15031951E75BDF3(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m966B1867161912AEF8C48E97D15031951E75BDF3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mF66C5486E77CBB619BB754CF38BAACEE7987754F(int32_t ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_mF66C5486E77CBB619BB754CF38BAACEE7987754F_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mA7C2D22A599F6EFFC65869A7A0E7C4752A62F84A() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_mA7C2D22A599F6EFFC65869A7A0E7C4752A62F84A_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mB0745549345CDE3B529E28E8A63B122B16EE18E4() IL2CPP_OVERRIDE
{
return IVector_1_Clear_mB0745549345CDE3B529E28E8A63B122B16EE18E4_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mE0D1430C4722BE3B29D9C97DF74F0A5E6C2B1599(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_mE0D1430C4722BE3B29D9C97DF74F0A5E6C2B1599_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m3D75C88A58F56F80CC4F646C9414A1D3AB93AA67(uint32_t ___items0ArraySize, int32_t* ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m3D75C88A58F56F80CC4F646C9414A1D3AB93AA67_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m4C456A12215A1EF642A0BD8240E428CCB1701FFF(IIterator_1_t7F38B71C86FBA6E318856632AD1AD4411A7F3D1B** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m4C456A12215A1EF642A0BD8240E428CCB1701FFF_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 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 IVectorView_1_GetAt_m2CC191E86D695EF9A4491542B9F19FCCE012EEA1(uint32_t ___index0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m2CC191E86D695EF9A4491542B9F19FCCE012EEA1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mAFC592308C4257005C1E18CBA1AA34E0002C5B4B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mAFC592308C4257005C1E18CBA1AA34E0002C5B4B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mB7809143D1A893A278E167549C78B60518A36024(int32_t ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mB7809143D1A893A278E167549C78B60518A36024_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m141B354672691149EB35C1314E5A607BE5585393(uint32_t ___startIndex0, uint32_t ___items1ArraySize, int32_t* ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m141B354672691149EB35C1314E5A607BE5585393_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t5CB62CFBAA43FE20AFA6DBF7D7C8BA60D3B5FBDA_ComCallableWrapper(obj));
}
|
#include<bits/stdc++.h>
using namespace std;
void maxsubsum(int a[],int n){
int currsum[n+1];int sum,max1=INT_MIN;
for(int i=1;i<=n;i++){
currsum[i]=currsum[i-1]+a[i-1];
}
for(int i=1;i<=n;i++){
for(int j=1;j<=i;j++){
sum=currsum[i]-currsum[j-1];
max1=max(max1,sum);
}
}
cout<<"The maximum sum:"<<max1;
}
int main()
{
int a[]={1,-5,6,2,3,-1};
int n=sizeof(a)/sizeof(a[0]);
maxsubsum(a,n);
return 0;
}
|
//
// main.cpp
// lab_2
//
// Created by Christopher Chandler on 2/15/16.
// Copyright © 2016 Christopher Chandler. All rights reserved.
//
#include <iostream>
#include "Time.h"
#include <algorithm>
#include <vector>
int main(int argc, const char * argv[]) {
// insert code here...
vector<Time> times;
Time t1;
Time t2;
Time t3(12,4,1);
Time t4(24,47,47);
Time t5(11,7,1);
t3.printAmPm();
t4.printAmPm();
t5.printAmPm();
// for(int i=0; i<24; i++){
// times.push_back(Time(i,i,i));
// }
for(int i=0; i<24; i++){
times.push_back(Time(i,i,i+1));
}
sort(times.begin(), times.end(), isEarlierThan);
for(int i=0; i< times.size(); i++){
times[i].printAmPm();
}
cout << t1.getHour() << t2.getHour() <<endl;
cout << "t3 is earlier than t4: " << isEarlierThan(t3,t4) << endl;
}
|
//
// Created by tian on 2020/4/14.
//
#ifndef NELIVEPUSHCLIENT_VIDEOCHANNEL_H
#define NELIVEPUSHCLIENT_VIDEOCHANNEL_H
#include <pthread.h>
#include <x264.h>
#include <cstring>
#include <rtmp.h>
#include "macro.h"
class VideoChannel {
typedef void(*VideoCallback)(RTMPPacket *packet);
public:
VideoChannel();
virtual ~VideoChannel();
void initVideoEncoder(int width, int height, int bitrate, int fps);
void encodeData(uint8_t *data);
void setVideoCallback(VideoCallback callback);
private:
pthread_mutex_t mutex;
int mWidth;
int mHeight;
int mBitrate;
int mFps;
x264_t *videoEncoder = 0;
x264_picture_t *pic_in = 0;
int y_len;
int uv_len;
VideoCallback videoCallback;
void senSpsPps(uint8_t sps[100], uint8_t pps[100], int sps_len, int pps_len);
void sendFrame(int type, uint8_t *payload, int iPayload);
};
#endif //NELIVEPUSHCLIENT_VIDEOCHANNEL_H
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.