blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ade4b14d4eed2fd3e9124586e09137be547082bc | 1a15c357bdc22d462a94a8ae87dcdd8a2fed32b4 | /NoiseGate.h | ff2bd51c0b702aee66ef421a342b37b6bb572dbd | [] | no_license | cpe-unr/group-project-pt24 | 79cb371537fa0b71b1da3af4bb09c5cfb0900f62 | e5053968444bb82ae1ad509f5d32b98fa3c39495 | refs/heads/master | 2023-04-18T05:28:32.518385 | 2021-05-06T03:30:24 | 2021-05-06T03:30:24 | 359,964,392 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,493 | h | #ifndef NOISE_GATE_H
#define NOISE_GATE_H
#include "Processor.h"
#include <math.h>
/**
* This is the template noise gate class which inherits from the processor class.
*/
template<class T>
class NoiseGate : public Processor<T> {
private:
T threshold;
public:
/**
*
* Constructor for the NoiseGate class.
* \param[i] threshold The threshold to keep audio below
*/
explicit NoiseGate(T threshold) : threshold(threshold) {
}
/**
* Processes buffer so that all audio above or below a range is set to zero (eliminated).
* \param[in] buffer Buffer that has already been read.
* \param[in] bufferSize Size of Buffer.
* \param[in] bitType Bit type of buffer (8 or 16, could be any number).
* \param[in] num_channels Number of channels so that proccessor can process multiple stereo wav files.
*/
void processBuffer(T *buffer, int bufferSize, int bitType, short num_channels) {
const T ZERO = (pow(2, bitType)/2);
if(num_channels == 2) {
for(int i = 1; i < bufferSize; i = i + 1) {
if(buffer[i] > (ZERO - threshold) && buffer[i] < (ZERO + threshold)) {
buffer[i] = ZERO;
}
}
for(int i = 0; i < bufferSize; i = i + 1) {
if(buffer[i] > (ZERO - threshold) && buffer[i] < (ZERO + threshold)) {
buffer[i] = ZERO;
}
}
}
if(num_channels == 1) {
for(int i = 0; i < bufferSize; i++) {
if(buffer[i] > (ZERO - threshold) && buffer[i] < (ZERO + threshold)) {
buffer[i] = ZERO;
}
}
}
}
};
#endif
| [
"nikhil342015@gmail.com"
] | nikhil342015@gmail.com |
0acfe8dde927bfd7eaf2999c1f8e97df4cafa952 | 0106751477cd91074c198abc4923613486548eb6 | /test/Sndfile.hpp | 83398da1a1f6769dd517d83964802b3efd1523c4 | [] | no_license | eriser/linAnil | 2f65b8fcfb931b9ad35d0439db8199cc1643cce9 | 8a862d0f886f897446a8fb6f9bf1ee7dfdcadc3a | refs/heads/master | 2020-05-29T12:31:42.952823 | 2015-08-19T08:59:46 | 2015-08-19T08:59:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,384 | hpp | /* Portaudio and libsndfile simple example */
#include "sndfile.h"
#include "portaudio.h"
#include <stdlib.h>
#include <stdio.h>
/* the filename is defined here because this is just a demo */
#define FILE_NAME "test\\test.wav"
/*
Data structure to pass to callback
includes the sound file, info about the sound file, and a positionFrame
cursor (where we are in the sound file)
*/
struct OurData {
SNDFILE *sndFile;
SF_INFO sfInfo;
int position;
};
/*
Callback function for audio output
*/
int Callback(const void *input,
void *output,
unsigned long frameCount,
const PaStreamCallbackTimeInfo *paTimeInfo,
PaStreamCallbackFlags statusFlags,
void *userData) {
OurData *data = (OurData *) userData; /* we passed a data structure
into the callback so we have something to work with */
int *cursor; /* current pointer into the output */
int *out = (int *) output;
int thisSize = frameCount;
int thisRead;
cursor = out; /* set the output cursor to the beginning */
while (thisSize > 0) {
/* seek to our current file positionFrame */
sf_seek(data->sndFile, data->position, SEEK_SET);
/* are we going to read past the end of the file?*/
if (thisSize > (data->sfInfo.frames - data->position)) {
/*if we are, only read to the end of the file*/
thisRead = data->sfInfo.frames - data->position;
/* and then loop to the beginning of the file */
data->position = 0;
}
else {
/* otherwise, we'll just fill up the rest of the output buffer */
thisRead = thisSize;
/* and increment the file positionFrame */
data->position += thisRead;
}
/* since our output format and channel interleaving is the same as
sf_readf_int's requirements */
/* we'll just read straight into the output buffer */
sf_readf_int(data->sndFile, cursor, thisRead);
/* increment the output cursor*/
cursor += thisRead;
/* decrement the number of samples left to process */
thisSize -= thisRead;
}
return paContinue;
}
int testSnd() {
OurData *data = (OurData *) malloc(sizeof(OurData));
PaStream *stream;
PaError error;
PaStreamParameters outputParameters;
/* initialize our data structure */
data->position = 0;
data->sfInfo.format = 0;
/* try to open the file */
data->sndFile = sf_open(FILE_NAME, SFM_READ, &data->sfInfo);
if (!data->sndFile) {
printf("error opening file\n");
return 1;
}
/* start portaudio */
Pa_Initialize();
/* set the output parameters */
outputParameters.device = Pa_GetDefaultOutputDevice(); /* use the
default device */
outputParameters.channelCount = data->sfInfo.channels; /* use the
same number of channels as our sound file */
outputParameters.sampleFormat = paInt32; /* 32bit int format */
outputParameters.suggestedLatency = 0.2; /* 200 ms ought to satisfy
even the worst sound card */
outputParameters.hostApiSpecificStreamInfo = 0; /* no api specific data */
/* try to open the output */
error = Pa_OpenStream(&stream, /* stream is a 'token' that we need
to save for future portaudio calls */
0, /* no input */
&outputParameters,
data->sfInfo.samplerate, /* use the same
sample rate as the sound file */
paFramesPerBufferUnspecified, /* let
portaudio choose the buffersize */
paNoFlag, /* no special modes (clip off, dither off) */
Callback, /* callback function defined above */
data); /* pass in our data structure so the
callback knows what's up */
/* if we can't open it, then bail out */
if (error) {
printf("error opening output, error code = %i\n", error);
Pa_Terminate();
return 1;
}
/* when we start the stream, the callback starts getting called */
Pa_StartStream(stream);
data->position = 1528176;
// Pa_Sleep(2000); /* pause for 2 seconds (2000ms) so we can hear a bit
//of the output */
// Pa_StopStream(stream); // stop the stream
// Pa_Terminate(); // and shut down portaudio
return 0;
} | [
"solpie.net@gmail.com"
] | solpie.net@gmail.com |
5bb4eafa4f5991cb95cf95d0fd0d286cc67292f2 | 20405bf98df746a2310cd581458a9b878e25409d | /tracker.cpp | 363b27ed6f2e19de762efdb9416fc182a1d45438 | [] | no_license | Madhvi19/Mini-Torrent-System | ed3832034118113e3755b8a413cd432e2a2d6b18 | 511744518b612f4a8227d005e61eaf62b5c99222 | refs/heads/master | 2022-02-20T09:14:03.789834 | 2019-10-15T17:00:05 | 2019-10-15T17:00:05 | 215,019,606 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,289 | cpp | #include<iostream>
#include<sys/socket.h>
#include<string.h>
#include<netinet/in.h>
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<arpa/inet.h>
#include<vector>
#include<map>
#define PORT 8080
using namespace std;
struct group
{
string gid;
string owner;
vector<string> members;
map<string,string> pending_requests;
};
vector<string> sha_container;
map<string,string> users;
map<string,int> active_users;
vector<struct group> active_groups;
int mycomp(string pass, string password)
{
//cout<<"inside compare function"<<endl;
if(pass.size()==password.size())
{
for(int i=0;i<pass.size();i++)
{
//cout<<"pass "<<pass[i]<<" password "<<password[i]<<endl;
if(pass[i]!=password[i])
{
return 1;
}
}
return 0;
}
else
{
return 1;
}
}
string login_user(char b[],char buf[], int newsock)
{
//cout<<"inside login function"<<endl;
string user_name=string(b);
string id_user=user_name;
string password=string(buf);
//cout<<"received password is "<<password<<endl;
//cout<<"password length is "<<password.size()<<endl;
map<string, string>::iterator itr;
if(users.find(user_name)!=users.end())
{
itr=users.find(user_name);
string pass=itr->second;
//cout<<"password from map is "<<pass<<endl;
//cout<<"lenght of password from the map user "<<pass.size()<<endl;
int v=mycomp(pass,password);
//cout<<"return value from mycomp is "<<v<<endl;
if(v==0)
{
//cout<<"inside if "<<endl;
string user="welcome!";
//cout<<"user string "<<user<<endl;
char u[user.size()+1];
strcpy(u,user.c_str());
cout<<u<<endl;
if(send(newsock,u,strlen(u),0)<0)
perror("something went wrong\n");
char buf[10];
bzero(buf,10);
if(read(newsock,buf,100)<0)
{
perror("Cannot read socket address of the client\n");
}
//cout<<"read buffer "<<buf<<endl;
int client_port=atoi(buf);
cout<<"client port is"<<client_port<<endl;
active_users.insert(make_pair(user_name,client_port));
if(send(newsock,"ok",strlen("ok"),0)<0)
{
perror("Something went wrong\n");
}
return id_user;
}
else
{
if(send(newsock,"Wrong password",strlen("Wrong password"),0)<0)
perror("Cannot send message to the client\n");
return "-1";
}
}
else
{
if(send(newsock,"No user exist with this user id", strlen("No user exist with this user id"),0)<0)
{
perror("Something went wrong\n");
}
return "-1";
}
}
int sort_command(string v, int newsock)
{
cout<<"inside sort_command"<<endl;
string createuser="create_user";
string upload="upload_file";
string login="login";
string creategroup="create_group";
string joingroup="join_group";
string leavegroup="leave_group";
string listrequests="list_requests";
string acceptrequest="accept_request";
string listgroups="list_groups";
string listfiles="list_files";
string download="download_file";
string logout="logout";
string showdownloads="show_downloads";
string stop="stop_sharing";
int status;
if(v==createuser)
{
status=1;
return status;
}
if(v==login)
{
status=2;
return status;
}
if(v==creategroup)
{
status=3;
return status;
}
if(v==joingroup)
{
status=4;
return status;
}
if(v==leavegroup)
{
status=5;
return status;
}
if(v==listrequests)
{
status=6;
return status;
}
if(v==acceptrequest)
{
status=7;
return status;
}
if(v==listgroups)
{
status=8;
return status;
}
if(v==listfiles)
{
status=9;
return status;
}
if(v==download)
{
status=10;
return status;
}
if(v==logout)
{
status=11;
return status;
}
if(v==showdownloads)
{
status=12;
return status;
}
if(v==stop)
{
status=13;
return status;
}
if(v==upload)
{
return 14;
}
else
{
return 0;
}
}
void act(int status, int newsock)
{
if(status==1)
{
cout<<"inside case create user"<<endl;
char b[100];
bzero(b,100);
read(newsock,b,100);
cout<<"b "<<b<<endl;
string user_name=string(b);
send(newsock,"ok1",3,0);
char cu[100];
bzero(cu,100);
read(newsock,cu, 100);
cout<<"cu "<<cu<<endl;
string password=string(cu);
cout<<user_name<<endl;
cout<<password<<endl;
if(users.find(user_name)!=users.end())
{
if(send(newsock,"User already exists",strlen("User already exists"),0)<0)
perror("Something went wrong\n");
cout<<"user exists already"<<endl;
}
else
{
users.insert(make_pair(user_name,password));
if(send(newsock,"user created",strlen("user created"),0)<0)
perror("Something went wrong\n");
cout<<"user created"<<endl;
}
}
if(status==2)
{
//cout<<"inside act inside login"<<endl;
char bi[100];
bzero(bi,100);
read(newsock,bi,100);
//string user_name=string(b);
send(newsock,"ok",2,0);
char lg[100];
bzero(lg,100);
read(newsock,lg, 100);
//string password=string(buf);
//send(newsock,"ok",2,0);
string c_id=login_user(bi,lg,newsock);
//cout<<"current client id is "<<c_id<<endl;
}
if(status==3)
{
cout<<"inside create group if"<<endl;
char cg[100];
bzero(cg,100);
read(newsock,cg,100);
cout<<"Group name is "<<cg<<endl;
string gname=string(cg);
//cout<<cg<<endl;
//cout<<"user id of the user is "<<id_user<<endl;
//cout<<"client id is "<<c_id<<endl;
send(newsock,"ok",2,0);
bzero(cg,100);
read(newsock,cg,100);
string cid=string(cg);
cout<<"port of client is "<<cid<<endl;
group g;
g.gid=gname;
g.owner=cid;
g.members.push_back(cid);
active_groups.push_back(g);
vector<group>::iterator itr;
cout<<"beginning of for loop"<<endl;
for(itr=active_groups.begin();itr!=active_groups.end();++itr)
{
cout<<itr->gid<<endl;
cout<<itr->owner<<endl;
for(auto x=itr->members.begin();x!=itr->members.end();++x)
{
cout<<*x<<endl;
}
}
send(newsock,"group created",strlen("group created"),0);
}
if(status==4)
{
cout<<"inside join group if "<<endl;
char jg[100]={'\0'};
cout<<endl;
read(newsock,jg,100);
cout<<endl;
//cout<<buf<<endl;
string gid=string(jg);
vector<group>::iterator itr;
bool flag=false;
for(itr=active_groups.begin();itr!=active_groups.end();++itr)
{
if(itr->gid==gid)
{
flag=true;
send(newsock,"port",strlen("port"),0);
char buffer[50]={'\0'};
cout<<endl;
read(newsock,buffer,50);
cout<<endl;
string c_port=string(buffer);
bool if_member=false;
for(auto y=itr->members.begin();y!=itr->members.end();++y)
{
if(c_port==*y)
{
if_member=true;
send(newsock,"already a member",strlen("already a member"),0);
}
}
if(if_member==false)
{
itr->pending_requests.insert(make_pair(c_port,gid));
send(newsock,"request sent",strlen("request sent"),0);
/*for(auto t=itr->pending_requests.begin();t!=itr->pending_requests.end();t++)
{
cout<<t->first<<endl;
}*/
}
break;
}
}
if(flag==false)
{
send(newsock,"wrong gid",strlen("wrong gid"),0);
}
}
if(status==5)
{
cout<<"inside leave_group if "<<endl;
char lgp[100]={'\0'};
cout<<endl;
read(newsock,lgp,100);
cout<<endl;
cout<<lgp<<endl;
string gid=string(lgp);
bool flag2=false;
vector<group>::iterator itr;
for(itr=active_groups.begin();itr!=active_groups.end();++itr)
{
if(itr->gid==gid)
{
flag2=true;
send(newsock,"port",strlen("port"),0);
char buffer[50]={'\0'};
cout<<endl;
read(newsock,buffer,50);
cout<<endl;
string c_port=string(buffer);
if(itr->owner==c_port)
{
send(newsock,"owner cannot leave!",strlen("owner cannot leave!"),0);
}
else
{
bool if_mem=false;
for(auto x=itr->members.begin();x!=itr->members.end();++x)
{
if(c_port==*x)
{
if_mem=true;
itr->members.erase(x);
send(newsock,"No longer a member now",strlen("No longer a member now"),0);
}
}
if(if_mem==false)
{
send(newsock,"You are not a member",strlen("You are not a member"),0);
}
}
cout<<"Present members are"<<endl;
for(auto xx=itr->members.begin();xx!=itr->members.end();++xx)
{
cout<<*xx<<" ";
}
cout<<endl;
}
}
if(flag2==false)
{
send(newsock,"Wrong id",strlen("Wrong id"),0);
}
}
if(status==6)
{
cout<<"inside list request if";
char lreq[100]={'\0'};
cout<<endl;
read(newsock,lreq,100);
cout<<endl;
cout<<"received group id is "<<lreq<<endl;
bool flag1=false;
string gid=string(lreq);
vector<group>::iterator itr;
for(itr=active_groups.begin();itr!=active_groups.end();++itr)
{
if(itr->gid==gid)
{
cout<<"inside for loop if condition"<<endl;
flag1=true;
cout<<"flag1 is "<<flag1<<endl;
int len=itr->pending_requests.size();
char size[len+1];
bzero(size,'\0');
sprintf(size,"%d",len);
send(newsock,size,strlen(size),0);
char port_a[10]={'\0'};
cout<<endl;
read(newsock,port_a,10);//readin port of the client's server
cout<<endl;
string pp=string(port_a);
cout<<"port of client is"<<endl;
if(itr->owner!=pp)
{
cout<<"inside if not owner"<<endl;
send(newsock,"no",strlen("no"),0);
}
else
{
send(newsock,"start",strlen("start"),0);
cout<<"inside when trying to send requests"<<endl;
for(auto xx=itr->pending_requests.begin();xx!=itr->pending_requests.end();++xx)
{
cout<<xx->first<<endl;
string us=xx->first;
char uss[us.size()+1];
strcpy(uss,us.c_str());
cout<<"port of the user is"<<uss<<endl;
send(newsock,uss,strlen("uss"),0);
char okay[10]={'\0'};
cout<<endl;
read(newsock,okay,10);
cout<<endl;
cout<<okay<<endl;
}
}
}
break;
}
if(itr==active_groups.end() && flag1==false)
{
cout<<"inside if flag1 is false"<<endl;
send(newsock,"wrong gid",strlen("wrong gid"),0);
}
cout<<"leaving list_requests"<<endl;
}
if(status==8)
{
cout<<"inside list groups if"<<endl;
char buf[10]={'\0'};
cout<<endl;
read(newsock,buf,10);
cout<<endl;
cout<<buf<<endl;
vector<string> gids;
vector<group>::iterator itr;
for(itr=active_groups.begin();itr!=active_groups.end();++itr)
{
//cout<<itr->gid<<endl;
gids.push_back(itr->gid);
}
int length=gids.size();
char l[length+1]={'\0'};
sprintf(l, "%d", length);
send(newsock,l,strlen(l),0);
cout<<endl;
read(newsock,buf,10);
cout<<endl;
for(auto i=gids.begin();i!=gids.end();++i)
{
string s=*i;
char gname[100]={'\0'};
strcpy(gname,s.c_str());
send(newsock,gname,strlen(gname),0);
char buff[10]={'\0'};
cout<<endl;
read(newsock,buff,10);
cout<<endl;
cout<<buff<<endl;
}
}
if(status==14)
{
char buf[10];
//cout<<"inside case 14"<<endl;
cout<<endl;
read(newsock,buf,10);
cout<<endl;
int size=atoi(buf);
cout<<size<<endl;
send(newsock,"ok",strlen("ok"),0);
while(size)
{
//cout<<"inside while"<<endl;
char buffer[20];
bzero(buffer,20);
cout<<endl;
read(newsock,buffer,20);
cout<<endl;
cout<<buffer<<endl;
string ss=string(buffer);
string s=ss.substr(0,20);
cout<<s<<endl;
sha_container.push_back(s);
bzero(buffer,20);
if(send(newsock,"success",strlen("success"),0)<0)
perror("Cannot send acknowledgement\n");
cout<<"SHA stored"<<endl;
size--;
}
/*cout<<endl<<"content of sha container"<<endl;
for(int i=0;i<sha_container.size();i++)
{
cout<<sha_container[i]<<endl;
}*/
}
}
void* connection_handler(void* sock)
{
int newsock =*(int*)sock;
while(1)
{
cout<<"inside connection_handler"<<endl;
cout<<"waiting for a command"<<endl;
char command_buf[100];
bzero(command_buf,100);
int vd=0;
cout<<endl;
vd=read(newsock, command_buf,100);
cout<<endl;
cout<<"command is "<<command_buf<<endl;
string command=string(command_buf);
send(newsock,"ok",2,0);
int status=sort_command(command, newsock);
act(status, newsock);
}
}
int main(int argc, char const *argv[])
{
struct sockaddr_in serv;
int sockfd=socket(AF_INET, SOCK_STREAM, 0);
if(sockfd<0)
{
perror("Socket failed!");
exit(-1);
}
serv.sin_family=AF_INET;
serv.sin_port=htons(PORT);
serv.sin_addr.s_addr=inet_addr("127.0.0.1");
if(bind(sockfd, (struct sockaddr *)&serv, sizeof(serv))<0)
{
perror("Cannot bind");
exit(-1);
}
if(listen(sockfd, 4)<0)
{
perror("Cannot listen");
exit(-1);
}
cout<<"waiting for peer"<<endl;
int servlen=sizeof(serv);
int newsock;
pthread_t thread_ids[4];
int no_of_clients=4;
int x=0;
while(no_of_clients)
{
if(newsock=accept(sockfd, (struct sockaddr *)&serv, (socklen_t*)&servlen))
cout<<"connected"<<endl;
else
perror("Cannot connect to the client\n");
if(pthread_create(&thread_ids[x] , NULL ,connection_handler,(void*)&newsock)<0)
{
perror("could not create thread");
return 1;
}
no_of_clients--;
x++;
cout<<"newsock is"<<newsock<<endl;
cout<<"client"<<x<<endl;
cout<<"Handler assigned"<<endl;
}
for(int i=0;i<4;i++)
{
pthread_join(thread_ids[i], NULL);
}
//close(newsock);
return 0;
}
| [
"madhvi.panchal@students.iiit.ac.in"
] | madhvi.panchal@students.iiit.ac.in |
3c5c3e5b374b8f7fb50a4e19576e690644e17119 | 9abca6e4c00dbd783005d10a113057a91b0ba390 | /Algorithm/Majority_Element.cpp | 8e4722f000f8222a179bfa00cb1b1b05802bc2f8 | [] | no_license | stonebegin/CppNotebook | 5d73dd9d3244ce9f5b9803b9133514d988230c05 | bcf4c012913484c13ee3a31f33d783a51e168026 | refs/heads/master | 2020-05-15T20:30:17.882844 | 2019-04-26T01:00:41 | 2019-04-26T01:00:41 | 182,483,015 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,925 | cpp | /*************************************************************************
> File Name: Majority_Element.cpp
> Author: stonebegin
> Mail: stonebegin@sina.com
> Created Time: 2019年04月24日 星期三 22时31分19秒
************************************************************************/
#include<iostream>
#include<vector>
#include<string>
#include<sstream>
#include<algorithm>
using namespace std;
class Solution {
private:
int countInRange(vector<int>& nums, int num, int low, int high){
int count = 0;
for(int i=low; i<=high; i++)
if(nums[i] == num)
count++;
return count;
}
int majorityElementRec(vector<int>& nums, int low, int high){
//base case:the only element in an array of size 1 is the majority element
if(low == high)
return nums[low];
//recurse on left and right havles of this sile
int mid = (low - high) / 2 + low;
int left = majorityElementRec(nums, low, mid);
int right = majorityElementRec(nums, mid+1, high);
//if the two halves agree on the majority element, return it
if(left == right)
return left;
//otherwise, count each element and return the "winner"
int leftCount = countInRange(nums, left, low, high);
int rightCount = countInRange(nums, right, low, high);
return leftCount > rightCount ? left : right;
}
public:
//Boyer-Moore Voting Algorithm
int BMV_majorityElement(vector<int>& nums) {
int count = 0;
int candidate;
for(int num : nums){
if(count == 0)
candidate = num;
count += (num == candidate) ? 1 : -1;
}
return candidate;
}
int majorityElement(vector<int>& nums){
return majorityElementRec(nums, 0, nums.size()-1);
}
};
void trimLeftTrailingSpaces(string &input) {
input.erase(input.begin(), find_if(input.begin(), input.end(), [](int ch) {
return !isspace(ch);
}));
}
void trimRightTrailingSpaces(string &input) {
input.erase(find_if(input.rbegin(), input.rend(), [](int ch) {
return !isspace(ch);
}).base(), input.end());
}
vector<int> stringToIntegerVector(string input) {
vector<int> output;
trimLeftTrailingSpaces(input);
trimRightTrailingSpaces(input);
input = input.substr(1, input.length() - 2);
stringstream ss;
ss.str(input);
string item;
char delim = ',';
while (getline(ss, item, delim)) {
output.push_back(stoi(item));
}
return output;
}
int main() {
string line;
while (getline(cin, line)) {
vector<int> nums = stringToIntegerVector(line);
int ret = Solution().majorityElement(nums);
string out = to_string(ret);
cout << out << endl;
}
return 0;
}
| [
"stonebegin@sina.com"
] | stonebegin@sina.com |
db37e882a07ddc9b7780b1476a4710c5dbf31564 | c18fe849016ec17543d3ec49656fc2b02eef4f01 | /executables/find-kernelization-general.cpp | f04c1974329da86455fc95ed00ee445b693bd79b | [
"MIT"
] | permissive | Amtrix/fpt-max-cut | 5bba54e2248486753b607356c93e6221c11ade37 | c8f6c573b54aa744050cee13ff4968fed0029609 | refs/heads/master | 2023-05-13T18:04:45.741268 | 2023-05-03T03:25:19 | 2023-05-03T03:25:19 | 133,260,481 | 5 | 1 | MIT | 2023-05-03T03:25:20 | 2018-05-13T17:43:50 | C++ | UTF-8 | C++ | false | false | 21,317 | cpp | #include <bits/stdc++.h>
#include <functional>
#include "src/mc-graph.hpp"
#include "src/input-parser.hpp"
using namespace std;
typedef vector<pair<int,int>> graph_edges;
const bool kRequireLClique = false;
const bool kRoughAnalaysis = false;
const bool kHandleAnyProperty = false;
const bool kSkipSingletons = false;
const bool kStopAtSame = false;
const bool kBreakWhenSmaller = false;
bool kKernelizeAndVisit = false;
bool kRemoveIsomorphisms = false;
const int kSampleMode = -1; // -1 for normal mode, -2 for specific sampling, -3 for bfs with <=2-removal(take first entry from specific_sampling_set as start)
int n = 4;
int nc = 3;
map<pair<int,int>, bool> preadd = {
};
map<pair<int,int>, bool> subset_in_result = {
};
map<pair<int,int>, bool> any_in_result = {
};
vector<vector<pair<int,int>>> specific_sampling_set = {
/* {{0,1}, {0,2}, {0,3}, {0,4}, {0,5}, {0,6}, {0,7}, {1,2}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7},
{2,3}, {2,4}, {2,5}, {2,6}, {2,7}, {3,4}, {3,5}, {3,6},
{4,5}, {4,6}, {4,7}, {5,6}, {5,7}, {6,7}},*/
{{0,1}, {0,2}, {0,3}, {0,4}, {0,5}, {0,6}, {0,7}, {0,8}, {0,9}, {1,2}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7}, {1,8}, {1,9}, {2,3}, {2,4}, {2,5}, {2,6}, {2,7}, {2,8}, {2,9}, {3,4}, {3,5}, {3,6}, {3,7}, {3,8}, {3,9}, {4,5}, {4,6}, {4,7}, {4,8},
{5,6}, {5,7}, {5,8}, {5,9}, {6,7}, {6,8}, {6,9}, {7,8}, {7,9}, {8,9}}
/*{{0,1}, {0,2}, {0,3}, {0,4}, {0,5}, {0,6}, {0,7}, {0,8}, {0,9}, {0,10}, {0,11}, {1,2}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7}, {1,8}, {1,9}, {1,10}, {1,11}, {2,3}, {2,4}, {2,5}, {2,6}, {2,7}, {2,8}, {2,9}, {2,10}, {2,11},
{3,4}, {3,5}, {3,6}, {3,7}, {3,8}, {3,9}, {3,10}, {3,11}, {4,5}, {4,6}, {4,7}, {4,8}, {4,10}, {4,11}, {5,6}, {5,7}, {5,8}, {5,10},
{6,7}, {6,8}, {6,9}, {6,10}, {6,11}, {7,8}, {7,9}, {7,10}, {7,11}, {8,9}, {8,10}, {8,11}, {9,10}, {9,11}, {10,11}}*/
};
vector<int> L_vertex, R_vertex;
unordered_map<int, bool> preset_is_external;
unordered_map<RuleIds, int> tot_case_coverage_cnt;
unordered_map<RuleIds, int> tot_rule_checks_cnt;
unordered_map<RuleIds, double> tot_rule_time;
string GetGraphKey(vector<pair<int,int>> edges) {
string ret = "";
for (auto e : edges)
ret += "(" + to_string(e.first) + "," + to_string(e.second) +")";
return ret;
}
string EncodeDiff(const vector<int> &cuts) {
string ret = "";
for (int i = 0; i + 1 < (int)cuts.size(); ++i)
ret += (to_string(cuts[i] - cuts[i+1])) + ".";
return ret;
}
vector<int> GetMaxcutDependentOnNc(const vector<pair<int,int>> &edges) {
vector<int> maxcut_dependent_on_nc; // sorted according to lex bitmask of nc
for (int nc_mask = 0; nc_mask * 2 < (1 << nc); ++nc_mask) { // simetry!
int mx_cut = 0;
for (int nrem_mask = 0; nrem_mask < (1 << (n-nc)); ++nrem_mask) {
vector<int> color;
for (int i = 0; i < nc; ++i) color.push_back((nc_mask & (1 << i)) != 0);
for (int i = 0; i < n - nc; ++i) color.push_back((nrem_mask & (1 << i)) != 0);
int cut = 0;
for (auto e : edges) cut += color[e.first] != color[e.second];
mx_cut = max(mx_cut, cut);
}
maxcut_dependent_on_nc.push_back(mx_cut);
}
return maxcut_dependent_on_nc;
}
void TryAllEdgeSets(int n, std::function<void(const vector<pair<int,int>>&)> callback) {
if (kSampleMode == -2) {
for (const auto &edges : specific_sampling_set)
callback(edges);
return;
} else if (kSampleMode == -3) {
const auto start_node = specific_sampling_set[0];
string cutid = EncodeDiff(GetMaxcutDependentOnNc(start_node));
queue<graph_edges> Q;
Q.push(start_node);
map<string,bool>visi;
visi[GetGraphKey(start_node)] = true;
while (!Q.empty()) {
graph_edges u = Q.front(); Q.pop();
cout << "Graph: " << GetGraphKey(u) << " ";
auto G = MaxCutGraph(u, n);
cout << "clique(L,R)=(" << G.IsClique(L_vertex) << "," << G.IsClique(R_vertex) << " ";
cout << G.PrintDegrees(preset_is_external);
cout << " CONNECTED=" << (G.GetAllConnectedComponents().size() == 1u);
cout << "]" << endl;
callback(u);
for (int i = 0; i < (int)u.size(); ++i) {
graph_edges nw = u;
nw.erase(nw.begin() + i);
string key = GetGraphKey(nw);
if (!visi[key]) {
visi[key] = true;
string nwcutid = EncodeDiff(GetMaxcutDependentOnNc(nw));
if (nwcutid == cutid) Q.push(nw);
}
for (int j = i + 1; j < (int)u.size(); ++j) {
nw = u;
nw.erase(nw.begin() + i);
nw.erase(nw.begin() + j - 1); // cuz i deleted and i < j
key = GetGraphKey(nw);
if (!visi[key]) {
visi[key] = true;
string nwcutid = EncodeDiff(GetMaxcutDependentOnNc(nw));
if (nwcutid == cutid) Q.push(nw);
}
for (int k = j + 1; k < (int)u.size(); ++k) {
nw = u;
nw.erase(nw.begin() + i);
nw.erase(nw.begin() + j - 1); // cuz i deleted and i < j
nw.erase(nw.begin() + k - 2);
key = GetGraphKey(nw);
if (!visi[key]) {
visi[key] = true;
string nwcutid = EncodeDiff(GetMaxcutDependentOnNc(nw));
if (nwcutid == cutid) Q.push(nw);
}
}
}
}
}
return;
}
int mx_edges = (n * (n - 1)) / 2;
int bound = 1 << mx_edges;
if (kSampleMode != -1) bound = kSampleMode;
for (int i = 0; i < bound; ++i) {
int mask = i;
if (kSampleMode != -1) mask = rand();
vector<pair<int,int>> cumm;
int dx = 0;
for (int i = 0; i < n; ++i) {
for (int j = i + 1; j < n; ++j) {
if ((mask & (1 << dx)) || preadd[make_pair(i,j)] || preadd[make_pair(j,i)])
cumm.push_back(make_pair(i,j));
dx++;
}
}
callback(cumm);
}
}
inline bool IsExternal(int id) {
return id < nc;
}
void GetAllIsomorphisms(vector<pair<int,int>> elist, std::function<void(vector<pair<int,int>>&)> callback) {
vector<int> vorder;
for (int i = 0; i < n; ++i) vorder.push_back(i);
unordered_map<string,bool> visi;
do {
vector<pair<int,int>> new_elist = elist;
bool ok = true;
for (int i = 0; i < (int)new_elist.size(); ++i) {
if (IsExternal(new_elist[i].first) != IsExternal(vorder[new_elist[i].first])) { ok = false; break; }
if (IsExternal(new_elist[i].second) != IsExternal(vorder[new_elist[i].second])) { ok = false; break; }
new_elist[i].first = vorder[new_elist[i].first];
new_elist[i].second = vorder[new_elist[i].second];
if (new_elist[i].first > new_elist[i].second)
swap(new_elist[i].first, new_elist[i].second);
}
sort(new_elist.begin(), new_elist.end());
string key = GetGraphKey(new_elist);
if (ok && !visi[key]) {
visi[key] = true;
callback(new_elist);
}
} while (next_permutation(vorder.begin(), vorder.end()));
}
vector<pair<int,int>> GetLexicographicallyLowestIso(vector<pair<int,int>> elist) {
auto sel = elist;
GetAllIsomorphisms(elist, [&](vector<pair<int,int>>& edges){
if (sel > edges) sel = edges;
});
return sel;
}
vector<pair<int,int>> IncreaseBy1(const vector<pair<int,int>> &v) {
vector<pair<int,int>> ret;
for (int i = 0; i < (int)v.size(); ++i)
ret.push_back(make_pair(v[i].first + 1, v[i].second + 1));
return ret;
}
//void GetAllIsomorphismKeys(MaxCutGraph& G, std::function<void(vector<pair<int,int>>&)> callback) {
pair<int,int> RevPair(pair<int,int> p) { return make_pair(p.second, p.first); }
bool IsSuperset(graph_edges &superset, graph_edges &subset) {
map<pair<int,int>, bool> visited;
for (auto e : superset) visited[e] = true;
for (auto e : subset) if (visited[e] == false) return false;
return true;
}
void OutputAppendix(InputParser &input, int n, int nc, int graphcnt, int numcls, double coverage = -1) {
if (input.cmdOptionExists("-output-path")) {
const string output_path2 = input.getCmdOption("-output-path");
ofstream out2(output_path2, fstream::app);
out2 << setw(20) << n << setw(20) << nc << setw(20) << graphcnt << setw(20) << numcls << setw(20) << coverage << endl;
}
}
int main(int argc, char **argv){
ios_base::sync_with_stdio(false);
InputParser input(argc, argv);
#ifdef DEBUG
cout << "DEBUG is set to true." << endl;
#endif
#ifdef NDEBUG
cout << "NDEBUG is set to true." << endl;
#endif
if (input.cmdOptionExists("-n")) {
custom_assert(input.cmdOptionExists("-nc"));
n = stoi(input.getCmdOption("-n"));
nc = stoi(input.getCmdOption("-nc"));
} else {
cout << "Input number of vertices and how many of them are external:" << endl;
cin >> n >> nc;
}
if (input.cmdOptionExists("-kernelization-efficiency")) {
kKernelizeAndVisit = true;
}
if (input.cmdOptionExists("-remove-iso")) {
kRemoveIsomorphisms = true;
}
for (int i = 0; i < nc; ++i) preset_is_external[i] = true;
for (int i = 0; i < n; ++i)
if (i < nc) L_vertex.push_back(i);
else R_vertex.push_back(i);
/* Compute all graphs and remove isomorphic ones */
vector<vector<pair<int,int>>> all_graphs_edges;
unordered_map<string, bool> init_visited_graph_key;
unordered_map<string, bool> class_count;
unordered_map<string, bool> tot_class_count;
TryAllEdgeSets(n, [&](const vector<pair<int,int>>& init_edges){
const string init_key = GetGraphKey(init_edges);
if (init_visited_graph_key[init_key]) return;
if (kRequireLClique) {
MaxCutGraph G(init_edges);
if (G.IsClique(L_vertex) == false)
return;
}
vector<pair<int,int>> sel = init_edges;
auto mxcutnc = GetMaxcutDependentOnNc(sel);
if (kRemoveIsomorphisms) {
GetAllIsomorphisms(init_edges, [&](vector<pair<int,int>>& edges){
auto mxcutnc_candidate = GetMaxcutDependentOnNc(edges);
tot_class_count[EncodeDiff(mxcutnc_candidate)] = true;
if (mxcutnc_candidate > mxcutnc) {
sel = edges;
mxcutnc = mxcutnc_candidate;
}
const string isokey = GetGraphKey(edges);
init_visited_graph_key[isokey] = true;
});
}
class_count[EncodeDiff(mxcutnc)] = true;
all_graphs_edges.push_back(sel);
});
std::stringstream strbuffer;
strbuffer << " ========================= " << "N: " << n << " NC: " << nc << " ========================= " << endl;
strbuffer << "Number of classes: " << class_count.size() << endl; // beware, using = false increases this too.
strbuffer << "Total number of classes -- including visited isos (with visited isomorphisms) [kRemoveIso has to be active]: " << tot_class_count.size() << endl; // beware, using = false increases this too.
strbuffer << "Graph set computation complete." << endl;
if (input.cmdOptionExists("-dorough")) {
cout << strbuffer.str() << endl;
OutputAppendix(input, n, nc, all_graphs_edges.size(), class_count.size());
return 0;
}
/* Calculate equivalence classes */
unordered_map<string, vector<pair<int, vector<pair<int,int>>>> > equiv_cls;
unordered_map<string, bool> visited;
for (auto edges : all_graphs_edges) {
string edge_key = GetGraphKey(edges);
if (visited[edge_key]) continue;
visited[edge_key] = true;
const auto maxcut_dependent_on_nc = GetMaxcutDependentOnNc(edges);
const auto key = EncodeDiff(maxcut_dependent_on_nc);
equiv_cls[key].push_back(make_pair(maxcut_dependent_on_nc[0], edges));
}
//* Subroutine to handle isomorphisms and kernelization -- both as a choice.
auto kernelizeandmark = [&](vector<pair<int,int>> &elist,
unordered_map<string, int> &visited_graph_key, const int edgemarkid) {
auto graph_edges = elist;
MaxCutGraph G(elist, n);
G.ExecuteExhaustiveKernelizationExternalsSupport(preset_is_external);
for (auto rule : kAllRuleIds) {
tot_case_coverage_cnt[rule] += G.GetRuleUsage(rule);
tot_rule_checks_cnt[rule] += G.GetRuleChecks(rule);
tot_rule_time[rule] += G.GetRuleSpentTime(rule);
}
auto kedges = G.GetAllExistingEdges();
if (kRemoveIsomorphisms) kedges = GetLexicographicallyLowestIso(kedges);
const string key = GetGraphKey(kedges);
if (visited_graph_key[key]) {
custom_assert(visited_graph_key[key] == edgemarkid);
return make_pair(true, graph_edges);
}
if (kRemoveIsomorphisms) {
auto sel = kedges;
auto mxcutnc = GetMaxcutDependentOnNc(sel);
GetAllIsomorphisms(kedges, [&](vector<pair<int,int>>& edges){
auto mxcutnc_candidate = GetMaxcutDependentOnNc(edges);
if (mxcutnc_candidate > mxcutnc) {
sel = edges;
mxcutnc = mxcutnc_candidate;
}
const string isokey = GetGraphKey(edges);
custom_assert(visited_graph_key[isokey] == 0);
visited_graph_key[isokey] = edgemarkid;
});
graph_edges = sel;
} else {
visited_graph_key[key] = edgemarkid;
}
return make_pair(false, graph_edges);
};
vector<pair<int,string>> ordered_classes;
unordered_map<string, int> visited_graph_key_bootstrap;
int clsid_mark = 1; // WE USE THIS TO VERIFY KERNELIZATION CORRECTNESS.
strbuffer << "Per class instance counts: ";
for (auto entry : equiv_cls) {
int sz = entry.second.size();
if (kKernelizeAndVisit) {
for (auto e : entry.second) {
auto res = kernelizeandmark(e.second, visited_graph_key_bootstrap, clsid_mark);
sz -= res.first;
}
}
strbuffer << entry.second.size() << "(" << sz << ") ";
ordered_classes.push_back(make_pair(sz, entry.first));
clsid_mark++;
}
strbuffer << endl;
sort(ordered_classes.rbegin(), ordered_classes.rend());
auto cmpentries = [&](pair<int,vector<pair<int,int>>> &entry1, pair<int,vector<pair<int,int>>> &entry2) {
return entry1.second.size() < entry2.second.size();
};
int num_of_classes = 0;
double sum_coverage = 0;
double sum_denum = 0;
int subset_in_result_cnt_start = subset_in_result.size();
for (int i = 0; i < (int)ordered_classes.size(); ++i) {
const string key = ordered_classes[i].second;
vector<pair<int, vector<pair<int,int>>>> entries = equiv_cls[key];
if (entries.size() <= 1 && kSkipSingletons) continue;
sort(entries.begin(), entries.end(), cmpentries);
cout << "Class " << key << " = " << entries.size() << " (total!) or " << ordered_classes[i].first << " (filtered -- kernelized/isomorph removed!)" << endl;
num_of_classes++;
bool found_exact = false;
unordered_map<string, int> visited_graph_key;
int kernelized_count = 0;
vector<vector<pair<int,int>>> lookback_graphs_for_subsets;
for (auto e : entries) { // iterate over all edge-sets in the class.
auto graph_edges = e.second;
if (kKernelizeAndVisit) {
auto res = kernelizeandmark(e.second, visited_graph_key, 1);
graph_edges = res.second;
if (res.first) {
kernelized_count++;
continue;
}
}
cout << " ";
cout << "[sz: " << graph_edges.size() << ", mx(0): " << e.first << ", clsid: " << num_of_classes << "] = ";
// Print edges and check if they contain subset_in_result as a subset.
bool any_property = false;
map<pair<int,int>,bool> visi;
int subset_in_result_cnt = subset_in_result_cnt_start;
for (int i = 0; i < (int)graph_edges.size(); ++i) {
auto edge = graph_edges[i];
subset_in_result_cnt -= (visi[edge] == false) && (subset_in_result[edge] || subset_in_result[RevPair(edge)]);
if (any_in_result[edge]) any_property = true;
cout << "(" << edge.first << ", " << edge.second << ") ";
visi[edge] = true;
}
cout << " [";
if (subset_in_result_cnt_start != 0 && subset_in_result_cnt == 0) {
if ((int)e.second.size() != subset_in_result_cnt_start)
cout << " sub:1 ";
else {
cout << " eq:1 ";
found_exact = true;
}
}
if (kHandleAnyProperty) {
if (any_property)
cout << " any:1 ";
else
cout << " any:0 ";
}
int dx = -1;
int supersetcnt = 0;
for (int i = 0; i < (int)lookback_graphs_for_subsets.size(); ++i) {
if (IsSuperset(graph_edges, lookback_graphs_for_subsets[(int)lookback_graphs_for_subsets.size() - 1 - i])) {
if (dx == -1) dx = i;
supersetcnt++;
}
}
cout << "lookback:" << dx << "th ";
cout << "supersetcnt:" << supersetcnt << " ";
auto G = MaxCutGraph(graph_edges, n);
cout << "clique(L,R)=(" << G.IsClique(L_vertex) << "," << G.IsClique(R_vertex) << " ";
cout << G.PrintDegrees(preset_is_external);
cout << " CONNECTED=" << (G.GetAllConnectedComponents().size() == 1u);
cout << "]";
if (subset_in_result_cnt_start != 0 && subset_in_result_cnt == 0) {
if (subset_in_result_cnt_start > (int)e.second.size() && kBreakWhenSmaller) {
cout << "Break because reduction of given subset found" << endl;
break;
}
}
cout << endl;
lookback_graphs_for_subsets.push_back(graph_edges);
}
if (kKernelizeAndVisit) {
double coverage = 1;
if (entries.size() >= 2) coverage = (kernelized_count) / (double)(entries.size() - 1);
sum_coverage += kernelized_count;
sum_denum += entries.size() - 1;
cout << "kernelized count: " << kernelized_count << " (coverage: " << coverage << ")" << endl;
}
cout << endl << endl;
if (found_exact && kStopAtSame) {
cout << "Break because exact found." << endl;
break;
}
}
const int num_iterations = 1;
strbuffer << "TOTAL analysis follows. (time in milliseconds, all values divided by number of iterations[" << num_iterations << "])" << endl; // ordered according kAllRuleIds
strbuffer << setw(20) << "RULE" << setw(20) << "|USED|" << setw(20) << "|CHECKS|" << setw(20) << "|TIME|" << setw(20) << "|TIME|/|CHECKS|" << endl;
for (auto rule : kAllRuleIds) {
int used_cnt = tot_case_coverage_cnt[rule];
int check_cnt = tot_rule_checks_cnt[rule];
double used_time = tot_rule_time[rule];
strbuffer << setw(20) << kRuleNames.at(rule) << setw(20) << (used_cnt / (double) num_iterations)
<< setw(20) << (check_cnt / (double) num_iterations) << setw(20) << (used_time / (double) num_iterations)
<< setw(20) << (used_time/check_cnt) << endl;
}
strbuffer << endl;
//ofstream out("find-kernelization-general-stats", std::ios_base::app);
strbuffer << "(" << n << " " << nc << ")" << endl;
strbuffer << "Number of classes: " << num_of_classes << endl;
double coverage = (sum_denum > 1e-9 ? (sum_coverage / sum_denum) : 1);
strbuffer << "Total kernelization coverage: " << coverage << endl;
strbuffer << endl;
cout << strbuffer.str() << endl;
if (input.cmdOptionExists("-output-path")) {
const string output_path = input.getCmdOption("-output-path") + ".meta";
ofstream out(output_path, fstream::app);
out << strbuffer.str() << endl;
OutputAppendix(input, n, nc, all_graphs_edges.size(), num_of_classes, coverage);
}
} | [
"amtrix92@gmail.com"
] | amtrix92@gmail.com |
78d25f5f379024927fe3aae1a704e01dfeb4ddf3 | 93e15988011ae58459f48c0b5b2211740684e46c | /app/controller/AdminGroupController.hpp | a01a2510736ec550dbba3bb24758227c5b61f106 | [
"MIT"
] | permissive | fabsgc/EFREI-L2-Gestnotes | 866280eed9d9d55d8e66b689d20c875eeb3c0992 | 61e8ff8a42e9f5954a57489f7103937f5ce36863 | refs/heads/master | 2021-06-09T12:05:29.802475 | 2016-10-12T15:45:21 | 2016-10-12T15:45:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 980 | hpp | /*\
| ------------------------------------------------------
| @file : AdminGroupController.hpp
| @author : Fabien Beaujean, Luc Lorentz
| @description : contrôleur gestion des groupes par les administrateurs
| ------------------------------------------------------
\*/
#ifndef ADMINGROUPCONTROLLER_HPP_INCLUDED
#define ADMINGROUPCONTROLLER_HPP_INCLUDED
#include "../include.hpp"
#include "../model/AdminGroupModel.hpp"
namespace app
{
class AdminGroupController : public core::Controller
{
public :
AdminGroupController(core::Config &config, core::Database &database, core::Request &request);
std::string home();
std::string newGroup();
std::string editGroup();
std::string deleteGroup();
std::string seeGroup();
private :
AdminGroupModel mModel;
};
}
#endif // ADMINGROUPCONTROLLER_HPP_INCLUDED
| [
"fabienbeaudimi@hotmail.fr"
] | fabienbeaudimi@hotmail.fr |
5c0ffd75633f821f3635e572b1a50208f23af3b9 | 0a109bcc711e853853b02e4e097605e1262a43d8 | /test01.cpp | 9339561962515b085a56040e3250bfc7d1ec07b9 | [] | no_license | danielhauagge/CUDABOF | 12fb1a5c4f055c0fc11fba42ede5daeb0a7bdea4 | 2512b94131c2f1fa96209946a4e1e719c6ca3f5b | refs/heads/master | 2020-06-02T19:08:50.696778 | 2014-03-26T20:32:25 | 2014-03-26T20:32:25 | 18,152,824 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,042 | cpp | // Copyright (c) 2008 Daniel Cabrini Hauagge
//
// 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 <CUDABOF.hpp>
#include <LinearMemory.hpp>
#include <Array.hpp>
#include <MemoryUtils.hpp>
#include <iomanip>
#include <test01_kernel.hpp>
using namespace CUDABOF;
#if 0
int
main(int argc, const char **)
{
cv::Size size(1024, 768);
cv::Mat image(size, CV_32FC1);
for(int i = 0; i < 10; i++) image.at<float>(0,i) = i + 10;
Array<float> arr(size);
LinearMemory<float> lMem(size);
CB_PRINT_LINE;
memoryCopy(arr, image);
runAddOneKernel(lMem.getPtr(), size.width, size.height, lMem.getPitch(), arr.getArray());
memoryCopy(arr, lMem);
for(int i = 0; i < 10; i++) CB_PRINT_VAR(image.at<float>(0,i));
memoryCopy(image, arr);
for(int i = 0; i < 10; i++) CB_PRINT_VAR(image.at<float>(0,i));
memoryCopy(arr, image);
return EXIT_SUCCESS;
}
#endif
void
printElems(const cv::Mat &img)
{
for(int i = 0; i < 10; i++) {
std::cout << std::setw(3) << img.at<float>(1, i) << " ";
}
std::cout << "\n";
}
int
main(int argc, const char **)
{
cv::Size size(1024, 768);
cv::Mat image(size, CV_32FC1);
cv::Mat ret_image(size, CV_32FC1);
for(int i = 0; i < size.height; i++)
for(int j = 0; j < size.width; j++)
image.at<float>(i,j) = i * size.width + j;
Array<float> arr(size);
LinearMemory<float> lMem(size);
memoryCopy(arr, image);
runAddOneKernel(lMem.getPtr(), size.width, size.height, lMem.getPitch(), arr.getArray());
memoryCopy(arr, lMem);
printElems(image);
memoryCopy(ret_image, arr);
printElems(ret_image);
// Check the results
bool passed = true;
for(int i = 0; i < size.height and passed; i++) {
for(int j = 0; j < size.width and passed; j++) {
passed = (ret_image.at<float>(i,j) - image.at<float>(i,j)) == 1;
}
}
if(passed) {
std::cout << "Test PASSED" << std::endl;
return EXIT_SUCCESS;
} else {
std::cout << "Test FAILED" << std::endl;
return EXIT_FAILURE;
}
}
| [
"daniel.hauagge@gmail.com"
] | daniel.hauagge@gmail.com |
2a92d1cc6cb8e5ca23f20b5fab2f1d9fefb374d3 | dee9e7a5b9b0ecf3b9a8ddf7f30f972045217a45 | /gdem_client/mediaplayer.cpp | 86c98c0a7fdaa6d18aef0c4d9f17dc4085167739 | [] | no_license | shengzhe8688/QGlobe | 3e2d5c86ad6a2bff89f3773385fa8fd84d4ddf57 | 8e13b894fc1d89a18869c979740fefe47a161eeb | refs/heads/master | 2022-11-12T12:19:06.046336 | 2020-07-05T14:04:59 | 2020-07-05T14:04:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,724 | cpp | #include <QtGui>
#define SLIDER_RANGE 8
#include "mediaplayer.h"
#ifdef Q_OS_SYMBIAN
#include <cdbcols.h>
#include <cdblen.h>
#include <commdb.h>
#endif
MediaVideoWidget::MediaVideoWidget(MediaPlayer *player, QWidget *parent) :
Phonon::VideoWidget(parent), m_player(player), m_action(this)
{
m_action.setCheckable(true);
m_action.setChecked(false);
m_action.setShortcut(QKeySequence( Qt::AltModifier + Qt::Key_Return));
m_action.setShortcutContext(Qt::WindowShortcut);
connect(&m_action, SIGNAL(toggled(bool)), SLOT(setFullScreen(bool)));
addAction(&m_action);
setAcceptDrops(true);
}
void MediaVideoWidget::setFullScreen(bool enabled)
{
Phonon::VideoWidget::setFullScreen(enabled);
emit fullScreenChanged(enabled);
}
void MediaVideoWidget::mouseDoubleClickEvent(QMouseEvent *e)
{
Phonon::VideoWidget::mouseDoubleClickEvent(e);
setFullScreen(!isFullScreen());
}
void MediaVideoWidget::keyPressEvent(QKeyEvent *e)
{
if(!e->modifiers()) {
// On non-QWERTY Symbian key-based devices, there is no space key.
// The zero key typically is marked with a space character.
if (e->key() == Qt::Key_Space || e->key() == Qt::Key_0) {
m_player->playPause();
e->accept();
return;
}
// On Symbian devices, there is no key which maps to Qt::Key_Escape
// On devices which lack a backspace key (i.e. non-QWERTY devices),
// the 'C' key maps to Qt::Key_Backspace
else if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Backspace) {
setFullScreen(false);
e->accept();
return;
}
}
Phonon::VideoWidget::keyPressEvent(e);
}
bool MediaVideoWidget::event(QEvent *e)
{
switch(e->type())
{
case QEvent::Close:
//we just ignore the cose events on the video widget
//this prevents ALT+F4 from having an effect in fullscreen mode
e->ignore();
return true;
case QEvent::MouseMove:
#ifndef QT_NO_CURSOR
unsetCursor();
#endif
//fall through
case QEvent::WindowStateChange:
{
//we just update the state of the checkbox, in case it wasn't already
m_action.setChecked(windowState() & Qt::WindowFullScreen);
const Qt::WindowFlags flags = m_player->windowFlags();
if (windowState() & Qt::WindowFullScreen) {
m_timer.start(1000, this);
} else {
m_timer.stop();
#ifndef QT_NO_CURSOR
unsetCursor();
#endif
}
}
break;
default:
break;
}
return Phonon::VideoWidget::event(e);
}
void MediaVideoWidget::timerEvent(QTimerEvent *e)
{
if (e->timerId() == m_timer.timerId()) {
//let's store the cursor shape
#ifndef QT_NO_CURSOR
setCursor(Qt::BlankCursor);
#endif
}
Phonon::VideoWidget::timerEvent(e);
}
MediaPlayer::MediaPlayer(QWidget* parent) :QWidget(parent),
playButton(0), nextEffect(0), settingsDialog(0), ui(0),
m_AudioOutput(Phonon::VideoCategory),
m_videoWidget(new MediaVideoWidget(this))
{
QSize buttonSize(34, 28);
rewindButton = new QPushButton(this);
rewindButton->setIcon(style()->standardIcon(QStyle::SP_MediaSkipBackward));
forwardButton = new QPushButton(this);
forwardButton->setIcon(style()->standardIcon(QStyle::SP_MediaSkipForward));
forwardButton->setEnabled(false);
playButton = new QPushButton(this);
playIcon = style()->standardIcon(QStyle::SP_MediaPlay);
pauseIcon = style()->standardIcon(QStyle::SP_MediaPause);
playButton->setIcon(playIcon);
slider = new Phonon::SeekSlider(this);
slider->setMediaObject(&m_MediaObject);
volume = new Phonon::VolumeSlider(&m_AudioOutput);
QVBoxLayout *vLayout = new QVBoxLayout(this);
vLayout->setContentsMargins(5, 5, 5, 5);
QHBoxLayout *layout = new QHBoxLayout();
info = new QLabel(this);
info->setMinimumHeight(70);
info->setAcceptDrops(false);
info->setMargin(2);
info->setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
info->setLineWidth(2);
info->setAutoFillBackground(true);
QPalette palette;
palette.setBrush(QPalette::WindowText, Qt::white);
#ifndef Q_WS_MAC
rewindButton->setMinimumSize(buttonSize);
forwardButton->setMinimumSize(buttonSize);
playButton->setMinimumSize(buttonSize);
#endif
info->setStyleSheet("border-image:url(:/image/screen.png) ; border-width:3px");
info->setPalette(palette);
info->setText(tr("<center></center>"));
volume->setFixedWidth(120);
layout->addWidget(rewindButton);
layout->addWidget(playButton);
layout->addWidget(forwardButton);
layout->addStretch();
layout->addWidget(volume);
vLayout->addWidget(info);
initVideoWindow();
vLayout->addWidget(&m_videoWindow);
QVBoxLayout *buttonPanelLayout = new QVBoxLayout();
m_videoWindow.hide();
buttonPanelLayout->addLayout(layout);
timeLabel = new QLabel(this);
progressLabel = new QLabel(this);
QWidget *sliderPanel = new QWidget(this);
QHBoxLayout *sliderLayout = new QHBoxLayout();
sliderLayout->addWidget(slider);
sliderLayout->addWidget(timeLabel);
sliderLayout->addWidget(progressLabel);
sliderLayout->setContentsMargins(0, 0, 0, 0);
sliderPanel->setLayout(sliderLayout);
buttonPanelLayout->addWidget(sliderPanel);
buttonPanelLayout->setContentsMargins(0, 0, 0, 0);
#ifdef Q_OS_MAC
layout->setSpacing(4);
buttonPanelLayout->setSpacing(0);
info->setMinimumHeight(100);
info->setFont(QFont("verdana", 15));
// QStyle *flatButtonStyle = new QWindowsStyle;
openButton->setFocusPolicy(Qt::NoFocus);
#endif
QWidget *buttonPanelWidget = new QWidget(this);
buttonPanelWidget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
buttonPanelWidget->setLayout(buttonPanelLayout);
vLayout->addWidget(buttonPanelWidget);
QHBoxLayout *labelLayout = new QHBoxLayout();
vLayout->addLayout(labelLayout);
setLayout(vLayout);
// Setup signal connections:
connect(rewindButton, SIGNAL(clicked()), this, SLOT(rewind()));
connect(playButton, SIGNAL(clicked()), this, SLOT(playPause()));
connect(forwardButton, SIGNAL(clicked()), this, SLOT(forward()));
connect(&m_MediaObject, SIGNAL(metaDataChanged()), this, SLOT(updateInfo()));
connect(&m_MediaObject, SIGNAL(totalTimeChanged(qint64)), this, SLOT(updateTime()));
connect(&m_MediaObject, SIGNAL(tick(qint64)), this, SLOT(updateTime()));
connect(&m_MediaObject, SIGNAL(finished()), this, SLOT(finished()));
connect(&m_MediaObject, SIGNAL(stateChanged(Phonon::State,Phonon::State)), this, SLOT(stateChanged(Phonon::State,Phonon::State)));
connect(&m_MediaObject, SIGNAL(bufferStatus(int)), this, SLOT(bufferStatus(int)));
connect(&m_MediaObject, SIGNAL(hasVideoChanged(bool)), this, SLOT(hasVideoChanged(bool)));
rewindButton->setEnabled(false);
playButton->setEnabled(false);
setAcceptDrops(true);
m_audioOutputPath = Phonon::createPath(&m_MediaObject, &m_AudioOutput);
Phonon::createPath(&m_MediaObject, m_videoWidget);
setStyleSheet("QPushButton { border: 2px solid #8f8f91;}");
}
void MediaPlayer::stateChanged(Phonon::State newstate, Phonon::State oldstate)
{
Q_UNUSED(oldstate);
if (oldstate == Phonon::LoadingState)
{
QRect videoHintRect = QRect(QPoint(0, 0), m_videoWindow.sizeHint());
QRect newVideoRect = QApplication::desktop()->screenGeometry().intersected(videoHintRect);
if (!m_smallScreen) {
if (m_MediaObject.hasVideo()) {
// Flush event que so that sizeHint takes the
// recently shown/hidden m_videoWindow into account:
qApp->processEvents();
resize(sizeHint());
} else
resize(minimumSize());
}
}
switch (newstate)
{
case Phonon::ErrorState:
if (m_MediaObject.errorType() == Phonon::FatalError)
{
playButton->setEnabled(false);
rewindButton->setEnabled(false);
}
else
{
m_MediaObject.pause();
}
QMessageBox::warning(this, "Phonon Mediaplayer", m_MediaObject.errorString(), QMessageBox::Close);
break;
case Phonon::StoppedState:
m_videoWidget->setFullScreen(false);
// Fall through
case Phonon::PausedState:
playButton->setIcon(playIcon);
if (m_MediaObject.currentSource().type() != Phonon::MediaSource::Invalid)
{
playButton->setEnabled(true);
rewindButton->setEnabled(true);
}
else
{
playButton->setEnabled(false);
rewindButton->setEnabled(false);
}
break;
case Phonon::PlayingState:
playButton->setEnabled(true);
playButton->setIcon(pauseIcon);
if (m_MediaObject.hasVideo())
m_videoWindow.show();
// Fall through
case Phonon::BufferingState:
rewindButton->setEnabled(true);
break;
case Phonon::LoadingState:
rewindButton->setEnabled(false);
break;
}
}
void MediaPlayer::setVolume(qreal volume)
{
m_AudioOutput.setVolume(volume);
}
void MediaPlayer::setSmallScreen(bool smallScreen)
{
m_smallScreen = smallScreen;
}
void MediaPlayer::initVideoWindow()
{
QVBoxLayout *videoLayout = new QVBoxLayout();
videoLayout->addWidget(m_videoWidget);
videoLayout->setContentsMargins(0, 0, 0, 0);
m_videoWindow.setLayout(videoLayout);
// m_videoWindow.setMinimumSize(100, 100);
}
void MediaPlayer::playPause()
{
if (m_MediaObject.state() == Phonon::PlayingState)
m_MediaObject.pause();
else {
if (m_MediaObject.currentTime() == m_MediaObject.totalTime())
m_MediaObject.seek(0);
m_MediaObject.play();
}
}
void MediaPlayer::setFile(const QString &fileName)
{
setWindowTitle(fileName.right(fileName.length() - fileName.lastIndexOf('/') - 1));
m_MediaObject.setCurrentSource(Phonon::MediaSource(fileName));
m_MediaObject.play();
}
void MediaPlayer::setLocation(const QString& location)
{
setWindowTitle(location.right(location.length() - location.lastIndexOf('/') - 1));
m_MediaObject.setCurrentSource(Phonon::MediaSource(QUrl::fromEncoded(location.toUtf8())));
m_MediaObject.play();
}
bool MediaPlayer::playPauseForDialog()
{
// If we're running on a small screen, we want to pause the video when
// popping up dialogs. We neither want to tamper with the state if the
// user has paused.
if (m_smallScreen && m_MediaObject.hasVideo()) {
if (Phonon::PlayingState == m_MediaObject.state()) {
m_MediaObject.pause();
return true;
}
}
return false;
}
void MediaPlayer::bufferStatus(int percent)
{
if (percent == 100)
progressLabel->setText(QString());
else {
QString str = QString::fromLatin1("(%1%)").arg(percent);
progressLabel->setText(str);
}
}
void MediaPlayer::updateInfo()
{
int maxLength = 30;
QString font = "<font color=#ffeeaa>";
QString fontmono = "<font family=\"monospace,courier new\" color=#ffeeaa>";
QMap <QString, QString> metaData = m_MediaObject.metaData();
QString trackArtist = metaData.value("ARTIST");
if (trackArtist.length() > maxLength)
trackArtist = trackArtist.left(maxLength) + "...";
QString trackTitle = metaData.value("TITLE");
int trackBitrate = metaData.value("BITRATE").toInt();
QString fileName;
if (m_MediaObject.currentSource().type() == Phonon::MediaSource::Url) {
fileName = m_MediaObject.currentSource().url().toString();
} else {
fileName = m_MediaObject.currentSource().fileName();
fileName = fileName.right(fileName.length() - fileName.lastIndexOf('/') - 1);
if (fileName.length() > maxLength)
fileName = fileName.left(maxLength) + "...";
}
QString title;
if (!trackTitle.isEmpty()) {
if (trackTitle.length() > maxLength)
trackTitle = trackTitle.left(maxLength) + "...";
title = "Title: " + font + trackTitle + "<br></font>";
} else if (!fileName.isEmpty()) {
if (fileName.length() > maxLength)
fileName = fileName.left(maxLength) + "...";
title = font + fileName + "</font>";
if (m_MediaObject.currentSource().type() == Phonon::MediaSource::Url) {
title.prepend("Url: ");
} else {
title.prepend("File: ");
}
}
QString artist;
if (!trackArtist.isEmpty())
artist = "Artist: " + font + trackArtist + "</font>";
QString bitrate;
if (trackBitrate != 0)
bitrate = "<br>Bitrate: " + font + QString::number(trackBitrate/1000) + "kbit</font>";
info->setText(title + artist + bitrate);
}
void MediaPlayer::updateTime()
{
long len = m_MediaObject.totalTime();
long pos = m_MediaObject.currentTime();
QString timeString;
if (pos || len)
{
int sec = pos/1000;
int min = sec/60;
int hour = min/60;
int msec = pos;
QTime playTime(hour%60, min%60, sec%60, msec%1000);
sec = len / 1000;
min = sec / 60;
hour = min / 60;
msec = len;
QTime stopTime(hour%60, min%60, sec%60, msec%1000);
QString timeFormat = "m:ss";
if (hour > 0)
timeFormat = "h:mm:ss";
timeString = playTime.toString(timeFormat);
if (len)
timeString += " / " + stopTime.toString(timeFormat);
}
timeLabel->setText(timeString);
}
void MediaPlayer::rewind()
{
m_MediaObject.seek(0);
}
void MediaPlayer::forward()
{
QList<Phonon::MediaSource> queue = m_MediaObject.queue();
if (queue.size() > 0) {
m_MediaObject.setCurrentSource(queue[0]);
forwardButton->setEnabled(queue.size() > 1);
m_MediaObject.play();
}
}
/*!
\since 4.6
*/
void MediaPlayer::finished()
{
emit videoFinished();
}
void MediaPlayer::hasVideoChanged(bool bHasVideo)
{
info->setVisible(!bHasVideo);
m_videoWindow.setVisible(bHasVideo);
}
void MediaPlayer::play()
{
if (m_MediaObject.state() == Phonon::PlayingState)
return;
m_MediaObject.play();
}
void MediaPlayer::pause()
{
if (m_MediaObject.state() == Phonon::PausedState)
return;
m_MediaObject.pause();
}
QString MediaPlayer::getCurrentTitle()
{
QString fileName=m_MediaObject.currentSource().fileName();
return fileName.right(fileName.length() - fileName.lastIndexOf('/') - 1) ;
}
#ifdef Q_OS_SYMBIAN
void MediaPlayer::selectIAP()
{
TRAPD(err, selectIAPL());
if (KErrNone != err)
QMessageBox::warning(this, "Phonon Mediaplayer", "Error selecting IAP", QMessageBox::Close);
}
void MediaPlayer::selectIAPL()
{
QVariant currentIAPValue = m_MediaObject.property("InternetAccessPointName");
QString currentIAPString = currentIAPValue.toString();
bool ok = false;
CCommsDatabase *commsDb = CCommsDatabase::NewL(EDatabaseTypeIAP);
CleanupStack::PushL(commsDb);
commsDb->ShowHiddenRecords();
CCommsDbTableView* view = commsDb->OpenTableLC(TPtrC(IAP));
QStringList items;
TInt currentIAP = 0;
for (TInt l = view->GotoFirstRecord(), i = 0; l != KErrNotFound; l = view->GotoNextRecord(), i++) {
TBuf<KCommsDbSvrMaxColumnNameLength> iapName;
view->ReadTextL(TPtrC(COMMDB_NAME), iapName);
QString iapString = QString::fromUtf16(iapName.Ptr(), iapName.Length());
items << iapString;
if (iapString == currentIAPString)
currentIAP = i;
}
currentIAPString = QInputDialog::getItem(this, tr("Select Access Point"), tr("Select Access Point"), items, currentIAP, false, &ok);
if (ok)
m_MediaObject.setProperty("InternetAccessPointName", currentIAPString);
CleanupStack::PopAndDestroy(2); //commsDB, view
}
#endif
| [
"wugis3@yahoo.com"
] | wugis3@yahoo.com |
9e84bed9a6a45efa5b780bad6c599217bc8605e9 | 162a3db1eb6017a94e9f378d7a20f61e581ecbe9 | /src/components/performance_manager/test_support/performance_manager_test_harness.h | d4aa42c502266afa7d9648eb1e9b0e7b21d4ccc1 | [
"BSD-3-Clause"
] | permissive | webosose/chromium84 | 705fbac37c5cfecd36113b41b7a0f4e8adf249d5 | 5decc42bef727dc957683fb5d8fa2fcc78936f15 | refs/heads/master | 2023-05-29T13:53:50.190538 | 2021-06-08T07:56:29 | 2021-06-10T01:19:24 | 330,895,427 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,138 | h | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PERFORMANCE_MANAGER_TEST_SUPPORT_PERFORMANCE_MANAGER_TEST_HARNESS_H_
#define COMPONENTS_PERFORMANCE_MANAGER_TEST_SUPPORT_PERFORMANCE_MANAGER_TEST_HARNESS_H_
#include "components/performance_manager/test_support/test_harness_helper.h"
#include "content/public/test/test_renderer_host.h"
namespace performance_manager {
// A test harness that initializes PerformanceManagerImpl, plus the entire
// RenderViewHost harness. Allows for creating full WebContents, and their
// accompanying structures in the graph. The task environment is accessed
// via content::RenderViewHostTestHarness::task_environment(). RenderFrameHosts
// and such are not created, so this is suitable for unittests but not
// browsertests.
class PerformanceManagerTestHarness
: public content::RenderViewHostTestHarness {
public:
using Super = content::RenderViewHostTestHarness;
PerformanceManagerTestHarness();
// Constructs a PerformanceManagerTestHarness which uses |traits| to
// initialize its BrowserTaskEnvironment.
template <typename... TaskEnvironmentTraits>
explicit PerformanceManagerTestHarness(TaskEnvironmentTraits&&... traits)
: RenderViewHostTestHarness(
std::forward<TaskEnvironmentTraits>(traits)...) {}
PerformanceManagerTestHarness(const PerformanceManagerTestHarness&) = delete;
PerformanceManagerTestHarness& operator=(
const PerformanceManagerTestHarness&) = delete;
~PerformanceManagerTestHarness() override;
void SetUp() override;
void TearDown() override;
// Creates a test web contents with performance manager tab helpers
// attached. This is a test web contents that can be interacted with
// via WebContentsTester.
std::unique_ptr<content::WebContents> CreateTestWebContents();
private:
std::unique_ptr<PerformanceManagerTestHarnessHelper> helper_;
};
} // namespace performance_manager
#endif // COMPONENTS_PERFORMANCE_MANAGER_TEST_SUPPORT_PERFORMANCE_MANAGER_TEST_HARNESS_H_
| [
"youngsoo.choi@lge.com"
] | youngsoo.choi@lge.com |
1cc11ce80a4a4c17d7b2ffd440a71830c07fa0c1 | 2035c6c5ae7b0150e79fc57c127bb7f2564d3090 | /keyboard-Breaker/src/game_screens/main_menu.h | 2d2044903bc1db3cfe2b09e239dbea92c7565b5a | [] | no_license | LautaroCoccia/Ultimo-TP | 77a2eb284839f2bbc3964f8052df2cf566be3185 | 00d4802e452a2d4a3f7a5c01c1de57eb6015ddcc | refs/heads/master | 2020-09-05T05:55:55.039141 | 2019-11-27T05:46:05 | 2019-11-27T05:46:05 | 220,003,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 390 | h | #ifndef MAIN_MENU_H
#define MAIN_MENU_H
#include "raylib.h"
namespace Keyboard_Breaker
{
namespace Main_Menu
{
struct BUTTON
{
bool cursorOver = false;
Rectangle genButton;
Color normalState = WHITE;
Color overState = BLUE;
Color exitState = RED;
Color actuallColor = normalState;
};
extern bool exitGame;
void InitMenu();
void UpdateMenu();
}
}
#endif | [
"aquista35@gmail.com"
] | aquista35@gmail.com |
5cb30302e5109869e2257ba9a74d537c9411316c | 80b872f4d86bbeeea7f75262110286f9a236760d | /Source/testing_grounds/testing_groundsGameMode.cpp | 585cb94b94c0d6736ff182a8ba6e572e2d443e3e | [] | no_license | adithya28/testing_grounds | 9c8135fc6216cb471b02eba2cce13be7c2365063 | 77858d49c3b32ff9217fc47c384b2613d4b85f39 | refs/heads/master | 2020-03-26T19:53:54.597291 | 2018-08-19T10:07:41 | 2018-08-19T10:07:41 | 145,292,116 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 594 | cpp | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
#include "testing_groundsGameMode.h"
#include "testing_groundsHUD.h"
#include "testing_groundsCharacter.h"
#include "UObject/ConstructorHelpers.h"
Atesting_groundsGameMode::Atesting_groundsGameMode()
: Super()
{
// set default pawn class to our Blueprinted character
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnClassFinder(TEXT("/Game/FirstPersonCPP/Blueprints/FirstPersonCharacter"));
DefaultPawnClass = PlayerPawnClassFinder.Class;
// use our custom HUD class
HUDClass = Atesting_groundsHUD::StaticClass();
}
| [
"adithya28@yahoo.com"
] | adithya28@yahoo.com |
d1b67253a28f9f0e7e8c0fe3b8b47cd2ae31b3f1 | f3cfb6eca41dbc283c5ed190f0ea3b2bc0687a98 | /chasm.cpp | d63288e6f57b18f117c25e0d9210b8de7f97b006 | [
"MIT"
] | permissive | mattmikolay/chasm | 553d369204f236129b792283bf2d9dc5c6176d1d | bd54900f8dc339abbb47bb169096d3e83985292f | refs/heads/master | 2020-06-20T17:30:29.618246 | 2016-11-26T21:57:15 | 2016-11-26T21:57:15 | 74,852,815 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 38,326 | cpp | // Standard C++ libraries
#include <fstream>
#include <iostream>
// chasm specific libraries
#include "chasm.h"
#include "label.h"
#include "lref.h"
/*
XXXXXXXXXXXX XXXX XXXX XXXXXXXXXXXX XXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXX XXXX XXXX XXXXXXXXXXXX XXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXX
XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX
XXXX XXXXXXXXXXXX XXXXXXXXXXXX XXXXXXXXXXXX XXXX XXXX XXXX
XXXX XXXXXXXXXXXX XXXXXXXXXXXX XXXXXXXXXXXX XXXX XXXX XXXX
XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX
XXXXXXXXXXXX XXXX XXXX XXXX XXXX XXXXXXXXXXXX XXXX XXXX XXXX
XXXXXXXXXXXX XXXX XXXX XXXX XXXX XXXXXXXXXXXX XXXX XXXX XXXX
VERSION 1.0.1
Copyright (c) 2010-2016 Matthew Mikolay
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.
*/
int main(int argc, char *argv[])
{
// Create needed variables
unsigned short start = 0x200; // Starting value of the program counter
unsigned short offset = 0x000; // Program counter offset from the starting address, initially zero
unsigned char memory[4096]; // Memory to store CHIP-8 machine code
string i_file = "input.asm"; // The filename of the input file
string o_file = "output.c8"; // The filename of the output file
bool eflag = false; // Signal if an error has occured
// ***************************************
// Begin processing command line arguments
// ***************************************
// Syntax: chasm <input filename> <output filename>
// Make sure the correct number of command line arguments is present
if(argc != 3)
{
// Return an error message
eflag = error("chasm 1.0", 0, "Incorrect command line argument usage.\n\nSyntax:\n\tchasm <input filename> <output filename>");
// Exit the program
return false;
}
// Set the input and output filenames
i_file = argv[1];
o_file = argv[2];
// **************************************
// Begin reading data from the input file
// **************************************
// Open the source file for reading
ifstream source;
source.open(i_file.c_str(), ifstream::in);
// Check if the source file has not been opened correctly
if(!source.is_open())
{
// Return an error message
eflag = error(i_file, 0, "File error. Could not open file \"" + i_file + "\" for input.");
// Exit the program
return false;
}
// Create arrays and variables to store label data and references
const unsigned int list_labels_size = 256; // The maximum number of labels capable of being processed by chasm
const unsigned int list_lrefs_size = 256; // The maximum number of label references capable of being processed by chasm
label list_labels[list_labels_size]; // An array to store labels
lref list_lrefs [list_lrefs_size]; // An array to store label references
unsigned char num_labels = 0; // The current number of labels stored in list_labels
unsigned char num_lrefs = 0; // The current number of label references stored in list_lrefs
// Create a string to store line contents
string line = "";
// Create a string to store the current word of a line
string word;
// Create a string array to store the arguments
// argument[0] is the command name (I.E. "SE", "DRW", "LD", etc.)
// argument[1 ... 3] are command parameters (I.E. "V1", "#4A", etc.)
// Note: The current version of CHIP-8 assembly processed by chasm
// supports a maximum of four arguments, as no mnemonics
// process more than this number.
string arguments[4];
// Create an integer to store the number of arguments currently stored in the array
unsigned char numArgs;
// Create an integer to store the line number of the line being currently read
unsigned int lineNumber = 0;
// ************************************************
// Begin processing the current line into arguments
// ************************************************
// Loop through the lines of the source file
while(!source.eof())
{
// Get the next line from the source file
getline(source, line);
// Reset the value of the current word string and the number of arguments
word = "";
numArgs = 0;
// Increase the line number
lineNumber++;
// Loop through the line, storing arguments and looking for labels
for(unsigned char i = 0; i < line.length(); i++)
{
// If the current character is a semicolon, process the rest of the line as a comment
if(line.at(i) == ';')
{
// If word has data in it, store it
if(word.length() != 0)
{
if(!addArg(word, arguments, numArgs))
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Argument array overflow. Check line?");
// Exit the program
return false;
}
}
// Stop processing the rest of the line
break;
}
// If the current character is a colon, process the stored word as a label
if(line.at(i) == ':')
{
// Make sure the colon was placed correctly
if(word == "")
{
// Incorrect colon usage
eflag = error(i_file, lineNumber, "Syntax error. Check colon usage.");
// Read the next line
break;
}
// Try to store the word
if(!addArg(word, arguments, numArgs))
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Argument array overflow.");
// Exit the program
return false;
}
// Make sure only one word has been stored
if(numArgs != 1)
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Check label identifier.");
// Exit the program
return false;
}
// Create a new label
label myLabel = label(arguments[0], offset);
// If the label has an invalid name, return an error
if(!myLabel.isValid())
{
// Return an error message
eflag = error(i_file, lineNumber, "Label error. Invalid label identifier.");
// Exit the program
return false;
}
// Make sure a label with the same name has not already been inserted into the array
for(unsigned int curLblNum = 0; curLblNum < num_labels; curLblNum++)
{
if(myLabel.getName() == list_labels[curLblNum].getName())
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Label \"" + myLabel.getName() + "\" already exists.");
// Exit the program
return false;
}
}
// Make sure no array overflow will occur
if(num_labels >= list_labels_size)
{
// Return an error message
eflag = error(i_file, lineNumber, "Assembler error. Label array overflow. Maximum number of labels reached.");
// Exit the program
return false;
}
// Add the current label to the list for storage
list_labels[num_labels] = myLabel;
num_labels++;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Enable the following line to signal the creation of a new label
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// cout << "Label \"" << arguments[0] << "\" created at address " << offset << "!" << endl;
// Reset the value of word
word = "";
// Process the rest of the line as if the label has been removed
numArgs = 0;
continue;
}
// If the current character is a comma, and parameters are currently being read, store the word
if(line.at(i) == ',' && word != "")
{
// Detect if the comma was unnecessary, as no other arguments have been stored yet
if(numArgs == 0)
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Unnecessary comma?");
// Exit the program
return false;
}
// Store the current word
if(!addArg(word, arguments, numArgs))
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Argument array overflow.");
// Exit the program
return false;
}
}
// If the current character is not whitespace, add the uppercase version of the current character to the word
else if(!isWhitespace(line.at(i)))
word += toUpper(line.at(i));
// If whitespace is encountered, word is not empty, and no arguments
// Are currently stored, then store the first word as a command
else if(word.length() != 0 && numArgs == 0 && isWhitespace(line.at(i)))
{
if(!addArg(word, arguments, numArgs))
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Argument array overflow. Check line?");
// Exit the program
return false;
}
continue;
}
// If this is the end of the line, and word contains data, store it depending upon if we are storing commands or parameters
if(i == line.length() - 1)
{
// If the final character is a comma, return an error
if(line.at(i) == ',')
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Unnecessary comma?");
// Exit the program
return false;
}
if(word != "")
{
// Store the current word
if(!addArg(word, arguments, numArgs))
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Argument array overflow. Check line?");
// Exit the program
return false;
}
}
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Enable the following lines of code to output all arguments to the screen
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// cout << endl;
// for(unsigned char a = 0; a < numArgs; a++)
// cout << arguments[a] << "\t";
// **********************************************************
// Begin processing the arguments and generating machine code
// **********************************************************
// Check if at least one argument was entered
if(numArgs > 0)
{
// Process all single argument commands
if(numArgs == 1)
{
// CLS - 00E0
if(arguments[0] == "CLS")
{
// Add corresponding machine code to memory
memory[offset] = 0x00; offset++;
memory[offset] = 0xE0; offset++;
// Read the next line
continue;
}
// RET - 00EE
if(arguments[0] == "RET")
{
// Add corresponding machine code to memory
memory[offset] = 0x00; offset++;
memory[offset] = 0xEE; offset++;
// Read the next line
continue;
}
// Unknown command
eflag = error(i_file, lineNumber, "Syntax error. Unknown command \"" + arguments[0] + "\".");
// Read the next line
continue;
}
// Process all double argument commands
if(numArgs == 2)
{
// Macro: .START ADDR
// Signifies start address
if(arguments[0] == ".START")
{
// Make sure no other commands have been entered yet
if(offset != 0)
{
// Return an error message
eflag = error(i_file, lineNumber, "Assembler error. Input code attempts to modify start address after other commands have been processed.");
// Exit the program
return false;
}
unsigned short result = 0x0000;
// Try to convert the second argument into an address
if(!strTo12Bit(arguments[1], result))
{
// Return an error message
eflag = error(i_file, lineNumber, "Syntax error. Invalid number \"" + arguments[1] + "\" designated as start address.");
// Exit the program
return false;
}
// Set the start address
start = result;
// Read the next line
continue;
}
// DB BYTE
// Store a byte
if(arguments[0] == "DB")
{
unsigned char result = 0x00;
// Try to convert the second argument into a byte
if(!strToByte(arguments[1], result))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[2] + "\". Expected an 8-bit number.");
// Read the next line
continue;
}
memory[offset] = result;
offset++;
// Read the next line
continue;
}
// DW WORD
// Store a word
if(arguments[0] == "DW")
{
unsigned short result = 0x0000;
// Try to convert the second argument into a byte
if(!strToWord(arguments[1], result))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[2] + "\". Expected a 16-bit number.");
// Read the next line
continue;
}
memory[offset] = (unsigned char)(result >> 8); offset++;
memory[offset] = (unsigned char)(result & 0x00FF); offset++;
// Read the next line
continue;
}
// SYS ADDR - 0NNN
if(arguments[0] == "SYS")
{
unsigned short result = 0x0000;
// Try to convert the second argument into an address
// If that fails, process the second argument as a label reference
if(!strTo12Bit(arguments[1], result))
{
// Create a new label reference
lref myLref = lref(arguments[1], offset);
// Make sure no array overflow will occur
if(num_lrefs >= list_lrefs_size)
{
// Return an error message
eflag = error(i_file, lineNumber, "Assembler error. Label reference array overflow. Maximum number of label references reached.");
// Exit the program
return false;
}
// Add the current label to the list for storage
list_lrefs[num_lrefs] = myLref;
num_lrefs++;
}
// Add corresponding machine code to memory
memory[offset] = 0x00 + ((result & 0x0F00) >> 8); offset++;
memory[offset] = 0x00 + (result & 0x00FF); offset++;
// Read the next line
continue;
}
// JP ADDR - 1NNN
if(arguments[0] == "JP")
{
unsigned short result = 0x0000;
// Try to convert the second argument into an address
// If that fails, process the second argument as a label reference
if(!strTo12Bit(arguments[1], result))
{
// Create a new label reference
lref myLref = lref(arguments[1], offset);
// Make sure no array overflow will occur
if(num_lrefs >= list_lrefs_size)
{
// Return an error message
eflag = error(i_file, lineNumber, "Assembler error. Label reference array overflow. Maximum number of label references reached.");
// Exit the program
return false;
}
// Add the current label to the list for storage
list_lrefs[num_lrefs] = myLref;
num_lrefs++;
}
// Add corresponding machine code to memory
memory[offset] = 0x10 + ((result & 0x0F00) >> 8); offset++;
memory[offset] = 0x00 + (result & 0x00FF); offset++;
// Read the next line
continue;
}
// CALL ADDR - 2NNN
if(arguments[0] == "CALL")
{
unsigned short result = 0x0000;
// Try to convert the second argument into an address
// If that fails, process the second argument as a label reference
if(!strTo12Bit(arguments[1], result))
{
// Create a new label reference
lref myLref = lref(arguments[1], offset);
// Make sure no array overflow will occur
if(num_lrefs >= list_lrefs_size)
{
// Return an error message
eflag = error(i_file, lineNumber, "Assembler error. Label reference array overflow. Maximum number of label references reached.");
// Exit the program
return false;
}
// Add the current label to the list for storage
list_lrefs[num_lrefs] = myLref;
num_lrefs++;
}
// Add corresponding machine code to memory
memory[offset] = 0x20 + ((result & 0x0F00) >> 8); offset++;
memory[offset] = 0x00 + (result & 0x00FF); offset++;
// Read the next line
continue;
}
// SKP VX - EX9E
if(arguments[0] == "SKP")
{
unsigned char byte = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = 0xE0 + byte; offset++;
memory[offset] = 0x9E; offset++;
// Read the next line
continue;
}
// SKNP VX - EXA1
if(arguments[0] == "SKNP")
{
unsigned char byte = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = 0xE0 + byte; offset++;
memory[offset] = 0xA1; offset++;
// Read the next line
continue;
}
// SHR VX - 8XY6
if(arguments[0] == "SHR")
{
unsigned char byte = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = 0x80 + byte; offset++;
memory[offset] = 0x06 + (byte << 4); offset++;
// Read the next line
continue;
}
// SHL VX - 8XYE
if(arguments[0] == "SHL")
{
unsigned char byte = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = 0x80 + byte; offset++;
memory[offset] = 0x0E + (byte << 4); offset++;
// Read the next line
continue;
}
// Unknown command
eflag = error(i_file, lineNumber, "Syntax error. Unknown command \"" + arguments[0] + " " + arguments[1] + "\".");
// Read the next line
continue;
}
// Process all triple argument commands
if(numArgs == 3)
{
// SE VX, BYTE - 3XKK
// SE VX, VY - 5XY0
if(arguments[0] == "SE")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a byte
if(strToByte(arguments[2], byte2))
{
byte1 += 0x30;
}
// Try to convert the third argument into a register
else if(strToRegister(arguments[2], byte2))
{
byte1 += 0x50;
byte2 = byte2 << 4;
}
else
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = byte1; offset++;
memory[offset] = byte2; offset++;
// Read the next line
continue;
}
// SNE VX, BYTE - 4XKK
// SNE VX, VY - 9XY0
if(arguments[0] == "SNE")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a byte
if(strToByte(arguments[2], byte2))
{
byte1 += 0x40;
}
// Try to convert the third argument into a register
else if(strToRegister(arguments[2], byte2))
{
byte1 += 0x90;
byte2 = byte2 << 4;
}
else
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = byte1; offset++;
memory[offset] = byte2; offset++;
// Read the next line
continue;
}
// ADD VX, BYTE - 7XKK
// ADD VX, VY - 8XY4
if(arguments[0] == "ADD" && arguments[1] != "I")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a byte
if(strToByte(arguments[2], byte2))
{
byte1 += 0x70;
}
// Try to convert the third argument into a register
else if(strToRegister(arguments[2], byte2))
{
byte1 += 0x80;
byte2 = (byte2 << 4) + 0x04;
}
else
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = byte1; offset++;
memory[offset] = byte2; offset++;
// Read the next line
continue;
}
// ADD I, VX - FX1E
if(arguments[0] == "ADD" && arguments[1] == "I")
{
unsigned char byte = 0x00;
// Try to convert the third argument into a register
if(!strToRegister(arguments[2], byte))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = 0xF0 + byte; offset++;
memory[offset] = 0x1E; offset++;
// Read the next line
continue;
}
// RND VX, BYTE - CXKK
if(arguments[0] == "RND")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a byte
if(!strToByte(arguments[2], byte2))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[2] + "\". Expected an 8-bit number.");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = 0xC0 + byte1; offset++;
memory[offset] = byte2; offset++;
// Read the next line
continue;
}
// OR VX, VY - 8XY1
// AND VX, VY - 8XY2
// XOR VX, VY - 8XY3
if(arguments[0] == "OR" || arguments[0] == "AND" || arguments[0] == "XOR")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a register
if(!strToRegister(arguments[2], byte2))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Shift byte2 left by four bits
byte2 = byte2 << 4;
// Determine what number to end the command with
if(arguments[0] == "OR")
byte2 += 0x01;
if(arguments[0] == "AND")
byte2 += 0x02;
if(arguments[0] == "XOR")
byte2 += 0x03;
// Add corresponding machine code to memory
memory[offset] = 0x80 + byte1; offset++;
memory[offset] = byte2; offset++;
// Read the next line
continue;
}
// SUB VX, VY - 8XY5
if(arguments[0] == "SUB")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a register
if(!strToRegister(arguments[2], byte2))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Shift byte2 left by four bits
byte2 = byte2 << 4;
// Add corresponding machine code to memory
memory[offset] = 0x80 + byte1; offset++;
memory[offset] = byte2 + 0x05; offset++;
// Read the next line
continue;
}
// SUBN VX, VY - 8XY7
if(arguments[0] == "SUBN")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a register
if(!strToRegister(arguments[2], byte2))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Shift byte2 left by four bits
byte2 = byte2 << 4;
// Add corresponding machine code to memory
memory[offset] = 0x80 + byte1; offset++;
memory[offset] = byte2 + 0x07; offset++;
// Read the next line
continue;
}
// SHR VX, VY - 8XY6
if(arguments[0] == "SHR")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a register
if(!strToRegister(arguments[2], byte2))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Shift byte2 left by four bits
byte2 = byte2 << 4;
// Add corresponding machine code to memory
memory[offset] = 0x80 + byte1; offset++;
memory[offset] = byte2 + 0x06; offset++;
// Read the next line
continue;
}
// SHL VX, VY - 8XYE
if(arguments[0] == "SHL")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a register
if(!strToRegister(arguments[2], byte2))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[2] + "\".");
// Read the next line
continue;
}
// Shift byte2 left by four bits
byte2 = byte2 << 4;
// Add corresponding machine code to memory
memory[offset] = 0x80 + byte1; offset++;
memory[offset] = byte2 + 0x0E; offset++;
// Read the next line
continue;
}
// JP V0, ADDR - BNNN
if(arguments[0] == "JP")
{
// Make sure the second argument is the correct register
if(arguments[1] != "V0")
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Invalid register \"" + arguments[1] + "\". Expected V0.");
// Read the next line
continue;
}
unsigned short result = 0x0000;
// Try to convert the third argument into an address
// If that fails, process the third argument as a label reference
if(!strTo12Bit(arguments[2], result))
{
// Create a new label reference
lref myLref = lref(arguments[2], offset);
// Make sure no array overflow will occur
if(num_lrefs >= list_lrefs_size)
{
// Return an error message
eflag = error(i_file, lineNumber, "Assembler error. Label reference array overflow. Maximum number of label references reached.");
// Exit the program
return false;
}
// Add the current label to the list for storage
list_lrefs[num_lrefs] = myLref;
num_lrefs++;
}
// Add corresponding machine code to memory
memory[offset] = 0xB0 + ((result & 0x0F00) >> 8); offset++;
memory[offset] = 0x00 + (result & 0x00FF); offset++;
// Read the next line
continue;
}
// LD VX, BYTE - 6XKK
// LD I, ADDR - ANNN
// LD VX, DT - FX07
// LD VX, K - FX0A
// LD VX, [I] - FX65
// LD VX, VY - 8XY0
// LD DT, VX - FX15
// LD ST, VX - FX18
// LD F, VX - FX29
// LD B, VX - FX33
// LD [I], VX - FX55
if(arguments[0] == "LD")
{
unsigned char byte1 = 0x00;
unsigned char byte2 = 0x00;
// Try to convert the third argument into a register
if(strToRegister(arguments[2], byte2))
{
// Try to convert the second argument into a register
if(strToRegister(arguments[1], byte1))
{
byte1 += 0x80;
// Shift byte 2 left by four bits
byte2 = byte2 << 4;
}
else if(arguments[1] == "DT")
{
byte1 += 0xF0 + byte2;
byte2 = 0x15;
}
else if(arguments[1] == "ST")
{
byte1 += 0xF0 + byte2;
byte2 = 0x18;
}
else if(arguments[1] == "F")
{
byte1 += 0xF0 + byte2;
byte2 = 0x29;
}
else if(arguments[1] == "B")
{
byte1 += 0xF0 + byte2;
byte2 = 0x33;
}
else if(arguments[1] == "[I]")
{
byte1 += 0xF0 + byte2;
byte2 = 0x55;
}
else
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[1] + "\".");
// Read the next line
continue;
}
}
// Try to convert the second argument into a register
else if(strToRegister(arguments[1], byte1))
{
unsigned short result = 0x0000;
// Try to convert the third argument into a byte
if(strToByte(arguments[2], byte2))
{
byte1 += 0x60;
}
else if(arguments[2] == "DT")
{
byte1 += 0xF0;
byte2 = 0x07;
}
else if(arguments[2] == "K")
{
byte1 += 0xF0;
byte2 = 0x0A;
}
else if(arguments[2] == "[I]")
{
byte1 += 0xF0;
byte2 = 0x65;
}
else
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[2] + "\".");
// Read the next line
continue;
}
}
else if(arguments[1] == "I")
{
unsigned short result = 0x0000;
// Try to convert the third argument into an address
// If that fails, process the third argument as a label reference
if(!strTo12Bit(arguments[2], result))
{
// Create a new label reference
lref myLref = lref(arguments[2], offset);
// Make sure no array overflow will occur
if(num_lrefs >= list_lrefs_size)
{
// Return an error message
eflag = error(i_file, lineNumber, "Assembler error. Label reference array overflow. Maximum number of label references reached.");
// Exit the program
return false;
}
// Add the current label to the list for storage
list_lrefs[num_lrefs] = myLref;
num_lrefs++;
}
byte1 = 0xA0 + ((result & 0x0F00) >> 8);
byte2 = 0x00 + (result & 0x00FF);
}
// Unknown command
else
{
eflag = error(i_file, lineNumber, "Syntax error. Unknown command \"" + arguments[0] + " " + arguments[1] + ", " + arguments[2] + "\".");
}
// Add corresponding machine code to memory
memory[offset] = byte1; offset++;
memory[offset] = byte2; offset++;
// Read the next line
continue;
}
// Unknown command
eflag = error(i_file, lineNumber, "Syntax error. Unknown command \"" + arguments[0] + " " + arguments[1] + ", " + arguments[2] + "\".");
// Read the next line
continue;
}
// Process all quadruple argument commands
if(numArgs == 4)
{
// DRW VX, VY, NIBBLE - DXYN
if(arguments[0] == "DRW")
{
unsigned char byte1 = 0x00;
// Try to convert the second argument into a register
if(!strToRegister(arguments[1], byte1))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[1] + "\".");
// Read the next line
continue;
}
unsigned char byte2 = 0x00;
// Try to convert the third argument into a register
if(!strToRegister(arguments[2], byte2))
{
// Unknown register
eflag = error(i_file, lineNumber, "Syntax error. Unknown register \"" + arguments[2] + "\".");
// Read the next line
continue;
}
unsigned char nibble = 0x00;
// Try to convert the third argument into a nibble
if(!strToNibble(arguments[3], nibble))
{
// Invalid argument
eflag = error(i_file, lineNumber, "Syntax error. Invalid argument \"" + arguments[3] + "\". Expected a 4-bit number.");
// Read the next line
continue;
}
// Add corresponding machine code to memory
memory[offset] = 0xD0 + byte1; offset++;
memory[offset] = (byte2 << 4) + nibble; offset++;
// Read the next line
continue;
}
// Unknown command
eflag = error(i_file, lineNumber, "Syntax error. Unknown command \"" + arguments[0] + " " + arguments[1] + ", " + arguments[2] + ", " + arguments[3] + "\".");
// Read the next line
continue;
}
}
}
// ******************************************
// Begin linking label references with labels
// ******************************************
// Loop through the array of label references
for(unsigned char i_lref; i_lref < num_lrefs; i_lref++)
{
// The current label reference
lref current_lref = list_lrefs[i_lref];
// Locate the label being referenced by this label reference
bool found = false;
unsigned char i_label;
for(i_label = 0; i_label < num_labels; i_label++)
{
if(current_lref.getName() == list_labels[i_label].getName())
{
found = true;
break;
}
}
// If it is not found, output an error
if(!found)
{
// Output an error
eflag = error(i_file, 0, "Label error. Label \"" + current_lref.getName() + "\" not found.");
// Exit the program
return false;
}
// The current label
label current_label = list_labels[i_label];
// Jump to the offset address given by the label reference and insert the address designated by the corresponding label
memory[current_lref.getAddress()] += ((current_label.getAddress() + start) & 0x0F00) >> 8;
memory[current_lref.getAddress() + 1] += ((current_label.getAddress() + start) & 0x00FF);
}
// Close the source file
source.close();
// *****************************************
// Output all CHIP-8 code to the output file
// *****************************************
// Has an error occured?
if(!eflag)
{
// Open the output file for writing
ofstream output;
output.open(o_file.c_str(), ofstream::out);
// Check if the output file has not been opened correctly
if(!output.is_open())
{
// Return an error message
error(o_file, 0, "File error. Could not open file \"" + o_file + "\" for output.");
// Exit the program
return false;
}
// Output all the generated machine code to the file
for(unsigned int current_byte = 0; current_byte < offset; current_byte++)
{
output << memory[current_byte];
}
// Close the output file
output.close();
}
// ++++++++++++++++++++++++++++++++++++++++++++
// Enable the following lines of code to output
// all generated machine code to the screen++++
// ++++++++++++++++++++++++++++++++++++++++++++
/*
cout << "###################" << endl;
cout << "Machine Code Output" << endl;
cout << "###################" << endl;
if(offset > 0) {
for(unsigned int z = 0; z < offset - 1; z += 2)
printf ("#%03X \t %02X %02X \n", z + start, memory[z], memory[z+1]);
}
*/
return 0;
}
| [
"mikolaym@yahoo.com"
] | mikolaym@yahoo.com |
6dc91dcf2d3f7e2501bbb214571611deb6656caf | a1e51a598ae468321daf419bdfa3fcd5c2386582 | /sort-algos/src/main.cpp | 4406ed2c589a2a1c415ff81556baec7567a68121 | [] | no_license | nieltg/nieltg-archive | 16d2b8be253b57f0b74ddea09c2a71adef0d45d1 | 8071bd16c16a2b3efc26831d279e43647c9fc24d | refs/heads/master | 2020-05-23T09:10:20.291255 | 2018-03-20T13:36:34 | 2018-03-20T13:36:34 | 80,443,379 | 2 | 1 | null | 2018-03-20T13:36:35 | 2017-01-30T17:11:26 | C | UTF-8 | C++ | false | false | 1,922 | cpp | /*
* Tugas Kecil 2 IF2211 Strategi Algoritma
*/
#include <unistd.h>
#include <algorithm>
#include <iterator>
#include <iostream>
#include <vector>
#include <sort/select.h>
#include <sort/insert.h>
#include <sort/merge.h>
#include <sort/quick.h>
#include <ui/print.h>
template
<typename Sort, typename Compare, typename T>
void unit_test
(std::vector<T> data, Sort sort_func, Compare comp_func)
{
clock_t cl = clock ();
sort_func (data.begin (), data.end (), comp_func);
uint32_t d = (clock () - cl) / (CLOCKS_PER_SEC / 1000);
if (std::is_sorted (data.begin (), data.end (), comp_func))
std::cout << "ok";
else
std::cout << "fail";
std::cout << " in " << d << " ms" << std::endl;
pretty_print (std::cout, data.begin (), data.end ());
}
int main (int argc, char** argv)
{
if (argc != 1)
{
std::cerr << "Usage: " << argv[0] << " < FILE" << std::endl;
return EXIT_FAILURE;
}
// Read
std::cout << "Read: " << std::flush;
std::vector<int_fast32_t> src;
int_fast32_t buf;
while (std::cin >> buf)
src.push_back (buf);
std::cout << src.size () << " data(s)" << std::endl;
// Quick
std::cout << "Quick-sort: " << std::flush;
unit_test
(src, sort_quick<std::vector<int_fast32_t>::iterator,
std::less<int_fast32_t>>, std::less<int_fast32_t> ());
std::cout << std::endl;
// Merge
std::cout << "Merge-sort: " << std::flush;
unit_test
(src, sort_merge<std::vector<int_fast32_t>::iterator,
std::less<int_fast32_t>>, std::less<int_fast32_t> ());
std::cout << std::endl;
// Insert
std::cout << "Insert-sort: " << std::flush;
unit_test
(src, sort_insert<std::vector<int_fast32_t>::iterator,
std::less<int_fast32_t>>, std::less<int_fast32_t> ());
std::cout << std::endl;
// Select
std::cout << "Select-sort: " << std::flush;
unit_test
(src, sort_select<std::vector<int_fast32_t>::iterator,
std::less<int_fast32_t>>, std::less<int_fast32_t> ());
}
| [
"nieltg@users.noreply.github.com"
] | nieltg@users.noreply.github.com |
b992f497f145ae6b42eef8ee4f170469a0490ee8 | 22f3a2adad1b522434cd07cb6ee19e0882c36787 | /_lcsdk/source_Sdk/13LcSmd/MpMp3.cpp | edaa5f8bfc212be736e5c54af83e0c247c0b03f4 | [] | no_license | afew/2008-lc-sdk | 452d7c12a9ccd58fc0ffb2fa45d97f1623914597 | 6b8c0b0bdccadf2a657f03167b95f7dae6a27bc3 | refs/heads/master | 2021-08-19T16:37:19.494023 | 2017-11-26T23:41:49 | 2017-11-26T23:41:49 | 112,125,232 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,285 | cpp | // Implementation of the CMpMp3 class.
//
////////////////////////////////////////////////////////////////////////////////
#if _MSC_VER >= 1200
#pragma warning(disable : 4996)
#endif
#include <windows.h>
#include <dshow.h>
#include <tchar.h>
#include <malloc.h>
#include "ILcSmd.h"
#include "LcSmd.h"
#include "MpUtil.h"
#include "MpMp3.h"
#ifndef SAFE_RELEASE
#define SAFE_RELEASE(p){ if(p){ (p)->Release(); p=NULL; }}
#endif
#define FAIL_RETURN(p){ if( FAILED( (p) )) return -1; }
#define FAIL_RETURNL(p){ if( FAILED( (p) )) return; }
CMpMp3::CMpMp3()
{
m_pGB = NULL;
m_pMC = NULL;
m_pMS = NULL;
m_pSC = NULL;
m_pBA = NULL;
m_dRepeat = 0;
m_dStatus = MEDIA_STATE_STOP;
m_Duration = 0;
m_hWnd = 0;
m_nEventId = (WM_USER+1024);
}
CMpMp3::~CMpMp3()
{
Destroy();
}
void CMpMp3::Destroy()
{
IGraphBuilder* pGB = (IGraphBuilder*)m_pGB ;
IMediaControl* pMC = (IMediaControl*)m_pMC ;
IMediaSeeking* pMS = (IMediaSeeking*)m_pMS ;
IBaseFilter* pSC = (IBaseFilter *)m_pSC ;
IBasicAudio* pBA = (IBasicAudio *)m_pBA ;
IMediaEventEx* pME = (IMediaEventEx*)m_pME ;
Stop();
if (pME)
pME->SetNotifyWindow((OAHWND)NULL, 0, 0);
SAFE_RELEASE( pME );
SAFE_RELEASE( pBA );
SAFE_RELEASE( pSC );
SAFE_RELEASE( pMS );
SAFE_RELEASE( pMC );
SAFE_RELEASE( pGB );
m_pME = NULL;
m_pGB = NULL;
m_pMC = NULL;
m_pMS = NULL;
m_pSC = NULL;
m_pBA = NULL;
}
DWORD CMpMp3::GetType()
{
return LC_SMD_SH_M;
}
void CMpMp3::Play()
{
m_dStatus = MEDIA_STATE_PLAY;
((IMediaControl*)m_pMC)->Run();
}
void CMpMp3::Stop()
{
m_dStatus = MEDIA_STATE_STOP;
((IMediaControl*)m_pMC)->Stop();
Reset();
}
void CMpMp3::Reset()
{
LONGLONG llPos = 0;
((IMediaSeeking*)m_pMS)->SetPositions(&llPos, AM_SEEKING_AbsolutePositioning, &llPos, AM_SEEKING_NoPositioning);
}
void CMpMp3::Pause()
{
m_dStatus = 2;
((IMediaControl*)m_pMC)->Pause();
}
void CMpMp3::SetVolume(LONG dVol)
{
if(dVol<0)
dVol = 0;
if(dVol>MEDIA_MAX_VOLUME)
dVol = MEDIA_MAX_VOLUME;
LONG lVolume = dVol - MEDIA_MAX_VOLUME;
FAIL_RETURNL( ((IBasicAudio*)m_pBA)->put_Volume(lVolume) );
}
LONG CMpMp3::GetVolume()
{
LONG lVolume;
FAIL_RETURN( ((IBasicAudio*)m_pBA)->get_Volume(&lVolume) );
lVolume += MEDIA_MAX_VOLUME;
return lVolume;
}
void CMpMp3::SetRepeat(DWORD dRepeat)
{
m_dRepeat = dRepeat;
}
DWORD CMpMp3::GetStatus()
{
DWORD dStatus=MEDIA_STATE_STOP;
IMediaControl* pMC = (IMediaControl*)m_pMC ;
IMediaSeeking* pMS = (IMediaSeeking*)m_pMS ;
//
// FILTER_STATE fs;
//
// pMC->GetState(0, (OAFilterState *)&fs);
//
// switch(fs)
// {
// case State_Stopped:
// dStatus = MEDIA_STATE_STOP;
// break;
//
// case State_Paused:
// dStatus = MEDIA_STATE_PAUSE;
// break;
//
// case State_Running:
// dStatus = MEDIA_STATE_PLAY;
// break;
// }
LONGLONG pCurrent;
pMS->GetCurrentPosition(&pCurrent);
if(m_Duration==pCurrent)
{
if(0xFFFFFFFF == m_dRepeat && MEDIA_STATE_PLAY ==m_dStatus)
{
Stop();
Reset();
Play();
}
else
{
m_dStatus = MEDIA_STATE_STOP;
}
}
return m_dStatus;
}
INT CMpMp3::Query(char* sCmd, void* pData)
{
if(0==_stricmp("Get Process Event", sCmd))
{
*((INT*)pData) = ProcessEvent();
return 0;
}
else if(0==_stricmp("Get Event ID", sCmd))
{
*((INT*)pData) = m_nEventId;
return 0;
}
return -1;
}
//INT CMpMp3::Create(HWND hWnd, DWORD nEventId, char* sFile)
INT CMpMp3::Create(void* p1, void* p2, void* p3, void* p4)
{
HRESULT hr=-1;
HWND hWnd = (HWND)p1;
DWORD nEventId= *((DWORD*)p2);
char* sFile =(char*)p3;
strcpy(m_sFile, sFile);
FAIL_RETURN(hr = CoCreateInstance(CLSID_FilterGraph, NULL,CLSCTX_INPROC,IID_IGraphBuilder, &m_pGB) ); // Create DirectShow Graph
FAIL_RETURN(hr = ((IGraphBuilder*)m_pGB)->QueryInterface(IID_IMediaControl, &m_pMC) ); // Get the IMediaControl Interface
FAIL_RETURN(hr = ((IGraphBuilder*)m_pGB)->QueryInterface(IID_IMediaSeeking, &m_pMS) ); // Get the IMediaControl Interface
FAIL_RETURN(hr = ((IGraphBuilder*)m_pGB)->QueryInterface(IID_IBasicAudio, &m_pBA) ); // Get the IBasicAudio Interface
FAIL_RETURN(hr = ((IGraphBuilder*)m_pGB)->QueryInterface(IID_IMediaEvent, &m_pME) ); // Get the IMediaEvent Interface
// Create the intial graph
FAIL_RETURN(hr = InitialGraph() );
m_hWnd = hWnd;
m_nEventId = nEventId;
((IMediaEventEx*)m_pME)->SetNotifyWindow((OAHWND)m_hWnd, nEventId, (LONG)this);
return 0;
}
INT CMpMp3::InitialGraph()
{
HRESULT hr = S_OK;
IPin *pPin = NULL;
IBaseFilter* pSN = NULL;
// Can't find the media file
if(0xFFFFFFFF == GetFileAttributes(m_sFile))
return -1;
WCHAR wsFile[MAX_PATH];
MultiByteToWideChar(CP_ACP, 0, m_sFile, -1, wsFile, MAX_PATH); // convert sFile to unicode string
// OPTIMIZATION OPPORTUNITY
// This will open the file, which is expensive. To optimize, this
// should be done earlier, ideally as soon as we knew this was the
// next file to ensure that the file load doesn't add to the
// filter swapping time & cause a hiccup.
//
// Add the new source filter to the graph. (Graph can still be running)
hr = ((IGraphBuilder*)m_pGB)->AddSourceFilter(wsFile, wsFile, (IBaseFilter**)&pSN);
if(FAILED(hr))
return -1;
// Get the first output pin of the new source filter. Audio sources
// typically have only one output pin, so for most audio cases finding
// any output pin is sufficient.
hr = pSN->FindPin(L"Output", &pPin);
if(FAILED(hr))
return -1;
// Stop the graph
hr = ((IMediaControl*)m_pMC)->Stop();
if(FAILED(hr))
return -1;
// Break all connections on the filters. You can do this by adding
// and removing each filter in the graph
{
IEnumFilters *pFilterEnum = NULL;
hr = ((IGraphBuilder*)m_pGB)->EnumFilters(&pFilterEnum);
if(SUCCEEDED(hr))
{
int iFiltCount = 0;
int iPos = 0;
// Need to know how many filters. If we add/remove filters during the
// enumeration we'll invalidate the enumerator
while(S_OK == pFilterEnum->Skip(1))
{
iFiltCount++;
}
// Allocate space, then pull out all of the
IBaseFilter** ppFilters = (IBaseFilter**)(_alloca(sizeof(IBaseFilter*) * iFiltCount));
pFilterEnum->Reset();
while(S_OK == pFilterEnum->Next(1, &(ppFilters[iPos++]), NULL));
SAFE_RELEASE(pFilterEnum);
for(iPos = 0; iPos < iFiltCount; iPos++)
{
((IGraphBuilder*)m_pGB)->RemoveFilter(ppFilters[iPos]);
// Put the filter back, unless it is the old source
if(ppFilters[iPos] != ((IBaseFilter*)m_pSC))
{
((IGraphBuilder*)m_pGB)->AddFilter(ppFilters[iPos], NULL);
}
SAFE_RELEASE(ppFilters[iPos]);
}
}
}
// We have the new output pin. Render it
if(SUCCEEDED(hr))
{
// Release the old source filter, if it exists
IBaseFilter* pSC = (IBaseFilter*)m_pSC;
SAFE_RELEASE( pSC);
hr = ((IGraphBuilder*)m_pGB)->Render(pPin);
m_pSC = pSN;
pSN = NULL;
}
else
{
// In case of errors
SAFE_RELEASE(pSN);
}
SAFE_RELEASE(pPin);
return 0;
}
INT CMpMp3::ProcessEvent()
{
long lEventCode;
long lParam1;
long lParam2;
HRESULT hr=0;
IMediaEventEx* pME = (IMediaEventEx*)m_pME;
IMediaControl* pMC = (IMediaControl*)m_pMC;
IMediaSeeking* pMS = (IMediaSeeking*)m_pMS;
if (!pME)
return 0;
// Check for completion events
while(SUCCEEDED( pME->GetEvent(&lEventCode, (LONG_PTR *) &lParam1, (LONG_PTR *) &lParam2, 0)))
{
// Free any memory associated with this event
hr = pME->FreeEventParams(lEventCode, lParam1, lParam2);
if(EC_PAUSED == lEventCode)
{
return 0;
}
if(EC_CLOCK_CHANGED == lEventCode)
{
return 0;
}
// If we have reached the end of the media file, reset to beginning
if (EC_COMPLETE == lEventCode)
{
if(0xFFFFFFFF == m_dRepeat)
{
LONGLONG llPos = 0;
hr = pMS->SetPositions(&llPos, AM_SEEKING_AbsolutePositioning, NULL, AM_SEEKING_NoPositioning);
if (FAILED(hr))
{
if (FAILED(hr = pMC->Stop()))
break;
if (FAILED(hr = pMC->Run()))
break;
}
}
else
return -1;
}
}
return hr;
}
INT LnDms_CreateMp3FromFile(ILcSmd** ppMp3, HWND hWnd, INT nEvntId, char* sFile)
{
(*ppMp3) = new CMpMp3;
if(FAILED( (*ppMp3)->Create(hWnd, &nEvntId, sFile) ))
{
delete (*ppMp3);
(*ppMp3) = NULL;
return -1;
}
return 0;
}
| [
"afewhee@hotmail.com"
] | afewhee@hotmail.com |
529b8dc9667ea65cbb9219240889337abced15fd | 2860f1f0b66e8d756074cab937af6f447aead826 | /src/server/game/Battlegrounds/Zones/BattlegroundWS.cpp | 963f51cd461129ba7fbf28ca3bdef3592976ba3b | [] | no_license | antiker/StarGateEmu-v5.x.x | 600de5410049202d7d1f8080c666bb8aa0954555 | 96f7b82ef732868667a72b5176066030308990ef | refs/heads/master | 2016-09-06T20:13:59.738875 | 2011-11-16T04:23:55 | 2011-11-16T04:23:55 | 2,772,794 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,361 | cpp | /*
* Copyright (C) 2010-2011 Project StarGate
*/
#include "gamePCH.h"
#include "Battleground.h"
#include "BattlegroundWS.h"
#include "Creature.h"
#include "GameObject.h"
#include "Language.h"
#include "Object.h"
#include "ObjectMgr.h"
#include "BattlegroundMgr.h"
#include "Player.h"
#include "World.h"
#include "WorldPacket.h"
// these variables aren't used outside of this file, so declare them only here
enum BG_WSG_Rewards
{
BG_WSG_WIN = 0,
BG_WSG_FLAG_CAP,
BG_WSG_MAP_COMPLETE,
BG_WSG_REWARD_NUM
};
uint32 BG_WSG_Honor[BG_HONOR_MODE_NUM][BG_WSG_REWARD_NUM] = {
{20, 40, 40}, // normal honor
{60, 40, 80} // holiday
};
uint32 BG_WSG_Reputation[BG_HONOR_MODE_NUM][BG_WSG_REWARD_NUM] = {
{0, 35, 0}, // normal honor
{0, 45, 0} // holiday
};
BattlegroundWS::BattlegroundWS()
{
m_BgObjects.resize(BG_WS_OBJECT_MAX);
m_BgCreatures.resize(BG_CREATURES_MAX_WS);
m_StartMessageIds[BG_STARTING_EVENT_FIRST] = LANG_BG_WS_START_TWO_MINUTES;
m_StartMessageIds[BG_STARTING_EVENT_SECOND] = LANG_BG_WS_START_ONE_MINUTE;
m_StartMessageIds[BG_STARTING_EVENT_THIRD] = LANG_BG_WS_START_HALF_MINUTE;
m_StartMessageIds[BG_STARTING_EVENT_FOURTH] = LANG_BG_WS_HAS_BEGUN;
}
BattlegroundWS::~BattlegroundWS()
{
}
void BattlegroundWS::Update(uint32 diff)
{
Battleground::Update(diff);
if (GetStatus() == STATUS_IN_PROGRESS)
{
if (GetStartTime() >= 25*MINUTE*IN_MILLISECONDS)
{
if (GetTeamScore(ALLIANCE) == 0)
{
if (GetTeamScore(HORDE) == 0) // No one scored - result is tie
EndBattleground(NULL);
else // Horde has more points and thus wins
EndBattleground(HORDE);
}
else if (GetTeamScore(HORDE) == 0)
EndBattleground(ALLIANCE); // Alliance has > 0, Horde has 0, alliance wins
else if (GetTeamScore(HORDE) == GetTeamScore(ALLIANCE)) // Team score equal, winner is team that scored the last flag
EndBattleground(m_LastFlagCaptureTeam);
else if (GetTeamScore(HORDE) > GetTeamScore(ALLIANCE)) // Last but not least, check who has the higher score
EndBattleground(HORDE);
else
EndBattleground(ALLIANCE);
}
else if (GetStartTime() > uint32(m_minutesElapsed * MINUTE * IN_MILLISECONDS))
{
++m_minutesElapsed;
UpdateWorldState(BG_WS_STATE_TIMER, 25 - m_minutesElapsed);
}
if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_WAIT_RESPAWN)
{
m_FlagsTimer[BG_TEAM_ALLIANCE] -= diff;
if (m_FlagsTimer[BG_TEAM_ALLIANCE] < 0)
{
m_FlagsTimer[BG_TEAM_ALLIANCE] = 0;
RespawnFlag(ALLIANCE, true);
}
}
if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_ON_GROUND)
{
m_FlagsDropTimer[BG_TEAM_ALLIANCE] -= diff;
if (m_FlagsDropTimer[BG_TEAM_ALLIANCE] < 0)
{
m_FlagsDropTimer[BG_TEAM_ALLIANCE] = 0;
RespawnFlagAfterDrop(ALLIANCE);
m_BothFlagsKept = false;
}
}
if (m_FlagState[BG_TEAM_HORDE] == BG_WS_FLAG_STATE_WAIT_RESPAWN)
{
m_FlagsTimer[BG_TEAM_HORDE] -= diff;
if (m_FlagsTimer[BG_TEAM_HORDE] < 0)
{
m_FlagsTimer[BG_TEAM_HORDE] = 0;
RespawnFlag(HORDE, true);
}
}
if (m_FlagState[BG_TEAM_HORDE] == BG_WS_FLAG_STATE_ON_GROUND)
{
m_FlagsDropTimer[BG_TEAM_HORDE] -= diff;
if (m_FlagsDropTimer[BG_TEAM_HORDE] < 0)
{
m_FlagsDropTimer[BG_TEAM_HORDE] = 0;
RespawnFlagAfterDrop(HORDE);
m_BothFlagsKept = false;
}
}
if (m_BothFlagsKept)
{
m_FlagSpellForceTimer += diff;
if (m_FlagDebuffState == 0 && m_FlagSpellForceTimer >= 600000) //10 minutes
{
if (Player * plr = sObjectMgr->GetPlayer(m_FlagKeepers[0]))
plr->CastSpell(plr, WS_SPELL_FOCUSED_ASSAULT, true);
if (Player * plr = sObjectMgr->GetPlayer(m_FlagKeepers[1]))
plr->CastSpell(plr, WS_SPELL_FOCUSED_ASSAULT, true);
m_FlagDebuffState = 1;
}
else if (m_FlagDebuffState == 1 && m_FlagSpellForceTimer >= 900000) //15 minutes
{
if (Player * plr = sObjectMgr->GetPlayer(m_FlagKeepers[0]))
{
plr->RemoveAurasDueToSpell(WS_SPELL_FOCUSED_ASSAULT);
plr->CastSpell(plr, WS_SPELL_BRUTAL_ASSAULT, true);
}
if (Player * plr = sObjectMgr->GetPlayer(m_FlagKeepers[1]))
{
plr->RemoveAurasDueToSpell(WS_SPELL_FOCUSED_ASSAULT);
plr->CastSpell(plr, WS_SPELL_BRUTAL_ASSAULT, true);
}
m_FlagDebuffState = 2;
}
}
else
{
m_FlagSpellForceTimer = 0; //reset timer.
m_FlagDebuffState = 0;
}
}
}
void BattlegroundWS::StartingEventCloseDoors()
{
for (uint32 i = BG_WS_OBJECT_DOOR_A_1; i <= BG_WS_OBJECT_DOOR_H_4; ++i)
{
DoorClose(i);
SpawnBGObject(i, RESPAWN_IMMEDIATELY);
}
for (uint32 i = BG_WS_OBJECT_A_FLAG; i <= BG_WS_OBJECT_BERSERKBUFF_2; ++i)
SpawnBGObject(i, RESPAWN_ONE_DAY);
UpdateWorldState(BG_WS_STATE_TIMER_ACTIVE, 1);
UpdateWorldState(BG_WS_STATE_TIMER, 25);
}
void BattlegroundWS::StartingEventOpenDoors()
{
for (uint32 i = BG_WS_OBJECT_DOOR_A_1; i <= BG_WS_OBJECT_DOOR_A_4; ++i)
DoorOpen(i);
for (uint32 i = BG_WS_OBJECT_DOOR_H_1; i <= BG_WS_OBJECT_DOOR_H_2; ++i)
DoorOpen(i);
SpawnBGObject(BG_WS_OBJECT_DOOR_A_5, RESPAWN_ONE_DAY);
SpawnBGObject(BG_WS_OBJECT_DOOR_A_6, RESPAWN_ONE_DAY);
SpawnBGObject(BG_WS_OBJECT_DOOR_H_3, RESPAWN_ONE_DAY);
SpawnBGObject(BG_WS_OBJECT_DOOR_H_4, RESPAWN_ONE_DAY);
for (uint32 i = BG_WS_OBJECT_A_FLAG; i <= BG_WS_OBJECT_BERSERKBUFF_2; ++i)
SpawnBGObject(i, RESPAWN_IMMEDIATELY);
// players joining later are not egible
StartTimedAchievement(ACHIEVEMENT_TIMED_TYPE_EVENT, WS_EVENT_START_BATTLE);
}
void BattlegroundWS::AddPlayer(Player *plr)
{
Battleground::AddPlayer(plr);
//create score and add it to map, default values are set in constructor
BattlegroundWGScore* sc = new BattlegroundWGScore;
m_PlayerScores[plr->GetGUID()] = sc;
}
void BattlegroundWS::RespawnFlag(uint32 Team, bool captured)
{
if (Team == ALLIANCE)
{
sLog->outDebug(LOG_FILTER_BATTLEGROUND, "Respawn Alliance flag");
m_FlagState[BG_TEAM_ALLIANCE] = BG_WS_FLAG_STATE_ON_BASE;
}
else
{
sLog->outDebug(LOG_FILTER_BATTLEGROUND, "Respawn Horde flag");
m_FlagState[BG_TEAM_HORDE] = BG_WS_FLAG_STATE_ON_BASE;
}
if (captured)
{
//when map_update will be allowed for battlegrounds this code will be useless
SpawnBGObject(BG_WS_OBJECT_H_FLAG, RESPAWN_IMMEDIATELY);
SpawnBGObject(BG_WS_OBJECT_A_FLAG, RESPAWN_IMMEDIATELY);
SendMessageToAll(LANG_BG_WS_F_PLACED, CHAT_MSG_BG_SYSTEM_NEUTRAL);
PlaySoundToAll(BG_WS_SOUND_FLAGS_RESPAWNED); // flag respawned sound...
}
m_BothFlagsKept = false;
}
void BattlegroundWS::RespawnFlagAfterDrop(uint32 team)
{
if (GetStatus() != STATUS_IN_PROGRESS)
return;
RespawnFlag(team, false);
if (team == ALLIANCE)
{
SpawnBGObject(BG_WS_OBJECT_A_FLAG, RESPAWN_IMMEDIATELY);
SendMessageToAll(LANG_BG_WS_ALLIANCE_FLAG_RESPAWNED, CHAT_MSG_BG_SYSTEM_NEUTRAL);
}
else
{
SpawnBGObject(BG_WS_OBJECT_H_FLAG, RESPAWN_IMMEDIATELY);
SendMessageToAll(LANG_BG_WS_HORDE_FLAG_RESPAWNED, CHAT_MSG_BG_SYSTEM_NEUTRAL);
}
PlaySoundToAll(BG_WS_SOUND_FLAGS_RESPAWNED);
GameObject *obj = GetBgMap()->GetGameObject(GetDroppedFlagGUID(team));
if (obj)
obj->Delete();
else
sLog->outError("unknown droped flag bg, guid: %u", GUID_LOPART(GetDroppedFlagGUID(team)));
SetDroppedFlagGUID(0, team);
m_BothFlagsKept = false;
}
void BattlegroundWS::EventPlayerCapturedFlag(Player *Source)
{
if (GetStatus() != STATUS_IN_PROGRESS)
return;
uint32 winner = 0;
Source->RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_ENTER_PVP_COMBAT);
if (Source->GetTeam() == ALLIANCE)
{
if (!this->IsHordeFlagPickedup())
return;
SetHordeFlagPicker(0); // must be before aura remove to prevent 2 events (drop+capture) at the same time
// horde flag in base (but not respawned yet)
m_FlagState[BG_TEAM_HORDE] = BG_WS_FLAG_STATE_WAIT_RESPAWN;
// Drop Horde Flag from Player
Source->RemoveAurasDueToSpell(BG_WS_SPELL_WARSONG_FLAG);
if (m_FlagDebuffState == 1)
Source->RemoveAurasDueToSpell(WS_SPELL_FOCUSED_ASSAULT);
if (m_FlagDebuffState == 2)
Source->RemoveAurasDueToSpell(WS_SPELL_BRUTAL_ASSAULT);
if (GetTeamScore(ALLIANCE) < BG_WS_MAX_TEAM_SCORE)
AddPoint(ALLIANCE, 1);
PlaySoundToAll(BG_WS_SOUND_FLAG_CAPTURED_ALLIANCE);
RewardReputationToTeam(890, m_ReputationCapture, ALLIANCE);
}
else
{
if (!this->IsAllianceFlagPickedup())
return;
SetAllianceFlagPicker(0); // must be before aura remove to prevent 2 events (drop+capture) at the same time
// alliance flag in base (but not respawned yet)
m_FlagState[BG_TEAM_ALLIANCE] = BG_WS_FLAG_STATE_WAIT_RESPAWN;
// Drop Alliance Flag from Player
Source->RemoveAurasDueToSpell(BG_WS_SPELL_SILVERWING_FLAG);
if (m_FlagDebuffState == 1)
Source->RemoveAurasDueToSpell(WS_SPELL_FOCUSED_ASSAULT);
if (m_FlagDebuffState == 2)
Source->RemoveAurasDueToSpell(WS_SPELL_BRUTAL_ASSAULT);
if (GetTeamScore(HORDE) < BG_WS_MAX_TEAM_SCORE)
AddPoint(HORDE, 1);
PlaySoundToAll(BG_WS_SOUND_FLAG_CAPTURED_HORDE);
RewardReputationToTeam(889, m_ReputationCapture, HORDE);
}
//for flag capture is reward 2 honorable kills
RewardHonorToTeam(GetBonusHonorFromKill(2), Source->GetTeam());
SpawnBGObject(BG_WS_OBJECT_H_FLAG, BG_WS_FLAG_RESPAWN_TIME);
SpawnBGObject(BG_WS_OBJECT_A_FLAG, BG_WS_FLAG_RESPAWN_TIME);
if (Source->GetTeam() == ALLIANCE)
SendMessageToAll(LANG_BG_WS_CAPTURED_HF, CHAT_MSG_BG_SYSTEM_ALLIANCE, Source);
else
SendMessageToAll(LANG_BG_WS_CAPTURED_AF, CHAT_MSG_BG_SYSTEM_HORDE, Source);
UpdateFlagState(Source->GetTeam(), 1); // flag state none
UpdateTeamScore(Source->GetTeam());
// only flag capture should be updated
UpdatePlayerScore(Source, SCORE_FLAG_CAPTURES, 1); // +1 flag captures
// update last flag capture to be used if teamscore is equal
SetLastFlagCapture(Source->GetTeam());
if (GetTeamScore(ALLIANCE) == BG_WS_MAX_TEAM_SCORE)
winner = ALLIANCE;
if (GetTeamScore(HORDE) == BG_WS_MAX_TEAM_SCORE)
winner = HORDE;
if (winner)
{
UpdateWorldState(BG_WS_FLAG_UNK_ALLIANCE, 0);
UpdateWorldState(BG_WS_FLAG_UNK_HORDE, 0);
UpdateWorldState(BG_WS_FLAG_STATE_ALLIANCE, 1);
UpdateWorldState(BG_WS_FLAG_STATE_HORDE, 1);
UpdateWorldState(BG_WS_STATE_TIMER_ACTIVE, 0);
RewardHonorToTeam(BG_WSG_Honor[m_HonorMode][BG_WSG_WIN], winner);
EndBattleground(winner);
}
else
{
m_FlagsTimer[GetTeamIndexByTeamId(Source->GetTeam()) ? 0 : 1] = BG_WS_FLAG_RESPAWN_TIME;
}
}
void BattlegroundWS::EventPlayerDroppedFlag(Player *Source)
{
if (GetStatus() != STATUS_IN_PROGRESS)
{
// if not running, do not cast things at the dropper player (prevent spawning the "dropped" flag), neither send unnecessary messages
// just take off the aura
if (Source->GetTeam() == ALLIANCE)
{
if (!this->IsHordeFlagPickedup())
return;
if (GetHordeFlagPickerGUID() == Source->GetGUID())
{
SetHordeFlagPicker(0);
Source->RemoveAurasDueToSpell(BG_WS_SPELL_WARSONG_FLAG);
}
}
else
{
if (!this->IsAllianceFlagPickedup())
return;
if (GetAllianceFlagPickerGUID() == Source->GetGUID())
{
SetAllianceFlagPicker(0);
Source->RemoveAurasDueToSpell(BG_WS_SPELL_SILVERWING_FLAG);
}
}
return;
}
bool set = false;
if (Source->GetTeam() == ALLIANCE)
{
if (!IsHordeFlagPickedup())
return;
if (GetHordeFlagPickerGUID() == Source->GetGUID())
{
SetHordeFlagPicker(0);
Source->RemoveAurasDueToSpell(BG_WS_SPELL_WARSONG_FLAG);
if (m_FlagDebuffState == 1)
Source->RemoveAurasDueToSpell(WS_SPELL_FOCUSED_ASSAULT);
if (m_FlagDebuffState == 2)
Source->RemoveAurasDueToSpell(WS_SPELL_BRUTAL_ASSAULT);
m_FlagState[BG_TEAM_HORDE] = BG_WS_FLAG_STATE_ON_GROUND;
Source->CastSpell(Source, BG_WS_SPELL_WARSONG_FLAG_DROPPED, true);
set = true;
}
}
else
{
if (!IsAllianceFlagPickedup())
return;
if (GetAllianceFlagPickerGUID() == Source->GetGUID())
{
SetAllianceFlagPicker(0);
Source->RemoveAurasDueToSpell(BG_WS_SPELL_SILVERWING_FLAG);
if (m_FlagDebuffState == 1)
Source->RemoveAurasDueToSpell(WS_SPELL_FOCUSED_ASSAULT);
if (m_FlagDebuffState == 2)
Source->RemoveAurasDueToSpell(WS_SPELL_BRUTAL_ASSAULT);
m_FlagState[BG_TEAM_ALLIANCE] = BG_WS_FLAG_STATE_ON_GROUND;
Source->CastSpell(Source, BG_WS_SPELL_SILVERWING_FLAG_DROPPED, true);
set = true;
}
}
if (set)
{
Source->CastSpell(Source, SPELL_RECENTLY_DROPPED_FLAG, true);
UpdateFlagState(Source->GetTeam(), 1);
if (Source->GetTeam() == ALLIANCE)
{
SendMessageToAll(LANG_BG_WS_DROPPED_HF, CHAT_MSG_BG_SYSTEM_HORDE, Source);
UpdateWorldState(BG_WS_FLAG_UNK_HORDE, uint32(-1));
}
else
{
SendMessageToAll(LANG_BG_WS_DROPPED_AF, CHAT_MSG_BG_SYSTEM_ALLIANCE, Source);
UpdateWorldState(BG_WS_FLAG_UNK_ALLIANCE, uint32(-1));
}
m_FlagsDropTimer[GetTeamIndexByTeamId(Source->GetTeam()) ? 0 : 1] = BG_WS_FLAG_DROP_TIME;
}
}
void BattlegroundWS::EventPlayerClickedOnFlag(Player *Source, GameObject* target_obj)
{
if (GetStatus() != STATUS_IN_PROGRESS)
return;
int32 message_id = 0;
ChatMsg type = CHAT_MSG_BG_SYSTEM_NEUTRAL;
//alliance flag picked up from base
if (Source->GetTeam() == HORDE && this->GetFlagState(ALLIANCE) == BG_WS_FLAG_STATE_ON_BASE
&& this->m_BgObjects[BG_WS_OBJECT_A_FLAG] == target_obj->GetGUID())
{
message_id = LANG_BG_WS_PICKEDUP_AF;
type = CHAT_MSG_BG_SYSTEM_HORDE;
PlaySoundToAll(BG_WS_SOUND_ALLIANCE_FLAG_PICKED_UP);
SpawnBGObject(BG_WS_OBJECT_A_FLAG, RESPAWN_ONE_DAY);
SetAllianceFlagPicker(Source->GetGUID());
m_FlagState[BG_TEAM_ALLIANCE] = BG_WS_FLAG_STATE_ON_PLAYER;
//update world state to show correct flag carrier
UpdateFlagState(HORDE, BG_WS_FLAG_STATE_ON_PLAYER);
UpdateWorldState(BG_WS_FLAG_UNK_ALLIANCE, 1);
Source->CastSpell(Source, BG_WS_SPELL_SILVERWING_FLAG, true);
Source->GetAchievementMgr().StartTimedAchievement(ACHIEVEMENT_TIMED_TYPE_SPELL_TARGET, BG_WS_SPELL_SILVERWING_FLAG_PICKED);
if (m_FlagState[1] == BG_WS_FLAG_STATE_ON_PLAYER)
m_BothFlagsKept = true;
}
//horde flag picked up from base
if (Source->GetTeam() == ALLIANCE && this->GetFlagState(HORDE) == BG_WS_FLAG_STATE_ON_BASE
&& this->m_BgObjects[BG_WS_OBJECT_H_FLAG] == target_obj->GetGUID())
{
message_id = LANG_BG_WS_PICKEDUP_HF;
type = CHAT_MSG_BG_SYSTEM_ALLIANCE;
PlaySoundToAll(BG_WS_SOUND_HORDE_FLAG_PICKED_UP);
SpawnBGObject(BG_WS_OBJECT_H_FLAG, RESPAWN_ONE_DAY);
SetHordeFlagPicker(Source->GetGUID());
m_FlagState[BG_TEAM_HORDE] = BG_WS_FLAG_STATE_ON_PLAYER;
//update world state to show correct flag carrier
UpdateFlagState(ALLIANCE, BG_WS_FLAG_STATE_ON_PLAYER);
UpdateWorldState(BG_WS_FLAG_UNK_HORDE, 1);
Source->CastSpell(Source, BG_WS_SPELL_WARSONG_FLAG, true);
Source->GetAchievementMgr().StartTimedAchievement(ACHIEVEMENT_TIMED_TYPE_SPELL_TARGET, BG_WS_SPELL_WARSONG_FLAG_PICKED);
if (m_FlagState[0] == BG_WS_FLAG_STATE_ON_PLAYER)
m_BothFlagsKept = true;
}
//Alliance flag on ground(not in base) (returned or picked up again from ground!)
if (GetFlagState(ALLIANCE) == BG_WS_FLAG_STATE_ON_GROUND && Source->IsWithinDistInMap(target_obj, 10))
{
if (Source->GetTeam() == ALLIANCE)
{
message_id = LANG_BG_WS_RETURNED_AF;
type = CHAT_MSG_BG_SYSTEM_ALLIANCE;
UpdateFlagState(HORDE, BG_WS_FLAG_STATE_WAIT_RESPAWN);
RespawnFlag(ALLIANCE, false);
SpawnBGObject(BG_WS_OBJECT_A_FLAG, RESPAWN_IMMEDIATELY);
PlaySoundToAll(BG_WS_SOUND_FLAG_RETURNED);
UpdatePlayerScore(Source, SCORE_FLAG_RETURNS, 1);
m_BothFlagsKept = false;
}
else
{
message_id = LANG_BG_WS_PICKEDUP_AF;
type = CHAT_MSG_BG_SYSTEM_HORDE;
PlaySoundToAll(BG_WS_SOUND_ALLIANCE_FLAG_PICKED_UP);
SpawnBGObject(BG_WS_OBJECT_A_FLAG, RESPAWN_ONE_DAY);
SetAllianceFlagPicker(Source->GetGUID());
Source->CastSpell(Source, BG_WS_SPELL_SILVERWING_FLAG, true);
m_FlagState[BG_TEAM_ALLIANCE] = BG_WS_FLAG_STATE_ON_PLAYER;
UpdateFlagState(HORDE, BG_WS_FLAG_STATE_ON_PLAYER);
if (m_FlagDebuffState == 1)
Source->CastSpell(Source, WS_SPELL_FOCUSED_ASSAULT, true);
if (m_FlagDebuffState == 2)
Source->CastSpell(Source, WS_SPELL_BRUTAL_ASSAULT, true);
UpdateWorldState(BG_WS_FLAG_UNK_ALLIANCE, 1);
}
//called in HandleGameObjectUseOpcode:
//target_obj->Delete();
}
//Horde flag on ground(not in base) (returned or picked up again)
if (GetFlagState(HORDE) == BG_WS_FLAG_STATE_ON_GROUND && Source->IsWithinDistInMap(target_obj, 10))
{
if (Source->GetTeam() == HORDE)
{
message_id = LANG_BG_WS_RETURNED_HF;
type = CHAT_MSG_BG_SYSTEM_HORDE;
UpdateFlagState(ALLIANCE, BG_WS_FLAG_STATE_WAIT_RESPAWN);
RespawnFlag(HORDE, false);
SpawnBGObject(BG_WS_OBJECT_H_FLAG, RESPAWN_IMMEDIATELY);
PlaySoundToAll(BG_WS_SOUND_FLAG_RETURNED);
UpdatePlayerScore(Source, SCORE_FLAG_RETURNS, 1);
m_BothFlagsKept = false;
}
else
{
message_id = LANG_BG_WS_PICKEDUP_HF;
type = CHAT_MSG_BG_SYSTEM_ALLIANCE;
PlaySoundToAll(BG_WS_SOUND_HORDE_FLAG_PICKED_UP);
SpawnBGObject(BG_WS_OBJECT_H_FLAG, RESPAWN_ONE_DAY);
SetHordeFlagPicker(Source->GetGUID());
Source->CastSpell(Source, BG_WS_SPELL_WARSONG_FLAG, true);
m_FlagState[BG_TEAM_HORDE] = BG_WS_FLAG_STATE_ON_PLAYER;
UpdateFlagState(ALLIANCE, BG_WS_FLAG_STATE_ON_PLAYER);
if (m_FlagDebuffState == 1)
Source->CastSpell(Source, WS_SPELL_FOCUSED_ASSAULT, true);
if (m_FlagDebuffState == 2)
Source->CastSpell(Source, WS_SPELL_BRUTAL_ASSAULT, true);
UpdateWorldState(BG_WS_FLAG_UNK_HORDE, 1);
}
//called in HandleGameObjectUseOpcode:
//target_obj->Delete();
}
if (!message_id)
return;
SendMessageToAll(message_id, type, Source);
Source->RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_ENTER_PVP_COMBAT);
}
void BattlegroundWS::RemovePlayer(Player *plr, uint64 guid)
{
// sometimes flag aura not removed :(
if (IsAllianceFlagPickedup() && m_FlagKeepers[BG_TEAM_ALLIANCE] == guid)
{
if (!plr)
{
sLog->outError("BattlegroundWS: Removing offline player who has the FLAG!!");
this->SetAllianceFlagPicker(0);
this->RespawnFlag(ALLIANCE, false);
}
else
this->EventPlayerDroppedFlag(plr);
}
if (IsHordeFlagPickedup() && m_FlagKeepers[BG_TEAM_HORDE] == guid)
{
if (!plr)
{
sLog->outError("BattlegroundWS: Removing offline player who has the FLAG!!");
this->SetHordeFlagPicker(0);
this->RespawnFlag(HORDE, false);
}
else
this->EventPlayerDroppedFlag(plr);
}
}
void BattlegroundWS::UpdateFlagState(uint32 team, uint32 value)
{
if (team == ALLIANCE)
UpdateWorldState(BG_WS_FLAG_STATE_ALLIANCE, value);
else
UpdateWorldState(BG_WS_FLAG_STATE_HORDE, value);
}
void BattlegroundWS::UpdateTeamScore(uint32 team)
{
if (team == ALLIANCE)
UpdateWorldState(BG_WS_FLAG_CAPTURES_ALLIANCE, GetTeamScore(team));
else
UpdateWorldState(BG_WS_FLAG_CAPTURES_HORDE, GetTeamScore(team));
}
void BattlegroundWS::HandleAreaTrigger(Player *Source, uint32 Trigger)
{
// this is wrong way to implement these things. On official it done by gameobject spell cast.
if (GetStatus() != STATUS_IN_PROGRESS)
return;
//uint32 SpellId = 0;
//uint64 buff_guid = 0;
switch(Trigger)
{
case 3686: // Alliance elixir of speed spawn. Trigger not working, because located inside other areatrigger, can be replaced by IsWithinDist(object, dist) in Battleground::Update().
//buff_guid = m_BgObjects[BG_WS_OBJECT_SPEEDBUFF_1];
break;
case 3687: // Horde elixir of speed spawn. Trigger not working, because located inside other areatrigger, can be replaced by IsWithinDist(object, dist) in Battleground::Update().
//buff_guid = m_BgObjects[BG_WS_OBJECT_SPEEDBUFF_2];
break;
case 3706: // Alliance elixir of regeneration spawn
//buff_guid = m_BgObjects[BG_WS_OBJECT_REGENBUFF_1];
break;
case 3708: // Horde elixir of regeneration spawn
//buff_guid = m_BgObjects[BG_WS_OBJECT_REGENBUFF_2];
break;
case 3707: // Alliance elixir of berserk spawn
//buff_guid = m_BgObjects[BG_WS_OBJECT_BERSERKBUFF_1];
break;
case 3709: // Horde elixir of berserk spawn
//buff_guid = m_BgObjects[BG_WS_OBJECT_BERSERKBUFF_2];
break;
case 3646: // Alliance Flag spawn
if (m_FlagState[BG_TEAM_HORDE] && !m_FlagState[BG_TEAM_ALLIANCE])
if (GetHordeFlagPickerGUID() == Source->GetGUID())
EventPlayerCapturedFlag(Source);
break;
case 3647: // Horde Flag spawn
if (m_FlagState[BG_TEAM_ALLIANCE] && !m_FlagState[BG_TEAM_HORDE])
if (GetAllianceFlagPickerGUID() == Source->GetGUID())
EventPlayerCapturedFlag(Source);
break;
case 3649: // unk1
case 3688: // unk2
case 4628: // unk3
case 4629: // unk4
break;
default:
sLog->outError("WARNING: Unhandled AreaTrigger in Battleground: %u", Trigger);
Source->GetSession()->SendAreaTriggerMessage("Warning: Unhandled AreaTrigger in Battleground: %u", Trigger);
break;
}
//if (buff_guid)
// HandleTriggerBuff(buff_guid, Source);
}
bool BattlegroundWS::SetupBattleground()
{
// flags
if (!AddObject(BG_WS_OBJECT_A_FLAG, BG_OBJECT_A_FLAG_WS_ENTRY, 1540.423f, 1481.325f, 351.8284f, 3.089233f, 0, 0, 0.9996573f, 0.02617699f, BG_WS_FLAG_RESPAWN_TIME/1000)
|| !AddObject(BG_WS_OBJECT_H_FLAG, BG_OBJECT_H_FLAG_WS_ENTRY, 916.0226f, 1434.405f, 345.413f, 0.01745329f, 0, 0, 0.008726535f, 0.9999619f, BG_WS_FLAG_RESPAWN_TIME/1000)
// buffs
|| !AddObject(BG_WS_OBJECT_SPEEDBUFF_1, BG_OBJECTID_SPEEDBUFF_ENTRY, 1449.93f, 1470.71f, 342.6346f, -1.64061f, 0, 0, 0.7313537f, -0.6819983f, BUFF_RESPAWN_TIME)
|| !AddObject(BG_WS_OBJECT_SPEEDBUFF_2, BG_OBJECTID_SPEEDBUFF_ENTRY, 1005.171f, 1447.946f, 335.9032f, 1.64061f, 0, 0, 0.7313537f, 0.6819984f, BUFF_RESPAWN_TIME)
|| !AddObject(BG_WS_OBJECT_REGENBUFF_1, BG_OBJECTID_REGENBUFF_ENTRY, 1317.506f, 1550.851f, 313.2344f, -0.2617996f, 0, 0, 0.1305263f, -0.9914448f, BUFF_RESPAWN_TIME)
|| !AddObject(BG_WS_OBJECT_REGENBUFF_2, BG_OBJECTID_REGENBUFF_ENTRY, 1110.451f, 1353.656f, 316.5181f, -0.6806787f, 0, 0, 0.333807f, -0.9426414f, BUFF_RESPAWN_TIME)
|| !AddObject(BG_WS_OBJECT_BERSERKBUFF_1, BG_OBJECTID_BERSERKERBUFF_ENTRY, 1320.09f, 1378.79f, 314.7532f, 1.186824f, 0, 0, 0.5591929f, 0.8290376f, BUFF_RESPAWN_TIME)
|| !AddObject(BG_WS_OBJECT_BERSERKBUFF_2, BG_OBJECTID_BERSERKERBUFF_ENTRY, 1139.688f, 1560.288f, 306.8432f, -2.443461f, 0, 0, 0.9396926f, -0.3420201f, BUFF_RESPAWN_TIME)
// alliance gates
|| !AddObject(BG_WS_OBJECT_DOOR_A_1, BG_OBJECT_DOOR_A_1_WS_ENTRY, 1503.335f, 1493.466f, 352.1888f, 3.115414f, 0, 0, 0.9999143f, 0.01308903f, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_A_2, BG_OBJECT_DOOR_A_2_WS_ENTRY, 1492.478f, 1457.912f, 342.9689f, 3.115414f, 0, 0, 0.9999143f, 0.01308903f, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_A_3, BG_OBJECT_DOOR_A_3_WS_ENTRY, 1468.503f, 1494.357f, 351.8618f, 3.115414f, 0, 0, 0.9999143f, 0.01308903f, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_A_4, BG_OBJECT_DOOR_A_4_WS_ENTRY, 1471.555f, 1458.778f, 362.6332f, 3.115414f, 0, 0, 0.9999143f, 0.01308903f, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_A_5, BG_OBJECT_DOOR_A_5_WS_ENTRY, 1492.347f, 1458.34f, 342.3712f, -0.03490669f, 0, 0, 0.01745246f, -0.9998477f, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_A_6, BG_OBJECT_DOOR_A_6_WS_ENTRY, 1503.466f, 1493.367f, 351.7352f, -0.03490669f, 0, 0, 0.01745246f, -0.9998477f, RESPAWN_IMMEDIATELY)
// horde gates
|| !AddObject(BG_WS_OBJECT_DOOR_H_1, BG_OBJECT_DOOR_H_1_WS_ENTRY, 949.1663f, 1423.772f, 345.6241f, -0.5756807f, -0.01673368f, -0.004956111f, -0.2839723f, 0.9586737f, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_H_2, BG_OBJECT_DOOR_H_2_WS_ENTRY, 953.0507f, 1459.842f, 340.6526f, -1.99662f, -0.1971825f, 0.1575096f, -0.8239487f, 0.5073641f, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_H_3, BG_OBJECT_DOOR_H_3_WS_ENTRY, 949.9523f, 1422.751f, 344.9273f, 0.0f, 0, 0, 0, 1, RESPAWN_IMMEDIATELY)
|| !AddObject(BG_WS_OBJECT_DOOR_H_4, BG_OBJECT_DOOR_H_4_WS_ENTRY, 950.7952f, 1459.583f, 342.1523f, 0.05235988f, 0, 0, 0.02617695f, 0.9996573f, RESPAWN_IMMEDIATELY)
)
{
sLog->outErrorDb("BatteGroundWS: Failed to spawn some object Battleground not created!");
return false;
}
WorldSafeLocsEntry const *sg = sWorldSafeLocsStore.LookupEntry(WS_GRAVEYARD_MAIN_ALLIANCE);
if (!sg || !AddSpiritGuide(WS_SPIRIT_MAIN_ALLIANCE, sg->x, sg->y, sg->z, 3.124139f, ALLIANCE))
{
sLog->outErrorDb("BatteGroundWS: Failed to spawn Alliance spirit guide! Battleground not created!");
return false;
}
sg = sWorldSafeLocsStore.LookupEntry(WS_GRAVEYARD_MAIN_HORDE);
if (!sg || !AddSpiritGuide(WS_SPIRIT_MAIN_HORDE, sg->x, sg->y, sg->z, 3.193953f, HORDE))
{
sLog->outErrorDb("BatteGroundWS: Failed to spawn Horde spirit guide! Battleground not created!");
return false;
}
sLog->outDebug(LOG_FILTER_BATTLEGROUND, "BatteGroundWS: BG objects and spirit guides spawned");
return true;
}
void BattlegroundWS::Reset()
{
//call parent's class reset
Battleground::Reset();
m_FlagKeepers[BG_TEAM_ALLIANCE] = 0;
m_FlagKeepers[BG_TEAM_HORDE] = 0;
m_DroppedFlagGUID[BG_TEAM_ALLIANCE] = 0;
m_DroppedFlagGUID[BG_TEAM_HORDE] = 0;
m_FlagState[BG_TEAM_ALLIANCE] = BG_WS_FLAG_STATE_ON_BASE;
m_FlagState[BG_TEAM_HORDE] = BG_WS_FLAG_STATE_ON_BASE;
m_TeamScores[BG_TEAM_ALLIANCE] = 0;
m_TeamScores[BG_TEAM_HORDE] = 0;
bool isBGWeekend = sBattlegroundMgr->IsBGWeekend(GetTypeID());
m_ReputationCapture = (isBGWeekend) ? 45 : 35;
m_HonorWinKills = (isBGWeekend) ? 3 : 1;
m_HonorEndKills = (isBGWeekend) ? 4 : 2;
// For WorldState
m_minutesElapsed = 0;
m_LastFlagCaptureTeam = 0;
/* Spirit nodes is static at this BG and then not required deleting at BG reset.
if (m_BgCreatures[WS_SPIRIT_MAIN_ALLIANCE])
DelCreature(WS_SPIRIT_MAIN_ALLIANCE);
if (m_BgCreatures[WS_SPIRIT_MAIN_HORDE])
DelCreature(WS_SPIRIT_MAIN_HORDE);
*/
}
void BattlegroundWS::EndBattleground(uint32 winner)
{
//win reward
if (winner == ALLIANCE)
RewardHonorToTeam(GetBonusHonorFromKill(m_HonorWinKills), ALLIANCE);
if (winner == HORDE)
RewardHonorToTeam(GetBonusHonorFromKill(m_HonorWinKills), HORDE);
//complete map_end rewards (even if no team wins)
RewardHonorToTeam(GetBonusHonorFromKill(m_HonorEndKills), ALLIANCE);
RewardHonorToTeam(GetBonusHonorFromKill(m_HonorEndKills), HORDE);
Battleground::EndBattleground(winner);
}
void BattlegroundWS::HandleKillPlayer(Player *player, Player *killer)
{
if (GetStatus() != STATUS_IN_PROGRESS)
return;
EventPlayerDroppedFlag(player);
Battleground::HandleKillPlayer(player, killer);
}
void BattlegroundWS::UpdatePlayerScore(Player *Source, uint32 type, uint32 value, bool doAddHonor)
{
BattlegroundScoreMap::iterator itr = m_PlayerScores.find(Source->GetGUID());
if (itr == m_PlayerScores.end()) // player not found
return;
switch(type)
{
case SCORE_FLAG_CAPTURES: // flags captured
((BattlegroundWGScore*)itr->second)->FlagCaptures += value;
Source->GetAchievementMgr().UpdateAchievementCriteria(ACHIEVEMENT_CRITERIA_TYPE_BG_OBJECTIVE_CAPTURE, WS_OBJECTIVE_CAPTURE_FLAG);
break;
case SCORE_FLAG_RETURNS: // flags returned
((BattlegroundWGScore*)itr->second)->FlagReturns += value;
Source->GetAchievementMgr().UpdateAchievementCriteria(ACHIEVEMENT_CRITERIA_TYPE_BG_OBJECTIVE_CAPTURE, WS_OBJECTIVE_RETURN_FLAG);
break;
default:
Battleground::UpdatePlayerScore(Source, type, value, doAddHonor);
break;
}
}
WorldSafeLocsEntry const* BattlegroundWS::GetClosestGraveYard(Player* player)
{
//if status in progress, it returns main graveyards with spiritguides
//else it will return the graveyard in the flagroom - this is especially good
//if a player dies in preparation phase - then the player can't cheat
//and teleport to the graveyard outside the flagroom
//and start running around, while the doors are still closed
if (player->GetTeam() == ALLIANCE)
{
if (GetStatus() == STATUS_IN_PROGRESS)
return sWorldSafeLocsStore.LookupEntry(WS_GRAVEYARD_MAIN_ALLIANCE);
else
return sWorldSafeLocsStore.LookupEntry(WS_GRAVEYARD_FLAGROOM_ALLIANCE);
}
else
{
if (GetStatus() == STATUS_IN_PROGRESS)
return sWorldSafeLocsStore.LookupEntry(WS_GRAVEYARD_MAIN_HORDE);
else
return sWorldSafeLocsStore.LookupEntry(WS_GRAVEYARD_FLAGROOM_HORDE);
}
}
void BattlegroundWS::FillInitialWorldStates(WorldPacket& data)
{
data << uint32(BG_WS_FLAG_CAPTURES_ALLIANCE) << uint32(GetTeamScore(ALLIANCE));
data << uint32(BG_WS_FLAG_CAPTURES_HORDE) << uint32(GetTeamScore(HORDE));
if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_ON_GROUND)
data << uint32(BG_WS_FLAG_UNK_ALLIANCE) << uint32(-1);
else if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_ON_PLAYER)
data << uint32(BG_WS_FLAG_UNK_ALLIANCE) << uint32(1);
else
data << uint32(BG_WS_FLAG_UNK_ALLIANCE) << uint32(0);
if (m_FlagState[BG_TEAM_HORDE] == BG_WS_FLAG_STATE_ON_GROUND)
data << uint32(BG_WS_FLAG_UNK_HORDE) << uint32(-1);
else if (m_FlagState[BG_TEAM_HORDE] == BG_WS_FLAG_STATE_ON_PLAYER)
data << uint32(BG_WS_FLAG_UNK_HORDE) << uint32(1);
else
data << uint32(BG_WS_FLAG_UNK_HORDE) << uint32(0);
data << uint32(BG_WS_FLAG_CAPTURES_MAX) << uint32(BG_WS_MAX_TEAM_SCORE);
if (GetStatus() == STATUS_IN_PROGRESS)
{
data << uint32(BG_WS_STATE_TIMER_ACTIVE) << uint32(1);
data << uint32(BG_WS_STATE_TIMER) << uint32(25-m_minutesElapsed);
}
else
data << uint32(BG_WS_STATE_TIMER_ACTIVE) << uint32(0);
if (m_FlagState[BG_TEAM_HORDE] == BG_WS_FLAG_STATE_ON_PLAYER)
data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(2);
else
data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(1);
if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_ON_PLAYER)
data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(2);
else
data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(1);
} | [
"krallekalle@web.de"
] | krallekalle@web.de |
6b55527a86219ad6a82339fb89aec9d9bcbd53f2 | c79c3c636b04050ede33f7ff57afd8345922e231 | /addons/troops_charlie_weapons/config.cpp | a71f7bff30fc0c54b2d10d81615f01511b67989b | [] | no_license | 7Cav/7CavAddon | 076fa15d19152f92c0b1bcb516abf9f8ef41a886 | 7e104738f4bced806f65e7c8219dc1f74952559a | refs/heads/main | 2023-08-05T04:42:12.217690 | 2023-08-04T20:12:26 | 2023-08-04T20:12:26 | 174,180,453 | 6 | 7 | null | 2023-08-16T16:09:45 | 2019-03-06T16:27:12 | C++ | UTF-8 | C++ | false | false | 1,132 | cpp | #include "script_component.hpp"
class CfgPatches {
class ADDON {
name = COMPONENT_NAME;
units[] = {
"Cav_B_Bravo_Atlas_base_F",
"Cav_B_B_Atlas_Medic_TeamLeader_F",
"Cav_B_B_Atlas_Medic_CombatMedic_F",
"Cav_B_B_Atlas_Logistics_Officer_F",
"Cav_B_B_Atlas_Logistics_OpsOfficer_F",
"Cav_B_B_Atlas_Logistics_OpsNCO_F",
"Cav_B_B_Atlas_Logistics_TeamLeader_F",
"Cav_B_B_Atlas_Logistics_TeamMember_F",
"Cav_B_B_Atlas_Medic_TeamLeader_3_1_F",
"Cav_B_B_Atlas_Medic_TeamLeader_3_2_F",
"Cav_B_B_Atlas_Logistics_TeamLeader_3_3_F",
"Cav_B_B_Atlas_Logistics_TeamLeader_3_4_F",
"Cav_B_B_Atlas_Logistics_OpsNCO_3_5_F",
"Cav_B_B_Atlas_Logistics_OpsOfficer_3_6_F"
};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {
"cav_main",
"cav_common"
};
author = ECSTRING(Main,ModTeam);
authors[] = {"Brostrom.A (Evul)"};
url = ECSTRING(Main,Url);
VERSION_CONFIG;
};
};
#include "CfgEditorSubcategories.hpp"
#include "CfgVehicles.hpp"
#include "CfgGroups.hpp" | [
"andreas.brostrom.ce@gmail.com"
] | andreas.brostrom.ce@gmail.com |
47574e1132b6dc84ceb8c46d196acd7d20ae2a8a | 56f164a81d6dde5056b2ca3f9a93ccc4050b1483 | /Example/DungeonGeneration/FSM/Units/Build.cpp | 116bb4c2238ad5380b33b900a78afde8b9898246 | [] | no_license | pugakn/AI | 8493d2153a036ac9cc1a23220c4cf976d8b1dd3c | 01f8e12490cc8830f90bffddfc1d9c9f0a6c93e7 | refs/heads/master | 2021-03-16T09:11:55.257081 | 2017-08-16T05:44:12 | 2017-08-16T05:44:12 | 79,006,002 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,271 | cpp | #include "Build.h"
#include "FSM.h"
#include "../../Unit.h"
void CBuild::Update(std::weak_ptr<CGameObject> callerUnit)
{
CUnit * unit = nullptr;
if (callerUnit.lock())
{
unit = dynamic_cast<CUnit*>(callerUnit.lock().get());
}
else
return;
if (unit->HasBuildOrders())
{
if (unit->IsInBuildRange())
{
if (unit->BuildCompleted())
{
//Si la unidad terminó lo que estaba construyendo, busca otra cosa para construír.
unit->SearchBuildingUnit();
return;
}
//Si la unidad está en el rago de construcción, construye lo que tenga primero en su cola de construcción
unit->Build();
return;
}
//Si la unidad no está en el rango de construcción, se mueve
unit->MoveTo(unit->m_target.lock()->m_vPosition);
}
//Si no se cumple ninguna condición anterios, la unidad sólo se mantiene esperando a que le den algo para construír.
unit->SearchBuildingUnit();
}
void CBuild::OnEnter(std::weak_ptr<CGameObject> callerUnit)
{
m_fsm->gm.gmLoadAndExecuteScript("GMScripts/stateBuild.gm");
}
void CBuild::OnExit(std::weak_ptr<CGameObject> callerUnit)
{
//***************************************
// Reset gmMachine
//***************************************
m_fsm->gm.Reset();
}
CBuild::CBuild()
{
}
CBuild::~CBuild()
{
}
| [
"puga_deathnote@hotmail.com"
] | puga_deathnote@hotmail.com |
6dff497e00d473daf83bfa983f235a8bc8b7e1e2 | b5b4d7b9afe4405d7c20c65b22a17a4201aa3765 | /src/Magnum/Vk/Memory.h | 02ce102a5368758c5abd7e2a1cbfe2214bd54312 | [
"MIT"
] | permissive | guangbinl/magnum | bfb8fbd949261092d0f9b3645ed2478a92544e98 | a5d58aaab74f6ecb5d6678055b280b831e045e59 | refs/heads/master | 2023-02-18T02:10:51.396888 | 2021-01-10T11:24:25 | 2021-01-10T11:24:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,439 | h | #ifndef Magnum_Vk_Memory_h
#define Magnum_Vk_Memory_h
/*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
/** @file
* @brief Class @ref Magnum::Vk::MemoryRequirements, @ref Magnum::Vk::MemoryAllocateInfo, @ref Magnum::Vk::Memory, enum @ref Magnum::Vk::MemoryFlag, enum set @ref Magnum::Vk::MemoryFlags
*/
#include <Corrade/Containers/EnumSet.h>
#include "Magnum/Magnum.h"
#include "Magnum/Tags.h"
#include "Magnum/Vk/Vk.h"
#include "Magnum/Vk/Vulkan.h"
#include "Magnum/Vk/visibility.h"
namespace Magnum { namespace Vk {
class MemoryMapDeleter;
/**
@brief Memory type flag
@m_since_latest
Wraps a @type_vk_keyword{MemoryPropertyFlagBits}.
@see @ref MemoryFlags, @ref DeviceProperties::memoryFlags()
@m_enum_values_as_keywords
*/
enum class MemoryFlag: UnsignedInt {
/**
* Device local. Always corresponds to a heap with
* @ref MemoryHeapFlag::DeviceLocal.
*
* @m_class{m-note m-success}
*
* @par
* This memory is the most efficient for device access.
*/
DeviceLocal = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT,
/** Memory that can be mapped for host access */
HostVisible = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT,
/** Memory with coherent access on the host */
HostCoherent = VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
/**
* Memory that is cached on the host. Host memory accesses to uncached
* memory are slower than to cached memory, however uncached memory is
* always @ref MemoryFlag::HostCoherent.
*/
HostCached = VK_MEMORY_PROPERTY_HOST_CACHED_BIT,
/**
* Lazily allocated memory. Allows only device access (i.e., there's no
* memory that has both this and @ref MemoryFlag::HostVisible set).
*
* @m_class{m-note m-success}
*
* @par
* The device is allowed (but not required) to allocate the memory
* as-needed and thus is useful for example for temporary framebuffer
* attachments --- certain tiled architectures might not even need to
* allocate the memory in that case.
*/
LazilyAllocated = VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT,
/** @todo Protected, VK 1.1 */
};
/**
@debugoperatorclassenum{DeviceProperties,MemoryFlag}
@m_since_latest
*/
MAGNUM_VK_EXPORT Debug& operator<<(Debug& debug, MemoryFlag value);
/**
@brief Memory type flags
@m_since_latest
@see @ref DeviceProperties::memoryFlags()
*/
typedef Containers::EnumSet<MemoryFlag> MemoryFlags;
CORRADE_ENUMSET_OPERATORS(MemoryFlags)
/**
@debugoperatorclassenum{DeviceProperties,MemoryFlags}
@m_since_latest
*/
MAGNUM_VK_EXPORT Debug& operator<<(Debug& debug, MemoryFlags value);
/**
@brief Device memory
@m_since_latest
Wraps a @type_vk_keyword{DeviceMemory} and handles its allocation and mapping.
@section Vk-Memory-allocation Memory allocation
By default, the memory will get allocated for you during the creation of
@ref Buffer, @ref Image and other objects. In case you want to handle the
allocation yourself instead (which you indicate by passing the @ref NoAllocate
tag to constructors of these objects), it consists of these steps:
1. Querying memory requirements of a particular object, for example using
@ref Buffer::memoryRequirements() or @ref Image::memoryRequirements()
2. Picking a memory type satisfying requirements of the object it's being
allocated for (such as allowed memory types) and user requirements (whether
it should be device-local, host-mappable etc.) using
@ref DeviceProperties::pickMemory()
3. Allocating a new @ref Memory or taking a (correctly aligned) sub-range of
an existing allocation from given memory type
4. Binding the memory (sub-range) to the object, using
@ref Buffer::bindMemory(), @ref Image::bindMemory() and others
The following example allocates a single block memory for two buffers, one
containing vertex and the other index data:
@snippet MagnumVk.cpp Memory-allocation
@section Vk-Memory-mapping Memory mapping
If the memory is created with the @ref MemoryFlag::HostVisible flag, it can be
mapped on the host via @ref map(). The unmapping is then taken care of by a
custom deleter in the returned @ref Corrade::Containers::Array. It's possible
to map either the whole range or a sub-range, however note that one @ref Memory
object can't be mapped twice at the same time --- in the code snippet above, it
means that in order to upload vertex and index data, there are two options:
- One is to first map the vertex buffer sub-range, upload the data, unmap it,
and then do the same process for the index buffer sub-range. This way is
more encapsulated without having to worry if there's already a mapping and
who owns it, but means more work for the driver.
- Another option is to map the whole memory at once and then upload data of
particular buffers to correct subranges. Here the mapping has to be owned
by some external entity which ensures it's valid for as long as any buffer
wants to map its memory sub-range.
The following example maps the memory allocated above and copies index and
vertex data to it:
@snippet MagnumVk.cpp Memory-mapping
<b></b>
@m_class{m-note m-success}
@par Map temporarily or forever?
Mapping smaller ranges and unmapping again after makes sense on 32-bit
systems where the amount of virtual memory is limited --- otherwise it may
happen that the system won't be able to find a sufficiently large block of
virtual memory, causing the next mapping to fail. On 64-bit systems the
virtual address space is sufficiently large for most use cases and it's
common to just map the whole memory block for its whole lifetime.
*/
class MAGNUM_VK_EXPORT Memory {
public:
/**
* @brief Wrap existing Vulkan handle
* @param device Vulkan device the memory is allocated on
* @param handle The @type_vk{DeviceMemory} handle
* @param size Memory size
* @param flags Handle flags
*
* The @p handle is expected to be originating from @p device. The
* @p size parameter will be used to properly size the output array
* coming from @ref map(). If a concrete @p size is unknown, use a
* zero --- you will then be able to only use the @ref map(UnsignedLong, UnsignedLong)
* overload.
*
* Unlike a memory allocated using a constructor, the Vulkan memory is
* by default not freed on destruction, use @p flags for different
* behavior.
* @see @ref release()
*/
static Memory wrap(Device& device, VkDeviceMemory handle, UnsignedLong size, HandleFlags flags = {});
/**
* @brief Constructor
* @param device Vulkan device to allocate the memory on
* @param info Memory allocation info
*
* @see @fn_vk_keyword{AllocateMemory}
*/
explicit Memory(Device& device, const MemoryAllocateInfo& info);
/**
* @brief Construct without allocating the memory
*
* The constructed instance is equivalent to moved-from state. Useful
* in cases where you will overwrite the instance later anyway. Move
* another object over it to make it useful.
*/
explicit Memory(NoCreateT);
/** @brief Copying is not allowed */
Memory(const Memory&) = delete;
/** @brief Move constructor */
Memory(Memory&& other) noexcept;
/**
* @brief Destructor
*
* Frees associated @type_vk{DeviceMemory} handle, unless the instance
* was created using @ref wrap() without @ref HandleFlag::DestroyOnDestruction
* specified.
* @see @fn_vk_keyword{FreeMemory}, @ref release()
*/
~Memory();
/** @brief Copying is not allowed */
Memory& operator=(const Memory&) = delete;
/** @brief Move assignment */
Memory& operator=(Memory&& other) noexcept;
/** @brief Underlying @type_vk{DeviceMemory} handle */
VkDeviceMemory handle() { return _handle; }
/** @overload */
operator VkDeviceMemory() { return _handle; }
/** @brief Handle flags */
HandleFlags handleFlags() const { return _flags; }
/** @brief Memory allocation size */
UnsignedLong size() const { return _size; }
/**
* @brief Map a memory range
* @param offset Byte offset
* @param size Memory size
*
* The returned array size is @p size and the deleter performs an
* unmap. For this operation to work, the memory has to be allocated
* with @ref MemoryFlag::HostVisible and the @p offset and @p size be
* in bounds for @ref size().
* @see @fn_vk_keyword{MapMemory}, @fn_vk{UnmapMemory}
*/
Containers::Array<char, MemoryMapDeleter> map(UnsignedLong offset, UnsignedLong size);
/**
* @brief Map the whole memory
*
* Equivalent to calling @ref map(UnsignedLong, UnsignedLong) with
* @cpp 0 @ce and @ref size().
*/
Containers::Array<char, MemoryMapDeleter> map();
/**
* @brief Map a memory range read-only
*
* Like @ref map(UnsignedLong, UnsignedLong) but returning a
* @cpp const @ce array. Currently Vulkan doesn't have any flags to
* control read/write access, so apart from a different return type the
* behavior is equivalent.
*/
Containers::Array<const char, MemoryMapDeleter> mapRead(UnsignedLong offset, UnsignedLong size);
/**
* @brief Map the whole memory read-only
*
* Equivalent to calling @ref mapRead(UnsignedLong, UnsignedLong) with
* @cpp 0 @ce and @ref size().
*/
Containers::Array<const char, MemoryMapDeleter> mapRead();
/**
* @brief Release the underlying Vulkan memory
*
* Releases ownership of the Vulkan memory and returns its handle so
* @fn_vk{FreeMemory} is not called on destruction. The internal state
* is then equivalent to moved-from state.
* @see @ref wrap()
*/
VkDeviceMemory release();
private:
/* Can't be a reference because of the NoCreate constructor */
Device* _device;
VkDeviceMemory _handle;
HandleFlags _flags;
UnsignedLong _size;
};
/** @relates Memory
@brief Deleter for mapped memory
@m_since_latest
Deleter for the array returned from @ref Memory::map(). Calls
@fn_vk_keyword{UnmapMemory}.
*/
class MAGNUM_VK_EXPORT MemoryMapDeleter {
#ifndef DOXYGEN_GENERATING_OUTPUT
public:
explicit MemoryMapDeleter(): _unmap{}, _device{}, _memory{} {}
explicit MemoryMapDeleter(void(*unmap)(VkDevice, VkDeviceMemory), VkDevice device, VkDeviceMemory memory): _unmap{unmap}, _device{device}, _memory{memory} {}
void operator()(const char*, std::size_t) {
if(_unmap) _unmap(_device, _memory);
}
private:
void(*_unmap)(VkDevice, VkDeviceMemory);
VkDevice _device;
VkDeviceMemory _memory;
#endif
};
}}
#endif
| [
"mosra@centrum.cz"
] | mosra@centrum.cz |
7686b1b8199c79282d4757c6e99bef34a82ec0fa | c0ab5bb8bc85d3cef6704a1906f75973545b19e2 | /tasks/Task.hpp | 922d12254f58505b5cab3a884b199b804ba77067 | [] | no_license | auv-avalon/orogen-battery_watcher | 91872aee962449de5b06867cddf0aaa063b9f49c | a1014c7e5696b936411483f41ed2fb28e940d28e | refs/heads/master | 2021-01-13T02:02:10.427210 | 2014-09-14T12:48:35 | 2014-09-14T12:48:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,523 | hpp | /* Generated from orogen/lib/orogen/templates/tasks/Task.hpp */
#ifndef BATTERY_WATCHER_TASK_TASK_HPP
#define BATTERY_WATCHER_TASK_TASK_HPP
#include "battery_watcher/TaskBase.hpp"
namespace battery_watcher {
/*! \class Task
* \brief The task context provides and requires services. It uses an ExecutionEngine to perform its functions.
* Essential interfaces are operations, data flow ports and properties. These interfaces have been defined using the oroGen specification.
* In order to modify the interfaces you should (re)use oroGen and rely on the associated workflow.
*
* \details
* The name of a TaskContext is primarily defined via:
\verbatim
deployment 'deployment_name'
task('custom_task_name','battery_watcher::Task')
end
\endverbatim
* It can be dynamically adapted when the deployment is called with a prefix argument.
*/
class Task : public TaskBase
{
friend class TaskBase;
protected:
uint8_t buffer[500];
uint8_t read_pointer;
public:
/** TaskContext constructor for Task
* \param name Name of the task. This name needs to be unique to make it identifiable via nameservices.
* \param initial_state The initial TaskState of the TaskContext. Default is Stopped state.
*/
Task(std::string const& name = "battery_watcher::Task", TaskCore::TaskState initial_state = Stopped);
/** TaskContext constructor for Task
* \param name Name of the task. This name needs to be unique to make it identifiable for nameservices.
* \param engine The RTT Execution engine to be used for this task, which serialises the execution of all commands, programs, state machines and incoming events for a task.
* \param initial_state The initial TaskState of the TaskContext. Default is Stopped state.
*/
Task(std::string const& name, RTT::ExecutionEngine* engine, TaskCore::TaskState initial_state = Stopped);
/** Default deconstructor of Task
*/
~Task();
/** This hook is called by Orocos when the state machine transitions
* from PreOperational to Stopped. If it returns false, then the
* component will stay in PreOperational. Otherwise, it goes into
* Stopped.
*
* It is meaningful only if the #needs_configuration has been specified
* in the task context definition with (for example):
\verbatim
task_context "TaskName" do
needs_configuration
...
end
\endverbatim
*/
bool configureHook();
/** This hook is called by Orocos when the state machine transitions
* from Stopped to Running. If it returns false, then the component will
* stay in Stopped. Otherwise, it goes into Running and updateHook()
* will be called.
*/
bool startHook();
/** This hook is called by Orocos when the component is in the Running
* state, at each activity step. Here, the activity gives the "ticks"
* when the hook should be called.
*
* The error(), exception() and fatal() calls, when called in this hook,
* allow to get into the associated RunTimeError, Exception and
* FatalError states.
*
* In the first case, updateHook() is still called, and recover() allows
* you to go back into the Running state. In the second case, the
* errorHook() will be called instead of updateHook(). In Exception, the
* component is stopped and recover() needs to be called before starting
* it again. Finally, FatalError cannot be recovered.
*/
void updateHook();
/** This hook is called by Orocos when the component is in the
* RunTimeError state, at each activity step. See the discussion in
* updateHook() about triggering options.
*
* Call recover() to go back in the Runtime state.
*/
void errorHook();
/** This hook is called by Orocos when the state machine transitions
* from Running to Stopped after stop() has been called.
*/
void stopHook();
/** This hook is called by Orocos when the state machine transitions
* from Stopped to PreOperational, requiring the call to configureHook()
* before calling start() again.
*/
void cleanupHook();
};
}
#endif
| [
"avalon@dfki.de"
] | avalon@dfki.de |
d15bd4976b9dd128810046c90764a19f453f984f | 8b93d7409ff611ff9c24d2a1c8e783d92b00ed36 | /Fade/FadeOut.h | 8dc542850c1cc139dcdf514de5faf9518f6456fc | [] | no_license | masashi37/Cinder | d3d620c788738896a57dcb781186716a6fa3f4c0 | 9ede0dd6e34ee9bf8a441d2bcd2f9f70bd3b710e | refs/heads/master | 2021-01-13T01:13:53.392520 | 2015-11-17T09:57:45 | 2015-11-17T09:57:45 | 34,516,291 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052 | h |
#pragma once
#include "FadeBase.h"
class FadeOut :public FadeBase {
private:
std::function<void()>fade;
void fullScreenFade(
int endTime = 2,
Color color = Color::black(),
bool isUseEasing = false);
void circleScalingFade(
int endTime = 2,
Color color = Color::black(),
bool isUseEasing = false);
void veilDownFade(
int endTime = 2,
Color color = Color::black(),
bool isUseEasing = false);
void fromLeftCurtainFade(
int endTime = 2,
Color color = Color::black(),
bool isUseEasing = false);
void fromRightCurtainFade(
int endTime = 2,
Color color = Color::black(),
bool isUseEasing = false);
void centerCurtainFade(
int endTime = 2,
Color color = Color::black(),
bool isUseEasing = false);
void pinHoleFade(
int endTime = 2, float space = 0.0f, const int slices = 12,
Color color = Color::black(), bool isUseEasing = false);
public:
FadeOut();
void setType(
FadeType,
int time = 2,
Color color = Color::black(),
bool isUseEasing = false
);
bool getIsEnd();
void draw();
}; | [
"mssksk837@gmail.com"
] | mssksk837@gmail.com |
2ae83537354fe1fe5d45e021f702de5e9a079eb4 | 8abf631d22e4063333c399e53c70e4a6a42f73ab | /9.1.cpp | fe41610f416e9c9589d8220069a7525e8261b2b0 | [] | no_license | marrgrate/lab9_STL | beeb4f7ea3a373472d8a89e98db7c98f87e0b1c0 | fb793096036a265469a0710bd32a8769217095bf | refs/heads/master | 2022-08-01T19:30:35.990843 | 2020-05-27T17:10:38 | 2020-05-27T17:10:38 | null | 0 | 0 | null | null | null | null | MacCyrillic | C++ | false | false | 1,043 | cpp | #include "9.1_func.h"
//Vectors
//1. –еализовать задание 7.1, использу€ объ€вление и методы соответствующего параметризированного класса vector из стандартной библиотеки шаблонов STL.
//2. –еализовать задание 5.3, использу€ объ€вление и методы соответствующего параметризированного класса vector из стандартной библиотеки шаблонов STL.
//3. –еализовать задание 7.2, использу€ объ€вление и методы соответствующего параметризированного класса vector из стандартной библиотеки шаблонов STL.
int main()
{
menu();
int n;
cin >> n;
switch (n)
{
case 1:
{
task7_1();
break;
}
case 2: task5_3(); break;
case 3: task7_2(); break;
}
return 0;
}
| [
"noreply@github.com"
] | marrgrate.noreply@github.com |
9b348d4875f683eadcfea9c3af2426a9c662fde8 | e90937c7f2d7c2a598c9d38cdd1eac7b35f39f1e | /BTreeNode_debug.h | 118014a7f33f2441a6545d68ee1a689424c3f7a1 | [] | no_license | YCT1/Algo1_HWM4 | 3bdda81789d4125e217feedd0cd31f16a9d8ba7a | f89a682ca3d49854006313096985fb2306cddbd3 | refs/heads/master | 2023-03-02T01:36:05.333972 | 2021-02-09T11:00:59 | 2021-02-09T11:00:59 | 332,501,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,814 | h |
#include <iostream>
using namespace std;
class Node{
private:
char *keys; //The array of keys
int degree; //Minumum degree
bool leaf; // If this is true, this node is leaf and end point,
Node **childs; // Array of pointer to this nodes children
int size; // Size of keys
public:
Node(); //Normal Constructor
Node(int degree, bool isLeaf); //
void insertNonFull(char k);
void splitChild(int i, Node*y);
void traverse();
Node *search(char k);
friend class Tree;
};
Node::Node(int degree, bool isLeaf){
//Getting nececary data
this->degree = degree;
this->leaf = isLeaf;
//Doing nececary memory allocation
keys = new char[2*degree-1];
childs = new Node* [2*degree];
//Number of keys at this point
size = 0;
}
void Node::traverse(){
int i = 0;
for(i = 0; i < size; i++){
if(leaf == false){
childs[i]->traverse();
}
cout << "(" << keys[i] << ")";
}
if(leaf == false){
childs[i]->traverse();
}
}
Node* Node::search(char k){
int i = 0;
while (i < degree && k > keys[i]){
i++;
}
if(keys[i] == k){
return this;
}
if(leaf == true){
return NULL;
}
return childs[i]->search(k);
}
//THIS IS THE ISSUE
void Node::insertNonFull(char k){
// Initialize index as index of rightmost element
int i = size-1;
// If this is a leaf node
if (leaf == true)
{
// The following loop does two things
// a) Finds the location of new key to be inserted
// b) Moves all greater keys to one place ahead
while (i >= 0 && keys[i] > k)
{
keys[i+1] = keys[i];
i--;
}
// Insert the new key at found location
keys[i+1] = k;
size = size+1;
}
else // If this node is not leaf
{
// Find the child which is going to have the new key
while (i >= 0 && keys[i] > k)
i--;
// See if the found child is full
if (childs[i+1]->size == 2*degree-1)
{
// If the child is full, then split it
splitChild(i+1, childs[i+1]);
// After split, the middle key of C[i] goes up and
// C[i] is splitted into two. See which of the two
// is going to have the new key
if (keys[i+1] < k)
i++;
}
childs[i+1]->insertNonFull(k);
}
}
//NOT THIS FUNCTION
void Node::splitChild(int i, Node *y){
// Create a new node which is going to store (t-1) keys
// of y
Node *z = new Node(y->degree, y->leaf);
z->size = degree - 1;
// Copy the last (t-1) keys of y to z
for (int j = 0; j < degree-1; j++)
z->keys[j] = y->keys[j+degree];
// Copy the last t children of y to z
if (y->leaf == false)
{
for (int j = 0; j < degree; j++)
z->childs[j] = y->childs[j+degree];
}
// Reduce the number of keys in y
y->size = degree - 1;
// Since this node is going to have a new child,
// create space of new child
for (int j = size; j >= i+1; j--)
childs[j+1] = childs[j];
// Link the new child to this node
childs[i+1] = z;
// A key of y will move to this node. Find the location of
// new key and move all greater keys one space ahead
for (int j = size-1; j >= i; j--)
keys[j+1] = keys[j];
// Copy the middle key of y to this node
keys[i] = y->keys[degree-1];
// Increment count of keys in this node
size = size + 1;
}
class Tree{
private:
Node *root; //root of node (pointer)
int degree; //Minumum degree
public:
Tree(int degree);
void traverse();
Node* search(char k);
void insert(char k);
};
Tree::Tree(int degree){
root = NULL;
this->degree = degree;
}
//NOT THIS FUNCTION
void Tree::traverse(){
if (root != NULL) root->traverse();
}
//NOT THIS FUNCTION
Node* Tree::search(char k){
return (root == NULL)? NULL : root->search(k);
}
//NOT THIS FUNCTION
void Tree::insert(char k){
// If tree is empty
if (root == NULL)
{
// Allocate memory for root
root = new Node(degree, true);
root->keys[0] = k; // Insert key
root->size = 1; // Update number of keys in root
}
else // If tree is not empty
{
// If root is full, then tree grows in height
if (root->size == 2*degree-1)
{
// Allocate memory for new root
Node *s = new Node(degree, false);
// Make old root as child of new root
s->childs[0] = root;
// Split the old root and move 1 key to the new root
s->splitChild(0, root);
// New root has two children now. Decide which of the
// two children is going to have new key
int i = 0;
if (s->keys[0] < k)
i++;
s->childs[i]->insertNonFull(k);
// Change root
root = s;
}
else // If root is not full, call insertNonFull for root
root->insertNonFull(k);
}
} | [
"yektacan1999@gmail.com"
] | yektacan1999@gmail.com |
9d9946f5789f45f0f16e27e43736343112708d82 | 386fad5de6b1a6a9e5557947bd1aeffda8821656 | /ZeroJudge/D263_SuDoKu.cpp | 413e01ee5011c6155592605398eea1256e964a11 | [] | no_license | xxyyzz/Competitive-Programming_Solutions | 6c1f06232ab63f85d913bdd27a90eff892bfe18d | cca393f4330e784eb0f9edb44df290adc105ce3b | refs/heads/master | 2021-06-02T13:33:48.530485 | 2016-09-25T14:15:37 | 2016-09-25T14:15:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,055 | cpp | #include<iostream>
using namespace std;
bool found;
int a,a2;
int input(){
char c;
while((c=getchar())==' '||c=='\n');
return c-48;
}
int DFS(int x,int y,int su[9][9],bool row[9][10],bool col[9][10],bool box[3][3][10]){
for(int i=x;i<a2;i++)
for(int j=(i==x)?y:0;j<a2;j++)
{
if(su[i][j]==0){
for(int n=1;n<=a2;n++)
if( (!row[i][n]) && (!col[j][n]) && (!box[i/a][j/a][n]) ){
su[i][j]=n;
row[i][n]=col[j][n]=box[i/a][j/a][n]=true;
DFS(i,j,su,row,col,box); if(found)return 0;
su[i][j]=0;
row[i][n]=col[j][n]=box[i/a][j/a][n]=false;
}
return 0;
}
if(i==a2-1&&j==a2-1){
found=true;
for(int i=0;i<a2;i++)
{
for(int j=0;j<a2;j++){putchar(su[i][j]+48);putchar(' ');}
putchar('\n');
}
}
}
return 0;
}
int main(){
int su[9][9];
bool row[9][10],col[9][10],box[3][3][10],valid;
while(scanf("%d",&a)==1)
{
memset(row,0,sizeof(row));
memset(col,0,sizeof(col));
memset(box,0,sizeof(box));
found=false;
valid=true;
a2=a*a;
for(int i=0;i<a2;i++)
for(int j=0;j<a2;j++)
{
su[i][j]=input();
if(su[i][j]!=0)
if(row[i][su[i][j]] || col[j][su[i][j]] || box[i/a][j/a][su[i][j]]) valid=false;
else row[i][su[i][j]]=col[j][su[i][j]]=box[i/a][j/a][su[i][j]]=true;
}
if(valid) DFS(0,0,su,row,col,box);
if(!found) printf("NO SOLUTION\n");
putchar('\n');
}
return 0;
}
| [
"lnishan.cs01@g2.nctu.edu.tw"
] | lnishan.cs01@g2.nctu.edu.tw |
7a2b941710a99f6a2b1b92f66705fb66ed6cb6fe | db165e36c7c74c8c14d23a15145d75af4fe4aa73 | /TestEmulator2.0/App/Il2CppOutputProject/Source/il2cppOutput/Il2CppComCallableWrappers22.cpp | e16ff36e63b8d743bc0b056e7f1f5db7e911b517 | [] | no_license | yichenlilyc/Hololens-Move-test | 8cf5a033bfcf912cc0bc03ce1e3bfd4588955c12 | 8a6256700fe56d6d2393becc3cca13afb55a286c | refs/heads/master | 2022-07-04T10:39:37.369760 | 2020-05-09T16:41:56 | 2020-05-09T16:41:56 | 262,494,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,587,049 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "vm/CachedCCWBase.h"
#include "os/Unity/UnityPlatformConfigure.h"
#include "il2cpp-object-internals.h"
// System.Byte[][]
struct ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.EventSystems.PointerEventData>[]
struct EntryU5BU5D_t62D2B7328E15E3C6CB655E8604803FCCB41B41FE;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>[]
struct EntryU5BU5D_t86F6B82B47AD644B13D4076A45F7A8AA6041714F;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UI.Graphic,System.Int32>[]
struct EntryU5BU5D_t173DB845555E7C128EFB01F86086DE55CC5A69B1;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449;
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF;
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.UI.Graphic,System.Int32>
struct KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860;
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E;
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.UI.Graphic,System.Int32>
struct ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA;
// System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020;
// System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84;
// System.Collections.Generic.Dictionary`2<UnityEngine.UI.Graphic,System.Int32>
struct Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C;
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.UI.IClippable>[]
struct SlotU5BU5D_t78CB84B59870A0DD259F0A73E107A9B68BA53B91;
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.UI.MaskableGraphic>[]
struct SlotU5BU5D_t31DFEA45DB9C8050F3EDA63CCF32210FD5F6392B;
// System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>
struct HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD;
// System.Collections.Generic.HashSet`1<UnityEngine.UI.MaskableGraphic>
struct HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408;
// System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>
struct HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D;
// System.Collections.Generic.IEnumerable`1<UnityEngine.UI.Toggle>
struct IEnumerable_1_tE7C6B5B0A4323F8BFB7C80BD9A6F847E6E956B0C;
// System.Collections.Generic.IEnumerator`1<UnityEngine.UI.Toggle>
struct IEnumerator_1_t3F0A9D14C5F2B74C382179623D3DCBEF3457EBBB;
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.Canvas>
struct IEqualityComparer_1_t66508F4C9681A446FD436A395AC185CCF1ADA466;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UI.Graphic>
struct IEqualityComparer_1_tEDAC76DBD2110AC613FB5818AAF2EA8E25EF6A5C;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UI.IClippable>
struct IEqualityComparer_1_t8D6E4781A0749F5222A509DE8AA83543D6A41A10;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UI.MaskableGraphic>
struct IEqualityComparer_1_t17E437E10340A8DA1B7ABAD3BC820C3E2E9CBB3E;
// System.Collections.Generic.IList`1<System.Collections.Generic.IEnumerable`1<System.Byte>>
struct IList_1_t1F27369A5699E50C2709F59C5160B9C99CC0C1FC;
// System.Collections.Generic.IList`1<System.Collections.Generic.IList`1<System.Byte>>
struct IList_1_tE5EEC382573AE2AD753CB562AEFF9A0EC5272767;
// System.Collections.Generic.IList`1<UnityEngine.CanvasGroup>
struct IList_1_t510300A5BB64D7F5DEF5FF363EA89811513E0609;
// System.Collections.Generic.IList`1<UnityEngine.EventSystems.BaseInputModule>
struct IList_1_tD6C09036F720D7AAF3497120E7E71E7545EEE3CC;
// System.Collections.Generic.IList`1<UnityEngine.EventSystems.BaseRaycaster>
struct IList_1_t466F4C9BFD238401FAD9412E94E87A6725B0995A;
// System.Collections.Generic.IList`1<UnityEngine.EventSystems.EventSystem>
struct IList_1_t263DB559A6B7FF5FD616B5660169547FC1A6B03E;
// System.Collections.Generic.IList`1<UnityEngine.EventSystems.EventTrigger/Entry>
struct IList_1_t20E10963B7CA8358B265F42733978D9FA98A2E3E;
// System.Collections.Generic.IList`1<UnityEngine.EventSystems.IEventSystemHandler>
struct IList_1_t9F1C1B8091120998A43BE0203B851C43056B9684;
// System.Collections.Generic.IList`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>
struct IList_1_tF30FADB51750FC80AEB5238191A5EAC7030AA316;
// System.Collections.Generic.IList`1<UnityEngine.EventSystems.RaycastResult>
struct IList_1_tDB57F7E4C60D68D2C8336EA0C76D4AD4359CD5B3;
// System.Collections.Generic.IList`1<UnityEngine.RectTransform>
struct IList_1_t3575A853EF8A9DAEFC421AB965BF4F5FDE2BE907;
// System.Collections.Generic.IList`1<UnityEngine.Transform>
struct IList_1_t12D495D4AF335010DEC3E91C58474E59EE2E50D8;
// System.Collections.Generic.IList`1<UnityEngine.UI.Graphic>
struct IList_1_t9D5BED19EFC73E5924512467E50C2E439142CE4B;
// System.Collections.Generic.IList`1<UnityEngine.UI.Image>
struct IList_1_t5AD69A5DF9045F2F1BFF7361B2D286E9D4346121;
// System.Collections.Generic.IList`1<UnityEngine.UI.Mask>
struct IList_1_tF18A76A617E42AFCF29719720D7805E85C971C19;
// System.Collections.Generic.IList`1<UnityEngine.UI.Selectable>
struct IList_1_t4751CBBC4F3D1F5D200AA10B7FFA5AC75462C73D;
// System.Collections.Generic.IList`1<UnityEngine.UI.StencilMaterial/MatEntry>
struct IList_1_tC34321E2E37444B276B9111EE98925F41CA33628;
// System.Collections.Generic.IList`1<UnityEngine.UI.Toggle>
struct IList_1_tC512128E70D64472F012EB897CECA4D3E04B460F;
// System.Collections.Generic.List`1<System.Int32>[]
struct List_1U5BU5D_tCC3E77E36AEB05101B85F6A19023078C5A249C32;
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup>
struct List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A;
// System.Collections.Generic.List`1<UnityEngine.Color32>[]
struct List_1U5BU5D_t2093DECE0D0BE0CAEDB3F2DF3E0A3AE6F93BFBA8;
// System.Collections.Generic.List`1<UnityEngine.Component>[]
struct List_1U5BU5D_t4CDC32E48275C3047D2FFB83044FA6BB375BF86A;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>
struct List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>
struct List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>
struct List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>[]
struct List_1U5BU5D_tCE1BFF6B09096CFF15286866B89846313EC77A60;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>
struct List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52;
// System.Collections.Generic.List`1<UnityEngine.RectTransform>
struct List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7;
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91;
// System.Collections.Generic.List`1<UnityEngine.UI.Graphic>
struct List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5;
// System.Collections.Generic.List`1<UnityEngine.UI.Image>
struct List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883;
// System.Collections.Generic.List`1<UnityEngine.UI.Mask>
struct List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE;
// System.Collections.Generic.List`1<UnityEngine.UI.Mask>[]
struct List_1U5BU5D_t5F85F9359FA95649E4397AFD8BAC741FC57C7C9F;
// System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>[]
struct List_1U5BU5D_t80BCD0E768727C3EAC4AE2948854BB21910D6F91;
// System.Collections.Generic.List`1<UnityEngine.UI.Selectable>
struct List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188;
// System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>
struct List_1_t7984FB74D3877329C67F707EE61308104862C691;
// System.Collections.Generic.List`1<UnityEngine.UI.Toggle>
struct List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C;
// System.Collections.Generic.List`1<UnityEngine.UIVertex>[]
struct List_1U5BU5D_t0432B5E70E8775476E254D67A3DC020209B3BF18;
// System.Collections.Generic.List`1<UnityEngine.Vector2>[]
struct List_1U5BU5D_t9460CBE40F1CEBD5F11FF03C2B11626BBDCD2974;
// System.Collections.Generic.List`1<UnityEngine.Vector3>[]
struct List_1U5BU5D_tE1F1F8694E4D63211125074C7FA17245F1CAB0F9;
// System.Collections.Generic.List`1<UnityEngine.Vector4>[]
struct List_1U5BU5D_tF34D195BE3EEED48123575610671E8D6EAD54A5E;
// System.Func`2<UnityEngine.UI.Toggle,System.Boolean>
struct Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.String
struct String_t;
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591;
// UnityEngine.CanvasGroup
struct CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90;
// UnityEngine.CanvasGroup[]
struct CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828;
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939;
// UnityEngine.EventSystems.BaseInputModule[]
struct BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.BaseRaycaster[]
struct BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77;
// UnityEngine.EventSystems.EventSystem[]
struct EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604;
// UnityEngine.EventSystems.EventTrigger/Entry
struct Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E;
// UnityEngine.EventSystems.EventTrigger/Entry[]
struct EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C;
// UnityEngine.EventSystems.IEventSystemHandler
struct IEventSystemHandler_t52B469CDB1B62F8D57357398F8B6A32C8B190F99;
// UnityEngine.EventSystems.IEventSystemHandler[]
struct IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB;
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63;
// UnityEngine.EventSystems.PointerInputModule/ButtonState
struct ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D;
// UnityEngine.EventSystems.PointerInputModule/ButtonState[]
struct ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
// UnityEngine.Font
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20;
// UnityEngine.RectTransform[]
struct RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// UnityEngine.Transform[]
struct TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804;
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>
struct IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A;
// UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenCallback
struct ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0;
// UnityEngine.UI.Graphic
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8;
// UnityEngine.UI.Graphic[]
struct GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB;
// UnityEngine.UI.IClippable
struct IClippable_t52018F1331129B74DEF629B08F6AA340F321B7E1;
// UnityEngine.UI.Image
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E;
// UnityEngine.UI.Image[]
struct ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D;
// UnityEngine.UI.LayoutRebuilder[]
struct LayoutRebuilderU5BU5D_t3592C0F1B7723264D176707978562D68EF597E40;
// UnityEngine.UI.Mask
struct Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB;
// UnityEngine.UI.Mask[]
struct MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35;
// UnityEngine.UI.MaskableGraphic
struct MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
// UnityEngine.UI.Selectable[]
struct SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02;
// UnityEngine.UI.StencilMaterial/MatEntry
struct MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701;
// UnityEngine.UI.StencilMaterial/MatEntry[]
struct MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74;
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030;
// UnityEngine.UI.Toggle
struct Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106;
// UnityEngine.UI.Toggle[]
struct ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52;
// Windows.Foundation.Collections.IIterator`1<UnityEngine.EventSystems.RaycastResult>
struct IIterator_1_tC5AA71FEF8CCDB4BBCC28AE6679556D09DA0AFE3;
// Windows.Foundation.Collections.IIterator`1<UnityEngine.UI.ColorBlock>
struct IIterator_1_t3C2EF3EA64BA5C03964DA6C588CF42A39CA0DB96;
// Windows.Foundation.Collections.IIterator`1<UnityEngine.UI.Navigation>
struct IIterator_1_t454481FA8A636D08801DABECA440879E4AEB8640;
// Windows.Foundation.Collections.IIterator`1<UnityEngine.UI.SpriteState>
struct IIterator_1_t215943AFF5552466FD1CA86B409723669C77BDBA;
struct IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7;
struct IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B;
struct IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E;
struct IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39;
struct IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06;
struct IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616;
struct IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1;
struct IIterator_1_t3557A30DEED19D31BAF82BE4B75C2FFDEC593169;
struct IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0;
struct IIterator_1_t5ED96EAD78CEF2D860EDB4DCF4672C15C13F6B53;
struct IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A;
struct IIterator_1_t778CBEADF41F93C0FF6B5A7DCD14292A25473632;
struct IIterator_1_t7EE0FEB3804E31D53920931A9A141AFCA98AB681;
struct IIterator_1_t95F16BFCADBB4953D81661A10E2B53A54BFE4F98;
struct IIterator_1_tA43F6FC1D4C77D938D70C30796F03C0C9D01652B;
struct IIterator_1_tD592AB51083B29306C691734C2461B468C33DA26;
struct IIterator_1_tEE703948C4CD34070052F9FCB434A5CB3B4685B4;
struct IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC;
struct IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690;
struct IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE;
struct IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5;
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.Byte>>
struct NOVTABLE IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5(IIterator_1_t95F16BFCADBB4953D81661A10E2B53A54BFE4F98** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IEnumerable`1<System.Int32>>
struct NOVTABLE IIterable_1_tFC13C53CBD55D5205C68D5D9CA66510CA602948E : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m08AE3205A8C461CBBFD801DF50F22BB295E6F11E(IIterator_1_t5ED96EAD78CEF2D860EDB4DCF4672C15C13F6B53** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IEnumerable`1<System.Object>>
struct NOVTABLE IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C(IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IList`1<System.Byte>>
struct NOVTABLE IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mB2BE0E035F399B6BE3EDB48CB7A0520839501C4D(IIterator_1_tD592AB51083B29306C691734C2461B468C33DA26** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IList`1<System.Int32>>
struct NOVTABLE IIterable_1_tAC2A768318A3B5843062FBB56DD5E7405E41A302 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m7CA6136A702F60BC9D76703E41DAFEFFB8630CF1(IIterator_1_tA43F6FC1D4C77D938D70C30796F03C0C9D01652B** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IReadOnlyList`1<System.Byte>>
struct NOVTABLE IIterable_1_tBA8A22E629BE6C93E9F2BA908BFEC436CF7B58CF : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mA5DB921C07A848535DEAE091CCB5D5E1BA8FD789(IIterator_1_tEE703948C4CD34070052F9FCB434A5CB3B4685B4** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IReadOnlyList`1<System.Int32>>
struct NOVTABLE IIterable_1_tC72961683153DB1953DB49F4924A4A2961043439 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mEA3E0A2E3EBF3C5119B790F2DB2E361610F5E564(IIterator_1_t3557A30DEED19D31BAF82BE4B75C2FFDEC593169** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IReadOnlyList`1<System.Object>>
struct NOVTABLE IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B(IIterator_1_t778CBEADF41F93C0FF6B5A7DCD14292A25473632** 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.Collections.IList>
struct NOVTABLE IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Int32>
struct NOVTABLE IIterable_1_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m799ACB50542612A789EBE3C45F76D0A2C851D406(IIterator_1_t7EE0FEB3804E31D53920931A9A141AFCA98AB681** 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.IVectorView`1<System.Collections.Generic.IEnumerable`1<System.Byte>>
struct NOVTABLE IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.IList`1<System.Byte>>
struct NOVTABLE IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m0528C2ECDAFAA0F1741464585BAA458A119C293E(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mF8B1A974030E05A284F3D4DE3444F3A240671B96(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m802E9EC2DA99E90552079326850D5CEE0B5ECAF4(IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m65EEA32574A21A87FD098708412643CE5EAB3F30(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.IReadOnlyList`1<System.Byte>>
struct NOVTABLE IVectorView_1_t1FE0CCBA3F787313570478F016C25DC5D6CEED05 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m99E191D4F4F62DCB99BA6721DDB26D65C51B6A99(uint32_t ___index0, IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m658CEE1BA57395844E57C47390B93BE53C3FD28C(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mF0539EB08CF8A796668D80484FB91000B3EF8A79(IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m0434599CBB0A2F8073FFCB73667F8AE6D40D6758(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.IEnumerable>
struct NOVTABLE IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.IList>
struct NOVTABLE IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10(uint32_t ___index0, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B(IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Object>
struct NOVTABLE IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.IEnumerable`1<System.Byte>>
struct NOVTABLE IVector_1_t4D0F82A22A4B9C0C057C51324A6556883EF61EEE : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m808B2BDD3F75F47D67A768AA8EBD10FCB1C7972E(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mC2C0C147139CF745F911FF9464E0165FAA239E81(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m52939A3D1D8B311CA3772B99149FCC224047D3D4(IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m7599D18183DA2CE6C44AB947A86943A52679C413(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mC94A0BACAEEDC6A7CF0D23B1FE6218F0BCBA570E(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m185DC5E9798F31308D9181AB9FC3D8C22A699E9F(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mB632E13363FB6D0B98E9A1BB233C88EE7322B018(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mE759809BB8A97BBE616E4602C7D49F487BC6FBA2(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m2E94BEF47962084EEB989C21E8B6926ACDD45174() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m3B3A1E1E0F5B8B7EC12BBCBD6F151A8619F6CD48() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mF45567133BB96366547EEDABEB4609BF8FF47AB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mD3D09C1456A8D21DC63D9CA2FDD4CA174BCD46CF(uint32_t ___items0ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.IList`1<System.Byte>>
struct NOVTABLE IVector_1_t309AEF845C8CD32F6804A23AF18B95404DAE449D : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mA0D95E4993725090A111B50694A865D3570ADAA0(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mE153CC42F19B88AD5568B2251C4AFC600A431C50(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m1629DBA1AAC15097868A36AF0D0C462E8B1F089F(IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mC156EFF3473C20CCE0B64AF172D3F036031FF749(IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mC6E0456C7D3A7BB89A1B3119C81EF0B4BB65BC6D(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m912CF260CD35D2AE449059FBCFBFC459A6F6009E(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mD3136A234357EE02F4BBFF5CD06E2709B18CFB70(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m1BA86810D590872732FBB3921835A9AEA26EBC07(IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mBB95D0AE64AEAFC7A52C4B302F1D257003E00A31() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m5A6B1D288E70F60D2483B6D1C06515614556EDD2() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mDD6A4C84D2B91DD2B2635283620EC24C99D932C2(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m392513312B5CB28C940C8AEB5D027FDBC9DA17EF(uint32_t ___items0ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items0) = 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.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.EventSystems.PointerEventData>>
struct EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UI.Graphic,System.Int32>>
struct EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.IClippable>>
struct EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.MaskableGraphic>>
struct EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.Text>>
struct EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.IEnumerable`1<System.Byte>>
struct EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.IList`1<System.Byte>>
struct EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.IReadOnlyList`1<System.Byte>>
struct EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>>
struct EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.UI.Graphic,System.Int32>>
struct EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Color32>>
struct EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Component>>
struct EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UI.Mask>>
struct EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>>
struct EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UIVertex>>
struct EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector2>>
struct EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector3>>
struct EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector4>>
struct EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.CanvasGroup>
struct EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.AbstractEventData>
struct EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.BaseEventData>
struct EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.BaseInput>
struct EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.BaseInputModule>
struct EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.EventSystem>
struct EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.EventTrigger_Entry>
struct EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IDeselectHandler>
struct EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IMoveHandler>
struct EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.ISelectHandler>
struct EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.ISubmitHandler>
struct EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.PointerEventData>
struct EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>
struct EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Font>
struct EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.ISerializationCallbackReceiver>
struct EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Graphic>
struct EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.IClippable>
struct EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ILayoutElement>
struct EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.IMaskable>
struct EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.IMaterialModifier>
struct EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Image>
struct EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.InputField_ContentType>
struct EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.LayoutRebuilder>
struct EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Mask>
struct EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.MaskableGraphic>
struct EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Selectable>
struct EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.StencilMaterial_MatEntry>
struct EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Text>
struct EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Toggle>
struct EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449, ___dictionary_0)); }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF, ___dictionary_0)); }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4, ___dictionary_0)); }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<UnityEngine.UI.Graphic,System.Int32>
struct KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5, ___dictionary_0)); }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860, ___dictionary_0)); }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E, ___dictionary_0)); }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D, ___dictionary_0)); }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.UI.Graphic,System.Int32>
struct ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E, ___dictionary_0)); }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA : 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_t62D2B7328E15E3C6CB655E8604803FCCB41B41FE* ___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_t0AC4AF273FA40B66E464652F178D0425D0BA6449 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860 * ___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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___entries_1)); }
inline EntryU5BU5D_t62D2B7328E15E3C6CB655E8604803FCCB41B41FE* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t62D2B7328E15E3C6CB655E8604803FCCB41B41FE** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t62D2B7328E15E3C6CB655E8604803FCCB41B41FE* 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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___keys_7)); }
inline KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449 * 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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ___values_8)); }
inline ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860 * get_values_8() const { return ___values_8; }
inline ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860 * 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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA, ____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<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 : 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_t86F6B82B47AD644B13D4076A45F7A8AA6041714F* ___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_t8AFC9833688182F83B3EF097A9730EAD1F662DFF * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E * ___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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___entries_1)); }
inline EntryU5BU5D_t86F6B82B47AD644B13D4076A45F7A8AA6041714F* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t86F6B82B47AD644B13D4076A45F7A8AA6041714F** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t86F6B82B47AD644B13D4076A45F7A8AA6041714F* 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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___keys_7)); }
inline KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF * 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_tBECC55E999AED970323DE70BFE9C3449EC850020, ___values_8)); }
inline ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E * get_values_8() const { return ___values_8; }
inline ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E * 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_tBECC55E999AED970323DE70BFE9C3449EC850020, ____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<UnityEngine.UI.Graphic,System.Int32>
struct Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C : 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_t173DB845555E7C128EFB01F86086DE55CC5A69B1* ___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_t1E2638A53B1AE96E76FFBED5600576B101DC85A5 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E * ___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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___entries_1)); }
inline EntryU5BU5D_t173DB845555E7C128EFB01F86086DE55CC5A69B1* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t173DB845555E7C128EFB01F86086DE55CC5A69B1** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t173DB845555E7C128EFB01F86086DE55CC5A69B1* 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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___keys_7)); }
inline KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5 * 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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ___values_8)); }
inline ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E * get_values_8() const { return ___values_8; }
inline ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E * 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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C, ____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<UnityEngine.UI.IClippable>
struct HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD : 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_t78CB84B59870A0DD259F0A73E107A9B68BA53B91* ____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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____slots_8)); }
inline SlotU5BU5D_t78CB84B59870A0DD259F0A73E107A9B68BA53B91* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_t78CB84B59870A0DD259F0A73E107A9B68BA53B91** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_t78CB84B59870A0DD259F0A73E107A9B68BA53B91* 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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____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_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD, ____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<UnityEngine.UI.MaskableGraphic>
struct HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408 : 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_t31DFEA45DB9C8050F3EDA63CCF32210FD5F6392B* ____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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____slots_8)); }
inline SlotU5BU5D_t31DFEA45DB9C8050F3EDA63CCF32210FD5F6392B* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_t31DFEA45DB9C8050F3EDA63CCF32210FD5F6392B** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_t31DFEA45DB9C8050F3EDA63CCF32210FD5F6392B* 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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408, ____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.Byte[]>
struct List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* ____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_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____items_1)); }
inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* get__items_1() const { return ____items_1; }
inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* 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_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____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_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____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_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____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_t4AB280456F4DE770AC993DE9A7C8C563A6311531_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_StaticFields, ____emptyArray_5)); }
inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* get__emptyArray_5() const { return ____emptyArray_5; }
inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup>
struct List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828* ____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_tE7746C234F913BA0579DAC892E7288A1C7664A0A, ____items_1)); }
inline CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828* get__items_1() const { return ____items_1; }
inline CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828* 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_tE7746C234F913BA0579DAC892E7288A1C7664A0A, ____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_tE7746C234F913BA0579DAC892E7288A1C7664A0A, ____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_tE7746C234F913BA0579DAC892E7288A1C7664A0A, ____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_tE7746C234F913BA0579DAC892E7288A1C7664A0A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A_StaticFields, ____emptyArray_5)); }
inline CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828* get__emptyArray_5() const { return ____emptyArray_5; }
inline CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(CanvasGroupU5BU5D_t73BDD1D3872C83C1FD6C89B74F1775D7BDEC4828* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* ____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_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26, ____items_1)); }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* get__items_1() const { return ____items_1; }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* 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_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26, ____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_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26, ____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_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26, ____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_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_StaticFields, ____emptyArray_5)); }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* get__emptyArray_5() const { return ____emptyArray_5; }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>
struct List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* ____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_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97, ____items_1)); }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* get__items_1() const { return ____items_1; }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* 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_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97, ____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_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97, ____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_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97, ____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_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_StaticFields, ____emptyArray_5)); }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* get__emptyArray_5() const { return ____emptyArray_5; }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* ____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_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B, ____items_1)); }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* get__items_1() const { return ____items_1; }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* 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_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B, ____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_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B, ____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_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B, ____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_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_StaticFields, ____emptyArray_5)); }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* get__emptyArray_5() const { return ____emptyArray_5; }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry>
struct List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* ____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_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA, ____items_1)); }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* get__items_1() const { return ____items_1; }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* 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_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA, ____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_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA, ____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_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA, ____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_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_StaticFields, ____emptyArray_5)); }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* get__emptyArray_5() const { return ____emptyArray_5; }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>
struct List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* ____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_tF4A102204249A5D86BDDF4956B0F3550E341746F, ____items_1)); }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* get__items_1() const { return ____items_1; }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* 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_tF4A102204249A5D86BDDF4956B0F3550E341746F, ____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_tF4A102204249A5D86BDDF4956B0F3550E341746F, ____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_tF4A102204249A5D86BDDF4956B0F3550E341746F, ____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_tF4A102204249A5D86BDDF4956B0F3550E341746F_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F_StaticFields, ____emptyArray_5)); }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* get__emptyArray_5() const { return ____emptyArray_5; }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* ____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_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA, ____items_1)); }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* get__items_1() const { return ____items_1; }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* 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_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA, ____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_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA, ____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_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA, ____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_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_StaticFields, ____emptyArray_5)); }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* get__emptyArray_5() const { return ____emptyArray_5; }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ____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_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52, ____items_1)); }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* get__items_1() const { return ____items_1; }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* 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_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52, ____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_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52, ____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_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52, ____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_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_StaticFields, ____emptyArray_5)); }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* get__emptyArray_5() const { return ____emptyArray_5; }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.RectTransform>
struct List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41* ____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_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7, ____items_1)); }
inline RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41* get__items_1() const { return ____items_1; }
inline RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41* 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_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7, ____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_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7, ____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_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7, ____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_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_StaticFields, ____emptyArray_5)); }
inline RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41* get__emptyArray_5() const { return ____emptyArray_5; }
inline RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(RectTransformU5BU5D_tCB394094C26CC66A640A1A788BA3E9012CE22C41* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____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_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91, ____items_1)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__items_1() const { return ____items_1; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* 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_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91, ____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_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91, ____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_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91, ____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_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_StaticFields, ____emptyArray_5)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__emptyArray_5() const { return ____emptyArray_5; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.Graphic>
struct List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB* ____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_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5, ____items_1)); }
inline GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB* get__items_1() const { return ____items_1; }
inline GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB* 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_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5, ____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_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5, ____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_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5, ____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_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_StaticFields, ____emptyArray_5)); }
inline GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB* get__emptyArray_5() const { return ____emptyArray_5; }
inline GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(GraphicU5BU5D_t674EC5EB86E1EBF60DB111FAD6D7A94E52C359EB* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.Image>
struct List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D* ____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_tA9C10612DACE8F188F3B35F6173354C7225A0883, ____items_1)); }
inline ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D* get__items_1() const { return ____items_1; }
inline ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D* 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_tA9C10612DACE8F188F3B35F6173354C7225A0883, ____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_tA9C10612DACE8F188F3B35F6173354C7225A0883, ____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_tA9C10612DACE8F188F3B35F6173354C7225A0883, ____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_tA9C10612DACE8F188F3B35F6173354C7225A0883_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883_StaticFields, ____emptyArray_5)); }
inline ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D* get__emptyArray_5() const { return ____emptyArray_5; }
inline ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ImageU5BU5D_t3FC2D3F5D777CA546CA2314E6F5DC78FE8E3A37D* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.Mask>
struct List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35* ____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_t649E4389CFF5A012246C543819F39664C8AEE5FE, ____items_1)); }
inline MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35* get__items_1() const { return ____items_1; }
inline MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35* 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_t649E4389CFF5A012246C543819F39664C8AEE5FE, ____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_t649E4389CFF5A012246C543819F39664C8AEE5FE, ____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_t649E4389CFF5A012246C543819F39664C8AEE5FE, ____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_t649E4389CFF5A012246C543819F39664C8AEE5FE_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE_StaticFields, ____emptyArray_5)); }
inline MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35* get__emptyArray_5() const { return ____emptyArray_5; }
inline MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MaskU5BU5D_tD4ED9D0998BA57E142C0588E1D7348E0915B2F35* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.Selectable>
struct List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* ____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_tB3236831489BBBE7DD2253F1B7C0CB12000AF188, ____items_1)); }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* get__items_1() const { return ____items_1; }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* 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_tB3236831489BBBE7DD2253F1B7C0CB12000AF188, ____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_tB3236831489BBBE7DD2253F1B7C0CB12000AF188, ____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_tB3236831489BBBE7DD2253F1B7C0CB12000AF188, ____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_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_StaticFields, ____emptyArray_5)); }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* get__emptyArray_5() const { return ____emptyArray_5; }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial_MatEntry>
struct List_1_t7984FB74D3877329C67F707EE61308104862C691 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74* ____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_t7984FB74D3877329C67F707EE61308104862C691, ____items_1)); }
inline MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74* get__items_1() const { return ____items_1; }
inline MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74* 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_t7984FB74D3877329C67F707EE61308104862C691, ____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_t7984FB74D3877329C67F707EE61308104862C691, ____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_t7984FB74D3877329C67F707EE61308104862C691, ____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_t7984FB74D3877329C67F707EE61308104862C691_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t7984FB74D3877329C67F707EE61308104862C691_StaticFields, ____emptyArray_5)); }
inline MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74* get__emptyArray_5() const { return ____emptyArray_5; }
inline MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MatEntryU5BU5D_t4085B2C11542CD27E5255255015AB714E4089D74* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.Toggle>
struct List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* ____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_t5603D617415C67B322F898ABF659C3E2C8BD668C, ____items_1)); }
inline ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* get__items_1() const { return ____items_1; }
inline ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* 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_t5603D617415C67B322F898ABF659C3E2C8BD668C, ____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_t5603D617415C67B322F898ABF659C3E2C8BD668C, ____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_t5603D617415C67B322F898ABF659C3E2C8BD668C, ____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_t5603D617415C67B322F898ABF659C3E2C8BD668C_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C_StaticFields, ____emptyArray_5)); }
inline ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* get__emptyArray_5() const { return ____emptyArray_5; }
inline ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<System.Int32>>
struct Stack_1_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_tCC3E77E36AEB05101B85F6A19023078C5A249C32* ____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_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071, ____array_0)); }
inline List_1U5BU5D_tCC3E77E36AEB05101B85F6A19023078C5A249C32* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_tCC3E77E36AEB05101B85F6A19023078C5A249C32** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_tCC3E77E36AEB05101B85F6A19023078C5A249C32* 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_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071, ____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_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071, ____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_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Color32>>
struct Stack_1_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_t2093DECE0D0BE0CAEDB3F2DF3E0A3AE6F93BFBA8* ____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_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452, ____array_0)); }
inline List_1U5BU5D_t2093DECE0D0BE0CAEDB3F2DF3E0A3AE6F93BFBA8* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_t2093DECE0D0BE0CAEDB3F2DF3E0A3AE6F93BFBA8** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_t2093DECE0D0BE0CAEDB3F2DF3E0A3AE6F93BFBA8* 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_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452, ____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_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452, ____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_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Component>>
struct Stack_1_tBABF48E82CDED4B1E341B73C763B5EB4054C2144 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_t4CDC32E48275C3047D2FFB83044FA6BB375BF86A* ____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_tBABF48E82CDED4B1E341B73C763B5EB4054C2144, ____array_0)); }
inline List_1U5BU5D_t4CDC32E48275C3047D2FFB83044FA6BB375BF86A* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_t4CDC32E48275C3047D2FFB83044FA6BB375BF86A** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_t4CDC32E48275C3047D2FFB83044FA6BB375BF86A* 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_tBABF48E82CDED4B1E341B73C763B5EB4054C2144, ____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_tBABF48E82CDED4B1E341B73C763B5EB4054C2144, ____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_tBABF48E82CDED4B1E341B73C763B5EB4054C2144, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct Stack_1_t653D71B3443B2073A16F05650BC52AABB537B890 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_tCE1BFF6B09096CFF15286866B89846313EC77A60* ____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_t653D71B3443B2073A16F05650BC52AABB537B890, ____array_0)); }
inline List_1U5BU5D_tCE1BFF6B09096CFF15286866B89846313EC77A60* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_tCE1BFF6B09096CFF15286866B89846313EC77A60** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_tCE1BFF6B09096CFF15286866B89846313EC77A60* 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_t653D71B3443B2073A16F05650BC52AABB537B890, ____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_t653D71B3443B2073A16F05650BC52AABB537B890, ____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_t653D71B3443B2073A16F05650BC52AABB537B890, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.UI.Mask>>
struct Stack_1_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_t5F85F9359FA95649E4397AFD8BAC741FC57C7C9F* ____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_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5, ____array_0)); }
inline List_1U5BU5D_t5F85F9359FA95649E4397AFD8BAC741FC57C7C9F* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_t5F85F9359FA95649E4397AFD8BAC741FC57C7C9F** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_t5F85F9359FA95649E4397AFD8BAC741FC57C7C9F* 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_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5, ____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_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5, ____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_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>>
struct Stack_1_t8310A2AB58D135C349621D7860661BB695DC647C : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_t80BCD0E768727C3EAC4AE2948854BB21910D6F91* ____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_t8310A2AB58D135C349621D7860661BB695DC647C, ____array_0)); }
inline List_1U5BU5D_t80BCD0E768727C3EAC4AE2948854BB21910D6F91* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_t80BCD0E768727C3EAC4AE2948854BB21910D6F91** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_t80BCD0E768727C3EAC4AE2948854BB21910D6F91* 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_t8310A2AB58D135C349621D7860661BB695DC647C, ____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_t8310A2AB58D135C349621D7860661BB695DC647C, ____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_t8310A2AB58D135C349621D7860661BB695DC647C, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.UIVertex>>
struct Stack_1_tDDB642ED18C289FF860C44FD24B801BAC507139A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_t0432B5E70E8775476E254D67A3DC020209B3BF18* ____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_tDDB642ED18C289FF860C44FD24B801BAC507139A, ____array_0)); }
inline List_1U5BU5D_t0432B5E70E8775476E254D67A3DC020209B3BF18* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_t0432B5E70E8775476E254D67A3DC020209B3BF18** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_t0432B5E70E8775476E254D67A3DC020209B3BF18* 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_tDDB642ED18C289FF860C44FD24B801BAC507139A, ____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_tDDB642ED18C289FF860C44FD24B801BAC507139A, ____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_tDDB642ED18C289FF860C44FD24B801BAC507139A, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Vector2>>
struct Stack_1_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_t9460CBE40F1CEBD5F11FF03C2B11626BBDCD2974* ____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_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D, ____array_0)); }
inline List_1U5BU5D_t9460CBE40F1CEBD5F11FF03C2B11626BBDCD2974* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_t9460CBE40F1CEBD5F11FF03C2B11626BBDCD2974** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_t9460CBE40F1CEBD5F11FF03C2B11626BBDCD2974* 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_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D, ____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_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D, ____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_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Vector3>>
struct Stack_1_tB88789DF6FEC373BE3216AC28D17A22FDB65D489 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_tE1F1F8694E4D63211125074C7FA17245F1CAB0F9* ____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_tB88789DF6FEC373BE3216AC28D17A22FDB65D489, ____array_0)); }
inline List_1U5BU5D_tE1F1F8694E4D63211125074C7FA17245F1CAB0F9* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_tE1F1F8694E4D63211125074C7FA17245F1CAB0F9** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_tE1F1F8694E4D63211125074C7FA17245F1CAB0F9* 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_tB88789DF6FEC373BE3216AC28D17A22FDB65D489, ____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_tB88789DF6FEC373BE3216AC28D17A22FDB65D489, ____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_tB88789DF6FEC373BE3216AC28D17A22FDB65D489, ____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.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Vector4>>
struct Stack_1_tCFA2A645438950A02F8F2217C68D78686F8FDABB : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
List_1U5BU5D_tF34D195BE3EEED48123575610671E8D6EAD54A5E* ____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_tCFA2A645438950A02F8F2217C68D78686F8FDABB, ____array_0)); }
inline List_1U5BU5D_tF34D195BE3EEED48123575610671E8D6EAD54A5E* get__array_0() const { return ____array_0; }
inline List_1U5BU5D_tF34D195BE3EEED48123575610671E8D6EAD54A5E** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(List_1U5BU5D_tF34D195BE3EEED48123575610671E8D6EAD54A5E* 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_tCFA2A645438950A02F8F2217C68D78686F8FDABB, ____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_tCFA2A645438950A02F8F2217C68D78686F8FDABB, ____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_tCFA2A645438950A02F8F2217C68D78686F8FDABB, ____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.Generic.Stack`1<UnityEngine.UI.LayoutRebuilder>
struct Stack_1_tCA416EA8711EF496637AF78111D65548F11E2F0A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
LayoutRebuilderU5BU5D_t3592C0F1B7723264D176707978562D68EF597E40* ____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_tCA416EA8711EF496637AF78111D65548F11E2F0A, ____array_0)); }
inline LayoutRebuilderU5BU5D_t3592C0F1B7723264D176707978562D68EF597E40* get__array_0() const { return ____array_0; }
inline LayoutRebuilderU5BU5D_t3592C0F1B7723264D176707978562D68EF597E40** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(LayoutRebuilderU5BU5D_t3592C0F1B7723264D176707978562D68EF597E40* 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_tCA416EA8711EF496637AF78111D65548F11E2F0A, ____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_tCA416EA8711EF496637AF78111D65548F11E2F0A, ____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_tCA416EA8711EF496637AF78111D65548F11E2F0A, ____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.Collections.Generic.IEnumerable`1<System.Byte>>
struct ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20 : 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_t33F316AF04D275E419C316DD2FF4212B4A344A20, ___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_t33F316AF04D275E419C316DD2FF4212B4A344A20, ____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.Collections.Generic.IList`1<System.Byte>>
struct ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA : 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_t6149E434B52B1E31316BCA67C48600D713FD22FA, ___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_t6149E434B52B1E31316BCA67C48600D713FD22FA, ____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.CanvasGroup>
struct ReadOnlyCollection_1_t89E79F5AFC120AF05FFBF5A74851340E11D403CC : 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_t89E79F5AFC120AF05FFBF5A74851340E11D403CC, ___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_t89E79F5AFC120AF05FFBF5A74851340E11D403CC, ____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.EventSystems.BaseInputModule>
struct ReadOnlyCollection_1_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9 : 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_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9, ___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_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9, ____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.EventSystems.BaseRaycaster>
struct ReadOnlyCollection_1_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414 : 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_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414, ___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_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414, ____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.EventSystems.EventSystem>
struct ReadOnlyCollection_1_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F : 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_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F, ___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_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F, ____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.EventSystems.EventTrigger_Entry>
struct ReadOnlyCollection_1_t1387C1B31316DFDB3F120B775897CC1DFE235065 : 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_t1387C1B31316DFDB3F120B775897CC1DFE235065, ___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_t1387C1B31316DFDB3F120B775897CC1DFE235065, ____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.EventSystems.IEventSystemHandler>
struct ReadOnlyCollection_1_t3F9015C9A561B05ECF41E220AC14901423AEE127 : 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_t3F9015C9A561B05ECF41E220AC14901423AEE127, ___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_t3F9015C9A561B05ECF41E220AC14901423AEE127, ____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.EventSystems.PointerInputModule_ButtonState>
struct ReadOnlyCollection_1_tD6702B32E890226E8E1C73B44010C15DA85D9E77 : 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_tD6702B32E890226E8E1C73B44010C15DA85D9E77, ___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_tD6702B32E890226E8E1C73B44010C15DA85D9E77, ____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.EventSystems.RaycastResult>
struct ReadOnlyCollection_1_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF : 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_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF, ___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_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF, ____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.RectTransform>
struct ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479 : 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_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479, ___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_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479, ____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.Transform>
struct ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E : 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_t1F10683A8CA0744AAE3D5C19D031B15102EA513E, ___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_t1F10683A8CA0744AAE3D5C19D031B15102EA513E, ____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.UI.Graphic>
struct ReadOnlyCollection_1_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88 : 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_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88, ___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_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88, ____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.UI.Image>
struct ReadOnlyCollection_1_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C : 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_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C, ___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_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C, ____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.UI.Mask>
struct ReadOnlyCollection_1_t969F4DC776A79087015A918AA6B5BF87CE422757 : 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_t969F4DC776A79087015A918AA6B5BF87CE422757, ___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_t969F4DC776A79087015A918AA6B5BF87CE422757, ____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.UI.Selectable>
struct ReadOnlyCollection_1_t06BC5A889B5F9A249CB942DC8E60E3561D275D67 : 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_t06BC5A889B5F9A249CB942DC8E60E3561D275D67, ___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_t06BC5A889B5F9A249CB942DC8E60E3561D275D67, ____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.UI.StencilMaterial_MatEntry>
struct ReadOnlyCollection_1_tF788B7061E1AE785A991648862886CCA3F911DE1 : 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_tF788B7061E1AE785A991648862886CCA3F911DE1, ___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_tF788B7061E1AE785A991648862886CCA3F911DE1, ____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.UI.Toggle>
struct ReadOnlyCollection_1_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B : 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_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B, ___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_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B, ____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<UnityEngine.UI.Toggle>
struct Iterator_1_tECB00ADF36B615486A1ED6A1CD514997D26972F4 : 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
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * ___current_2;
public:
inline static int32_t get_offset_of_threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_tECB00ADF36B615486A1ED6A1CD514997D26972F4, ___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_tECB00ADF36B615486A1ED6A1CD514997D26972F4, ___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_tECB00ADF36B615486A1ED6A1CD514997D26972F4, ___current_2)); }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * get_current_2() const { return ___current_2; }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 ** get_address_of_current_2() { return &___current_2; }
inline void set_current_2(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * value)
{
___current_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_2), (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
{
};
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>
struct IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<T> UnityEngine.UI.Collections.IndexedSet`1::m_List
List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 * ___m_List_0;
// System.Collections.Generic.Dictionary`2<T,System.Int32> UnityEngine.UI.Collections.IndexedSet`1::m_Dictionary
Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * ___m_Dictionary_1;
public:
inline static int32_t get_offset_of_m_List_0() { return static_cast<int32_t>(offsetof(IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A, ___m_List_0)); }
inline List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 * get_m_List_0() const { return ___m_List_0; }
inline List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 ** get_address_of_m_List_0() { return &___m_List_0; }
inline void set_m_List_0(List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 * value)
{
___m_List_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_List_0), (void*)value);
}
inline static int32_t get_offset_of_m_Dictionary_1() { return static_cast<int32_t>(offsetof(IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A, ___m_Dictionary_1)); }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * get_m_Dictionary_1() const { return ___m_Dictionary_1; }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C ** get_address_of_m_Dictionary_1() { return &___m_Dictionary_1; }
inline void set_m_Dictionary_1(Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * value)
{
___m_Dictionary_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Dictionary_1), (void*)value);
}
};
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.EventSystems.PointerEventData>>
struct InternalEnumerator_1_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0
{
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_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0, ___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_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0, ___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<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct InternalEnumerator_1_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D
{
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_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D, ___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_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D, ___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<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct InternalEnumerator_1_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558
{
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_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558, ___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_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558, ___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<UnityEngine.UI.Graphic,System.Int32>>
struct InternalEnumerator_1_t8A98806825998C6C089074ACB57502D0E8654D06
{
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_t8A98806825998C6C089074ACB57502D0E8654D06, ___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_t8A98806825998C6C089074ACB57502D0E8654D06, ___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<UnityEngine.UI.IClippable>>
struct InternalEnumerator_1_t35744782BC060A3325C1B121A8A0050A680E7060
{
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_t35744782BC060A3325C1B121A8A0050A680E7060, ___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_t35744782BC060A3325C1B121A8A0050A680E7060, ___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<UnityEngine.UI.MaskableGraphic>>
struct InternalEnumerator_1_t726153457F5EFE28D9FE468549829D112BF4AB15
{
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_t726153457F5EFE28D9FE468549829D112BF4AB15, ___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_t726153457F5EFE28D9FE468549829D112BF4AB15, ___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<UnityEngine.UI.Text>>
struct InternalEnumerator_1_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE
{
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_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE, ___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_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE, ___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<UnityEngine.UI.Text>>
struct InternalEnumerator_1_t32F4A5791372D5378325B5D6DED5944D39266102
{
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_t32F4A5791372D5378325B5D6DED5944D39266102, ___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_t32F4A5791372D5378325B5D6DED5944D39266102, ___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.IEnumerable`1<System.Byte>>
struct InternalEnumerator_1_t0F51C4E0D90D0813629E0588F49C87E51799C7CF
{
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_t0F51C4E0D90D0813629E0588F49C87E51799C7CF, ___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_t0F51C4E0D90D0813629E0588F49C87E51799C7CF, ___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.IList`1<System.Byte>>
struct InternalEnumerator_1_t14CC84A9263CA26873ADBF461222334ADA466501
{
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_t14CC84A9263CA26873ADBF461222334ADA466501, ___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_t14CC84A9263CA26873ADBF461222334ADA466501, ___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,UnityEngine.EventSystems.PointerEventData>>
struct InternalEnumerator_1_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39
{
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_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39, ___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_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39, ___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<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct InternalEnumerator_1_t15CEEDC76B17E3A265020E0AC000CA65938B5F61
{
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_t15CEEDC76B17E3A265020E0AC000CA65938B5F61, ___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_t15CEEDC76B17E3A265020E0AC000CA65938B5F61, ___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<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct InternalEnumerator_1_t749523A23646B5974DD8110CB947E535F80042E2
{
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_t749523A23646B5974DD8110CB947E535F80042E2, ___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_t749523A23646B5974DD8110CB947E535F80042E2, ___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<UnityEngine.UI.Graphic,System.Int32>>
struct InternalEnumerator_1_t38A78A3AF00B981B1236B6E9D296DA768A94F704
{
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_t38A78A3AF00B981B1236B6E9D296DA768A94F704, ___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_t38A78A3AF00B981B1236B6E9D296DA768A94F704, ___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.List`1<UnityEngine.Color32>>
struct InternalEnumerator_1_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D
{
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_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D, ___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_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D, ___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.List`1<UnityEngine.Component>>
struct InternalEnumerator_1_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446
{
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_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446, ___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_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446, ___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.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct InternalEnumerator_1_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7
{
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_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7, ___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_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7, ___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.List`1<UnityEngine.UI.Mask>>
struct InternalEnumerator_1_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6
{
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_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6, ___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_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6, ___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.List`1<UnityEngine.UI.RectMask2D>>
struct InternalEnumerator_1_t8C10FAD14C929D7EA522A4AE246337597EACEB75
{
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_t8C10FAD14C929D7EA522A4AE246337597EACEB75, ___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_t8C10FAD14C929D7EA522A4AE246337597EACEB75, ___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.List`1<UnityEngine.UIVertex>>
struct InternalEnumerator_1_t341F1CAA8B39FB812A8929B6150EDE61B709C192
{
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_t341F1CAA8B39FB812A8929B6150EDE61B709C192, ___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_t341F1CAA8B39FB812A8929B6150EDE61B709C192, ___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.List`1<UnityEngine.Vector2>>
struct InternalEnumerator_1_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA
{
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_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA, ___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_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA, ___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.List`1<UnityEngine.Vector3>>
struct InternalEnumerator_1_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3
{
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_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3, ___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_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3, ___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.List`1<UnityEngine.Vector4>>
struct InternalEnumerator_1_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D
{
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_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D, ___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_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D, ___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<UnityEngine.CanvasGroup>
struct InternalEnumerator_1_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6
{
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_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6, ___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_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6, ___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<UnityEngine.EventSystems.AbstractEventData>
struct InternalEnumerator_1_tC6D530E331D24D1FD31DE345B80B960DA0595143
{
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_tC6D530E331D24D1FD31DE345B80B960DA0595143, ___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_tC6D530E331D24D1FD31DE345B80B960DA0595143, ___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<UnityEngine.EventSystems.BaseEventData>
struct InternalEnumerator_1_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7
{
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_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7, ___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_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7, ___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<UnityEngine.EventSystems.BaseInput>
struct InternalEnumerator_1_t241870074855ABD47CE1EDEF5F73F644811376C8
{
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_t241870074855ABD47CE1EDEF5F73F644811376C8, ___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_t241870074855ABD47CE1EDEF5F73F644811376C8, ___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<UnityEngine.EventSystems.BaseInputModule>
struct InternalEnumerator_1_t531596595A9917A3EE16E9A986F53E26F25D2DE6
{
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_t531596595A9917A3EE16E9A986F53E26F25D2DE6, ___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_t531596595A9917A3EE16E9A986F53E26F25D2DE6, ___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<UnityEngine.EventSystems.EventSystem>
struct InternalEnumerator_1_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969
{
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_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969, ___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_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969, ___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<UnityEngine.EventSystems.EventTrigger_Entry>
struct InternalEnumerator_1_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1
{
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_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1, ___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_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1, ___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<UnityEngine.EventSystems.IDeselectHandler>
struct InternalEnumerator_1_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2
{
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_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2, ___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_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2, ___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<UnityEngine.EventSystems.IMoveHandler>
struct InternalEnumerator_1_t83923C22673DC16CD418A80FCE0086423D3AE817
{
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_t83923C22673DC16CD418A80FCE0086423D3AE817, ___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_t83923C22673DC16CD418A80FCE0086423D3AE817, ___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<UnityEngine.EventSystems.IPointerClickHandler>
struct InternalEnumerator_1_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879
{
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_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879, ___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_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879, ___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<UnityEngine.EventSystems.IPointerDownHandler>
struct InternalEnumerator_1_t8FD5607768206201FF317C648FC46A29C4A7D2DD
{
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_t8FD5607768206201FF317C648FC46A29C4A7D2DD, ___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_t8FD5607768206201FF317C648FC46A29C4A7D2DD, ___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<UnityEngine.EventSystems.IPointerExitHandler>
struct InternalEnumerator_1_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED
{
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_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED, ___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_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED, ___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<UnityEngine.EventSystems.IPointerUpHandler>
struct InternalEnumerator_1_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73
{
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_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73, ___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_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73, ___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<UnityEngine.EventSystems.ISelectHandler>
struct InternalEnumerator_1_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8
{
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_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8, ___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_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8, ___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<UnityEngine.EventSystems.ISubmitHandler>
struct InternalEnumerator_1_t9EEECA066B47C329C565F0AB996CE3E48F273F0B
{
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_t9EEECA066B47C329C565F0AB996CE3E48F273F0B, ___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_t9EEECA066B47C329C565F0AB996CE3E48F273F0B, ___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<UnityEngine.EventSystems.PointerEventData>
struct InternalEnumerator_1_t1D904C9EF1434B55B2E02BDFE368B3649564298F
{
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_t1D904C9EF1434B55B2E02BDFE368B3649564298F, ___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_t1D904C9EF1434B55B2E02BDFE368B3649564298F, ___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<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct InternalEnumerator_1_t7F8D8D94DBB6E76997AA622567B43870048ADF84
{
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_t7F8D8D94DBB6E76997AA622567B43870048ADF84, ___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_t7F8D8D94DBB6E76997AA622567B43870048ADF84, ___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<UnityEngine.EventSystems.RaycastResult>
struct InternalEnumerator_1_t7EB7634ED0C887F88FEE64219734A39C3617ED84
{
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_t7EB7634ED0C887F88FEE64219734A39C3617ED84, ___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_t7EB7634ED0C887F88FEE64219734A39C3617ED84, ___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<UnityEngine.Font>
struct InternalEnumerator_1_t06B74E79E5F68674CF168F124A4166E238654537
{
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_t06B74E79E5F68674CF168F124A4166E238654537, ___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_t06B74E79E5F68674CF168F124A4166E238654537, ___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<UnityEngine.ISerializationCallbackReceiver>
struct InternalEnumerator_1_t9E4135EE0249E455AC3A12C8EC9F398B75509E30
{
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_t9E4135EE0249E455AC3A12C8EC9F398B75509E30, ___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_t9E4135EE0249E455AC3A12C8EC9F398B75509E30, ___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<UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct InternalEnumerator_1_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9
{
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_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9, ___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_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9, ___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<UnityEngine.UI.ColorBlock>
struct InternalEnumerator_1_t78E1ED0834343DFC02CD94835D603112C1878F02
{
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_t78E1ED0834343DFC02CD94835D603112C1878F02, ___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_t78E1ED0834343DFC02CD94835D603112C1878F02, ___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<UnityEngine.UI.Graphic>
struct InternalEnumerator_1_t8246CAA0245762578EEF818570FFC32AD5DC26E4
{
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_t8246CAA0245762578EEF818570FFC32AD5DC26E4, ___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_t8246CAA0245762578EEF818570FFC32AD5DC26E4, ___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<UnityEngine.UI.IClippable>
struct InternalEnumerator_1_t0E996C206B8E5EAFC0876A79E5D33990353F8747
{
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_t0E996C206B8E5EAFC0876A79E5D33990353F8747, ___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_t0E996C206B8E5EAFC0876A79E5D33990353F8747, ___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<UnityEngine.UI.ILayoutElement>
struct InternalEnumerator_1_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C
{
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_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C, ___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_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C, ___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<UnityEngine.UI.IMaskable>
struct InternalEnumerator_1_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A
{
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_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A, ___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_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A, ___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<UnityEngine.UI.IMaterialModifier>
struct InternalEnumerator_1_t023C058C12AAFF764C6C877C8B99228E3996734E
{
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_t023C058C12AAFF764C6C877C8B99228E3996734E, ___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_t023C058C12AAFF764C6C877C8B99228E3996734E, ___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<UnityEngine.UI.Image>
struct InternalEnumerator_1_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B
{
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_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B, ___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_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B, ___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<UnityEngine.UI.InputField_ContentType>
struct InternalEnumerator_1_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6
{
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_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6, ___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_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6, ___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<UnityEngine.UI.LayoutRebuilder>
struct InternalEnumerator_1_t345EE18215D993062CF5DC2A355B14AD171198E6
{
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_t345EE18215D993062CF5DC2A355B14AD171198E6, ___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_t345EE18215D993062CF5DC2A355B14AD171198E6, ___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<UnityEngine.UI.Mask>
struct InternalEnumerator_1_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD
{
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_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD, ___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_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD, ___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<UnityEngine.UI.MaskableGraphic>
struct InternalEnumerator_1_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3
{
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_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3, ___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_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3, ___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<UnityEngine.UI.Navigation>
struct InternalEnumerator_1_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021
{
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_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021, ___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_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021, ___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<UnityEngine.UI.Selectable>
struct InternalEnumerator_1_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50
{
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_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50, ___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_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50, ___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<UnityEngine.UI.SpriteState>
struct InternalEnumerator_1_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD
{
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_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD, ___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_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD, ___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<UnityEngine.UI.StencilMaterial_MatEntry>
struct InternalEnumerator_1_tD3D01DAB6971563D2596E13F923B617A6C823CDD
{
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_tD3D01DAB6971563D2596E13F923B617A6C823CDD, ___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_tD3D01DAB6971563D2596E13F923B617A6C823CDD, ___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<UnityEngine.UI.Text>
struct InternalEnumerator_1_t4476A3CCC540C23C88922D89B0287B7A2C448976
{
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_t4476A3CCC540C23C88922D89B0287B7A2C448976, ___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_t4476A3CCC540C23C88922D89B0287B7A2C448976, ___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<UnityEngine.UI.Toggle>
struct InternalEnumerator_1_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9
{
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_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9, ___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_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9, ___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.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_tC711F944169B03F1BE5D571D18AFC8B257B7B024
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * ___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_tC711F944169B03F1BE5D571D18AFC8B257B7B024, ___dictionary_0)); }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * 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_tC711F944169B03F1BE5D571D18AFC8B257B7B024, ___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_tC711F944169B03F1BE5D571D18AFC8B257B7B024, ___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_tC711F944169B03F1BE5D571D18AFC8B257B7B024, ___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.Dictionary`2_KeyCollection_Enumerator<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * ___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
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8, ___dictionary_0)); }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * 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_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8, ___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_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8, ___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_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8, ___currentKey_3)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_currentKey_3() const { return ___currentKey_3; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
___currentKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * ___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
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26, ___dictionary_0)); }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * 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_t0C08088058F6696A33D39CC33FDA1EC445DBFA26, ___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_t0C08088058F6696A33D39CC33FDA1EC445DBFA26, ___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_t0C08088058F6696A33D39CC33FDA1EC445DBFA26, ___currentKey_3)); }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * get_currentKey_3() const { return ___currentKey_3; }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 ** get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * value)
{
___currentKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<UnityEngine.UI.Graphic,System.Int32>
struct Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary
Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * ___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
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___currentKey_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4, ___dictionary_0)); }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * 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_t7BFEC988E723CADFBFCDB7130E67AA24320488F4, ___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_t7BFEC988E723CADFBFCDB7130E67AA24320488F4, ___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_t7BFEC988E723CADFBFCDB7130E67AA24320488F4, ___currentKey_3)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_currentKey_3() const { return ___currentKey_3; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_currentKey_3() { return &___currentKey_3; }
inline void set_currentKey_3(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___currentKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * ___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
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1, ___dictionary_0)); }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * 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_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1, ___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_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1, ___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_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1, ___currentValue_3)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_currentValue_3() const { return ___currentValue_3; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * ___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
IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78, ___dictionary_0)); }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * 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_t54978B29B60E089871F5BBC9C4B08DC979731B78, ___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_t54978B29B60E089871F5BBC9C4B08DC979731B78, ___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_t54978B29B60E089871F5BBC9C4B08DC979731B78, ___currentValue_3)); }
inline IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A * get_currentValue_3() const { return ___currentValue_3; }
inline IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * ___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
HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB, ___dictionary_0)); }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * 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_t06A9294F9F8630F190054E51F5338ED39225F0BB, ___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_t06A9294F9F8630F190054E51F5338ED39225F0BB, ___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_t06A9294F9F8630F190054E51F5338ED39225F0BB, ___currentValue_3)); }
inline HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * get_currentValue_3() const { return ___currentValue_3; }
inline HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.UI.Graphic,System.Int32>
struct Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * ___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
int32_t ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605, ___dictionary_0)); }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * 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_t0654B59C863ED2656E83CE6CCF85E1A67FECA605, ___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_t0654B59C863ED2656E83CE6CCF85E1A67FECA605, ___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_t0654B59C863ED2656E83CE6CCF85E1A67FECA605, ___currentValue_3)); }
inline int32_t get_currentValue_3() const { return ___currentValue_3; }
inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(int32_t value)
{
___currentValue_3 = value;
}
};
// System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.UI.IClippable>
struct Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set
HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD * ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1_Enumerator::_current
RuntimeObject* ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F, ____set_0)); }
inline HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD * get__set_0() const { return ____set_0; }
inline HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD * 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_t052CC95501ABC9AF58B579B3055BF2930756224F, ____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_t052CC95501ABC9AF58B579B3055BF2930756224F, ____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_t052CC95501ABC9AF58B579B3055BF2930756224F, ____current_3)); }
inline RuntimeObject* get__current_3() const { return ____current_3; }
inline RuntimeObject** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(RuntimeObject* value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.UI.MaskableGraphic>
struct Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set
HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408 * ____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
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F * ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2, ____set_0)); }
inline HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408 * get__set_0() const { return ____set_0; }
inline HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408 ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408 * 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_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2, ____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_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2, ____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_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2, ____current_3)); }
inline MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F * get__current_3() const { return ____current_3; }
inline MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F ** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F * value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.UI.Text>
struct Enumerator_tC38D17C8F25A340372A161BB18473079701992BB
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set
HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * ____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
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_tC38D17C8F25A340372A161BB18473079701992BB, ____set_0)); }
inline HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * get__set_0() const { return ____set_0; }
inline HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * 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_tC38D17C8F25A340372A161BB18473079701992BB, ____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_tC38D17C8F25A340372A161BB18473079701992BB, ____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_tC38D17C8F25A340372A161BB18473079701992BB, ____current_3)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get__current_3() const { return ____current_3; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct KeyValuePair_2_t23E843C6D6385C71A1DB40EC1271D2DEA75F22EC
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23E843C6D6385C71A1DB40EC1271D2DEA75F22EC, ___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_t23E843C6D6385C71A1DB40EC1271D2DEA75F22EC, ___value_1)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_value_1() const { return ___value_1; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct KeyValuePair_2_t7694EEC6461502922175F2EA6A94415AAA8D4479
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7694EEC6461502922175F2EA6A94415AAA8D4479, ___key_0)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_key_0() const { return ___key_0; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * 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_t7694EEC6461502922175F2EA6A94415AAA8D4479, ___value_1)); }
inline IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A * get_value_1() const { return ___value_1; }
inline IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct KeyValuePair_2_tEE299206EFB231035D7AFC30CCAAF0E5C8F6FFC0
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEE299206EFB231035D7AFC30CCAAF0E5C8F6FFC0, ___key_0)); }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * get_key_0() const { return ___key_0; }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * 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_tEE299206EFB231035D7AFC30CCAAF0E5C8F6FFC0, ___value_1)); }
inline HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * get_value_1() const { return ___value_1; }
inline HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(HashSet_1_tB59AB701726F5C621DD326286AA6F830502B679D * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.UI.Graphic,System.Int32>
struct KeyValuePair_2_tF4BF5F30E82FC80ACD9C4FC817C9D84EB6B4D9AA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF4BF5F30E82FC80ACD9C4FC817C9D84EB6B4D9AA, ___key_0)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_key_0() const { return ___key_0; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * 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_tF4BF5F30E82FC80ACD9C4FC817C9D84EB6B4D9AA, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.CanvasGroup>
struct Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A * ___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
CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046, ___list_0)); }
inline List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A * get_list_0() const { return ___list_0; }
inline List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A * 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_t58486A5CA0FB12EA560E619FF3092EC79FF1B046, ___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_t58486A5CA0FB12EA560E619FF3092EC79FF1B046, ___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_t58486A5CA0FB12EA560E619FF3092EC79FF1B046, ___current_3)); }
inline CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * get_current_3() const { return ___current_3; }
inline CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.BaseInputModule>
struct Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 * ___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
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7, ___list_0)); }
inline List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 * get_list_0() const { return ___list_0; }
inline List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 * 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_t0CCF3A5092622017B8B73EDC9957411238A697B7, ___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_t0CCF3A5092622017B8B73EDC9957411238A697B7, ___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_t0CCF3A5092622017B8B73EDC9957411238A697B7, ___current_3)); }
inline BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * get_current_3() const { return ___current_3; }
inline BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.BaseRaycaster>
struct Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97 * ___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
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D, ___list_0)); }
inline List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97 * get_list_0() const { return ___list_0; }
inline List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97 * 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_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D, ___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_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D, ___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_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D, ___current_3)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_current_3() const { return ___current_3; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.EventSystem>
struct Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B * ___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
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32, ___list_0)); }
inline List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B * get_list_0() const { return ___list_0; }
inline List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B * 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_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32, ___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_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32, ___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_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32, ___current_3)); }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * get_current_3() const { return ___current_3; }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.EventTrigger_Entry>
struct Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA * ___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
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707, ___list_0)); }
inline List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA * get_list_0() const { return ___list_0; }
inline List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA * 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_t22E4A87EE571A6A7F815B64A41529FD3DBADF707, ___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_t22E4A87EE571A6A7F815B64A41529FD3DBADF707, ___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_t22E4A87EE571A6A7F815B64A41529FD3DBADF707, ___current_3)); }
inline Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * get_current_3() const { return ___current_3; }
inline Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.IEventSystemHandler>
struct Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F * ___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
RuntimeObject* ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B, ___list_0)); }
inline List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F * get_list_0() const { return ___list_0; }
inline List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F * 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_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B, ___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_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B, ___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_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B, ___current_3)); }
inline RuntimeObject* get_current_3() const { return ___current_3; }
inline RuntimeObject** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RuntimeObject* value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA * ___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
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B, ___list_0)); }
inline List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA * get_list_0() const { return ___list_0; }
inline List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA * 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_t75543F6D37E72D0EA839F86C334BCB7231DE532B, ___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_t75543F6D37E72D0EA839F86C334BCB7231DE532B, ___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_t75543F6D37E72D0EA839F86C334BCB7231DE532B, ___current_3)); }
inline ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * get_current_3() const { return ___current_3; }
inline ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.RectTransform>
struct Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7 * ___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
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552, ___list_0)); }
inline List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7 * get_list_0() const { return ___list_0; }
inline List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7 * 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_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552, ___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_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552, ___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_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552, ___current_3)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_current_3() const { return ___current_3; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.Transform>
struct Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91 * ___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
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85, ___list_0)); }
inline List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91 * get_list_0() const { return ___list_0; }
inline List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91 * 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_t003636A0CF194A4F8A0C2D810B60016904D40E85, ___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_t003636A0CF194A4F8A0C2D810B60016904D40E85, ___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_t003636A0CF194A4F8A0C2D810B60016904D40E85, ___current_3)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_current_3() const { return ___current_3; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Graphic>
struct Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 * ___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
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8, ___list_0)); }
inline List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 * get_list_0() const { return ___list_0; }
inline List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5 * 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_tB75640937D225CECCA5E7B76BBD48771058A00F8, ___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_tB75640937D225CECCA5E7B76BBD48771058A00F8, ___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_tB75640937D225CECCA5E7B76BBD48771058A00F8, ___current_3)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_current_3() const { return ___current_3; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Image>
struct Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883 * ___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
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32, ___list_0)); }
inline List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883 * get_list_0() const { return ___list_0; }
inline List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883 * 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_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32, ___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_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32, ___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_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32, ___current_3)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_current_3() const { return ___current_3; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Mask>
struct Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE * ___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
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68, ___list_0)); }
inline List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE * get_list_0() const { return ___list_0; }
inline List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE * 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_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68, ___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_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68, ___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_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68, ___current_3)); }
inline Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * get_current_3() const { return ___current_3; }
inline Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Selectable>
struct Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188 * ___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
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0, ___list_0)); }
inline List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188 * get_list_0() const { return ___list_0; }
inline List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188 * 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_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0, ___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_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0, ___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_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0, ___current_3)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_current_3() const { return ___current_3; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.StencilMaterial_MatEntry>
struct Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t7984FB74D3877329C67F707EE61308104862C691 * ___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
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87, ___list_0)); }
inline List_1_t7984FB74D3877329C67F707EE61308104862C691 * get_list_0() const { return ___list_0; }
inline List_1_t7984FB74D3877329C67F707EE61308104862C691 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t7984FB74D3877329C67F707EE61308104862C691 * 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_tA57FFD393B184B19923F6FF3251313BD38F05C87, ___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_tA57FFD393B184B19923F6FF3251313BD38F05C87, ___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_tA57FFD393B184B19923F6FF3251313BD38F05C87, ___current_3)); }
inline MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701 * get_current_3() const { return ___current_3; }
inline MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Toggle>
struct Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C * ___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
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8, ___list_0)); }
inline List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C * get_list_0() const { return ___list_0; }
inline List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C * 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_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8, ___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_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8, ___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_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8, ___current_3)); }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * get_current_3() const { return ___current_3; }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * 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.Linq.Enumerable_WhereArrayIterator`1<UnityEngine.UI.Toggle>
struct WhereArrayIterator_1_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166 : public Iterator_1_tECB00ADF36B615486A1ED6A1CD514997D26972F4
{
public:
// TSource[] System.Linq.Enumerable_WhereArrayIterator`1::source
ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereArrayIterator`1::predicate
Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * ___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_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166, ___source_3)); }
inline ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* get_source_3() const { return ___source_3; }
inline ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(ToggleU5BU5D_tBC353C53E1DDE1197A0EF21D8016A713839A8F52* 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_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166, ___predicate_4)); }
inline Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * 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_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166, ___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<UnityEngine.UI.Toggle>
struct WhereEnumerableIterator_1_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC : public Iterator_1_tECB00ADF36B615486A1ED6A1CD514997D26972F4
{
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_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * ___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_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC, ___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_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC, ___predicate_4)); }
inline Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * 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_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC, ___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);
}
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_HighlightedSprite_0)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_PressedSprite_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_SelectedSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_3)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_pinvoke
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_com
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * ___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_t23E843C6D6385C71A1DB40EC1271D2DEA75F22EC ___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_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB, ___dictionary_0)); }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA * 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_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB, ___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_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB, ___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_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB, ___current_3)); }
inline KeyValuePair_2_t23E843C6D6385C71A1DB40EC1271D2DEA75F22EC get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t23E843C6D6385C71A1DB40EC1271D2DEA75F22EC * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t23E843C6D6385C71A1DB40EC1271D2DEA75F22EC 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_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB, ___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<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Enumerator_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * ___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_t7694EEC6461502922175F2EA6A94415AAA8D4479 ___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_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4, ___dictionary_0)); }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020 * 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_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4, ___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_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4, ___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_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4, ___current_3)); }
inline KeyValuePair_2_t7694EEC6461502922175F2EA6A94415AAA8D4479 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t7694EEC6461502922175F2EA6A94415AAA8D4479 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t7694EEC6461502922175F2EA6A94415AAA8D4479 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_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4, ___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<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Enumerator_tB2B35E3FAD383331BE410538B6A3CBD11A449875
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * ___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_tEE299206EFB231035D7AFC30CCAAF0E5C8F6FFC0 ___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_tB2B35E3FAD383331BE410538B6A3CBD11A449875, ___dictionary_0)); }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t0F7BAD1FA38B41A954528B92463C4B8D23A83B84 * 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_tB2B35E3FAD383331BE410538B6A3CBD11A449875, ___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_tB2B35E3FAD383331BE410538B6A3CBD11A449875, ___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_tB2B35E3FAD383331BE410538B6A3CBD11A449875, ___current_3)); }
inline KeyValuePair_2_tEE299206EFB231035D7AFC30CCAAF0E5C8F6FFC0 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tEE299206EFB231035D7AFC30CCAAF0E5C8F6FFC0 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tEE299206EFB231035D7AFC30CCAAF0E5C8F6FFC0 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_tB2B35E3FAD383331BE410538B6A3CBD11A449875, ___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<UnityEngine.UI.Graphic,System.Int32>
struct Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * ___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_tF4BF5F30E82FC80ACD9C4FC817C9D84EB6B4D9AA ___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_tCF42BBA1911B93C4915F363D9F9DA08507C5919F, ___dictionary_0)); }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C * 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_tCF42BBA1911B93C4915F363D9F9DA08507C5919F, ___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_tCF42BBA1911B93C4915F363D9F9DA08507C5919F, ___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_tCF42BBA1911B93C4915F363D9F9DA08507C5919F, ___current_3)); }
inline KeyValuePair_2_tF4BF5F30E82FC80ACD9C4FC817C9D84EB6B4D9AA get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tF4BF5F30E82FC80ACD9C4FC817C9D84EB6B4D9AA * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tF4BF5F30E82FC80ACD9C4FC817C9D84EB6B4D9AA value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F, ___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.Linq.Enumerable_WhereListIterator`1<UnityEngine.UI.Toggle>
struct WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499 : public Iterator_1_tECB00ADF36B615486A1ED6A1CD514997D26972F4
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable_WhereListIterator`1::source
List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C * ___source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_WhereListIterator`1::predicate
Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * ___predicate_4;
// System.Collections.Generic.List`1_Enumerator<TSource> System.Linq.Enumerable_WhereListIterator`1::enumerator
Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8 ___enumerator_5;
public:
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499, ___source_3)); }
inline List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C * get_source_3() const { return ___source_3; }
inline List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C ** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C * 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_tD08367BB5628489FF8E7AC15FB8D712C25286499, ___predicate_4)); }
inline Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * get_predicate_4() const { return ___predicate_4; }
inline Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 ** get_address_of_predicate_4() { return &___predicate_4; }
inline void set_predicate_4(Func_2_t4632D9FB0A696C184FCADAE4820EEF1BD4A57AD8 * 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_tD08367BB5628489FF8E7AC15FB8D712C25286499, ___enumerator_5)); }
inline Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8 get_enumerator_5() const { return ___enumerator_5; }
inline Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8 * get_address_of_enumerator_5() { return &___enumerator_5; }
inline void set_enumerator_5(Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8 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<UnityEngine.UI.SpriteState>
struct IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470 : 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
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470, ___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_t5FE18248247487E7833DE020159EE568E98E7470, ___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_t5FE18248247487E7833DE020159EE568E98E7470, ___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_t5FE18248247487E7833DE020159EE568E98E7470, ___current_3)); }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A get_current_3() const { return ___current_3; }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_DisabledSprite_3), (void*)NULL);
#endif
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___screenPosition_9 = value;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
int32_t ___displayIndex_10;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
int32_t ___displayIndex_10;
};
// UnityEngine.UI.ColorBlock
struct ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_NormalColor_0)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_HighlightedColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_PressedColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_SelectedColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode
struct ColorTweenMode_tDCE018D37330F576ACCD00D16CAF91AE55315F2F
{
public:
// System.Int32 UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorTweenMode_tDCE018D37330F576ACCD00D16CAF91AE55315F2F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Navigation_Mode
struct Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26
{
public:
// System.Int32 UnityEngine.UI.Navigation_Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26, ___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.List`1_Enumerator<UnityEngine.EventSystems.RaycastResult>
struct Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52 * ___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
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___list_0)); }
inline List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52 * get_list_0() const { return ___list_0; }
inline List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52 * 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_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___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_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___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_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___current_3)); }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 get_current_3() const { return ___current_3; }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___module_1), (void*)NULL);
#endif
}
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<UnityEngine.EventSystems.RaycastResult>
struct IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211 : 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
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211, ___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_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211, ___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_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211, ___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_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211, ___current_3)); }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 get_current_3() const { return ___current_3; }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___module_1), (void*)NULL);
#endif
}
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<UnityEngine.UI.ColorBlock>
struct IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B : 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
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B, ___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_t98930436190C03E6EAD80D5E541B9220B26C3D1B, ___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_t98930436190C03E6EAD80D5E541B9220B26C3D1B, ___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_t98930436190C03E6EAD80D5E541B9220B26C3D1B, ___current_3)); }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA get_current_3() const { return ___current_3; }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA value)
{
___current_3 = value;
}
};
// UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228
{
public:
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenCallback UnityEngine.UI.CoroutineTween.ColorTween::m_Target
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0;
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_StartColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1;
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_TargetColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_TargetColor_2;
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode UnityEngine.UI.CoroutineTween.ColorTween::m_TweenMode
int32_t ___m_TweenMode_3;
// System.Single UnityEngine.UI.CoroutineTween.ColorTween::m_Duration
float ___m_Duration_4;
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::m_IgnoreTimeScale
bool ___m_IgnoreTimeScale_5;
public:
inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_Target_0)); }
inline ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * get_m_Target_0() const { return ___m_Target_0; }
inline ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 ** get_address_of_m_Target_0() { return &___m_Target_0; }
inline void set_m_Target_0(ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * value)
{
___m_Target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartColor_1() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_StartColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_StartColor_1() const { return ___m_StartColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_StartColor_1() { return &___m_StartColor_1; }
inline void set_m_StartColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_StartColor_1 = value;
}
inline static int32_t get_offset_of_m_TargetColor_2() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_TargetColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_TargetColor_2() const { return ___m_TargetColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_TargetColor_2() { return &___m_TargetColor_2; }
inline void set_m_TargetColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_TargetColor_2 = value;
}
inline static int32_t get_offset_of_m_TweenMode_3() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_TweenMode_3)); }
inline int32_t get_m_TweenMode_3() const { return ___m_TweenMode_3; }
inline int32_t* get_address_of_m_TweenMode_3() { return &___m_TweenMode_3; }
inline void set_m_TweenMode_3(int32_t value)
{
___m_TweenMode_3 = value;
}
inline static int32_t get_offset_of_m_Duration_4() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_Duration_4)); }
inline float get_m_Duration_4() const { return ___m_Duration_4; }
inline float* get_address_of_m_Duration_4() { return &___m_Duration_4; }
inline void set_m_Duration_4(float value)
{
___m_Duration_4 = value;
}
inline static int32_t get_offset_of_m_IgnoreTimeScale_5() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_IgnoreTimeScale_5)); }
inline bool get_m_IgnoreTimeScale_5() const { return ___m_IgnoreTimeScale_5; }
inline bool* get_address_of_m_IgnoreTimeScale_5() { return &___m_IgnoreTimeScale_5; }
inline void set_m_IgnoreTimeScale_5(bool value)
{
___m_IgnoreTimeScale_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_pinvoke
{
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_TargetColor_2;
int32_t ___m_TweenMode_3;
float ___m_Duration_4;
int32_t ___m_IgnoreTimeScale_5;
};
// Native definition for COM marshalling of UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_com
{
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_TargetColor_2;
int32_t ___m_TweenMode_3;
float ___m_Duration_4;
int32_t ___m_IgnoreTimeScale_5;
};
// UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07
{
public:
// UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_Mode_0)); }
inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
inline void set_m_Mode_0(int32_t value)
{
___m_Mode_0 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnUp_1)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; }
inline void set_m_SelectOnUp_1(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnUp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnDown_2)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; }
inline void set_m_SelectOnDown_2(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnDown_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnLeft_3)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; }
inline void set_m_SelectOnLeft_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnLeft_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnRight_4)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; }
inline void set_m_SelectOnRight_4(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnRight_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_pinvoke
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_com
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<UnityEngine.UI.Navigation>
struct IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02 : 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
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___current_3;
public:
inline static int32_t get_offset_of_iterator_0() { return static_cast<int32_t>(offsetof(IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02, ___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_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02, ___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_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02, ___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_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02, ___current_3)); }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 get_current_3() const { return ___current_3; }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_SelectOnUp_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_SelectOnDown_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_SelectOnLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_SelectOnRight_4), (void*)NULL);
#endif
}
};
// UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2<UnityEngine.UI.CoroutineTween.ColorTween>
struct U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// T UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::tweenInfo
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 ___tweenInfo_2;
// System.Single UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<elapsedTime>5__2
float ___U3CelapsedTimeU3E5__2_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value);
}
inline static int32_t get_offset_of_tweenInfo_2() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB, ___tweenInfo_2)); }
inline ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 get_tweenInfo_2() const { return ___tweenInfo_2; }
inline ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * get_address_of_tweenInfo_2() { return &___tweenInfo_2; }
inline void set_tweenInfo_2(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 value)
{
___tweenInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___tweenInfo_2))->___m_Target_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CelapsedTimeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB, ___U3CelapsedTimeU3E5__2_3)); }
inline float get_U3CelapsedTimeU3E5__2_3() const { return ___U3CelapsedTimeU3E5__2_3; }
inline float* get_address_of_U3CelapsedTimeU3E5__2_3() { return &___U3CelapsedTimeU3E5__2_3; }
inline void set_U3CelapsedTimeU3E5__2_3(float value)
{
___U3CelapsedTimeU3E5__2_3 = value;
}
};
#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 IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1** comReturnValue);
il2cpp_hresult_t IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t778CBEADF41F93C0FF6B5A7DCD14292A25473632** 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_m799ACB50542612A789EBE3C45F76D0A2C851D406_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t7EE0FEB3804E31D53920931A9A141AFCA98AB681** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IIterable_1_First_m7CA6136A702F60BC9D76703E41DAFEFFB8630CF1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tA43F6FC1D4C77D938D70C30796F03C0C9D01652B** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m08AE3205A8C461CBBFD801DF50F22BB295E6F11E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t5ED96EAD78CEF2D860EDB4DCF4672C15C13F6B53** comReturnValue);
il2cpp_hresult_t IIterable_1_First_mEA3E0A2E3EBF3C5119B790F2DB2E361610F5E564_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t3557A30DEED19D31BAF82BE4B75C2FFDEC593169** comReturnValue);
il2cpp_hresult_t IIterable_1_First_mB2BE0E035F399B6BE3EDB48CB7A0520839501C4D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tD592AB51083B29306C691734C2461B468C33DA26** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t95F16BFCADBB4953D81661A10E2B53A54BFE4F98** comReturnValue);
il2cpp_hresult_t IIterable_1_First_mA5DB921C07A848535DEAE091CCB5D5E1BA8FD789_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tEE703948C4CD34070052F9FCB434A5CB3B4685B4** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m0528C2ECDAFAA0F1741464585BAA458A119C293E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_mF8B1A974030E05A284F3D4DE3444F3A240671B96_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m802E9EC2DA99E90552079326850D5CEE0B5ECAF4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m65EEA32574A21A87FD098708412643CE5EAB3F30_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m99E191D4F4F62DCB99BA6721DDB26D65C51B6A99_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m658CEE1BA57395844E57C47390B93BE53C3FD28C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mF0539EB08CF8A796668D80484FB91000B3EF8A79_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m0434599CBB0A2F8073FFCB73667F8AE6D40D6758_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_mA0D95E4993725090A111B50694A865D3570ADAA0_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_mE153CC42F19B88AD5568B2251C4AFC600A431C50_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m1629DBA1AAC15097868A36AF0D0C462E8B1F089F_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_mC156EFF3473C20CCE0B64AF172D3F036031FF749_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_mC6E0456C7D3A7BB89A1B3119C81EF0B4BB65BC6D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m912CF260CD35D2AE449059FBCFBFC459A6F6009E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_mD3136A234357EE02F4BBFF5CD06E2709B18CFB70_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m1BA86810D590872732FBB3921835A9AEA26EBC07_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_mBB95D0AE64AEAFC7A52C4B302F1D257003E00A31_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m5A6B1D288E70F60D2483B6D1C06515614556EDD2_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_mDD6A4C84D2B91DD2B2635283620EC24C99D932C2_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m392513312B5CB28C940C8AEB5D027FDBC9DA17EF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items0);
il2cpp_hresult_t IVector_1_GetAt_m808B2BDD3F75F47D67A768AA8EBD10FCB1C7972E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_mC2C0C147139CF745F911FF9464E0165FAA239E81_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m52939A3D1D8B311CA3772B99149FCC224047D3D4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m7599D18183DA2CE6C44AB947A86943A52679C413_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_mC94A0BACAEEDC6A7CF0D23B1FE6218F0BCBA570E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m185DC5E9798F31308D9181AB9FC3D8C22A699E9F_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_mB632E13363FB6D0B98E9A1BB233C88EE7322B018_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_mE759809BB8A97BBE616E4602C7D49F487BC6FBA2_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m2E94BEF47962084EEB989C21E8B6926ACDD45174_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m3B3A1E1E0F5B8B7EC12BBCBD6F151A8619F6CD48_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_mF45567133BB96366547EEDABEB4609BF8FF47AB3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_mD3D09C1456A8D21DC63D9CA2FDD4CA174BCD46CF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items0);
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.Text>>
struct EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t014CCA1147547024F45196B2A28FBC1E99117D80(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t014CCA1147547024F45196B2A28FBC1E99117D80_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.Text>>
struct InternalEnumerator_1_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tCF4A8A641F738E20BC7C1ACDBEAF567E5F5C5EBE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Text>
struct EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t18552190C666BAA9B9F786F0A7A29ACDD47379EA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t18552190C666BAA9B9F786F0A7A29ACDD47379EA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Text>
struct InternalEnumerator_1_t4476A3CCC540C23C88922D89B0287B7A2C448976_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t4476A3CCC540C23C88922D89B0287B7A2C448976_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t4476A3CCC540C23C88922D89B0287B7A2C448976_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t4476A3CCC540C23C88922D89B0287B7A2C448976_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t4476A3CCC540C23C88922D89B0287B7A2C448976(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t4476A3CCC540C23C88922D89B0287B7A2C448976_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t4476A3CCC540C23C88922D89B0287B7A2C448976_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ILayoutElement>
struct EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t85CE9E9BBBB768CD53C34C10CCC944820A9967E3_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.ILayoutElement>
struct InternalEnumerator_1_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tE6A28CF3B901195EA1FAEDE8A1B9DA8111E42F8C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.MaskableGraphic>
struct EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t54B5389658D175F4D1D94F008C08F480953C2528(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t54B5389658D175F4D1D94F008C08F480953C2528_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.MaskableGraphic>
struct InternalEnumerator_1_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tB8A644C8C8740CB8F2BFFC9D1080A499A8BC68A3_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.IClippable>
struct EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t57E1ECE71D19E1150E48D3BFA33ABC46F4835971_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.IClippable>
struct InternalEnumerator_1_t0E996C206B8E5EAFC0876A79E5D33990353F8747_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t0E996C206B8E5EAFC0876A79E5D33990353F8747_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t0E996C206B8E5EAFC0876A79E5D33990353F8747_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t0E996C206B8E5EAFC0876A79E5D33990353F8747_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0E996C206B8E5EAFC0876A79E5D33990353F8747(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t0E996C206B8E5EAFC0876A79E5D33990353F8747_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t0E996C206B8E5EAFC0876A79E5D33990353F8747_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.IMaskable>
struct EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB1DCFAA1D5626812849E79639525EFA4F4564B30(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tB1DCFAA1D5626812849E79639525EFA4F4564B30_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.IMaskable>
struct InternalEnumerator_1_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tF218B56D0DB8410534CB40E725CF7ED53FB5EF9A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.IMaterialModifier>
struct EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tE476F190EC189EBDC492BB4BDACB2CE31C1B4D9E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.IMaterialModifier>
struct InternalEnumerator_1_t023C058C12AAFF764C6C877C8B99228E3996734E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t023C058C12AAFF764C6C877C8B99228E3996734E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t023C058C12AAFF764C6C877C8B99228E3996734E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t023C058C12AAFF764C6C877C8B99228E3996734E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t023C058C12AAFF764C6C877C8B99228E3996734E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t023C058C12AAFF764C6C877C8B99228E3996734E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t023C058C12AAFF764C6C877C8B99228E3996734E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Graphic>
struct EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1C991F4052DFA92E994ABE4DF85B2E1679046E60(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t1C991F4052DFA92E994ABE4DF85B2E1679046E60_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Graphic>
struct InternalEnumerator_1_t8246CAA0245762578EEF818570FFC32AD5DC26E4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8246CAA0245762578EEF818570FFC32AD5DC26E4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t8246CAA0245762578EEF818570FFC32AD5DC26E4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8246CAA0245762578EEF818570FFC32AD5DC26E4_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t8246CAA0245762578EEF818570FFC32AD5DC26E4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t8246CAA0245762578EEF818570FFC32AD5DC26E4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t8246CAA0245762578EEF818570FFC32AD5DC26E4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.UI.Text>
struct Enumerator_tC38D17C8F25A340372A161BB18473079701992BB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tC38D17C8F25A340372A161BB18473079701992BB_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tC38D17C8F25A340372A161BB18473079701992BB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tC38D17C8F25A340372A161BB18473079701992BB_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tC38D17C8F25A340372A161BB18473079701992BB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tC38D17C8F25A340372A161BB18473079701992BB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tC38D17C8F25A340372A161BB18473079701992BB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t953DC59813035390C73A3CE5C01016A08C41D6B2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t953DC59813035390C73A3CE5C01016A08C41D6B2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct InternalEnumerator_1_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tDFC01116E78FC51D967B17F362C8C4AC7D2D9558_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_t7605D61DD80A59142C24B6DB678C0F1B1A48F1D4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0C08088058F6696A33D39CC33FDA1EC445DBFA26(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t0C08088058F6696A33D39CC33FDA1EC445DBFA26_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.Font>
struct EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t1ACCC1964E201BFDEFE2C621BD641E9A983AAAE6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.Font>
struct InternalEnumerator_1_t06B74E79E5F68674CF168F124A4166E238654537_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t06B74E79E5F68674CF168F124A4166E238654537_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t06B74E79E5F68674CF168F124A4166E238654537_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t06B74E79E5F68674CF168F124A4166E238654537_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t06B74E79E5F68674CF168F124A4166E238654537(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t06B74E79E5F68674CF168F124A4166E238654537_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t06B74E79E5F68674CF168F124A4166E238654537_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C(IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_tF082C21A630744313059B2E050E67A91AD335B6D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t06A9294F9F8630F190054E51F5338ED39225F0BB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t06A9294F9F8630F190054E51F5338ED39225F0BB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t9F4AB57EAD8200127C2AEABE594D4287007B6EB2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct InternalEnumerator_1_t32F4A5791372D5378325B5D6DED5944D39266102_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t32F4A5791372D5378325B5D6DED5944D39266102_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t32F4A5791372D5378325B5D6DED5944D39266102_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t32F4A5791372D5378325B5D6DED5944D39266102_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t32F4A5791372D5378325B5D6DED5944D39266102(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t32F4A5791372D5378325B5D6DED5944D39266102_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t32F4A5791372D5378325B5D6DED5944D39266102_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t160580E9BA74D4C7A4316C401509CEAA00248629(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t160580E9BA74D4C7A4316C401509CEAA00248629_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>>
struct InternalEnumerator_1_t749523A23646B5974DD8110CB947E535F80042E2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t749523A23646B5974DD8110CB947E535F80042E2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t749523A23646B5974DD8110CB947E535F80042E2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t749523A23646B5974DD8110CB947E535F80042E2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t749523A23646B5974DD8110CB947E535F80042E2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t749523A23646B5974DD8110CB947E535F80042E2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t749523A23646B5974DD8110CB947E535F80042E2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Enumerator_tB2B35E3FAD383331BE410538B6A3CBD11A449875_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tB2B35E3FAD383331BE410538B6A3CBD11A449875_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tB2B35E3FAD383331BE410538B6A3CBD11A449875_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tB2B35E3FAD383331BE410538B6A3CBD11A449875_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB2B35E3FAD383331BE410538B6A3CBD11A449875(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tB2B35E3FAD383331BE410538B6A3CBD11A449875_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tB2B35E3FAD383331BE410538B6A3CBD11A449875_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Component>>
struct Stack_1_tBABF48E82CDED4B1E341B73C763B5EB4054C2144_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_tBABF48E82CDED4B1E341B73C763B5EB4054C2144_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_tBABF48E82CDED4B1E341B73C763B5EB4054C2144_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_tBABF48E82CDED4B1E341B73C763B5EB4054C2144_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629*>(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_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C*>(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>(6);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[4] = IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C::IID;
interfaceIds[5] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 6;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C(IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C_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_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B(IIterator_1_t778CBEADF41F93C0FF6B5A7DCD14292A25473632** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B_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_tBABF48E82CDED4B1E341B73C763B5EB4054C2144(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_tBABF48E82CDED4B1E341B73C763B5EB4054C2144_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_tBABF48E82CDED4B1E341B73C763B5EB4054C2144_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Component>>
struct EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF268B52AD379682CEE6C5119086B57014CCC427B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tF268B52AD379682CEE6C5119086B57014CCC427B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Component>>
struct InternalEnumerator_1_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tB8FF2A5D847FC9A71033E571A3BF209CA4EB9446_ComCallableWrapper(obj));
}
// COM Callable Wrapper for UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2<UnityEngine.UI.CoroutineTween.ColorTween>
struct U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) U3CStartU3Ed__2_t3117D5DE8A33C13E45D9874BB9E324E2102075BB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.UI.Graphic>
struct List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t71C7E742F3D85A70FD100E1F06C226C3A36C5FD5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UI.Graphic>
struct ReadOnlyCollection_1_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t3F24B2BE3179ABC7F68AE28325F4DAB35A071A88_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Graphic>
struct Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB75640937D225CECCA5E7B76BBD48771058A00F8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tB75640937D225CECCA5E7B76BBD48771058A00F8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t1BB31D71CB8736DC35CCD9FFB9228FAFD427EB52_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>
struct EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>
struct InternalEnumerator_1_t7EB7634ED0C887F88FEE64219734A39C3617ED84_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t7EB7634ED0C887F88FEE64219734A39C3617ED84_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t7EB7634ED0C887F88FEE64219734A39C3617ED84_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t7EB7634ED0C887F88FEE64219734A39C3617ED84_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t7EB7634ED0C887F88FEE64219734A39C3617ED84(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t7EB7634ED0C887F88FEE64219734A39C3617ED84_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t7EB7634ED0C887F88FEE64219734A39C3617ED84_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<UnityEngine.EventSystems.RaycastResult>
struct IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_tF66DAD15C66B74D6B03E8BA538E4250E8DB54211_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>
struct ReadOnlyCollection_1_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline ReadOnlyCollection_1_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t6D3A746C79E4D8E00608E49CC746E036DA79B8EF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.RaycastResult>
struct Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tA27E2343069402A698ECAD46C2DC47ACD7786618(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tBECC55E999AED970323DE70BFE9C3449EC850020(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_tBECC55E999AED970323DE70BFE9C3449EC850020_ComCallableWrapper(obj));
}
// COM Callable Wrapper for UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>
struct IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IndexedSet_1_tF9ACBD262A6D94131548F1759C8580E12B8AD07A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<UnityEngine.UI.Graphic,System.Int32>
struct Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t6935262CF28493107ABC123C8CE9B1472F8A0B2C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_t6935262CF28493107ABC123C8CE9B1472F8A0B2C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UI.Graphic,System.Int32>>
struct EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t10ABB785E311C679017B49241613201880EF5FA5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t10ABB785E311C679017B49241613201880EF5FA5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UI.Graphic,System.Int32>>
struct InternalEnumerator_1_t8A98806825998C6C089074ACB57502D0E8654D06_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8A98806825998C6C089074ACB57502D0E8654D06_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t8A98806825998C6C089074ACB57502D0E8654D06_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8A98806825998C6C089074ACB57502D0E8654D06_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t8A98806825998C6C089074ACB57502D0E8654D06(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t8A98806825998C6C089074ACB57502D0E8654D06_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t8A98806825998C6C089074ACB57502D0E8654D06_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<UnityEngine.UI.Graphic,System.Int32>
struct KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_t1E2638A53B1AE96E76FFBED5600576B101DC85A5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<UnityEngine.UI.Graphic,System.Int32>
struct Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t7BFEC988E723CADFBFCDB7130E67AA24320488F4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t7BFEC988E723CADFBFCDB7130E67AA24320488F4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.UI.Graphic,System.Int32>
struct ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E_ComCallableWrapper>, IIterable_1_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719*>(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_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719::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_m799ACB50542612A789EBE3C45F76D0A2C851D406(IIterator_1_t7EE0FEB3804E31D53920931A9A141AFCA98AB681** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m799ACB50542612A789EBE3C45F76D0A2C851D406_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_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_tD5CBD4F91CDAF1C2E87CD966813DA78AF6E3660E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.UI.Graphic,System.Int32>
struct Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0654B59C863ED2656E83CE6CCF85E1A67FECA605(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t0654B59C863ED2656E83CE6CCF85E1A67FECA605_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.UI.Graphic,System.Int32>>
struct EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tCD4199975E02CEC6F9CEE4F42CA21404DF665F0E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.UI.Graphic,System.Int32>>
struct InternalEnumerator_1_t38A78A3AF00B981B1236B6E9D296DA768A94F704_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t38A78A3AF00B981B1236B6E9D296DA768A94F704_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t38A78A3AF00B981B1236B6E9D296DA768A94F704_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t38A78A3AF00B981B1236B6E9D296DA768A94F704_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t38A78A3AF00B981B1236B6E9D296DA768A94F704(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t38A78A3AF00B981B1236B6E9D296DA768A94F704_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t38A78A3AF00B981B1236B6E9D296DA768A94F704_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<UnityEngine.UI.Graphic,System.Int32>
struct Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tCF42BBA1911B93C4915F363D9F9DA08507C5919F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tCF42BBA1911B93C4915F363D9F9DA08507C5919F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tE5B0C76EF53D7823DC8E8A9147A1EA87C242588E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct InternalEnumerator_1_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tA00E201BD780AAD6BF7CA0B12180A71D91099D6D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_t8AFC9833688182F83B3EF097A9730EAD1F662DFF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tE62B7E6BC1A595B154BAADD51AC5C05519BB0BD8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C(IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_t43A3ACD87FFA8727652C75370592F3DF2C1C5C7E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t54978B29B60E089871F5BBC9C4B08DC979731B78(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t54978B29B60E089871F5BBC9C4B08DC979731B78_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tA1BA1C034993589221842AB94B03B648CEDE7CCC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tA1BA1C034993589221842AB94B03B648CEDE7CCC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct InternalEnumerator_1_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tF90408FF31704399D72D5B5F8A8F5C72F11C14D9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tAEF3F064AA4C774C4280F389519BEB4F8158A57D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tAEF3F064AA4C774C4280F389519BEB4F8158A57D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>>
struct InternalEnumerator_1_t15CEEDC76B17E3A265020E0AC000CA65938B5F61_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t15CEEDC76B17E3A265020E0AC000CA65938B5F61_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t15CEEDC76B17E3A265020E0AC000CA65938B5F61_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t15CEEDC76B17E3A265020E0AC000CA65938B5F61_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t15CEEDC76B17E3A265020E0AC000CA65938B5F61(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t15CEEDC76B17E3A265020E0AC000CA65938B5F61_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t15CEEDC76B17E3A265020E0AC000CA65938B5F61_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Enumerator_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t94C3C0F24DE856E309EA10D2C2ECCBB8F151E0E4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.UI.Image>
struct List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tA9C10612DACE8F188F3B35F6173354C7225A0883(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tA9C10612DACE8F188F3B35F6173354C7225A0883_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Image>
struct EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t431C71F1D9499C1EF490FACAD34DF0EEC04CDCD8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Image>
struct InternalEnumerator_1_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t748A55FEA18E6900B5F779E5D555FD01E9E48E0B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.ISerializationCallbackReceiver>
struct EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t845DF0635EDCBEE3D4CC7FBBD47075FEC1E4EC77_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.ISerializationCallbackReceiver>
struct InternalEnumerator_1_t9E4135EE0249E455AC3A12C8EC9F398B75509E30_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t9E4135EE0249E455AC3A12C8EC9F398B75509E30_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t9E4135EE0249E455AC3A12C8EC9F398B75509E30_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t9E4135EE0249E455AC3A12C8EC9F398B75509E30_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9E4135EE0249E455AC3A12C8EC9F398B75509E30(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t9E4135EE0249E455AC3A12C8EC9F398B75509E30_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t9E4135EE0249E455AC3A12C8EC9F398B75509E30_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UI.Image>
struct ReadOnlyCollection_1_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t031963B1A854A9DFEBD291678C57D9F06BBEEA8C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Image>
struct Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tE274ABC95AD5BA1AE11217DA1768EA01B1B82E32_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.InputField_ContentType>
struct EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t3FB03DC402FB937488FB9EAF85B3411A266DA942(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t3FB03DC402FB937488FB9EAF85B3411A266DA942_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.InputField_ContentType>
struct InternalEnumerator_1_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t449D72C9E6F452CD049BFF7ED9AF0AEB40761FE6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.RectTransform>
struct List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A
{
inline List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &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, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(6);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[5] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
*iidCount = 6;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL 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);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t6E2F647783FBCA5123C6D7868CA8A1B87E57EFE7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.RectTransform>
struct ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A
{
inline ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &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, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(6);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[5] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
*iidCount = 6;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL 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);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tE83DBCA12DB681A35E1CA5DB2F42089233C0B479_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.RectTransform>
struct Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t530E1DB55CD6FB8FD13CCC3B6181CD9A2993D552_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<UnityEngine.UI.LayoutRebuilder>
struct Stack_1_tCA416EA8711EF496637AF78111D65548F11E2F0A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_tCA416EA8711EF496637AF78111D65548F11E2F0A_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_tCA416EA8711EF496637AF78111D65548F11E2F0A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_tCA416EA8711EF496637AF78111D65548F11E2F0A_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tCA416EA8711EF496637AF78111D65548F11E2F0A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_tCA416EA8711EF496637AF78111D65548F11E2F0A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_tCA416EA8711EF496637AF78111D65548F11E2F0A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.LayoutRebuilder>
struct EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0CB10B3779057CDEB8740D12D1F8604952192651(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t0CB10B3779057CDEB8740D12D1F8604952192651_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.LayoutRebuilder>
struct InternalEnumerator_1_t345EE18215D993062CF5DC2A355B14AD171198E6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t345EE18215D993062CF5DC2A355B14AD171198E6_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t345EE18215D993062CF5DC2A355B14AD171198E6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t345EE18215D993062CF5DC2A355B14AD171198E6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t345EE18215D993062CF5DC2A355B14AD171198E6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t345EE18215D993062CF5DC2A355B14AD171198E6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t345EE18215D993062CF5DC2A355B14AD171198E6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.UI.Mask>
struct List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t649E4389CFF5A012246C543819F39664C8AEE5FE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t649E4389CFF5A012246C543819F39664C8AEE5FE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Mask>
struct EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t2CC24F9F3FAEE4A4BF02751CE4B54F60C3531C2C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Mask>
struct InternalEnumerator_1_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t72E002BC211DE9D5A799B9DCEC612A13208CB3CD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UI.Mask>
struct ReadOnlyCollection_1_t969F4DC776A79087015A918AA6B5BF87CE422757_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t969F4DC776A79087015A918AA6B5BF87CE422757_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t969F4DC776A79087015A918AA6B5BF87CE422757_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t969F4DC776A79087015A918AA6B5BF87CE422757_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t969F4DC776A79087015A918AA6B5BF87CE422757(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t969F4DC776A79087015A918AA6B5BF87CE422757_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t969F4DC776A79087015A918AA6B5BF87CE422757_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Mask>
struct Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t02E730B63B6D35672A05EA1AB12841DC0B3BDE68_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.UI.Mask>>
struct Stack_1_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629*>(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_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C*>(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>(6);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[4] = IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C::IID;
interfaceIds[5] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 6;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C(IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C_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_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B(IIterator_1_t778CBEADF41F93C0FF6B5A7DCD14292A25473632** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B_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_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_t1D94809B064D81EF1DBAD6E7E89176ECD96D20A5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UI.Mask>>
struct EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF5B6573DAA823FF784BBAE75027063B1CFC0678C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tF5B6573DAA823FF784BBAE75027063B1CFC0678C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UI.Mask>>
struct InternalEnumerator_1_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tFD9C1C128DE3FABE6BDC3BA0B7E762652F5B2BD6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>>
struct Stack_1_t8310A2AB58D135C349621D7860661BB695DC647C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_t8310A2AB58D135C349621D7860661BB695DC647C_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_t8310A2AB58D135C349621D7860661BB695DC647C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_t8310A2AB58D135C349621D7860661BB695DC647C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629*>(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_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C*>(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>(6);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t902DCF3D3C27B82171829A44E6D71C5C195A6629::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[4] = IIterable_1_tAD0B29100AA6FD6F3FC97D24D1376F06F6DF571C::IID;
interfaceIds[5] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 6;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C(IIterator_1_t338801CF751DA6B3F37B9D6ED55A0F3F57F58AB1** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m09831C624871C19D843F4008C044966FB5E9343C_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_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B(IIterator_1_t778CBEADF41F93C0FF6B5A7DCD14292A25473632** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m88718ECE69AC144FE3F65AC0C64D13F46A794D5B_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_t8310A2AB58D135C349621D7860661BB695DC647C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_t8310A2AB58D135C349621D7860661BB695DC647C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_t8310A2AB58D135C349621D7860661BB695DC647C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>>
struct EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tAEE6D04490C8A7D553F007F2D0544D28CAA6DC6D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>>
struct InternalEnumerator_1_t8C10FAD14C929D7EA522A4AE246337597EACEB75_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8C10FAD14C929D7EA522A4AE246337597EACEB75_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t8C10FAD14C929D7EA522A4AE246337597EACEB75_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8C10FAD14C929D7EA522A4AE246337597EACEB75_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t8C10FAD14C929D7EA522A4AE246337597EACEB75(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t8C10FAD14C929D7EA522A4AE246337597EACEB75_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t8C10FAD14C929D7EA522A4AE246337597EACEB75_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1<UnityEngine.UI.MaskableGraphic>
struct HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF035B0C2C7E1925B6966D73DB277DF70D4C48408(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HashSet_1_tF035B0C2C7E1925B6966D73DB277DF70D4C48408_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.MaskableGraphic>>
struct EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tD9B5B35C205804DA87687C911E263A377960AFF0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tD9B5B35C205804DA87687C911E263A377960AFF0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.MaskableGraphic>>
struct InternalEnumerator_1_t726153457F5EFE28D9FE468549829D112BF4AB15_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t726153457F5EFE28D9FE468549829D112BF4AB15_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t726153457F5EFE28D9FE468549829D112BF4AB15_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t726153457F5EFE28D9FE468549829D112BF4AB15_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t726153457F5EFE28D9FE468549829D112BF4AB15(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t726153457F5EFE28D9FE468549829D112BF4AB15_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t726153457F5EFE28D9FE468549829D112BF4AB15_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.UI.MaskableGraphic>
struct Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tFDBC0C8A7AAF72A2D2DE0A46D9C7EC99AD5517A2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>
struct HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) HashSet_1_tAAE962DCA7E1BD56AD7B2C079CD4DBA3D0B231AD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.IClippable>>
struct EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tDB5831AB98991B9393048B12FB5D30FD2F88ACCC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.UI.IClippable>>
struct InternalEnumerator_1_t35744782BC060A3325C1B121A8A0050A680E7060_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t35744782BC060A3325C1B121A8A0050A680E7060_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t35744782BC060A3325C1B121A8A0050A680E7060_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t35744782BC060A3325C1B121A8A0050A680E7060_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t35744782BC060A3325C1B121A8A0050A680E7060(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t35744782BC060A3325C1B121A8A0050A680E7060_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t35744782BC060A3325C1B121A8A0050A680E7060_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.HashSet`1_Enumerator<UnityEngine.UI.IClippable>
struct Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t052CC95501ABC9AF58B579B3055BF2930756224F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t052CC95501ABC9AF58B579B3055BF2930756224F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Selectable>
struct EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB409C178FC262ACFB16C03A97845715496676429(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tB409C178FC262ACFB16C03A97845715496676429_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Selectable>
struct InternalEnumerator_1_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t1CFC1A662C55EE13D97C104AE646A2346CAA2F50_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IMoveHandler>
struct EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tD0FAFD8FCCC0F65D62D3B539866FE19A580E0EDB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.IMoveHandler>
struct InternalEnumerator_1_t83923C22673DC16CD418A80FCE0086423D3AE817_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t83923C22673DC16CD418A80FCE0086423D3AE817_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t83923C22673DC16CD418A80FCE0086423D3AE817_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t83923C22673DC16CD418A80FCE0086423D3AE817_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t83923C22673DC16CD418A80FCE0086423D3AE817(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t83923C22673DC16CD418A80FCE0086423D3AE817_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t83923C22673DC16CD418A80FCE0086423D3AE817_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9E6D7569178880FCA7A57E00A710842C0228D07E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t9E6D7569178880FCA7A57E00A710842C0228D07E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.IPointerDownHandler>
struct InternalEnumerator_1_t8FD5607768206201FF317C648FC46A29C4A7D2DD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8FD5607768206201FF317C648FC46A29C4A7D2DD_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t8FD5607768206201FF317C648FC46A29C4A7D2DD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t8FD5607768206201FF317C648FC46A29C4A7D2DD_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t8FD5607768206201FF317C648FC46A29C4A7D2DD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t8FD5607768206201FF317C648FC46A29C4A7D2DD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t8FD5607768206201FF317C648FC46A29C4A7D2DD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t30037CB233AF68F8B89EA62C2D791AFAC00ACADE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.IPointerUpHandler>
struct InternalEnumerator_1_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tC3F32CA933713AFFD7B8DF5D795C290941DFEB73_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t724751A747634B727526FA296BE12A8CE133A9EE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t724751A747634B727526FA296BE12A8CE133A9EE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.IPointerExitHandler>
struct InternalEnumerator_1_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t2C2F9D720F9A9DD8986118A514E79DDA2D2DB7ED_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.ISelectHandler>
struct EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t781C0DDF32E50646D120164B5898C25D83C18818(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t781C0DDF32E50646D120164B5898C25D83C18818_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.ISelectHandler>
struct InternalEnumerator_1_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t6A5B3FC687956AFDA63E6F17245CC3562F487ED8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IDeselectHandler>
struct EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t68034CA009EE0452E0D0157CA94CBB0DAF998AE5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.IDeselectHandler>
struct InternalEnumerator_1_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tE1F4FCBC0EE223889CFEC2C2E510D3A8767D29E2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.UI.Selectable>
struct List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB3236831489BBBE7DD2253F1B7C0CB12000AF188(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tB3236831489BBBE7DD2253F1B7C0CB12000AF188_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UI.Selectable>
struct ReadOnlyCollection_1_t06BC5A889B5F9A249CB942DC8E60E3561D275D67_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t06BC5A889B5F9A249CB942DC8E60E3561D275D67_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t06BC5A889B5F9A249CB942DC8E60E3561D275D67_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t06BC5A889B5F9A249CB942DC8E60E3561D275D67_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t06BC5A889B5F9A249CB942DC8E60E3561D275D67(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t06BC5A889B5F9A249CB942DC8E60E3561D275D67_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t06BC5A889B5F9A249CB942DC8E60E3561D275D67_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Selectable>
struct Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t9EC679F138302E2F8BEB09CBE859D9B3AB3E5BD0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tBAADD11CB54B4B4FADEE067DA99738FA924872C2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Navigation>
struct InternalEnumerator_1_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tB0306F417CECFB4AEA0F97B09E8EB1957F0B7021_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<UnityEngine.UI.Navigation>
struct IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_t3C5C63D4703139FC9B1B30F5F7915E3E0E8F6E02_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t580BB4F123AFC13ACA3E68B118A93175F88F921D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct InternalEnumerator_1_t78E1ED0834343DFC02CD94835D603112C1878F02_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t78E1ED0834343DFC02CD94835D603112C1878F02_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t78E1ED0834343DFC02CD94835D603112C1878F02_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t78E1ED0834343DFC02CD94835D603112C1878F02_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t78E1ED0834343DFC02CD94835D603112C1878F02(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t78E1ED0834343DFC02CD94835D603112C1878F02_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t78E1ED0834343DFC02CD94835D603112C1878F02_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<UnityEngine.UI.ColorBlock>
struct IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t98930436190C03E6EAD80D5E541B9220B26C3D1B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_t98930436190C03E6EAD80D5E541B9220B26C3D1B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tBABE923CA4F5D19955F75E3D2580BCBB187356AA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.SpriteState>
struct InternalEnumerator_1_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t60240A3C27ACD3F92CE45A9DD8719FD259B60CAD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Runtime.InteropServices.WindowsRuntime.IIteratorToIEnumeratorAdapter`1<UnityEngine.UI.SpriteState>
struct IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t5FE18248247487E7833DE020159EE568E98E7470(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IIteratorToIEnumeratorAdapter_1_t5FE18248247487E7833DE020159EE568E98E7470_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.CanvasGroup>
struct List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE7746C234F913BA0579DAC892E7288A1C7664A0A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tE7746C234F913BA0579DAC892E7288A1C7664A0A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.CanvasGroup>
struct EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t2A332BADC443981B49B4F92F07410897331D585C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t2A332BADC443981B49B4F92F07410897331D585C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.CanvasGroup>
struct InternalEnumerator_1_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t854B11FC48C6EB2EBA811FDEAE5BFE3E181393F6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.CanvasGroup>
struct ReadOnlyCollection_1_t89E79F5AFC120AF05FFBF5A74851340E11D403CC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t89E79F5AFC120AF05FFBF5A74851340E11D403CC_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t89E79F5AFC120AF05FFBF5A74851340E11D403CC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t89E79F5AFC120AF05FFBF5A74851340E11D403CC_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t89E79F5AFC120AF05FFBF5A74851340E11D403CC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t89E79F5AFC120AF05FFBF5A74851340E11D403CC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t89E79F5AFC120AF05FFBF5A74851340E11D403CC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.CanvasGroup>
struct Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t58486A5CA0FB12EA560E619FF3092EC79FF1B046(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t58486A5CA0FB12EA560E619FF3092EC79FF1B046_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial_MatEntry>
struct List_1_t7984FB74D3877329C67F707EE61308104862C691_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t7984FB74D3877329C67F707EE61308104862C691_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t7984FB74D3877329C67F707EE61308104862C691_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t7984FB74D3877329C67F707EE61308104862C691_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t7984FB74D3877329C67F707EE61308104862C691(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t7984FB74D3877329C67F707EE61308104862C691_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t7984FB74D3877329C67F707EE61308104862C691_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.StencilMaterial_MatEntry>
struct EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t66B9D209E649F006884D173D99274719C5426C23(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t66B9D209E649F006884D173D99274719C5426C23_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.StencilMaterial_MatEntry>
struct InternalEnumerator_1_tD3D01DAB6971563D2596E13F923B617A6C823CDD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tD3D01DAB6971563D2596E13F923B617A6C823CDD_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tD3D01DAB6971563D2596E13F923B617A6C823CDD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tD3D01DAB6971563D2596E13F923B617A6C823CDD_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tD3D01DAB6971563D2596E13F923B617A6C823CDD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tD3D01DAB6971563D2596E13F923B617A6C823CDD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tD3D01DAB6971563D2596E13F923B617A6C823CDD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UI.StencilMaterial_MatEntry>
struct ReadOnlyCollection_1_tF788B7061E1AE785A991648862886CCA3F911DE1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF788B7061E1AE785A991648862886CCA3F911DE1_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tF788B7061E1AE785A991648862886CCA3F911DE1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF788B7061E1AE785A991648862886CCA3F911DE1_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF788B7061E1AE785A991648862886CCA3F911DE1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tF788B7061E1AE785A991648862886CCA3F911DE1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tF788B7061E1AE785A991648862886CCA3F911DE1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.StencilMaterial_MatEntry>
struct Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tA57FFD393B184B19923F6FF3251313BD38F05C87(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tA57FFD393B184B19923F6FF3251313BD38F05C87_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.UI.Toggle>
struct List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t5603D617415C67B322F898ABF659C3E2C8BD668C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t5603D617415C67B322F898ABF659C3E2C8BD668C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Toggle>
struct EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF272DD31A604A7BFC2F9C5FC1728485615A5882C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tF272DD31A604A7BFC2F9C5FC1728485615A5882C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.UI.Toggle>
struct InternalEnumerator_1_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t34CC42E6D0C7291B5E9D2076A81B5DDE5D9B45E9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tD52CD727FA1120C2A035197C9DA51D0C56F3F7EC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.IPointerClickHandler>
struct InternalEnumerator_1_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t4F2B87EFBF7F6F85763E12C8AFF0B1298D033879_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.ISubmitHandler>
struct EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t73C68136FC64D116CA85849700D7EE61EB609DEA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t73C68136FC64D116CA85849700D7EE61EB609DEA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.ISubmitHandler>
struct InternalEnumerator_1_t9EEECA066B47C329C565F0AB996CE3E48F273F0B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t9EEECA066B47C329C565F0AB996CE3E48F273F0B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t9EEECA066B47C329C565F0AB996CE3E48F273F0B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t9EEECA066B47C329C565F0AB996CE3E48F273F0B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9EEECA066B47C329C565F0AB996CE3E48F273F0B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t9EEECA066B47C329C565F0AB996CE3E48F273F0B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t9EEECA066B47C329C565F0AB996CE3E48F273F0B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UI.Toggle>
struct ReadOnlyCollection_1_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tF0FB5EBC44F53CC1D5A165248401C3BF59E8EE1B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.UI.Toggle>
struct Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t5C74F5AF679A5AFA0F43CE8AA860BC454E7A04C8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereArrayIterator`1<UnityEngine.UI.Toggle>
struct WhereArrayIterator_1_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereArrayIterator_1_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereArrayIterator_1_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereArrayIterator_1_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereArrayIterator_1_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereArrayIterator_1_tD7C1A9C71AE2348A91FD14257E1575F7E29B0166_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereListIterator`1<UnityEngine.UI.Toggle>
struct WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tD08367BB5628489FF8E7AC15FB8D712C25286499(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereListIterator_1_tD08367BB5628489FF8E7AC15FB8D712C25286499_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Enumerable_WhereEnumerableIterator`1<UnityEngine.UI.Toggle>
struct WhereEnumerableIterator_1_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<WhereEnumerableIterator_1_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline WhereEnumerableIterator_1_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<WhereEnumerableIterator_1_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(WhereEnumerableIterator_1_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) WhereEnumerableIterator_1_t326CF6688700E1913FC30A0EC6ED312F1A0BA1BC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Vector3>>
struct Stack_1_tB88789DF6FEC373BE3216AC28D17A22FDB65D489_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_tB88789DF6FEC373BE3216AC28D17A22FDB65D489_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_tB88789DF6FEC373BE3216AC28D17A22FDB65D489_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_tB88789DF6FEC373BE3216AC28D17A22FDB65D489_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(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>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_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_tB88789DF6FEC373BE3216AC28D17A22FDB65D489(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_tB88789DF6FEC373BE3216AC28D17A22FDB65D489_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_tB88789DF6FEC373BE3216AC28D17A22FDB65D489_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector3>>
struct EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t8A10364A1C61687872FC4F9B7484A14D4FF585CE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t8A10364A1C61687872FC4F9B7484A14D4FF585CE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector3>>
struct InternalEnumerator_1_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t1D05A1CCCABC1D98A0944A784DC50DB21C8954E3_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Color32>>
struct Stack_1_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(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>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_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_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_tD3686B49BE87370A979ADAFA6DEAAE30B3FB6452_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Color32>>
struct EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tB00F5AB844F40E45DC29ADE8AD0595F687D8FDFD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Color32>>
struct InternalEnumerator_1_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t5F5A9FAFA69470FA6CFF86D192955B3DBDDF695D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Vector2>>
struct Stack_1_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(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>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_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_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_t6CD8A23D0684D010CD60BE0EC39253502CB8D20D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector2>>
struct EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t7C5E601A203381355682098DD3B5C40C325D3F8B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t7C5E601A203381355682098DD3B5C40C325D3F8B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector2>>
struct InternalEnumerator_1_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t94E14D2C816BE5984369BB0C2AB45D46CFEC4DCA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.Vector4>>
struct Stack_1_tCFA2A645438950A02F8F2217C68D78686F8FDABB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_tCFA2A645438950A02F8F2217C68D78686F8FDABB_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_tCFA2A645438950A02F8F2217C68D78686F8FDABB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_tCFA2A645438950A02F8F2217C68D78686F8FDABB_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(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>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_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_tCFA2A645438950A02F8F2217C68D78686F8FDABB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_tCFA2A645438950A02F8F2217C68D78686F8FDABB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_tCFA2A645438950A02F8F2217C68D78686F8FDABB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector4>>
struct EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t4CE64DF5ADC6BAA7A8779CEA73D9CB529E7062A0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.Vector4>>
struct InternalEnumerator_1_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tA1D447791A07BB7AA68B55EDE34A2C226BE5690D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<System.Int32>>
struct Stack_1_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_tAC2A768318A3B5843062FBB56DD5E7405E41A302, IIterable_1_tFC13C53CBD55D5205C68D5D9CA66510CA602948E, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IIterable_1_tC72961683153DB1953DB49F4924A4A2961043439, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tAC2A768318A3B5843062FBB56DD5E7405E41A302::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tAC2A768318A3B5843062FBB56DD5E7405E41A302*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tFC13C53CBD55D5205C68D5D9CA66510CA602948E::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tFC13C53CBD55D5205C68D5D9CA66510CA602948E*>(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_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tC72961683153DB1953DB49F4924A4A2961043439::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tC72961683153DB1953DB49F4924A4A2961043439*>(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>(7);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_tAC2A768318A3B5843062FBB56DD5E7405E41A302::IID;
interfaceIds[2] = IIterable_1_tFC13C53CBD55D5205C68D5D9CA66510CA602948E::IID;
interfaceIds[3] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[4] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[5] = IIterable_1_tC72961683153DB1953DB49F4924A4A2961043439::IID;
interfaceIds[6] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 7;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL 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_m7CA6136A702F60BC9D76703E41DAFEFFB8630CF1(IIterator_1_tA43F6FC1D4C77D938D70C30796F03C0C9D01652B** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m7CA6136A702F60BC9D76703E41DAFEFFB8630CF1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m08AE3205A8C461CBBFD801DF50F22BB295E6F11E(IIterator_1_t5ED96EAD78CEF2D860EDB4DCF4672C15C13F6B53** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m08AE3205A8C461CBBFD801DF50F22BB295E6F11E_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_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mEA3E0A2E3EBF3C5119B790F2DB2E361610F5E564(IIterator_1_t3557A30DEED19D31BAF82BE4B75C2FFDEC593169** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mEA3E0A2E3EBF3C5119B790F2DB2E361610F5E564_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_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_tD844FBAA7E7F6C2AE4AB607F96FC1DB969C7B071_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.UIVertex>>
struct Stack_1_tDDB642ED18C289FF860C44FD24B801BAC507139A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_tDDB642ED18C289FF860C44FD24B801BAC507139A_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_tDDB642ED18C289FF860C44FD24B801BAC507139A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_tDDB642ED18C289FF860C44FD24B801BAC507139A_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(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>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_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_tDDB642ED18C289FF860C44FD24B801BAC507139A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_tDDB642ED18C289FF860C44FD24B801BAC507139A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_tDDB642ED18C289FF860C44FD24B801BAC507139A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UIVertex>>
struct EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t388697E4542693A58E1D928D0464D0D225DC198B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t388697E4542693A58E1D928D0464D0D225DC198B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.UIVertex>>
struct InternalEnumerator_1_t341F1CAA8B39FB812A8929B6150EDE61B709C192_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t341F1CAA8B39FB812A8929B6150EDE61B709C192_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t341F1CAA8B39FB812A8929B6150EDE61B709C192_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t341F1CAA8B39FB812A8929B6150EDE61B709C192_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t341F1CAA8B39FB812A8929B6150EDE61B709C192(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t341F1CAA8B39FB812A8929B6150EDE61B709C192_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t341F1CAA8B39FB812A8929B6150EDE61B709C192_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.EventSystem>
struct EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t80CCA1549DCCBCD614BA7A4C61B61BFC0FE3E606_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.EventSystem>
struct InternalEnumerator_1_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t54BC1C7528BEBF99D715F83C4B7AAD34A187C969_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.EventSystem>
struct ReadOnlyCollection_1_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t1DFEB4C3AA42D328903FA6188013DD4F96F6F62F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.EventSystem>
struct Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t9B0DEAA470A35C787E2D8D916D4A2209C591ED32_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.BaseInputModule>
struct EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t0387D5CF45697BC60FE0BAD9EC641C2B5CBB8EAC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.BaseInputModule>
struct InternalEnumerator_1_t531596595A9917A3EE16E9A986F53E26F25D2DE6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t531596595A9917A3EE16E9A986F53E26F25D2DE6_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t531596595A9917A3EE16E9A986F53E26F25D2DE6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t531596595A9917A3EE16E9A986F53E26F25D2DE6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t531596595A9917A3EE16E9A986F53E26F25D2DE6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t531596595A9917A3EE16E9A986F53E26F25D2DE6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t531596595A9917A3EE16E9A986F53E26F25D2DE6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.BaseInputModule>
struct ReadOnlyCollection_1_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tF1980BCD83974DDF0A59436D0C138E8274A1C5B9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.BaseInputModule>
struct Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0CCF3A5092622017B8B73EDC9957411238A697B7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t0CCF3A5092622017B8B73EDC9957411238A697B7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>
struct List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF4A102204249A5D86BDDF4956B0F3550E341746F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tF4A102204249A5D86BDDF4956B0F3550E341746F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.IEventSystemHandler>
struct ReadOnlyCollection_1_t3F9015C9A561B05ECF41E220AC14901423AEE127_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3F9015C9A561B05ECF41E220AC14901423AEE127_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline ReadOnlyCollection_1_t3F9015C9A561B05ECF41E220AC14901423AEE127_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3F9015C9A561B05ECF41E220AC14901423AEE127_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t3F9015C9A561B05ECF41E220AC14901423AEE127(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t3F9015C9A561B05ECF41E220AC14901423AEE127_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t3F9015C9A561B05ECF41E220AC14901423AEE127_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.IEventSystemHandler>
struct Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tDE81D0AE9F2D55EDFABDE0901E468E060F9F1D5B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct Stack_1_t653D71B3443B2073A16F05650BC52AABB537B890_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Stack_1_t653D71B3443B2073A16F05650BC52AABB537B890_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Stack_1_t653D71B3443B2073A16F05650BC52AABB537B890_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Stack_1_t653D71B3443B2073A16F05650BC52AABB537B890_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(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>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_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_t653D71B3443B2073A16F05650BC52AABB537B890(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Stack_1_t653D71B3443B2073A16F05650BC52AABB537B890_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Stack_1_t653D71B3443B2073A16F05650BC52AABB537B890_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t7EC6FE9C1FAE6EACA5449292384363D6EDDBDD64_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct InternalEnumerator_1_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tEC5068DC10E5A6905070D0BBACBBB8FBA878A0E7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>
struct List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tED9ECFD90851157EFC14F5BE7FAA8124613D0C97_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.BaseRaycaster>
struct ReadOnlyCollection_1_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t3DDC7BC3866BFBF23898B8F61ACC7A67E2231414_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.BaseRaycaster>
struct Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tFAB45D27B37BBB3FE07678BAA6E1801ED55DDC0D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry>
struct List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t3D4AF004AB30F72D5A06525187E5F50A875DE9FA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.EventTrigger_Entry>
struct EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t0D2B0CF791CEFE3426AFD21A39B88B44F035BE6C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.EventTrigger_Entry>
struct InternalEnumerator_1_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t6684BE2A39B81C1D80B55BC445D86D3E69C96AF1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.EventTrigger_Entry>
struct ReadOnlyCollection_1_t1387C1B31316DFDB3F120B775897CC1DFE235065_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1387C1B31316DFDB3F120B775897CC1DFE235065_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_t1387C1B31316DFDB3F120B775897CC1DFE235065_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1387C1B31316DFDB3F120B775897CC1DFE235065_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1387C1B31316DFDB3F120B775897CC1DFE235065(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t1387C1B31316DFDB3F120B775897CC1DFE235065_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t1387C1B31316DFDB3F120B775897CC1DFE235065_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.EventTrigger_Entry>
struct Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t22E4A87EE571A6A7F815B64A41529FD3DBADF707(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t22E4A87EE571A6A7F815B64A41529FD3DBADF707_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A
{
inline List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &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, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(6);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[5] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
*iidCount = 6;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL 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);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tE2895D6ED3A7C02005A89712BECBA7812B6CCC91_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Transform>
struct ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A
{
inline ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &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, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(6);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[4] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[5] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
*iidCount = 6;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL 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);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t1F10683A8CA0744AAE3D5C19D031B15102EA513E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.Transform>
struct Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t003636A0CF194A4F8A0C2D810B60016904D40E85(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t003636A0CF194A4F8A0C2D810B60016904D40E85_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.BaseInput>
struct EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF47F42517C37667B7E1A1AECE1F04053962A56DA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tF47F42517C37667B7E1A1AECE1F04053962A56DA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.BaseInput>
struct InternalEnumerator_1_t241870074855ABD47CE1EDEF5F73F644811376C8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t241870074855ABD47CE1EDEF5F73F644811376C8_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t241870074855ABD47CE1EDEF5F73F644811376C8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t241870074855ABD47CE1EDEF5F73F644811376C8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t241870074855ABD47CE1EDEF5F73F644811376C8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t241870074855ABD47CE1EDEF5F73F644811376C8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t241870074855ABD47CE1EDEF5F73F644811376C8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2_t9F401E8FAE13945DFBD264E317248AB9CC9C36CA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.EventSystems.PointerEventData>>
struct EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t9A62C1CC358B9399FD706E6142ADAC35ADBE2EC3_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.EventSystems.PointerEventData>>
struct InternalEnumerator_1_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t1D727B27BC0472D2CEC1DA59E39A2B132103D7A0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449_ComCallableWrapper>, IIterable_1_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719*>(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_tCAF4089D0AFDC422E5D221DD5201B9B3CD3FE719::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_m799ACB50542612A789EBE3C45F76D0A2C851D406(IIterator_1_t7EE0FEB3804E31D53920931A9A141AFCA98AB681** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m799ACB50542612A789EBE3C45F76D0A2C851D406_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_t0AC4AF273FA40B66E464652F178D0425D0BA6449(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyCollection_t0AC4AF273FA40B66E464652F178D0425D0BA6449_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_tC711F944169B03F1BE5D571D18AFC8B257B7B024_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_tC711F944169B03F1BE5D571D18AFC8B257B7B024_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_tC711F944169B03F1BE5D571D18AFC8B257B7B024_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_tC711F944169B03F1BE5D571D18AFC8B257B7B024_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tC711F944169B03F1BE5D571D18AFC8B257B7B024(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_tC711F944169B03F1BE5D571D18AFC8B257B7B024_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_tC711F944169B03F1BE5D571D18AFC8B257B7B024_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7
{
inline ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ValueCollection_tE02BFE5D47E47509F8D4DB392A86B2FA4D23C860_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t41FA4A262247ABC7EF98E82EE2F07514E1A043D1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.PointerEventData>
struct EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t7C852A13C7E2D3584CF00DE60D7587BCBA4C4EED_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.PointerEventData>
struct InternalEnumerator_1_t1D904C9EF1434B55B2E02BDFE368B3649564298F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1D904C9EF1434B55B2E02BDFE368B3649564298F_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t1D904C9EF1434B55B2E02BDFE368B3649564298F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t1D904C9EF1434B55B2E02BDFE368B3649564298F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t1D904C9EF1434B55B2E02BDFE368B3649564298F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t1D904C9EF1434B55B2E02BDFE368B3649564298F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t1D904C9EF1434B55B2E02BDFE368B3649564298F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.BaseEventData>
struct EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t008D2F5BB895F016B23ADBE6D12B4FBC301B4186_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.BaseEventData>
struct InternalEnumerator_1_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t90F167BAFAD67E7ED0452E5FE2C5CF1835ACF8B7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.AbstractEventData>
struct EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tDC9799FF294B69F1331B1B707AD37A2BD16B1832(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tDC9799FF294B69F1331B1B707AD37A2BD16B1832_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.AbstractEventData>
struct InternalEnumerator_1_tC6D530E331D24D1FD31DE345B80B960DA0595143_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tC6D530E331D24D1FD31DE345B80B960DA0595143_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_tC6D530E331D24D1FD31DE345B80B960DA0595143_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_tC6D530E331D24D1FD31DE345B80B960DA0595143_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tC6D530E331D24D1FD31DE345B80B960DA0595143(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_tC6D530E331D24D1FD31DE345B80B960DA0595143_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_tC6D530E331D24D1FD31DE345B80B960DA0595143_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>>
struct EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t8C8070F1D477173CA624C03229C526A2671F5ABF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t8C8070F1D477173CA624C03229C526A2671F5ABF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>>
struct InternalEnumerator_1_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t2A1845A02AB2AD53B7091F45B1174E4B88E7DA39_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t69DA01997DBC98F46135E03A41A0BAB908D2C2AB_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_tF0A983C549D4719BB6731A650E4E4F1BB16AADAA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t70F0D071EEBEC58BF29989583A5EC29A3A490211(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t70F0D071EEBEC58BF29989583A5EC29A3A490211_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct InternalEnumerator_1_t7F8D8D94DBB6E76997AA622567B43870048ADF84_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t7F8D8D94DBB6E76997AA622567B43870048ADF84_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t7F8D8D94DBB6E76997AA622567B43870048ADF84_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t7F8D8D94DBB6E76997AA622567B43870048ADF84_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t7F8D8D94DBB6E76997AA622567B43870048ADF84(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t7F8D8D94DBB6E76997AA622567B43870048ADF84_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t7F8D8D94DBB6E76997AA622567B43870048ADF84_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct ReadOnlyCollection_1_tD6702B32E890226E8E1C73B44010C15DA85D9E77_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tD6702B32E890226E8E1C73B44010C15DA85D9E77_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356
{
inline ReadOnlyCollection_1_tD6702B32E890226E8E1C73B44010C15DA85D9E77_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_tD6702B32E890226E8E1C73B44010C15DA85D9E77_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tD6702B32E890226E8E1C73B44010C15DA85D9E77(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_tD6702B32E890226E8E1C73B44010C15DA85D9E77_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_tD6702B32E890226E8E1C73B44010C15DA85D9E77_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t75543F6D37E72D0EA839F86C334BCB7231DE532B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Enumerator_t75543F6D37E72D0EA839F86C334BCB7231DE532B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<System.Byte[]>
struct List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_ComCallableWrapper>, IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597, IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA8A22E629BE6C93E9F2BA908BFEC436CF7B58CF, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE, IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A, IVectorView_1_t1FE0CCBA3F787313570478F016C25DC5D6CEED05, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B
{
inline List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77*>(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_tBA8A22E629BE6C93E9F2BA908BFEC436CF7B58CF::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA8A22E629BE6C93E9F2BA908BFEC436CF7B58CF*>(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_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(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_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t1FE0CCBA3F787313570478F016C25DC5D6CEED05::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t1FE0CCBA3F787313570478F016C25DC5D6CEED05*>(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, &IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(14);
interfaceIds[0] = IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597::IID;
interfaceIds[1] = IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IIterable_1_tBA8A22E629BE6C93E9F2BA908BFEC436CF7B58CF::IID;
interfaceIds[4] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[5] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[6] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[7] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[8] = IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE::IID;
interfaceIds[9] = IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC::IID;
interfaceIds[10] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
interfaceIds[11] = IVectorView_1_t1FE0CCBA3F787313570478F016C25DC5D6CEED05::IID;
interfaceIds[12] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[13] = IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B::IID;
*iidCount = 14;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
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_mB2BE0E035F399B6BE3EDB48CB7A0520839501C4D(IIterator_1_tD592AB51083B29306C691734C2461B468C33DA26** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mB2BE0E035F399B6BE3EDB48CB7A0520839501C4D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5(IIterator_1_t95F16BFCADBB4953D81661A10E2B53A54BFE4F98** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5_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_mA5DB921C07A848535DEAE091CCB5D5E1BA8FD789(IIterator_1_tEE703948C4CD34070052F9FCB434A5CB3B4685B4** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mA5DB921C07A848535DEAE091CCB5D5E1BA8FD789_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_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_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_m0528C2ECDAFAA0F1741464585BAA458A119C293E(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m0528C2ECDAFAA0F1741464585BAA458A119C293E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mF8B1A974030E05A284F3D4DE3444F3A240671B96(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mF8B1A974030E05A284F3D4DE3444F3A240671B96_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m802E9EC2DA99E90552079326850D5CEE0B5ECAF4(IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m802E9EC2DA99E90552079326850D5CEE0B5ECAF4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m65EEA32574A21A87FD098708412643CE5EAB3F30(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m65EEA32574A21A87FD098708412643CE5EAB3F30_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m99E191D4F4F62DCB99BA6721DDB26D65C51B6A99(uint32_t ___index0, IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m99E191D4F4F62DCB99BA6721DDB26D65C51B6A99_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m658CEE1BA57395844E57C47390B93BE53C3FD28C(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m658CEE1BA57395844E57C47390B93BE53C3FD28C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mF0539EB08CF8A796668D80484FB91000B3EF8A79(IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mF0539EB08CF8A796668D80484FB91000B3EF8A79_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m0434599CBB0A2F8073FFCB73667F8AE6D40D6758(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVectorView_1_t9FA35DEAB6E2B3710B305F2C00E22ECFFCA2E690** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m0434599CBB0A2F8073FFCB73667F8AE6D40D6758_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10(uint32_t ___index0, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B(IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.IList`1<System.Byte>>
struct EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t2F27ECDCB2694E93E49476DBC32AA8E9E56787ED_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.IList`1<System.Byte>>
struct InternalEnumerator_1_t14CC84A9263CA26873ADBF461222334ADA466501_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t14CC84A9263CA26873ADBF461222334ADA466501_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t14CC84A9263CA26873ADBF461222334ADA466501_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t14CC84A9263CA26873ADBF461222334ADA466501_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t14CC84A9263CA26873ADBF461222334ADA466501(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t14CC84A9263CA26873ADBF461222334ADA466501_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t14CC84A9263CA26873ADBF461222334ADA466501_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.IList`1<System.Byte>>
struct ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA_ComCallableWrapper>, IVector_1_t309AEF845C8CD32F6804A23AF18B95404DAE449D, IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597, IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE, IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A
{
inline ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t309AEF845C8CD32F6804A23AF18B95404DAE449D::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t309AEF845C8CD32F6804A23AF18B95404DAE449D*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(9);
interfaceIds[0] = IVector_1_t309AEF845C8CD32F6804A23AF18B95404DAE449D::IID;
interfaceIds[1] = IIterable_1_t3D81622B28CF1B2EC7E5FAE81CEAAAF684C2B597::IID;
interfaceIds[2] = IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77::IID;
interfaceIds[3] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[4] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[5] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[6] = IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE::IID;
interfaceIds[7] = IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC::IID;
interfaceIds[8] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
*iidCount = 9;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mA0D95E4993725090A111B50694A865D3570ADAA0(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_mA0D95E4993725090A111B50694A865D3570ADAA0_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mE153CC42F19B88AD5568B2251C4AFC600A431C50(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_mE153CC42F19B88AD5568B2251C4AFC600A431C50_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m1629DBA1AAC15097868A36AF0D0C462E8B1F089F(IVectorView_1_tCE813A375BF92A7B13D7E3FD919FA5E78862A0EE** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m1629DBA1AAC15097868A36AF0D0C462E8B1F089F_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mC156EFF3473C20CCE0B64AF172D3F036031FF749(IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_mC156EFF3473C20CCE0B64AF172D3F036031FF749_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mC6E0456C7D3A7BB89A1B3119C81EF0B4BB65BC6D(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_mC6E0456C7D3A7BB89A1B3119C81EF0B4BB65BC6D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m912CF260CD35D2AE449059FBCFBFC459A6F6009E(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m912CF260CD35D2AE449059FBCFBFC459A6F6009E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mD3136A234357EE02F4BBFF5CD06E2709B18CFB70(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_mD3136A234357EE02F4BBFF5CD06E2709B18CFB70_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m1BA86810D590872732FBB3921835A9AEA26EBC07(IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m1BA86810D590872732FBB3921835A9AEA26EBC07_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mBB95D0AE64AEAFC7A52C4B302F1D257003E00A31() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_mBB95D0AE64AEAFC7A52C4B302F1D257003E00A31_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m5A6B1D288E70F60D2483B6D1C06515614556EDD2() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m5A6B1D288E70F60D2483B6D1C06515614556EDD2_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mDD6A4C84D2B91DD2B2635283620EC24C99D932C2(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_mDD6A4C84D2B91DD2B2635283620EC24C99D932C2_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m392513312B5CB28C940C8AEB5D027FDBC9DA17EF(uint32_t ___items0ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m392513312B5CB28C940C8AEB5D027FDBC9DA17EF_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mB2BE0E035F399B6BE3EDB48CB7A0520839501C4D(IIterator_1_tD592AB51083B29306C691734C2461B468C33DA26** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mB2BE0E035F399B6BE3EDB48CB7A0520839501C4D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5(IIterator_1_t95F16BFCADBB4953D81661A10E2B53A54BFE4F98** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL 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_m0528C2ECDAFAA0F1741464585BAA458A119C293E(uint32_t ___index0, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m0528C2ECDAFAA0F1741464585BAA458A119C293E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mF8B1A974030E05A284F3D4DE3444F3A240671B96(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mF8B1A974030E05A284F3D4DE3444F3A240671B96_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m802E9EC2DA99E90552079326850D5CEE0B5ECAF4(IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m802E9EC2DA99E90552079326850D5CEE0B5ECAF4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m65EEA32574A21A87FD098708412643CE5EAB3F30(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IVector_1_t1D35C1DDECA9B0B285E49CD0D36FCDF96331E1D5** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m65EEA32574A21A87FD098708412643CE5EAB3F30_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t6149E434B52B1E31316BCA67C48600D713FD22FA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.IEnumerable`1<System.Byte>>
struct EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_tE2DD9674580D50F8AFB6E94298A4B5937A37DD51_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_InternalEnumerator`1<System.Collections.Generic.IEnumerable`1<System.Byte>>
struct InternalEnumerator_1_t0F51C4E0D90D0813629E0588F49C87E51799C7CF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t0F51C4E0D90D0813629E0588F49C87E51799C7CF_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline InternalEnumerator_1_t0F51C4E0D90D0813629E0588F49C87E51799C7CF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<InternalEnumerator_1_t0F51C4E0D90D0813629E0588F49C87E51799C7CF_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t0F51C4E0D90D0813629E0588F49C87E51799C7CF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(InternalEnumerator_1_t0F51C4E0D90D0813629E0588F49C87E51799C7CF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) InternalEnumerator_1_t0F51C4E0D90D0813629E0588F49C87E51799C7CF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.IEnumerable`1<System.Byte>>
struct ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20_ComCallableWrapper>, IVector_1_t4D0F82A22A4B9C0C057C51324A6556883EF61EEE, IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39, IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A
{
inline ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t4D0F82A22A4B9C0C057C51324A6556883EF61EEE::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t4D0F82A22A4B9C0C057C51324A6556883EF61EEE*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(7);
interfaceIds[0] = IVector_1_t4D0F82A22A4B9C0C057C51324A6556883EF61EEE::IID;
interfaceIds[1] = IIterable_1_tCECB969D67BA3E7E5F9B4A067180BA0948D1BE77::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[4] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
interfaceIds[5] = IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC::IID;
interfaceIds[6] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
*iidCount = 7;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m808B2BDD3F75F47D67A768AA8EBD10FCB1C7972E(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m808B2BDD3F75F47D67A768AA8EBD10FCB1C7972E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mC2C0C147139CF745F911FF9464E0165FAA239E81(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_mC2C0C147139CF745F911FF9464E0165FAA239E81_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m52939A3D1D8B311CA3772B99149FCC224047D3D4(IVectorView_1_t2768460002CDF017FA90848BD64EF5C153E06EDC** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m52939A3D1D8B311CA3772B99149FCC224047D3D4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m7599D18183DA2CE6C44AB947A86943A52679C413(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m7599D18183DA2CE6C44AB947A86943A52679C413_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mC94A0BACAEEDC6A7CF0D23B1FE6218F0BCBA570E(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_mC94A0BACAEEDC6A7CF0D23B1FE6218F0BCBA570E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m185DC5E9798F31308D9181AB9FC3D8C22A699E9F(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m185DC5E9798F31308D9181AB9FC3D8C22A699E9F_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mB632E13363FB6D0B98E9A1BB233C88EE7322B018(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_mB632E13363FB6D0B98E9A1BB233C88EE7322B018_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mE759809BB8A97BBE616E4602C7D49F487BC6FBA2(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_mE759809BB8A97BBE616E4602C7D49F487BC6FBA2_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m2E94BEF47962084EEB989C21E8B6926ACDD45174() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m2E94BEF47962084EEB989C21E8B6926ACDD45174_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m3B3A1E1E0F5B8B7EC12BBCBD6F151A8619F6CD48() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m3B3A1E1E0F5B8B7EC12BBCBD6F151A8619F6CD48_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mF45567133BB96366547EEDABEB4609BF8FF47AB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_mF45567133BB96366547EEDABEB4609BF8FF47AB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mD3D09C1456A8D21DC63D9CA2FDD4CA174BCD46CF(uint32_t ___items0ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_mD3D09C1456A8D21DC63D9CA2FDD4CA174BCD46CF_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5(IIterator_1_t95F16BFCADBB4953D81661A10E2B53A54BFE4F98** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m70B8530227C2AD1B4A277403B684FC84D9D153E5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL 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_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC(uint32_t ___index0, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m6DF51EA731691FDABD88D8434C9FED6374ECB0EC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m22730E962121D841CBDEFA8ABBE92711351F4955_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3(IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mFA955DC6AD72C36F53DB5F3682E2B6224CBD91E3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_tAE9640CE14A6D693BA574FF5FE9B0AFD64628F06** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m0489A2153953742BFF751128D8D52EBA6D805C3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ReadOnlyCollection_1_t33F316AF04D275E419C316DD2FF4212B4A344A20_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.IReadOnlyList`1<System.Byte>>
struct EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_ComCallableWrapper>, IClosable_t5808AF951019E4388C66F7A88AC569F52F581167
{
inline EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return 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_t749B3C32660DB2A84257D2CFB731821F7A048C11(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EmptyInternalEnumerator_1_t749B3C32660DB2A84257D2CFB731821F7A048C11_ComCallableWrapper(obj));
}
| [
"yichenlilyc@gmail.com"
] | yichenlilyc@gmail.com |
49bd17c25cb5a46980ef3d767573dca3c82f11fc | 75106c3a7a7d16f643e6ebe54fcbfe636b2da174 | /dynamicProgramming/5_checkUglyNumber.cpp | 400a94af91779884d1fb7254c2f519a0b65bacd3 | [] | no_license | i7sharath/geeks4geeks | b7f604189111c6ba45008d6d5ac5491533a7576e | 9c02e45dc2b73a007db2c2bba96a9491538818c7 | refs/heads/master | 2021-05-01T17:00:36.132885 | 2016-09-17T17:44:08 | 2016-09-17T17:44:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 682 | cpp | #include <bits/stdc++.h>
using namespace std;
bool isUgly(int num)
{
if(num<=0)
return false;
if(num==1)
return true;
while(num>1)
{
if(num%2==0)
num/=2;
else
break;
}
while(num>1)
{
if(num%3==0)
num/=3;
else
break;
}
while(num>1)
{
if(num%5==0)
num/=5;
else
break;
}
if(num==1)
return true;
else
return false;
}
int main()
{
int testcases;
cin>>testcases;
while(testcases)
{
int n;
cin>>n;
bool flag=isUgly(n);
cout<<flag<<endl;
testcases--;
}
return 0;
} | [
"rashi.1234chauhan11@gmail.com"
] | rashi.1234chauhan11@gmail.com |
f350f5b32bf8739b7bc7ee4f282489bcf6cceab3 | 225e82d7a70bfeb544d758c4a01321701ff06a61 | /root/root_v4.04.02g/treeplayer/src/TFileDrawMap.cxx | 4898f9fe08b6fb4fbdaa67c4676ac7bca553a8af | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | govoni/learn | 9760494d592ba09a98e08939818415857d015371 | cb02b6621af73efdbf1e64e5fc39ecd9e72516af | refs/heads/master | 2021-01-19T18:51:14.476573 | 2019-07-22T09:05:26 | 2019-07-22T09:05:26 | 101,170,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,541 | cxx | // @(#)root/treeplayer:$Name: v4-04-02g $:$Id: TFileDrawMap.cxx,v 1.5 2003/12/30 13:16:51 brun Exp $
// Author: Rene Brun 15/01/2003
/*************************************************************************
* Copyright (C) 1995-2003, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
//////////////////////////////////////////////////////////////////////////
// //
// TFileDrawMap //
// //
// This class is automatically called by TFile::DrawMap
// It draws a canvas showing the internal structure of a ROOT file.
// Each key or basket in a file is shown with a fill area drawn
// at the byte position of the key/basket in the file.
// The Y axis of the canvas shows the number of Kbytes/Mbytes.
// The X axis shows the bytes between y(i) and y(i+1).
// A color corresponding to the class in the key/basket is automatically
// selected using the class unique identifier.
//
// When moving the mouse in the canvas, the "Event Status" panels
// shows the object corresponding to the mouse position.
// if the object is a key, it shows the class and object name as well as
// the file directory name if the file has sub-directories.
// if the object is a basket, it shows:
// -the name of the Tree
// -the name of the branch
// -the basket number
// -the entry number in the basket
//
// Special keys like the StreamerInfo record, the Keys List Record
// and the Free Blocks Record are also shown.
//
// When clicking the right mouse button, a pop-up menu is shown
// with its title identifying the picked object and with the items:
// -DrawObject: in case of a key, the Draw function of the object is called
// in case of a basket, the branch is drawn for all entries
// -DumpObject: in case of a key, the Dump function of the object is called
// in case of a basket, tree->Show(entry) is called
// -InspectObject: the Inspect function is called for the object.
//
// The normal axis zoom functionality can be used to zoom or unzoom
// One can also use the TCanvas context menu SetCanvasSize to make
// a larger canvas and use the canvas scroll bars.
//
// When the class is built, it is possible to identify a subset of the
// objects to be shown. For example, to view only the keys with
// names starting with "abc", set the argument keys to "abc*".
// The default is to view all the objects.
// The argument options can also be used (only one option currently)
// When the option "same" is given, the new picture is suprimposed.
// The option "same" is useful, eg:
// to draw all keys with names = "abc" in a first pass
// then all keys with names = "uv*" in a second pass, etc.
//
//Begin_Html
/*
<img src="gif/filedrawmap.gif">
*/
//End_Html
//
// =============================================================================
#include "TFileDrawMap.h"
#include "TROOT.h"
#include "TClass.h"
#include "TFile.h"
#include "TTree.h"
#include "TBranch.h"
#include "TLeaf.h"
#include "TMath.h"
#include "TVirtualPad.h"
#include "TStyle.h"
#include "TH1.h"
#include "TBox.h"
#include "TKey.h"
#include "TRegexp.h"
#include "TSystem.h"
ClassImp(TFileDrawMap)
//______________________________________________________________________________
TFileDrawMap::TFileDrawMap() :TNamed()
{
// Default TreeFileMap constructor
fFile = 0;
fFrame = 0;
}
//______________________________________________________________________________
TFileDrawMap::TFileDrawMap(const TFile *file, const char *keys, Option_t *option)
: TNamed("TFileDrawMap","")
{
// TFileDrawMap normal constructor
// see descriptions of arguments above
fFile = (TFile*)file;
fKeys = keys;
fOption = option;
fOption.ToLower();
SetBit(kCanDelete);
//create histogram used to draw the map frame
if (file->GetEND() > 1000000) {
fXsize = 1000000;
} else {
fXsize = 1000;
}
fFrame = new TH1D("hmapframe","",1000,0,fXsize);
fFrame->SetDirectory(0);
fFrame->SetBit(TH1::kNoStats);
fFrame->SetBit(kCanDelete);
fFrame->SetMinimum(0);
if (fXsize > 1000) {
fFrame->GetYaxis()->SetTitle("MBytes");
} else {
fFrame->GetYaxis()->SetTitle("KBytes");
}
fFrame->GetXaxis()->SetTitle("Bytes");
fYsize = 1 + Int_t(file->GetEND()/fXsize);
fFrame->SetMaximum(fYsize);
fFrame->GetYaxis()->SetLimits(0,fYsize);
//Bool_t show = kFALSE;
if (gPad) {
gPad->Clear();
//show = gPad->GetCanvas()->GetShowEventStatus();
}
Draw();
if (gPad) {
//if (!show) gPad->GetCanvas()->ToggleEventStatus();
gPad->Update();
}
}
//______________________________________________________________________________
TFileDrawMap::~TFileDrawMap()
{
//*-*-*-*-*-*-*-*-*-*-*Tree destructor*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* =================
//delete fFrame; //should not be deleted (kCanDelete set)
}
//______________________________________________________________________________
void TFileDrawMap::AnimateTree(const char *branches)
{
// Show sequence of baskets reads for the list of baskets involved
// in the list of branches (separated by ",")
// if branches="", the branch pointed by the mouse is taken.
// if branches="*", all branches are taken
// Example:
// AnimateTree("x,y,u");
char info[512];
strcpy(info,GetName());
char *cbasket = strstr(info,", basket=");
if (!cbasket) return;
*cbasket = 0;
char *cbranch = strstr(info,", branch=");
if (!cbranch) return;
*cbranch = 0;
cbranch += 9;
TTree *tree = (TTree*)fFile->Get(info);
if (!tree) return;
if (strlen(branches) > 0) strcpy(info,branches);
else strcpy(info,cbranch);
printf("Animating tree, branches=%s\n",info);
// create list of branches
Int_t nzip = 0;
TBranch *branch;
TObjArray list;
char *comma;
while((comma = strrchr(info,','))) {
*comma = 0;
comma++;
while (*comma == ' ') comma++;
branch = tree->GetBranch(comma);
if (branch) {
nzip += (Int_t)branch->GetZipBytes();
branch->SetUniqueID(0);
list.Add(branch);
}
}
comma = info;
while (*comma == ' ') comma++;
branch = tree->GetBranch(comma);
if (branch) {
nzip += (Int_t)branch->GetZipBytes();
branch->SetUniqueID(0);
list.Add(branch);
}
Double_t fractionRead = Double_t(nzip)/Double_t(fFile->GetEND());
Int_t nbranches = list.GetEntries();
// loop on all tree entries
Int_t nentries = (Int_t)tree->GetEntries();
Int_t sleep = 1;
Int_t stime = (Int_t)(100./(nentries*fractionRead));
if (stime < 10) {stime=1; sleep = nentries/400;}
gPad->SetDoubleBuffer(0); // turn off double buffer mode
gVirtualX->SetDrawMode(TVirtualX::kInvert); // set the drawing mode to XOR mode
for (Int_t entry=0;entry<nentries;entry++) {
for (Int_t ib=0;ib<nbranches;ib++) {
branch = (TBranch*)list.At(ib);
Int_t nbaskets = branch->GetListOfBaskets()->GetSize();
Int_t basket = TMath::BinarySearch(nbaskets,branch->GetBasketEntry(),entry);
Int_t nbytes = branch->GetBasketBytes()[basket];
Int_t bseek = branch->GetBasketSeek(basket);
Int_t entry0 = branch->GetBasketEntry()[basket];
Int_t entryn = branch->GetBasketEntry()[basket+1];
Int_t eseek = (Int_t)(bseek + nbytes*Double_t(entry-entry0)/Double_t(entryn-entry0));
DrawMarker(ib,branch->GetUniqueID());
DrawMarker(ib,eseek);
branch->SetUniqueID(eseek);
gSystem->ProcessEvents();
if (entry%sleep == 0) gSystem->Sleep(stime);
}
}
}
//______________________________________________________________________________
Int_t TFileDrawMap::DistancetoPrimitive(Int_t px, Int_t py)
{
// Compute distance from point px,py to this TreeFileMap
// Find the closest object to the mouse, save its path in the TFileDrawMap name.
Int_t pxmin = gPad->XtoAbsPixel(gPad->GetUxmin());
Int_t pxmax = gPad->XtoAbsPixel(gPad->GetUxmax());
Int_t pymin = gPad->YtoAbsPixel(gPad->GetUymin());
Int_t pymax = gPad->YtoAbsPixel(gPad->GetUymax());
if (px > pxmin && px < pxmax && py > pymax && py < pymin) {
SetName(GetObjectInfo(px,py));
return 0;
}
return fFrame->DistancetoPrimitive(px,py);
}
//______________________________________________________________________________
void TFileDrawMap::DrawMarker(Int_t marker, Long64_t eseek)
{
// Draw marker
Int_t iy = gPad->YtoAbsPixel(eseek/fXsize);
Int_t ix = gPad->XtoAbsPixel(eseek%fXsize);
Int_t d;
Int_t mark = marker%4;
switch (mark) {
case 0 : d = 6; //arrow
gVirtualX->DrawLine(ix-3*d,iy,ix,iy);
gVirtualX->DrawLine(ix-d,iy+d,ix,iy);
gVirtualX->DrawLine(ix-d,iy-d,ix,iy);
gVirtualX->DrawLine(ix-d,iy-d,ix-d,iy+d);
break;
case 1 : d = 5; //up triangle
gVirtualX->DrawLine(ix-d,iy-d,ix+d,iy-d);
gVirtualX->DrawLine(ix+d,iy-d,ix,iy+d);
gVirtualX->DrawLine(ix,iy+d,ix-d,iy-d);
break;
case 2 : d = 5; //open square
gVirtualX->DrawLine(ix-d,iy-d,ix+d,iy-d);
gVirtualX->DrawLine(ix+d,iy-d,ix+d,iy+d);
gVirtualX->DrawLine(ix+d,iy+d,ix-d,iy+d);
gVirtualX->DrawLine(ix-d,iy+d,ix-d,iy-d);
break;
case 3 : d = 8; //cross
gVirtualX->DrawLine(ix-d,iy,ix+d,iy);
gVirtualX->DrawLine(ix,iy-d,ix,iy+d);
break;
}
}
//______________________________________________________________________________
void TFileDrawMap::DrawObject()
{
// Draw object at the mouse position
TVirtualPad *padsave = gROOT->GetSelectedPad();
if (padsave == gPad) {
//must create a new canvas
if (!gROOT->GetMakeDefCanvas()) return;
(gROOT->GetMakeDefCanvas())();
} else {
padsave->cd();
}
// case of a TTree
char info[512];
strcpy(info,GetName());
char *cbasket = (char*)strstr(info,", basket=");
if (cbasket) {
*cbasket = 0;
char *cbranch = (char*)strstr(info,", branch=");
if (!cbranch) return;
*cbranch = 0;
cbranch += 9;
TTree *tree = (TTree*)fFile->Get(info);
if (tree) tree->Draw(cbranch);
return;
}
// other objects
TObject *obj = GetObject();
if (obj) obj->Draw();
}
//______________________________________________________________________________
void TFileDrawMap::DumpObject()
{
// Dump object at the mouse position
TObject *obj = GetObject();
if (obj) {
obj->Dump();
return;
}
char *centry = (char*)strstr(GetName(),"entry=");
if (!centry) return;
Int_t entry = 0;
sscanf(centry+6,"%d",&entry);
char info[512];
strcpy(info,GetName());
char *colon = (char*)strstr(info,"::");
if (!colon) return;
colon--;
*colon = 0;
TTree *tree = (TTree*)fFile->Get(info);
if (tree) tree->Show(entry);
}
//______________________________________________________________________________
void TFileDrawMap::ExecuteEvent(Int_t event, Int_t px, Int_t py)
{
// Execute action corresponding to one event
fFrame->ExecuteEvent(event,px,py);
}
//______________________________________________________________________________
TObject *TFileDrawMap::GetObject()
{
// Retrieve object at the mouse position in memory
if (strstr(GetName(),"entry=")) return 0;
char info[512];
strcpy(info,GetName());
char *colon = strstr(info,"::");
if (!colon) return 0;
colon--;
*colon = 0;
return fFile->Get(info);
}
//______________________________________________________________________________
char *TFileDrawMap::GetObjectInfo(Int_t px, Int_t py) const
{
// Redefines TObject::GetObjectInfo.
// Displays the keys info in the file corresponding to cursor position px,py
// in the canvas status bar info panel
static char info[512];
GetObjectInfoDir(fFile, px, py, info);
return info;
}
//______________________________________________________________________________
Bool_t TFileDrawMap::GetObjectInfoDir(TDirectory *dir, Int_t px, Int_t py, char *info) const
{
// Redefines TObject::GetObjectInfo.
// Displays the keys info in the directory
// corresponding to cursor position px,py
//
Double_t x = gPad->AbsPixeltoX(px);
Double_t y = gPad->AbsPixeltoY(py);
Int_t iy = (Int_t)y;
Long64_t pbyte = (Long64_t)(fXsize*iy+x);
Int_t nbytes;
Long64_t bseek;
TDirectory *dirsav = gDirectory;
dir->cd();
TIter next(dir->GetListOfKeys());
TKey *key;
while ((key = (TKey*)next())) {
TDirectory *curdir = gDirectory;
TClass *cl = gROOT->GetClass(key->GetClassName());
// a TDirectory ?
if (cl && cl == TDirectory::Class()) {
curdir->cd(key->GetName());
TDirectory *subdir = gDirectory;
Bool_t gotInfo = GetObjectInfoDir(subdir, px, py, info);
if (gotInfo) {
dirsav->cd();
return kTRUE;
}
curdir->cd();
continue;
}
// a TTree ?
if (cl && cl->InheritsFrom(TTree::Class())) {
TTree *tree = (TTree*)gDirectory->Get(key->GetName());
TIter nextb(tree->GetListOfLeaves());
TLeaf *leaf;
while ((leaf = (TLeaf*)nextb())) {
TBranch *branch = leaf->GetBranch();
Int_t nbaskets = branch->GetMaxBaskets();
Int_t offsets = branch->GetEntryOffsetLen();
Int_t len = leaf->GetLen();
for (Int_t i=0;i<nbaskets;i++) {
bseek = branch->GetBasketSeek(i);
if (!bseek) break;
nbytes = branch->GetBasketBytes()[i];
if (pbyte >= bseek && pbyte < bseek+nbytes) {
Int_t entry = branch->GetBasketEntry()[i];
if (!offsets) entry += (pbyte-bseek)/len;
if (curdir == (TDirectory*)fFile) {
sprintf(info,"%s%s, branch=%s, basket=%d, entry=%d",curdir->GetPath(),key->GetName(),branch->GetName(),i,entry);
} else {
sprintf(info,"%s/%s, branch=%s, basket=%d, entry=%d",curdir->GetPath(),key->GetName(),branch->GetName(),i,entry);
}
return kTRUE;
}
}
}
}
nbytes = key->GetNbytes();
bseek = key->GetSeekKey();
if (pbyte >= bseek && pbyte < bseek+nbytes) {
if (curdir == (TDirectory*)fFile) {
sprintf(info,"%s%s ::%s, nbytes=%d",curdir->GetPath(),key->GetName(),key->GetClassName(),nbytes);
} else {
sprintf(info,"%s/%s ::%s, nbytes=%d",curdir->GetPath(),key->GetName(),key->GetClassName(),nbytes);
}
dirsav->cd();
return kTRUE;
}
}
// Are we in the Keys list
if (pbyte >= dir->GetSeekKeys() && pbyte < dir->GetSeekKeys()+dir->GetNbytesKeys()) {
sprintf(info,"%sKeys List, nbytes=%d",dir->GetPath(),dir->GetNbytesKeys());
dirsav->cd();
return kTRUE;
}
if (dir == (TDirectory*)fFile) {
// Are we in the TStreamerInfo
if (pbyte >= fFile->GetSeekInfo() && pbyte < fFile->GetSeekInfo()+fFile->GetNbytesInfo()) {
sprintf(info,"%sStreamerInfo List, nbytes=%d",dir->GetPath(),fFile->GetNbytesInfo());
dirsav->cd();
return kTRUE;
}
// Are we in the Free Segments
if (pbyte >= fFile->GetSeekFree() && pbyte < fFile->GetSeekFree()+fFile->GetNbytesFree()) {
sprintf(info,"%sFree List, nbytes=%d",dir->GetPath(),fFile->GetNbytesFree());
dirsav->cd();
return kTRUE;
}
}
sprintf(info,"(byte=%lld)",pbyte);
dirsav->cd();
return kFALSE;
}
//______________________________________________________________________________
void TFileDrawMap::InspectObject()
{
// Inspect object at the mouse position
TObject *obj = GetObject();
if (obj) obj->Inspect();
}
//______________________________________________________________________________
void TFileDrawMap::Paint(Option_t *)
{
// Paint this TFileDrawMap
// draw map frame
if (!fOption.Contains("same")) {
gPad->Clear();
//just in case axis Y has been unzoomed
if (fFrame->GetMaximumStored() < -1000) {
fFrame->SetMaximum(fYsize+1);
fFrame->SetMinimum(0);
fFrame->GetYaxis()->SetLimits(0,fYsize+1);
}
fFrame->Paint("a");
}
//draw keys
PaintDir(fFile, fKeys.Data());
fFrame->Draw("sameaxis");
}
//______________________________________________________________________________
void TFileDrawMap::PaintBox(TBox &box, Long64_t bseek, Int_t nbytes)
{
// Paint the object at bseek with nbytes using the box object
Int_t iy = bseek/fXsize;
Int_t ix = bseek%fXsize;
Int_t ny = 1+(nbytes+ix)/fXsize;
Double_t xmin,ymin,xmax,ymax;
for (Int_t j=0;j<ny;j++) {
if (j == 0) xmin = (Double_t)ix;
else xmin = 0;
xmax = xmin + nbytes;
if (xmax > fXsize) xmax = fXsize;
ymin = iy+j;
ymax = ymin+1;
nbytes -= (Int_t)(xmax-xmin);
if (xmax < gPad->GetUxmin()) continue;
if (xmin > gPad->GetUxmax()) continue;
if (xmin < gPad->GetUxmin()) xmin = gPad->GetUxmin();
if (xmax > gPad->GetUxmax()) xmax = gPad->GetUxmax();
if (ymax < gPad->GetUymin()) continue;
if (ymin > gPad->GetUymax()) continue;
if (ymin < gPad->GetUymin()) ymin = gPad->GetUymin();
if (ymax > gPad->GetUymax()) ymax = gPad->GetUymax();
//box.TAttFill::Modify();
box.PaintBox(xmin,ymin,xmax,ymax);
}
}
//______________________________________________________________________________
void TFileDrawMap::PaintDir(TDirectory *dir, const char *keys)
{
// Paint keys in a directory
TDirectory *dirsav = gDirectory;
TIter next(dir->GetListOfKeys());
TKey *key;
Int_t color = 0;
TBox box;
TRegexp re(keys,kTRUE);
while ((key = (TKey*)next())) {
Int_t nbytes = key->GetNbytes();
Long64_t bseek = key->GetSeekKey();
TClass *cl = gROOT->GetClass(key->GetClassName());
if (cl) {
color = (Int_t)(cl->GetUniqueID()%20);
} else {
color = 1;
}
box.SetFillColor(color);
box.SetFillStyle(1001);
TString s = key->GetName();
if (strcmp(fKeys.Data(),key->GetName()) && s.Index(re) == kNPOS) continue;
// a TDirectory ?
if (cl && cl == TDirectory::Class()) {
TDirectory *curdir = gDirectory;
gDirectory->cd(key->GetName());
TDirectory *subdir = gDirectory;
PaintDir(subdir,"*");
curdir->cd();
}
PaintBox(box,bseek,nbytes);
// a TTree ?
if (cl && cl->InheritsFrom(TTree::Class())) {
TTree *tree = (TTree*)gDirectory->Get(key->GetName());
TIter nextb(tree->GetListOfLeaves());
TLeaf *leaf;
while ((leaf = (TLeaf*)nextb())) {
TBranch *branch = leaf->GetBranch();
color = (Int_t)(branch->IsA()->GetUniqueID()%20);
box.SetFillColor(color);
Int_t nbaskets = branch->GetMaxBaskets();
for (Int_t i=0;i<nbaskets;i++) {
Long64_t bseek = branch->GetBasketSeek(i);
if (!bseek) break;
Int_t nbytes = branch->GetBasketBytes()[i];
PaintBox(box,bseek,nbytes);
}
}
}
}
// draw the box for Keys list
box.SetFillColor(50);
box.SetFillStyle(1001);
PaintBox(box,dir->GetSeekKeys(),dir->GetNbytesKeys());
if (dir == (TDirectory*)fFile) {
// draw the box for TStreamerInfo
box.SetFillColor(6);
box.SetFillStyle(3008);
PaintBox(box,fFile->GetSeekInfo(),fFile->GetNbytesInfo());
// draw the box for Free Segments
box.SetFillColor(1);
box.SetFillStyle(1001);
PaintBox(box,fFile->GetSeekFree(),fFile->GetNbytesFree());
}
dirsav->cd();
}
| [
"pietro.govoni@gmail.com"
] | pietro.govoni@gmail.com |
2c8b87b2a816c3289514e2bced878c30ca8b65b4 | c7ac3e64cdb15d8ad3243de6c2e57ecb6f966ccd | /Level 1/1.4 Ex6/1.4 Ex6/main.cpp | 50289dad48727f92e1fd536e984e36805c7f18ce | [] | no_license | jl2337/Programming-for-Financial-Engineering | d86dca3c17cd04ea8fcb19901156f6931b451669 | 4ddde9b5a0e3ec4cbb2a54b8ba13785928abb38e | refs/heads/master | 2020-04-24T13:51:29.882055 | 2019-03-12T03:06:09 | 2019-03-12T03:06:09 | 172,002,238 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,112 | cpp | //
// main.cpp
// 1.4 Ex6
//
// Created by 刘佳杰 on 2/20/19.
// Copyright © 2019 刘佳杰. All rights reserved.
//
#include <iostream>
using namespace std;
int main(int argc, const char * argv[]) {
char c;
int number_of_0 = 0, number_of_1 = 0, number_of_2 = 0, number_of_3 = 0, number_of_4 = 0;
cout << "Input now\n";
while((c = getchar())!=EOF){
switch (c) {
case '0':
number_of_0++;
break;
case '1':
number_of_1++;
break;
case '2':
number_of_2++;
break;
case '3':
number_of_3++;
break;
case '4':
number_of_4++;
break;
default:
break;
}
}
cout << "Number of 0: " << number_of_0 << endl;
cout << "Number of 1: " << number_of_1 << endl;
cout << "Number of 2: " << number_of_2 << endl;
cout << "Number of 3: " << number_of_3 << endl;
cout << "Number of 4: " << number_of_4 << endl;
return 0;
}
| [
"noreply@github.com"
] | jl2337.noreply@github.com |
2d6ebe69fac7777466b44a7eb0a833587c3bebb8 | dfbe7ae417d698e816ef0aebbcf6c4893164b4d5 | /CPPInstitute/Chapter 3/3.6.3.1.cpp | 77a7a245a1f6c508e5f9bb82ce4d8ed6949c3576 | [] | no_license | smaxwell953/CPPLabs | 99ba6bedcf175656fceea50e934be6bae1909564 | c9da5a79b72cd4e471e48235c939b10d16c50cf9 | refs/heads/master | 2021-07-24T12:57:39.828880 | 2020-12-30T11:56:56 | 2020-12-30T11:56:56 | 233,175,552 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 249 | cpp | #include <iostream>
using namespace std;
//3.6.3.1
void increment(int &j , int i = 1) {j+=i;}
int main(void) {
int var = 0;
for(int i = 0; i < 10; i++)
if(i % 2)
increment(var);
else
increment(var,i);
cout << var << endl;
return 0;
} | [
"noreply@github.com"
] | smaxwell953.noreply@github.com |
6f7e14d9603d592b7d83715e43b692dc5feeec89 | 891be23767997be8dcd1d4b78458479f40f7cf2f | /GL_Interactor.h | 1da0fec63c8140348e6798f5bd3f1725facf65ad | [] | no_license | rrbraz/mvga-ep | 5fb88d84b24f75df42869accf680983eab0323ce | 5e39dc86aa13b00ec362656bc0d0af14ba0ba4dd | refs/heads/master | 2021-05-08T07:20:55.518547 | 2017-11-15T21:58:28 | 2017-11-15T21:58:28 | 106,748,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,435 | h | #include "scrInteractor.h"
struct Coord
{
double x;
double y;
double z;
};
extern scrInteractor * Interactor;
//extern sheInteractor * Interactor;
void(*functionKey) (unsigned char key, int x, int y) = NULL;
void(*functionMouse) (int button, int state, int x, int y) = NULL;
/*======== Main Window Functions ============================================*/
void Display()
{
Interactor->Display();
}
void Reshape(int width, int height)
{
Interactor->Reshape(width, height);
}
void MouseMotion(int x, int y)
{
Interactor->MouseMotion(x, y);
}
void Mouse(int button, int state, int x, int y)
{
functionMouse(button, state, x, y);
Interactor->Mouse(button, state, x, y);
}
void Keyboard(unsigned char key, int x, int y)
{
if (!Interactor->Keyboard(key, x, y) && (functionKey != NULL))
functionKey(key, x, y);
}
void AddKeyboard(void (* func)(unsigned char key, int x, int y))
{
functionKey = func;
}
void AddMouse(void (* func)(int button, int state, int x, int y))
{
functionMouse = func;
}
/*======== Sub Window Functions ========================================*/
void subReshape(int width, int height)
{
Interactor->subReshape(width, height);
}
void subMouse(int button, int state, int x, int y)
{
Interactor->subMouse(button, state, x, y);
}
void subDisplay ()
{
Interactor->subDisplay();
}
//----------------------------------------------------------------------------------------
void Init_Interactor()//TPrint * myTPrint)
{
// Interactor.setDraw must be set here,
// and then the init function with extents must be called
glShadeModel(GL_SMOOTH);
glutDisplayFunc(Display);
glutReshapeFunc(Reshape);
glutKeyboardFunc(Keyboard);
glutMouseFunc(Mouse);
glutMotionFunc(MouseMotion);
Interactor->subInit();
glutDisplayFunc(subDisplay);
glutReshapeFunc(subReshape);
glutMouseFunc(subMouse);
glutPostRedisplay();
// Interactor->AddTPrint(myTPrint);
glutMainLoop();
}
/*===================================================================*/
/*===================================================================*/
/*===================================================================*/
class TColor
{
public :
TColor();
void setColor(unsigned int index);
void setMax(unsigned int max);
private :
unsigned int max_color;
float each_color;
float displacement;
};
/*===================================================================*/
TColor::TColor()
{
// default value for max color
this->max_color = 40;
this->each_color = 10;
this->displacement = 0.1;
}
/*===================================================================*/
void TColor::setMax(unsigned int max)
{
this->max_color = max;
this->each_color = (int)max/4;
this->displacement = 1.0/this->each_color;
}
/*===================================================================*/
/* Color Pallet -- BBBRRRRGGGGBBB*/
void TColor::setColor(unsigned int index)
{
float
B1 = 1.0,
R = 0.0,
G = 0.0,
B2 = 0.0;
int result = (int)(index / (3 * this->each_color));
int aux = index % (int)(3 * this->each_color);
if (result == 1)
{
B2 = aux * this->displacement;
G = 1.0 - B2;
R = 1.0 - B2;
B1 = 0.0;
}
else
{
result = (int)(index / (2 * this->each_color));
aux = index % (int)(2 * this->each_color);
if (result >= 1)
{
G = (aux - B2) * this->displacement;
R = 1.0;
B1 = 0.0;
}
else
{
result = (int)(index / this->each_color);
aux = (index % (int)this->each_color);
G = 0.0;
if (result == 1)
{
R = aux * this->displacement;;
B1 = 0.0;
G = 1.0 - R;
}
else
{
B1 = 1.0 - ((float)aux * this->displacement);
G = 1.0 - B1;
}
}
}
glColor3f(R, G, B1 + B2);
}
/*===================================================================*/
void TriangleColor(Coord coord1, int index1, Coord coord2, int index2, Coord coord3, int index3, int max_colors)
{
TColor color;
color.setMax(max_colors);
glBegin(GL_TRIANGLES);
color.setColor(index1);
glVertex3f(coord1.x, coord1.y, coord1.z);
color.setColor(index2);
glVertex3f(coord2.x, coord2.y, coord2.z);
color.setColor(index3);
glVertex3f(coord3.x, coord3.y, coord3.z);
glEnd();
}
| [
"rafael@rbraz.net"
] | rafael@rbraz.net |
571ae13c8e981f4bdb4b860fb62adab26ba69d3a | cad45c2b69d59bdc8aca10c49fab51b6f4ac2b90 | /30_Enero_2019_SistemasDistribuidos/t/pract1_ejercicio5.cpp | 02bcd569dd357e9ba09f16b59c0bb3b2bbca0f58 | [] | no_license | evazquez111296/Desarrollo-De-Sistemas-Distribuidos | 0e6904552b0e1468da6de4cc0eda90f61c7eaf08 | a043c9ee421eee9b42709d8293a819a82f6d3b8a | refs/heads/master | 2020-04-20T01:34:04.497982 | 2019-02-06T15:47:16 | 2019-02-06T15:47:16 | 168,549,015 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 177 | cpp | #include <iostream>
using namespace std;
int main(){
int n;
cout << "Inserte el valor de n: ";
cin >> n;
n = n + (++n);
cout << "\n" << "Resultado: " << n << "\n";
}
| [
"evazquez111296@gmail.com"
] | evazquez111296@gmail.com |
c3cfeffeaa24837aebca7f40c154fa9a23c9906c | e96afcf8a6a90066c47df4409b85a9dadb88dad6 | /lab2/task_D.cpp | 535c809bfd9e26b4c4979f48fcc018413c1535cf | [] | no_license | Pronomuos/Algorithms_and_DS_ITMO | 26ec80902f6a338e5e98599d56d343a481a08786 | 80c23ccc8cac7af16574d1c6ebd07d974cf8ef23 | refs/heads/master | 2023-03-11T18:16:38.326199 | 2021-02-21T20:03:50 | 2021-02-21T20:03:50 | 294,238,623 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | cpp | #include <iostream>
#include <fstream>
#include <vector>
using namespace std;
int main() {
ifstream input_file ("antiqs.in");
ofstream output_file ("antiqs.out");
int n;
input_file >> n;
vector<int> numbers (n);
for (int i = 0; i < n; i++)
numbers[i] = i + 1;
for (int i = 0; i < n; i++)
swap(numbers[i], numbers[i >> 1]);
for (int el : numbers)
output_file << el << " ";
input_file.close();
output_file.close();
}
| [
"noreply@github.com"
] | Pronomuos.noreply@github.com |
7f2c44c4d6005976220f843cc6ee8212bd241020 | 8e9ed03b466b522437861d853e0ecddd8914c75c | /Arduino/mqttStalker/mqttStalker.ino | 2a9b9dd63a1b7e350ecef5a964dfd531ba1db2b5 | [] | no_license | SimOgaard/ArduinoProjects | 7d4e05b3d5905b023639dbe24ac05a5e60892b81 | 347001054821bc6d4504e9ed72c6561ddd13a7a5 | refs/heads/master | 2022-04-08T16:53:55.610115 | 2020-02-17T09:01:17 | 2020-02-17T09:01:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,454 | ino | #include "EspMQTTClient.h"
void onConnectionEstablished();
EspMQTTClient client(
"ABBIndgymIoT_2.4GHz", // Wifi ssid
"ValkommenHit!", // Wifi password
"192.168.0.115", // MQTT broker ip
1883, // MQTT broker port
"jocke", // MQTT username
"apa", // MQTT password
"microdator", // Client name
onConnectionEstablished, // Connection established callback
true, // Enable web updater
true // Enable debug messages
);
typedef enum EngineState{
Backwards,
Forwards,
Still,
};
EngineState EState;
#define TRIGGER 2
#define ECHO //5
#define D1 0
#define D2 4
#define Pw 5
int SweetSpotLow = 20;
int SweetSpotHigh = 30;
int Speed = 250;
int distance;
int Acc = 10;
int Minimum = 250;
bool GoingForwards;
String Mellanrum;
int Driven = 0;
void setup() {
Serial.begin(9600); // Serial.begin(115200);
pinMode(Pw, OUTPUT);
pinMode(D1, OUTPUT);
pinMode(D2, OUTPUT);
pinMode(TRIGGER, OUTPUT);
pinMode(ECHO, INPUT);
}
void loop() {
switch (EState) {
case Backwards:
if (GoingForwards == true && Speed > Minimum) {
Speed -= Acc;
analogWrite(Pw, Speed);
Serial.println(String("State: B ")+String("Switching: Y ")+String("Speed: ")+Speed+String(Mellanrum)+String(" Distance: ")+distance);
Driven += Speed;
CheckDistance();
} else if (Speed < 1030){
digitalWrite(D1, LOW);
digitalWrite(D2, HIGH);
Speed += Acc;
analogWrite(Pw, Speed);
Serial.println(String("State: B ")+String("Switching: N ")+String("Speed: ")+Speed+String(Mellanrum)+String(" Distance: ")+distance);
if(GoingForwards == false){
Driven += Speed;
} else {
client.publish(CASE + Driven);
Driven = 0;
Driven += Speed;
}
CASE = "Backwards";
GoingForwards = false;
CheckDistance();
} else {
CheckDistance();
}
break;
case Forwards:
if(GoingForwards == false && Speed > Minimum) {
Speed -= Acc;
analogWrite(Pw, Speed);
Serial.println(String("State: F ")+String("Switching: Y ")+String("Speed: ")+Speed+String(Mellanrum)+String(" Distance: ")+distance);
myArray[Array] + Speed;
CheckDistance();
} else if (Speed < 1030){
digitalWrite(D1, HIGH);
digitalWrite(D2, LOW);
Speed += Acc;
analogWrite(Pw, Speed);
Serial.println(String("State: F ")+String("Switching: N ")+String("Speed: ")+Speed+String(Mellanrum)+String(" Distance: ")+distance);
if(GoingForwards == true){
Driven += Speed;
} else {
client.publish(CASE + Driven);
Driven = 0;
Driven += Speed;
}
CASE = "Forwards";
GoingForwards == true;
CheckDistance();
} else {
CheckDistance();
}
break;
case Still:
if (Speed > Minimum){
Speed -= Acc;
analogWrite(Pw, Speed);
Serial.println(String("State: S ")+String("Switching: Y ")+String("Speed: ")+Speed+String(Mellanrum)+String(" Distance: ")+distance);
CheckDistance();
} else {
Speed = Minimum;
analogWrite(Pw, Speed);
Serial.println(String("State: S ")+String("Switching: N ")+String("Speed: ")+Speed+String(Mellanrum)+String(" Distance: ")+distance);
CheckDistance();
}
break;
}
}
void onConnectionEstablished() {
client.subscribe("lampa/lamp", [](const String & payload)
CheckDistance();
}
void UseDistance(){
client.loop();
if(Speed < 1000) {
Mellanrum = " ";
} else {
Mellanrum = " ";
}
if (distance < SweetSpotLow) {
if(CASEISTRUE == false){
CASE = "Backwards";
}
CASEISTRUE = true;
EState = Backwards;
} else if (distance > SweetSpotHigh){
if(CASEISTRUE == false){
CASE = "Forwards";
}
CASEISTRUE = true;
EState = Forwards;
} else {
EState = Still;
}
}
void CheckDistance(){
long duration;
digitalWrite(TRIGGER, LOW);
delayMicroseconds(2);
digitalWrite(TRIGGER, HIGH);
delayMicroseconds(10);
digitalWrite(TRIGGER, LOW);
duration = pulseIn(ECHO, HIGH);
distance = (duration/2) / 29.1;
UseDistance();
}
| [
"43879969+abbsimoga@users.noreply.github.com"
] | 43879969+abbsimoga@users.noreply.github.com |
8191018e97cd7b08422f6906e5a4152df13046e7 | 7635d27c97819c4f23e5e0ff6a8ea1f2ce0e0ade | /src/changepass_menu.cpp | c9b20dc87d88c98b9bfe2ba6cfaa233924ea030b | [] | no_license | RaccoonH/home_bookkeeping | 648b14e62dd3399191ded8ebfc9166e408c10251 | 62c27bb7b6a23b8dcabb05f3747bc95c87ead4d3 | refs/heads/master | 2020-06-01T01:56:46.944108 | 2019-07-07T05:16:28 | 2019-07-07T05:16:28 | 190,586,555 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,380 | cpp | #include "changepass_menu.h"
ChangePassMenu::ChangePassMenu(QWidget *parent) : QWidget(parent)
{
QHBoxLayout *passHLayout = new QHBoxLayout(this);
setLayout(passHLayout);
QWidget *passVLayoutWidget = new QWidget(this);
QVBoxLayout *passVLayout = new QVBoxLayout(passVLayoutWidget);
QLabel *headline = new QLabel("Смена пароля" ,passVLayoutWidget);
QFont textFont;
textFont.setPixelSize(30);
headline->setFont(textFont);
QLabel *oldPass = new QLabel("Введите старый пароль", passVLayoutWidget);
QLineEdit *oldLinePass = new QLineEdit(passVLayoutWidget);
oldLinePass->setObjectName("oldLinePass");
oldLinePass->setEchoMode(QLineEdit::Password);
QLabel *newPass = new QLabel("Введите новый пароль", passVLayoutWidget);
QLineEdit *newLinePass = new QLineEdit(passVLayoutWidget);
newLinePass->setObjectName("newLinePass");
newLinePass->setEchoMode(QLineEdit::Password);
QLabel *errorLabel = new QLabel("",this);
errorLabel->setObjectName("errorLabelChangePass");
QPalette textColor;
textColor.setColor(QPalette::WindowText, Qt::red);
errorLabel->setPalette(textColor);
QWidget *buttonsWidget = new QWidget(passVLayoutWidget);
QHBoxLayout *buttonsLayout = new QHBoxLayout(buttonsWidget);
QPushButton *applyButton = new QPushButton("Принять", buttonsWidget);
buttonsLayout->addWidget(applyButton);
connect(applyButton, SIGNAL(clicked()), this, SLOT(onApplyButtonClicked()));
QPushButton *cancelButton = new QPushButton("Отмена", buttonsWidget);
buttonsLayout->addWidget(cancelButton);
connect(cancelButton, SIGNAL(clicked()), this, SLOT(onCancelButtonClicked()));
passVLayout->addWidget(headline);
passVLayout->addWidget(oldPass);
passVLayout->addWidget(oldLinePass);
passVLayout->addWidget(newPass);
passVLayout->addWidget(newLinePass);
passVLayout->addWidget(errorLabel);
passVLayout->addWidget(buttonsWidget);
passVLayoutWidget->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
passVLayout->setAlignment(Qt::AlignCenter);
passHLayout->addWidget(passVLayoutWidget);
}
void ChangePassMenu::onCancelButtonClicked()
{
emit canceled();
}
void ChangePassMenu::onApplyButtonClicked()
{
emit applied();
}
ChangePassMenu::~ChangePassMenu()
{
}
| [
"atudunov@yandex.ru"
] | atudunov@yandex.ru |
c1dd98aab9bc8c35d88314e66e32fcdd5b5ceeba | fdb13695f395df564a1183dd978cfc2b0e8d2f1c | /src/MyArray.cpp | 4d47b2f61e6a128a151be3c6d4e71522ed672993 | [] | no_license | nkh-lab/cpp | dfeb27201aa58166548ec50693002ecbac586445 | 36a0414a5f16f085c5ce6bfb991bb9b61db6906a | refs/heads/master | 2022-12-10T21:32:14.404823 | 2022-12-01T14:08:33 | 2022-12-01T14:08:33 | 84,563,081 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | cpp | #include "MyArray.hpp"
#include <iostream>
#include <list>
namespace MyArray {
template <typename T, size_t S>
class MyArray
{
public:
T& operator[](size_t n) { return m_Data[n]; }
// for iterating
T* begin() { return m_Data; }
T* end() { return (m_Data + S); }
private:
T m_Data[S];
};
void test()
{
std::cout << __PRETTY_FUNCTION__ << std::endl;
MyArray<int, 3> mai;
mai[0] = 1;
mai[1] = 2;
mai[2] = 3;
for (auto& i : mai)
{
std::cout << i << std::endl;
}
MyArray<std::string, 3> mas;
mas[0] = "one";
mas[1] = "two";
mas[2] = "three";
for (auto& s : mas)
{
std::cout << s << std::endl;
}
}
} // namespace MyArray
| [
"nkh@ua.fm"
] | nkh@ua.fm |
a7b5afd70a8a9275a87f863ea7d847bf22f02b43 | 5165a11214c0ae445c539cc0e08cc92e3622003f | /GUI/OpenfoamModule/fullCellFoam/fullCellFoam/case/constant/regionProperties | 729c0d3be5da0595192653e9f45ece5287f99036 | [] | no_license | KinomotoTomoyo/BatterySimulator | 1142cb356ad46ff5927fa41a8913c397bcf9b549 | bc08b41b15be00e6d48195ca0f74f75a1a1a2579 | refs/heads/main | 2023-04-14T00:26:20.796445 | 2022-09-03T15:00:48 | 2022-09-03T15:00:48 | 448,758,992 | 1 | 1 | null | 2022-08-30T14:53:20 | 2022-01-17T04:58:45 | null | UTF-8 | C++ | false | false | 774 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object regionProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
regions
(
fluid ()
solid (anode seperator cathode)
);
// ************************************************************************* //
| [
"15611759226@163.com"
] | 15611759226@163.com | |
3ba58d8c737e01aac01a37a9b58d5f13a58caaaf | e2a1f10b5744eabcc5fe6075d026c377cb7ca3c6 | /06_pipes/02_named_pipe_1.cpp | 47e9819c0d841b2adad5956832422e3a6d613b51 | [] | no_license | edgarcamilocamacho/usta_digital_systems_3 | 14374a01de8c54eec90c050376373af1f8964622 | 21db09d791cdb06de2988e18fb7dccd23b187eb2 | refs/heads/master | 2023-02-04T07:08:35.313736 | 2020-12-25T22:17:22 | 2020-12-25T22:17:22 | 287,062,977 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 771 | cpp | //NAMED PIPES
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
//Process 1: writes first on FIFO
#define SIZE 80
int main(){
int fd;
//path para FIFO
char myfifo[] = "/home/camilo/myfifo";
//crear archivo fifo (path, permisos)
mkfifo(myfifo, 0666);
char arr1[SIZE], arr2[SIZE];
while(1){
//abrir FIFO en modo escritura
fd = open(myfifo, O_WRONLY);
//leer array del usuario
fgets(arr2, SIZE, stdin);
//escribir en FIFO y cerrar archivo
write(fd, arr2, strlen(arr2)+1);
close(fd);
//abrir FIFO en solo lectura
fd = open(myfifo, O_RDONLY);
//leer FIFO
read(fd, arr1, SIZE);
//mostrar mensaje leido
printf("Usuario 2: %s\n", arr1);
close(fd);
}
return 0;
}
| [
"camilo.im93@gmail.com"
] | camilo.im93@gmail.com |
b6d447b9d0114ce2307b20eae2099818c196f0cd | 19907e496cfaf4d59030ff06a90dc7b14db939fc | /POC/oracle_dapp/node_modules/wrtc/third_party/webrtc/include/chromium/src/components/copresence/timed_map.h | 18685b19ed89fff02b560e87a560292146dacb35 | [
"BSD-2-Clause"
] | permissive | ATMatrix/demo | c10734441f21e24b89054842871a31fec19158e4 | e71a3421c75ccdeac14eafba38f31cf92d0b2354 | refs/heads/master | 2020-12-02T20:53:29.214857 | 2017-08-28T05:49:35 | 2017-08-28T05:49:35 | 96,223,899 | 8 | 4 | null | 2017-08-28T05:49:36 | 2017-07-04T13:59:26 | JavaScript | UTF-8 | C++ | false | false | 3,170 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_COPRESENCE_TIMED_MAP_H_
#define COMPONENTS_COPRESENCE_TIMED_MAP_H_
#include <stddef.h>
#include <map>
#include <queue>
#include <utility>
#include <vector>
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/default_tick_clock.h"
#include "base/time/tick_clock.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
namespace copresence {
// TimedMap is a map with the added functionality of clearing any
// key/value pair after its specified lifetime is over.
// TODO(ckehoe): Why is this interface so different from std::map?
template <typename KeyType, typename ValueType>
class TimedMap {
public:
TimedMap(const base::TimeDelta& lifetime, size_t max_elements)
: kEmptyValue(ValueType()),
clock_(new base::DefaultTickClock()),
lifetime_(lifetime),
max_elements_(max_elements) {
timer_.Start(FROM_HERE, lifetime_, this, &TimedMap::ClearExpiredTokens);
}
~TimedMap() {}
void Add(const KeyType& key, const ValueType& value) {
map_[key] = value;
expiry_queue_.push(KeyTimeTuple(key, clock_->NowTicks() + lifetime_));
while (map_.size() > max_elements_)
ClearOldestToken();
}
bool HasKey(const KeyType& key) {
ClearExpiredTokens();
return map_.find(key) != map_.end();
}
const ValueType& GetValue(const KeyType& key) {
ClearExpiredTokens();
auto elt = map_.find(key);
return elt == map_.end() ? kEmptyValue : elt->second;
}
ValueType* GetMutableValue(const KeyType& key) {
ClearExpiredTokens();
auto elt = map_.find(key);
return elt == map_.end() ? nullptr : &(elt->second);
}
// TODO(ckehoe): Add a unit test for this.
size_t Erase(const KeyType& key) {
return map_.erase(key);
}
void set_clock_for_testing(scoped_ptr<base::TickClock> clock) {
clock_ = std::move(clock);
}
private:
void ClearExpiredTokens() {
while (!expiry_queue_.empty() &&
expiry_queue_.top().second <= clock_->NowTicks())
ClearOldestToken();
}
void ClearOldestToken() {
map_.erase(expiry_queue_.top().first);
expiry_queue_.pop();
}
using KeyTimeTuple = std::pair<KeyType, base::TimeTicks>;
class EarliestFirstComparator {
public:
// This will sort our queue with the 'earliest' time being the top.
bool operator()(const KeyTimeTuple& left, const KeyTimeTuple& right) const {
return left.second > right.second;
}
};
using ExpiryQueue = std::priority_queue<
KeyTimeTuple, std::vector<KeyTimeTuple>, EarliestFirstComparator>;
const ValueType kEmptyValue;
scoped_ptr<base::TickClock> clock_;
base::RepeatingTimer timer_;
const base::TimeDelta lifetime_;
const size_t max_elements_;
std::map<KeyType, ValueType> map_;
// Priority queue with our element keys ordered by the earliest expiring keys
// first.
ExpiryQueue expiry_queue_;
DISALLOW_COPY_AND_ASSIGN(TimedMap);
};
} // namespace copresence
#endif // COMPONENTS_COPRESENCE_TIMED_MAP_H_
| [
"steven.jun.liu@qq.com"
] | steven.jun.liu@qq.com |
b0711d2fdb6727c735cf62fbd92e4576af3556e8 | 530851a2ee9193f0e47af35a65eac8982ac52a63 | /src/message.cpp | 6ee27eea282f00212c06d78dec5afec3b3ca88a0 | [] | no_license | smmzhang/EasyBlocks | 56be3e6c1d5bfba8aa3b99f8656a0b9ec88ee1e0 | 3ee26c74345ca6a1a7e2763983834906b4d934a0 | refs/heads/master | 2021-12-08T06:03:09.401833 | 2015-08-27T22:33:30 | 2015-08-27T22:33:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22 | cpp | #include "message.h"
| [
"brentchesny@Brents-MacBook-Pro.local"
] | brentchesny@Brents-MacBook-Pro.local |
f69c0506a7661f244e7f884ae72059136730eb7f | fb6c9780e08996b4d2aaa686c920285c4d0f6b70 | /Uri/AdHoc/2413 - Busca na Internet/solution.cpp | 33ed27359c6789d20ca0d25e3b3c22b7f47899c8 | [] | no_license | Diegores14/CompetitiveProgramming | 7c05e241f48a44de0973cfb2f407d77dcbad7b59 | 466ee2ec9a8c17d58866129c6c12fc176cb9ba0c | refs/heads/master | 2021-06-25T08:21:45.341172 | 2020-10-14T03:39:11 | 2020-10-14T03:39:11 | 136,670,647 | 6 | 2 | null | 2018-10-26T23:36:43 | 2018-06-08T22:15:18 | C++ | UTF-8 | C++ | false | false | 164 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
int t;
cin >> t;
cout << (t<<2) << '\n';
return 0;
} | [
"diegorestrepo68@utp.edu.co"
] | diegorestrepo68@utp.edu.co |
9e6e52b696aabc3e723e6cb19c9e54e2eeb4344f | ca747b5ed9d2eca71080e36ccdd6bdafcd7e602c | /old/GUI/Windows/TWF_Console.h | 9c04da26a7b26b2d46305edb91ab2fc710bd29ec | [] | no_license | artefom/ncage_orig | 1197812b359209ee293155474af475b65ab4e42a | f936fe44ba326c0e7e4d45e5ec66ded01fe13e5b | refs/heads/master | 2023-01-19T05:05:37.463266 | 2020-12-06T19:33:35 | 2020-12-06T19:33:35 | 319,082,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,347 | h | class TWF_Console : public TUI_WFrame
{
public:
TUI_Edit* edit;
TUI_Memo* memo;
int last_command;
TWF_Console(TUI_ParentLess* parent ) : TUI_WFrame(parent)
{
caption = "Console";
Size = Vec2i(150,200);
bstyle = 3; // 0 - unscaleable, 1 - vertical, 2-horizontal 3 - both.
EnableGlobalHooks();
memo = new TUI_Memo(this);
memo->SetBounds(0,10);
memo->InitLines( &Console.lines );
edit = new TUI_Edit(this);
edit->SetBounds( 10, 20);
edit->sevents.Connect( HOOK_OnEnter, this, &TWF_Console::OnEnter);
edit->sevents.Connect( HOOK_OnChange, this, &TWF_Console::UpdateContext);
last_command = -1;
};
virtual void OnResize()
{
memo->SetBounds( 0, Vec2i(Size.x,Size.y-20) );
edit->SetBounds( Vec2i(0,Size.y-20) , Vec2i(Size.x,20) );
};
virtual void OnEnter()
{
Console.EnterText( edit->GetText() );
edit->clear();
}
virtual void OnConsoleEnter( const char* text )
{
memo->Update();
}
pair<int,int> bounds(string text)
{
if (text.size() == 0) return pair<int,int>(-1,-1);
int first = -1;
int last = Console.functions.size();
int mid = (first+last)*0.5;
int top = 0;
int bottom = 0;
while((mid != first) && (mid != last))
{
if (text < Console.functions_names[mid])
{
last = mid;
} else
if (text > Console.functions_names[mid])
{
first = mid;
} else break;
mid = ceil((first+last)*0.5);
};
top = mid;
text += (char)(255);
first = 0;
last = Console.functions.size();
mid = (first+last)*0.5;
while((mid != first) && (mid != last))
{
if (text < Console.functions_names[mid])
{
last = mid;
} else
if (text > Console.functions_names[mid])
{
first = mid;
} else break;
mid = floor((first+last)*0.5);
};
bottom = mid;
return pair<int,int>(top,bottom);
};
virtual void UpdateContext()
{
edit->ClearContext();
pair<int,int> p = bounds(edit->GetText());
int top = p.first;
int bot = p.second;
for (int i = top; i <= bot; ++i)
{
if ((i >= 0) && (i < Console.functions_names.size())) edit->AddContext(Console.functions_names[i]);
};
//edit->UpdateContext();
}
};
UI_Hook(HOOK_GC_OnEnterText,TWF_Console,OnConsoleEnter);
//UI_Hook(HOOK_GC_OnMove,TWF_Console,OnConsoleMove);
| [
"aofomenko@gmail.com"
] | aofomenko@gmail.com |
ed4dcc139f239c44f636d72ec3d8f692a7d27d21 | 353ab20466c3a1ea67d80c342a16d837de9055a2 | /LinkedList/intersection.cpp | 4a600a9f9d7ea0286bf0dfc00d26da2a252e86d4 | [] | no_license | hgupta0709/dsa450 | cb5e82c12744785d3e2ce6467b67d5840cc3107f | b557c102407328dd701b38a8dc5d276c119de7de | refs/heads/main | 2023-05-12T04:42:36.419857 | 2021-06-01T11:09:11 | 2021-06-01T11:09:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,520 | cpp | /*
Intersection of two sorted Linked lists
Given two lists sorted in increasing order, create a new list representing the intersection of the two lists. The new list should be made with its own memory — the original lists should not be changed.
Example 1:
Input:
L1 = 1->2->3->4->6
L2 = 2->4->6->8
Output: 2 4 6
Explanation: For the given first two
linked list, 2, 4 and 6 are the elements
in the intersection.
Example 2:
Input:
L1 = 10->20->40->50
L2 = 15->40
Output: 40
*/
#include <bits/stdc++.h>
using namespace std;
class node
{
public:
int data;
node *next;
node(int val)
{ //constructor
data = val;
next = NULL;
}
};
void insertAtTail(node *&head, int val) //head by ref and not by val because we have to mod ll
{
node *n = new node(val);
if (head == NULL)
{
head = n;
return;
}
node *temp = head; //iterator (will traverse the ll)
while (temp->next != NULL)
{
temp = temp->next;
} //we are at last element now
temp->next = n; // n->next has already value NULL
}
void display(node *head) //head by value because wea re not mod ll
{
node *temp = head;
while (temp != NULL)
{
cout << temp->data << " ";
temp = temp->next;
}
cout << endl;
}
node *intersection(node *h1, node *h2)
{
node *ans = NULL; //resultant ll
node *ptr1 = h1;
node *ptr2 = h2;
node *temp = NULL; //iterator
while (ptr1 and ptr2) //both are not finished yet
{
if (ptr1->data == ptr2->data)
{
if (ans == NULL) //first data
{
node *t = new node(ptr1->data);
ans = t;
temp = t;
}
else
{
node *t = new node(ptr1->data);
temp->next = t;
temp = temp->next;
}
ptr1 = ptr1->next;
ptr2 = ptr2->next;
}
else
{
if (ptr1->data < ptr2->data)
{
ptr1 = ptr1->next;
}
else
{
ptr2 = ptr2->next;
}
}
}
display(ans);
return ans;
}
int main()
{
node *head1 = NULL;
insertAtTail(head1, 4);
insertAtTail(head1, 5);
display(head1);
node *head2 = NULL;
insertAtTail(head2, 3);
insertAtTail(head2, 4);
insertAtTail(head2, 5);
display(head2);
intersection(head1, head2);
return 0;
} | [
"rohanroy2309@gmail.com"
] | rohanroy2309@gmail.com |
1237f6e234ce7103079aaf9fcbaeb950221ed778 | 24f26275ffcd9324998d7570ea9fda82578eeb9e | /device/vr/android/gvr/gvr_device.h | bf4c03fa04cccbb075b184cdc3329e7334430111 | [
"BSD-3-Clause"
] | permissive | Vizionnation/chromenohistory | 70a51193c8538d7b995000a1b2a654e70603040f | 146feeb85985a6835f4b8826ad67be9195455402 | refs/heads/master | 2022-12-15T07:02:54.461083 | 2019-10-25T15:07:06 | 2019-10-25T15:07:06 | 217,557,501 | 2 | 1 | BSD-3-Clause | 2022-11-19T06:53:07 | 2019-10-25T14:58:54 | null | UTF-8 | C++ | false | false | 2,314 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DEVICE_VR_ANDROID_GVR_GVR_DEVICE_H_
#define DEVICE_VR_ANDROID_GVR_GVR_DEVICE_H_
#include <jni.h>
#include <memory>
#include "base/android/scoped_java_ref.h"
#include "base/macros.h"
#include "device/vr/vr_device_base.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "third_party/gvr-android-sdk/src/libraries/headers/vr/gvr/capi/include/gvr_types.h"
namespace device {
class GvrDelegateProvider;
class DEVICE_VR_EXPORT GvrDevice : public VRDeviceBase,
public mojom::XRSessionController {
public:
GvrDevice();
~GvrDevice() override;
// VRDeviceBase
void RequestSession(
mojom::XRRuntimeSessionOptionsPtr options,
mojom::XRRuntime::RequestSessionCallback callback) override;
void PauseTracking() override;
void ResumeTracking() override;
void EnsureInitialized(EnsureInitializedCallback callback) override;
void OnDisplayConfigurationChanged(
JNIEnv* env,
const base::android::JavaRef<jobject>& obj);
void Activate(mojom::VRDisplayEventReason reason,
base::Callback<void(bool)> on_handled);
private:
// VRDeviceBase
void OnListeningForActivate(bool listening) override;
void OnStartPresentResult(mojom::XRSessionPtr session);
// XRSessionController
void SetFrameDataRestricted(bool restricted) override;
void OnPresentingControllerMojoConnectionError();
void StopPresenting();
GvrDelegateProvider* GetGvrDelegateProvider();
void Init(base::OnceCallback<void(bool)> on_finished);
void CreateNonPresentingContext();
void OnInitRequestSessionFinished(
mojom::XRRuntimeSessionOptionsPtr options,
bool success);
base::android::ScopedJavaGlobalRef<jobject> non_presenting_context_;
std::unique_ptr<gvr::GvrApi> gvr_api_;
bool paused_ = true;
mojo::Receiver<mojom::XRSessionController> exclusive_controller_receiver_{
this};
mojom::XRRuntime::RequestSessionCallback pending_request_session_callback_;
base::WeakPtrFactory<GvrDevice> weak_ptr_factory_{this};
DISALLOW_COPY_AND_ASSIGN(GvrDevice);
};
} // namespace device
#endif // DEVICE_VR_ANDROID_GVR_GVR_DEVICE_H_
| [
"rjkroege@chromium.org"
] | rjkroege@chromium.org |
bbc2a4c3f6ef02ca35904a40c6cd6975b557f0d1 | 6c4699de64796bde99b9781ce6bcbbde5be4f2a4 | /External/opencv-2.4.6.1/modules/core/src/drawing.cpp | 9e3340897329be8ce5061a890e5e108cbebc395d | [] | no_license | simonct/CoreAstro | 3ea33aea2d9dd3ef1f0fbb990b4036c8ab8c6778 | eafd0aea314c427da616e1707a49aaeaf5ea6991 | refs/heads/master | 2020-05-22T04:03:57.706741 | 2014-10-25T07:30:40 | 2014-10-25T07:30:40 | 5,735,802 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 78,208 | cpp | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// Intel License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000, Intel Corporation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's 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.
//
// * The name of Intel Corporation may not 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 Intel Corporation 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.
//
//M*/
#include "precomp.hpp"
namespace cv
{
enum { XY_SHIFT = 16, XY_ONE = 1 << XY_SHIFT, DRAWING_STORAGE_BLOCK = (1<<12) - 256 };
struct PolyEdge
{
PolyEdge() : y0(0), y1(0), x(0), dx(0), next(0) {}
//PolyEdge(int _y0, int _y1, int _x, int _dx) : y0(_y0), y1(_y1), x(_x), dx(_dx) {}
int y0, y1;
int x, dx;
PolyEdge *next;
};
static void
CollectPolyEdges( Mat& img, const Point* v, int npts,
vector<PolyEdge>& edges, const void* color, int line_type,
int shift, Point offset=Point() );
static void
FillEdgeCollection( Mat& img, vector<PolyEdge>& edges, const void* color );
static void
PolyLine( Mat& img, const Point* v, int npts, bool closed,
const void* color, int thickness, int line_type, int shift );
static void
FillConvexPoly( Mat& img, const Point* v, int npts,
const void* color, int line_type, int shift );
/****************************************************************************************\
* Lines *
\****************************************************************************************/
bool clipLine( Size img_size, Point& pt1, Point& pt2 )
{
int64 x1, y1, x2, y2;
int c1, c2;
int64 right = img_size.width-1, bottom = img_size.height-1;
if( img_size.width <= 0 || img_size.height <= 0 )
return false;
x1 = pt1.x; y1 = pt1.y; x2 = pt2.x; y2 = pt2.y;
c1 = (x1 < 0) + (x1 > right) * 2 + (y1 < 0) * 4 + (y1 > bottom) * 8;
c2 = (x2 < 0) + (x2 > right) * 2 + (y2 < 0) * 4 + (y2 > bottom) * 8;
if( (c1 & c2) == 0 && (c1 | c2) != 0 )
{
int64 a;
if( c1 & 12 )
{
a = c1 < 8 ? 0 : bottom;
x1 += (a - y1) * (x2 - x1) / (y2 - y1);
y1 = a;
c1 = (x1 < 0) + (x1 > right) * 2;
}
if( c2 & 12 )
{
a = c2 < 8 ? 0 : bottom;
x2 += (a - y2) * (x2 - x1) / (y2 - y1);
y2 = a;
c2 = (x2 < 0) + (x2 > right) * 2;
}
if( (c1 & c2) == 0 && (c1 | c2) != 0 )
{
if( c1 )
{
a = c1 == 1 ? 0 : right;
y1 += (a - x1) * (y2 - y1) / (x2 - x1);
x1 = a;
c1 = 0;
}
if( c2 )
{
a = c2 == 1 ? 0 : right;
y2 += (a - x2) * (y2 - y1) / (x2 - x1);
x2 = a;
c2 = 0;
}
}
assert( (c1 & c2) != 0 || (x1 | y1 | x2 | y2) >= 0 );
pt1.x = (int)x1;
pt1.y = (int)y1;
pt2.x = (int)x2;
pt2.y = (int)y2;
}
return (c1 | c2) == 0;
}
bool clipLine( Rect img_rect, Point& pt1, Point& pt2 )
{
Point tl = img_rect.tl();
pt1 -= tl; pt2 -= tl;
bool inside = clipLine(img_rect.size(), pt1, pt2);
pt1 += tl; pt2 += tl;
return inside;
}
/*
Initializes line iterator.
Returns number of points on the line or negative number if error.
*/
LineIterator::LineIterator(const Mat& img, Point pt1, Point pt2,
int connectivity, bool left_to_right)
{
count = -1;
CV_Assert( connectivity == 8 || connectivity == 4 );
if( (unsigned)pt1.x >= (unsigned)(img.cols) ||
(unsigned)pt2.x >= (unsigned)(img.cols) ||
(unsigned)pt1.y >= (unsigned)(img.rows) ||
(unsigned)pt2.y >= (unsigned)(img.rows) )
{
if( !clipLine( img.size(), pt1, pt2 ) )
{
ptr = img.data;
err = plusDelta = minusDelta = plusStep = minusStep = count = 0;
return;
}
}
int bt_pix0 = (int)img.elemSize(), bt_pix = bt_pix0;
size_t istep = img.step;
int dx = pt2.x - pt1.x;
int dy = pt2.y - pt1.y;
int s = dx < 0 ? -1 : 0;
if( left_to_right )
{
dx = (dx ^ s) - s;
dy = (dy ^ s) - s;
pt1.x ^= (pt1.x ^ pt2.x) & s;
pt1.y ^= (pt1.y ^ pt2.y) & s;
}
else
{
dx = (dx ^ s) - s;
bt_pix = (bt_pix ^ s) - s;
}
ptr = (uchar*)(img.data + pt1.y * istep + pt1.x * bt_pix0);
s = dy < 0 ? -1 : 0;
dy = (dy ^ s) - s;
istep = (istep ^ s) - s;
s = dy > dx ? -1 : 0;
/* conditional swaps */
dx ^= dy & s;
dy ^= dx & s;
dx ^= dy & s;
bt_pix ^= istep & s;
istep ^= bt_pix & s;
bt_pix ^= istep & s;
if( connectivity == 8 )
{
assert( dx >= 0 && dy >= 0 );
err = dx - (dy + dy);
plusDelta = dx + dx;
minusDelta = -(dy + dy);
plusStep = (int)istep;
minusStep = bt_pix;
count = dx + 1;
}
else /* connectivity == 4 */
{
assert( dx >= 0 && dy >= 0 );
err = 0;
plusDelta = (dx + dx) + (dy + dy);
minusDelta = -(dy + dy);
plusStep = (int)istep - bt_pix;
minusStep = bt_pix;
count = dx + dy + 1;
}
this->ptr0 = img.data;
this->step = (int)img.step;
this->elemSize = bt_pix0;
}
static void
Line( Mat& img, Point pt1, Point pt2,
const void* _color, int connectivity = 8 )
{
if( connectivity == 0 )
connectivity = 8;
if( connectivity == 1 )
connectivity = 4;
LineIterator iterator(img, pt1, pt2, connectivity, true);
int i, count = iterator.count;
int pix_size = (int)img.elemSize();
const uchar* color = (const uchar*)_color;
for( i = 0; i < count; i++, ++iterator )
{
uchar* ptr = *iterator;
if( pix_size == 1 )
ptr[0] = color[0];
else if( pix_size == 3 )
{
ptr[0] = color[0];
ptr[1] = color[1];
ptr[2] = color[2];
}
else
memcpy( *iterator, color, pix_size );
}
}
/* Correction table depent on the slope */
static const uchar SlopeCorrTable[] = {
181, 181, 181, 182, 182, 183, 184, 185, 187, 188, 190, 192, 194, 196, 198, 201,
203, 206, 209, 211, 214, 218, 221, 224, 227, 231, 235, 238, 242, 246, 250, 254
};
/* Gaussian for antialiasing filter */
static const int FilterTable[] = {
168, 177, 185, 194, 202, 210, 218, 224, 231, 236, 241, 246, 249, 252, 254, 254,
254, 254, 252, 249, 246, 241, 236, 231, 224, 218, 210, 202, 194, 185, 177, 168,
158, 149, 140, 131, 122, 114, 105, 97, 89, 82, 75, 68, 62, 56, 50, 45,
40, 36, 32, 28, 25, 22, 19, 16, 14, 12, 11, 9, 8, 7, 5, 5
};
static void
LineAA( Mat& img, Point pt1, Point pt2, const void* color )
{
int dx, dy;
int ecount, scount = 0;
int slope;
int ax, ay;
int x_step, y_step;
int i, j;
int ep_table[9];
int cb = ((uchar*)color)[0], cg = ((uchar*)color)[1], cr = ((uchar*)color)[2];
int _cb, _cg, _cr;
int nch = img.channels();
uchar* ptr = img.data;
size_t step = img.step;
Size size = img.size();
if( !((nch == 1 || nch == 3) && img.depth() == CV_8U) )
{
Line(img, pt1, pt2, color);
return;
}
pt1.x -= XY_ONE*2;
pt1.y -= XY_ONE*2;
pt2.x -= XY_ONE*2;
pt2.y -= XY_ONE*2;
ptr += img.step*2 + 2*nch;
size.width = ((size.width - 5) << XY_SHIFT) + 1;
size.height = ((size.height - 5) << XY_SHIFT) + 1;
if( !clipLine( size, pt1, pt2 ))
return;
dx = pt2.x - pt1.x;
dy = pt2.y - pt1.y;
j = dx < 0 ? -1 : 0;
ax = (dx ^ j) - j;
i = dy < 0 ? -1 : 0;
ay = (dy ^ i) - i;
if( ax > ay )
{
dx = ax;
dy = (dy ^ j) - j;
pt1.x ^= pt2.x & j;
pt2.x ^= pt1.x & j;
pt1.x ^= pt2.x & j;
pt1.y ^= pt2.y & j;
pt2.y ^= pt1.y & j;
pt1.y ^= pt2.y & j;
x_step = XY_ONE;
y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1));
pt2.x += XY_ONE;
ecount = (pt2.x >> XY_SHIFT) - (pt1.x >> XY_SHIFT);
j = -(pt1.x & (XY_ONE - 1));
pt1.y += (int) ((((int64) y_step) * j) >> XY_SHIFT) + (XY_ONE >> 1);
slope = (y_step >> (XY_SHIFT - 5)) & 0x3f;
slope ^= (y_step < 0 ? 0x3f : 0);
/* Get 4-bit fractions for end-point adjustments */
i = (pt1.x >> (XY_SHIFT - 7)) & 0x78;
j = (pt2.x >> (XY_SHIFT - 7)) & 0x78;
}
else
{
dy = ay;
dx = (dx ^ i) - i;
pt1.x ^= pt2.x & i;
pt2.x ^= pt1.x & i;
pt1.x ^= pt2.x & i;
pt1.y ^= pt2.y & i;
pt2.y ^= pt1.y & i;
pt1.y ^= pt2.y & i;
x_step = (int) (((int64) dx << XY_SHIFT) / (ay | 1));
y_step = XY_ONE;
pt2.y += XY_ONE;
ecount = (pt2.y >> XY_SHIFT) - (pt1.y >> XY_SHIFT);
j = -(pt1.y & (XY_ONE - 1));
pt1.x += (int) ((((int64) x_step) * j) >> XY_SHIFT) + (XY_ONE >> 1);
slope = (x_step >> (XY_SHIFT - 5)) & 0x3f;
slope ^= (x_step < 0 ? 0x3f : 0);
/* Get 4-bit fractions for end-point adjustments */
i = (pt1.y >> (XY_SHIFT - 7)) & 0x78;
j = (pt2.y >> (XY_SHIFT - 7)) & 0x78;
}
slope = (slope & 0x20) ? 0x100 : SlopeCorrTable[slope];
/* Calc end point correction table */
{
int t0 = slope << 7;
int t1 = ((0x78 - i) | 4) * slope;
int t2 = (j | 4) * slope;
ep_table[0] = 0;
ep_table[8] = slope;
ep_table[1] = ep_table[3] = ((((j - i) & 0x78) | 4) * slope >> 8) & 0x1ff;
ep_table[2] = (t1 >> 8) & 0x1ff;
ep_table[4] = ((((j - i) + 0x80) | 4) * slope >> 8) & 0x1ff;
ep_table[5] = ((t1 + t0) >> 8) & 0x1ff;
ep_table[6] = (t2 >> 8) & 0x1ff;
ep_table[7] = ((t2 + t0) >> 8) & 0x1ff;
}
if( nch == 3 )
{
#define ICV_PUT_POINT() \
{ \
_cb = tptr[0]; \
_cb += ((cb - _cb)*a + 127)>> 8;\
_cg = tptr[1]; \
_cg += ((cg - _cg)*a + 127)>> 8;\
_cr = tptr[2]; \
_cr += ((cr - _cr)*a + 127)>> 8;\
tptr[0] = (uchar)_cb; \
tptr[1] = (uchar)_cg; \
tptr[2] = (uchar)_cr; \
}
if( ax > ay )
{
ptr += (pt1.x >> XY_SHIFT) * 3;
while( ecount >= 0 )
{
uchar *tptr = ptr + ((pt1.y >> XY_SHIFT) - 1) * step;
int ep_corr = ep_table[(((scount >= 2) + 1) & (scount | 2)) * 3 +
(((ecount >= 2) + 1) & (ecount | 2))];
int a, dist = (pt1.y >> (XY_SHIFT - 5)) & 31;
a = (ep_corr * FilterTable[dist + 32] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr += step;
a = (ep_corr * FilterTable[dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr += step;
a = (ep_corr * FilterTable[63 - dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
pt1.y += y_step;
ptr += 3;
scount++;
ecount--;
}
}
else
{
ptr += (pt1.y >> XY_SHIFT) * step;
while( ecount >= 0 )
{
uchar *tptr = ptr + ((pt1.x >> XY_SHIFT) - 1) * 3;
int ep_corr = ep_table[(((scount >= 2) + 1) & (scount | 2)) * 3 +
(((ecount >= 2) + 1) & (ecount | 2))];
int a, dist = (pt1.x >> (XY_SHIFT - 5)) & 31;
a = (ep_corr * FilterTable[dist + 32] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr += 3;
a = (ep_corr * FilterTable[dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr += 3;
a = (ep_corr * FilterTable[63 - dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
pt1.x += x_step;
ptr += step;
scount++;
ecount--;
}
}
#undef ICV_PUT_POINT
}
else
{
#define ICV_PUT_POINT() \
{ \
_cb = tptr[0]; \
_cb += ((cb - _cb)*a + 127)>> 8;\
tptr[0] = (uchar)_cb; \
}
if( ax > ay )
{
ptr += (pt1.x >> XY_SHIFT);
while( ecount >= 0 )
{
uchar *tptr = ptr + ((pt1.y >> XY_SHIFT) - 1) * step;
int ep_corr = ep_table[(((scount >= 2) + 1) & (scount | 2)) * 3 +
(((ecount >= 2) + 1) & (ecount | 2))];
int a, dist = (pt1.y >> (XY_SHIFT - 5)) & 31;
a = (ep_corr * FilterTable[dist + 32] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr += step;
a = (ep_corr * FilterTable[dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr += step;
a = (ep_corr * FilterTable[63 - dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
pt1.y += y_step;
ptr++;
scount++;
ecount--;
}
}
else
{
ptr += (pt1.y >> XY_SHIFT) * step;
while( ecount >= 0 )
{
uchar *tptr = ptr + ((pt1.x >> XY_SHIFT) - 1);
int ep_corr = ep_table[(((scount >= 2) + 1) & (scount | 2)) * 3 +
(((ecount >= 2) + 1) & (ecount | 2))];
int a, dist = (pt1.x >> (XY_SHIFT - 5)) & 31;
a = (ep_corr * FilterTable[dist + 32] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr++;
a = (ep_corr * FilterTable[dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
tptr++;
a = (ep_corr * FilterTable[63 - dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
pt1.x += x_step;
ptr += step;
scount++;
ecount--;
}
}
#undef ICV_PUT_POINT
}
}
static void
Line2( Mat& img, Point pt1, Point pt2, const void* color )
{
int dx, dy;
int ecount;
int ax, ay;
int i, j, x, y;
int x_step, y_step;
int cb = ((uchar*)color)[0];
int cg = ((uchar*)color)[1];
int cr = ((uchar*)color)[2];
int pix_size = (int)img.elemSize();
uchar *ptr = img.data, *tptr;
size_t step = img.step;
Size size = img.size(), sizeScaled(size.width*XY_ONE, size.height*XY_ONE);
//assert( img && (nch == 1 || nch == 3) && img.depth() == CV_8U );
if( !clipLine( sizeScaled, pt1, pt2 ))
return;
dx = pt2.x - pt1.x;
dy = pt2.y - pt1.y;
j = dx < 0 ? -1 : 0;
ax = (dx ^ j) - j;
i = dy < 0 ? -1 : 0;
ay = (dy ^ i) - i;
if( ax > ay )
{
dx = ax;
dy = (dy ^ j) - j;
pt1.x ^= pt2.x & j;
pt2.x ^= pt1.x & j;
pt1.x ^= pt2.x & j;
pt1.y ^= pt2.y & j;
pt2.y ^= pt1.y & j;
pt1.y ^= pt2.y & j;
x_step = XY_ONE;
y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1));
ecount = (pt2.x - pt1.x) >> XY_SHIFT;
}
else
{
dy = ay;
dx = (dx ^ i) - i;
pt1.x ^= pt2.x & i;
pt2.x ^= pt1.x & i;
pt1.x ^= pt2.x & i;
pt1.y ^= pt2.y & i;
pt2.y ^= pt1.y & i;
pt1.y ^= pt2.y & i;
x_step = (int) (((int64) dx << XY_SHIFT) / (ay | 1));
y_step = XY_ONE;
ecount = (pt2.y - pt1.y) >> XY_SHIFT;
}
pt1.x += (XY_ONE >> 1);
pt1.y += (XY_ONE >> 1);
if( pix_size == 3 )
{
#define ICV_PUT_POINT(_x,_y) \
x = (_x); y = (_y); \
if( 0 <= x && x < size.width && \
0 <= y && y < size.height ) \
{ \
tptr = ptr + y*step + x*3; \
tptr[0] = (uchar)cb; \
tptr[1] = (uchar)cg; \
tptr[2] = (uchar)cr; \
}
ICV_PUT_POINT((pt2.x + (XY_ONE >> 1)) >> XY_SHIFT,
(pt2.y + (XY_ONE >> 1)) >> XY_SHIFT);
if( ax > ay )
{
pt1.x >>= XY_SHIFT;
while( ecount >= 0 )
{
ICV_PUT_POINT(pt1.x, pt1.y >> XY_SHIFT);
pt1.x++;
pt1.y += y_step;
ecount--;
}
}
else
{
pt1.y >>= XY_SHIFT;
while( ecount >= 0 )
{
ICV_PUT_POINT(pt1.x >> XY_SHIFT, pt1.y);
pt1.x += x_step;
pt1.y++;
ecount--;
}
}
#undef ICV_PUT_POINT
}
else if( pix_size == 1 )
{
#define ICV_PUT_POINT(_x,_y) \
x = (_x); y = (_y); \
if( 0 <= x && x < size.width && \
0 <= y && y < size.height ) \
{ \
tptr = ptr + y*step + x;\
tptr[0] = (uchar)cb; \
}
ICV_PUT_POINT((pt2.x + (XY_ONE >> 1)) >> XY_SHIFT,
(pt2.y + (XY_ONE >> 1)) >> XY_SHIFT);
if( ax > ay )
{
pt1.x >>= XY_SHIFT;
while( ecount >= 0 )
{
ICV_PUT_POINT(pt1.x, pt1.y >> XY_SHIFT);
pt1.x++;
pt1.y += y_step;
ecount--;
}
}
else
{
pt1.y >>= XY_SHIFT;
while( ecount >= 0 )
{
ICV_PUT_POINT(pt1.x >> XY_SHIFT, pt1.y);
pt1.x += x_step;
pt1.y++;
ecount--;
}
}
#undef ICV_PUT_POINT
}
else
{
#define ICV_PUT_POINT(_x,_y) \
x = (_x); y = (_y); \
if( 0 <= x && x < size.width && \
0 <= y && y < size.height ) \
{ \
tptr = ptr + y*step + x*pix_size;\
for( j = 0; j < pix_size; j++ ) \
tptr[j] = ((uchar*)color)[j]; \
}
ICV_PUT_POINT((pt2.x + (XY_ONE >> 1)) >> XY_SHIFT,
(pt2.y + (XY_ONE >> 1)) >> XY_SHIFT);
if( ax > ay )
{
pt1.x >>= XY_SHIFT;
while( ecount >= 0 )
{
ICV_PUT_POINT(pt1.x, pt1.y >> XY_SHIFT);
pt1.x++;
pt1.y += y_step;
ecount--;
}
}
else
{
pt1.y >>= XY_SHIFT;
while( ecount >= 0 )
{
ICV_PUT_POINT(pt1.x >> XY_SHIFT, pt1.y);
pt1.x += x_step;
pt1.y++;
ecount--;
}
}
#undef ICV_PUT_POINT
}
}
/****************************************************************************************\
* Antialiazed Elliptic Arcs via Antialiazed Lines *
\****************************************************************************************/
static const float SinTable[] =
{ 0.0000000f, 0.0174524f, 0.0348995f, 0.0523360f, 0.0697565f, 0.0871557f,
0.1045285f, 0.1218693f, 0.1391731f, 0.1564345f, 0.1736482f, 0.1908090f,
0.2079117f, 0.2249511f, 0.2419219f, 0.2588190f, 0.2756374f, 0.2923717f,
0.3090170f, 0.3255682f, 0.3420201f, 0.3583679f, 0.3746066f, 0.3907311f,
0.4067366f, 0.4226183f, 0.4383711f, 0.4539905f, 0.4694716f, 0.4848096f,
0.5000000f, 0.5150381f, 0.5299193f, 0.5446390f, 0.5591929f, 0.5735764f,
0.5877853f, 0.6018150f, 0.6156615f, 0.6293204f, 0.6427876f, 0.6560590f,
0.6691306f, 0.6819984f, 0.6946584f, 0.7071068f, 0.7193398f, 0.7313537f,
0.7431448f, 0.7547096f, 0.7660444f, 0.7771460f, 0.7880108f, 0.7986355f,
0.8090170f, 0.8191520f, 0.8290376f, 0.8386706f, 0.8480481f, 0.8571673f,
0.8660254f, 0.8746197f, 0.8829476f, 0.8910065f, 0.8987940f, 0.9063078f,
0.9135455f, 0.9205049f, 0.9271839f, 0.9335804f, 0.9396926f, 0.9455186f,
0.9510565f, 0.9563048f, 0.9612617f, 0.9659258f, 0.9702957f, 0.9743701f,
0.9781476f, 0.9816272f, 0.9848078f, 0.9876883f, 0.9902681f, 0.9925462f,
0.9945219f, 0.9961947f, 0.9975641f, 0.9986295f, 0.9993908f, 0.9998477f,
1.0000000f, 0.9998477f, 0.9993908f, 0.9986295f, 0.9975641f, 0.9961947f,
0.9945219f, 0.9925462f, 0.9902681f, 0.9876883f, 0.9848078f, 0.9816272f,
0.9781476f, 0.9743701f, 0.9702957f, 0.9659258f, 0.9612617f, 0.9563048f,
0.9510565f, 0.9455186f, 0.9396926f, 0.9335804f, 0.9271839f, 0.9205049f,
0.9135455f, 0.9063078f, 0.8987940f, 0.8910065f, 0.8829476f, 0.8746197f,
0.8660254f, 0.8571673f, 0.8480481f, 0.8386706f, 0.8290376f, 0.8191520f,
0.8090170f, 0.7986355f, 0.7880108f, 0.7771460f, 0.7660444f, 0.7547096f,
0.7431448f, 0.7313537f, 0.7193398f, 0.7071068f, 0.6946584f, 0.6819984f,
0.6691306f, 0.6560590f, 0.6427876f, 0.6293204f, 0.6156615f, 0.6018150f,
0.5877853f, 0.5735764f, 0.5591929f, 0.5446390f, 0.5299193f, 0.5150381f,
0.5000000f, 0.4848096f, 0.4694716f, 0.4539905f, 0.4383711f, 0.4226183f,
0.4067366f, 0.3907311f, 0.3746066f, 0.3583679f, 0.3420201f, 0.3255682f,
0.3090170f, 0.2923717f, 0.2756374f, 0.2588190f, 0.2419219f, 0.2249511f,
0.2079117f, 0.1908090f, 0.1736482f, 0.1564345f, 0.1391731f, 0.1218693f,
0.1045285f, 0.0871557f, 0.0697565f, 0.0523360f, 0.0348995f, 0.0174524f,
0.0000000f, -0.0174524f, -0.0348995f, -0.0523360f, -0.0697565f, -0.0871557f,
-0.1045285f, -0.1218693f, -0.1391731f, -0.1564345f, -0.1736482f, -0.1908090f,
-0.2079117f, -0.2249511f, -0.2419219f, -0.2588190f, -0.2756374f, -0.2923717f,
-0.3090170f, -0.3255682f, -0.3420201f, -0.3583679f, -0.3746066f, -0.3907311f,
-0.4067366f, -0.4226183f, -0.4383711f, -0.4539905f, -0.4694716f, -0.4848096f,
-0.5000000f, -0.5150381f, -0.5299193f, -0.5446390f, -0.5591929f, -0.5735764f,
-0.5877853f, -0.6018150f, -0.6156615f, -0.6293204f, -0.6427876f, -0.6560590f,
-0.6691306f, -0.6819984f, -0.6946584f, -0.7071068f, -0.7193398f, -0.7313537f,
-0.7431448f, -0.7547096f, -0.7660444f, -0.7771460f, -0.7880108f, -0.7986355f,
-0.8090170f, -0.8191520f, -0.8290376f, -0.8386706f, -0.8480481f, -0.8571673f,
-0.8660254f, -0.8746197f, -0.8829476f, -0.8910065f, -0.8987940f, -0.9063078f,
-0.9135455f, -0.9205049f, -0.9271839f, -0.9335804f, -0.9396926f, -0.9455186f,
-0.9510565f, -0.9563048f, -0.9612617f, -0.9659258f, -0.9702957f, -0.9743701f,
-0.9781476f, -0.9816272f, -0.9848078f, -0.9876883f, -0.9902681f, -0.9925462f,
-0.9945219f, -0.9961947f, -0.9975641f, -0.9986295f, -0.9993908f, -0.9998477f,
-1.0000000f, -0.9998477f, -0.9993908f, -0.9986295f, -0.9975641f, -0.9961947f,
-0.9945219f, -0.9925462f, -0.9902681f, -0.9876883f, -0.9848078f, -0.9816272f,
-0.9781476f, -0.9743701f, -0.9702957f, -0.9659258f, -0.9612617f, -0.9563048f,
-0.9510565f, -0.9455186f, -0.9396926f, -0.9335804f, -0.9271839f, -0.9205049f,
-0.9135455f, -0.9063078f, -0.8987940f, -0.8910065f, -0.8829476f, -0.8746197f,
-0.8660254f, -0.8571673f, -0.8480481f, -0.8386706f, -0.8290376f, -0.8191520f,
-0.8090170f, -0.7986355f, -0.7880108f, -0.7771460f, -0.7660444f, -0.7547096f,
-0.7431448f, -0.7313537f, -0.7193398f, -0.7071068f, -0.6946584f, -0.6819984f,
-0.6691306f, -0.6560590f, -0.6427876f, -0.6293204f, -0.6156615f, -0.6018150f,
-0.5877853f, -0.5735764f, -0.5591929f, -0.5446390f, -0.5299193f, -0.5150381f,
-0.5000000f, -0.4848096f, -0.4694716f, -0.4539905f, -0.4383711f, -0.4226183f,
-0.4067366f, -0.3907311f, -0.3746066f, -0.3583679f, -0.3420201f, -0.3255682f,
-0.3090170f, -0.2923717f, -0.2756374f, -0.2588190f, -0.2419219f, -0.2249511f,
-0.2079117f, -0.1908090f, -0.1736482f, -0.1564345f, -0.1391731f, -0.1218693f,
-0.1045285f, -0.0871557f, -0.0697565f, -0.0523360f, -0.0348995f, -0.0174524f,
-0.0000000f, 0.0174524f, 0.0348995f, 0.0523360f, 0.0697565f, 0.0871557f,
0.1045285f, 0.1218693f, 0.1391731f, 0.1564345f, 0.1736482f, 0.1908090f,
0.2079117f, 0.2249511f, 0.2419219f, 0.2588190f, 0.2756374f, 0.2923717f,
0.3090170f, 0.3255682f, 0.3420201f, 0.3583679f, 0.3746066f, 0.3907311f,
0.4067366f, 0.4226183f, 0.4383711f, 0.4539905f, 0.4694716f, 0.4848096f,
0.5000000f, 0.5150381f, 0.5299193f, 0.5446390f, 0.5591929f, 0.5735764f,
0.5877853f, 0.6018150f, 0.6156615f, 0.6293204f, 0.6427876f, 0.6560590f,
0.6691306f, 0.6819984f, 0.6946584f, 0.7071068f, 0.7193398f, 0.7313537f,
0.7431448f, 0.7547096f, 0.7660444f, 0.7771460f, 0.7880108f, 0.7986355f,
0.8090170f, 0.8191520f, 0.8290376f, 0.8386706f, 0.8480481f, 0.8571673f,
0.8660254f, 0.8746197f, 0.8829476f, 0.8910065f, 0.8987940f, 0.9063078f,
0.9135455f, 0.9205049f, 0.9271839f, 0.9335804f, 0.9396926f, 0.9455186f,
0.9510565f, 0.9563048f, 0.9612617f, 0.9659258f, 0.9702957f, 0.9743701f,
0.9781476f, 0.9816272f, 0.9848078f, 0.9876883f, 0.9902681f, 0.9925462f,
0.9945219f, 0.9961947f, 0.9975641f, 0.9986295f, 0.9993908f, 0.9998477f,
1.0000000f
};
static void
sincos( int angle, float& cosval, float& sinval )
{
angle += (angle < 0 ? 360 : 0);
sinval = SinTable[angle];
cosval = SinTable[450 - angle];
}
/*
constructs polygon that represents elliptic arc.
*/
void ellipse2Poly( Point center, Size axes, int angle,
int arc_start, int arc_end,
int delta, vector<Point>& pts )
{
float alpha, beta;
double size_a = axes.width, size_b = axes.height;
double cx = center.x, cy = center.y;
Point prevPt(INT_MIN,INT_MIN);
int i;
while( angle < 0 )
angle += 360;
while( angle > 360 )
angle -= 360;
if( arc_start > arc_end )
{
i = arc_start;
arc_start = arc_end;
arc_end = i;
}
while( arc_start < 0 )
{
arc_start += 360;
arc_end += 360;
}
while( arc_end > 360 )
{
arc_end -= 360;
arc_start -= 360;
}
if( arc_end - arc_start > 360 )
{
arc_start = 0;
arc_end = 360;
}
sincos( angle, alpha, beta );
pts.resize(0);
for( i = arc_start; i < arc_end + delta; i += delta )
{
double x, y;
angle = i;
if( angle > arc_end )
angle = arc_end;
if( angle < 0 )
angle += 360;
x = size_a * SinTable[450-angle];
y = size_b * SinTable[angle];
Point pt;
pt.x = cvRound( cx + x * alpha - y * beta );
pt.y = cvRound( cy + x * beta + y * alpha );
if( pt != prevPt )
pts.push_back(pt);
}
if( pts.size() < 2 )
pts.push_back(pts[0]);
}
static void
EllipseEx( Mat& img, Point center, Size axes,
int angle, int arc_start, int arc_end,
const void* color, int thickness, int line_type )
{
axes.width = std::abs(axes.width), axes.height = std::abs(axes.height);
int delta = (std::max(axes.width,axes.height)+(XY_ONE>>1))>>XY_SHIFT;
delta = delta < 3 ? 90 : delta < 10 ? 30 : delta < 15 ? 18 : 5;
vector<Point> v;
ellipse2Poly( center, axes, angle, arc_start, arc_end, delta, v );
if( thickness >= 0 )
PolyLine( img, &v[0], (int)v.size(), false, color, thickness, line_type, XY_SHIFT );
else if( arc_end - arc_start >= 360 )
FillConvexPoly( img, &v[0], (int)v.size(), color, line_type, XY_SHIFT );
else
{
v.push_back(center);
vector<PolyEdge> edges;
CollectPolyEdges( img, &v[0], (int)v.size(), edges, color, line_type, XY_SHIFT );
FillEdgeCollection( img, edges, color );
}
}
/****************************************************************************************\
* Polygons filling *
\****************************************************************************************/
/* helper macros: filling horizontal row */
#define ICV_HLINE( ptr, xl, xr, color, pix_size ) \
{ \
uchar* hline_ptr = (uchar*)(ptr) + (xl)*(pix_size); \
uchar* hline_max_ptr = (uchar*)(ptr) + (xr)*(pix_size); \
\
for( ; hline_ptr <= hline_max_ptr; hline_ptr += (pix_size))\
{ \
int hline_j; \
for( hline_j = 0; hline_j < (pix_size); hline_j++ ) \
{ \
hline_ptr[hline_j] = ((uchar*)color)[hline_j]; \
} \
} \
}
/* filling convex polygon. v - array of vertices, ntps - number of points */
static void
FillConvexPoly( Mat& img, const Point* v, int npts, const void* color, int line_type, int shift )
{
struct
{
int idx, di;
int x, dx, ye;
}
edge[2];
int delta = shift ? 1 << (shift - 1) : 0;
int i, y, imin = 0, left = 0, right = 1, x1, x2;
int edges = npts;
int xmin, xmax, ymin, ymax;
uchar* ptr = img.data;
Size size = img.size();
int pix_size = (int)img.elemSize();
Point p0;
int delta1, delta2;
if( line_type < CV_AA )
delta1 = delta2 = XY_ONE >> 1;
else
delta1 = XY_ONE - 1, delta2 = 0;
p0 = v[npts - 1];
p0.x <<= XY_SHIFT - shift;
p0.y <<= XY_SHIFT - shift;
assert( 0 <= shift && shift <= XY_SHIFT );
xmin = xmax = v[0].x;
ymin = ymax = v[0].y;
for( i = 0; i < npts; i++ )
{
Point p = v[i];
if( p.y < ymin )
{
ymin = p.y;
imin = i;
}
ymax = std::max( ymax, p.y );
xmax = std::max( xmax, p.x );
xmin = MIN( xmin, p.x );
p.x <<= XY_SHIFT - shift;
p.y <<= XY_SHIFT - shift;
if( line_type <= 8 )
{
if( shift == 0 )
{
Point pt0, pt1;
pt0.x = p0.x >> XY_SHIFT;
pt0.y = p0.y >> XY_SHIFT;
pt1.x = p.x >> XY_SHIFT;
pt1.y = p.y >> XY_SHIFT;
Line( img, pt0, pt1, color, line_type );
}
else
Line2( img, p0, p, color );
}
else
LineAA( img, p0, p, color );
p0 = p;
}
xmin = (xmin + delta) >> shift;
xmax = (xmax + delta) >> shift;
ymin = (ymin + delta) >> shift;
ymax = (ymax + delta) >> shift;
if( npts < 3 || xmax < 0 || ymax < 0 || xmin >= size.width || ymin >= size.height )
return;
ymax = MIN( ymax, size.height - 1 );
edge[0].idx = edge[1].idx = imin;
edge[0].ye = edge[1].ye = y = ymin;
edge[0].di = 1;
edge[1].di = npts - 1;
ptr += img.step*y;
do
{
if( line_type < CV_AA || y < ymax || y == ymin )
{
for( i = 0; i < 2; i++ )
{
if( y >= edge[i].ye )
{
int idx = edge[i].idx, di = edge[i].di;
int xs = 0, xe, ye, ty = 0;
for(;;)
{
ty = (v[idx].y + delta) >> shift;
if( ty > y || edges == 0 )
break;
xs = v[idx].x;
idx += di;
idx -= ((idx < npts) - 1) & npts; /* idx -= idx >= npts ? npts : 0 */
edges--;
}
ye = ty;
xs <<= XY_SHIFT - shift;
xe = v[idx].x << (XY_SHIFT - shift);
/* no more edges */
if( y >= ye )
return;
edge[i].ye = ye;
edge[i].dx = ((xe - xs)*2 + (ye - y)) / (2 * (ye - y));
edge[i].x = xs;
edge[i].idx = idx;
}
}
}
if( edge[left].x > edge[right].x )
{
left ^= 1;
right ^= 1;
}
x1 = edge[left].x;
x2 = edge[right].x;
if( y >= 0 )
{
int xx1 = (x1 + delta1) >> XY_SHIFT;
int xx2 = (x2 + delta2) >> XY_SHIFT;
if( xx2 >= 0 && xx1 < size.width )
{
if( xx1 < 0 )
xx1 = 0;
if( xx2 >= size.width )
xx2 = size.width - 1;
ICV_HLINE( ptr, xx1, xx2, color, pix_size );
}
}
x1 += edge[left].dx;
x2 += edge[right].dx;
edge[left].x = x1;
edge[right].x = x2;
ptr += img.step;
}
while( ++y <= ymax );
}
/******** Arbitrary polygon **********/
static void
CollectPolyEdges( Mat& img, const Point* v, int count, vector<PolyEdge>& edges,
const void* color, int line_type, int shift, Point offset )
{
int i, delta = offset.y + (shift ? 1 << (shift - 1) : 0);
Point pt0 = v[count-1], pt1;
pt0.x = (pt0.x + offset.x) << (XY_SHIFT - shift);
pt0.y = (pt0.y + delta) >> shift;
edges.reserve( edges.size() + count );
for( i = 0; i < count; i++, pt0 = pt1 )
{
Point t0, t1;
PolyEdge edge;
pt1 = v[i];
pt1.x = (pt1.x + offset.x) << (XY_SHIFT - shift);
pt1.y = (pt1.y + delta) >> shift;
if( line_type < CV_AA )
{
t0.y = pt0.y; t1.y = pt1.y;
t0.x = (pt0.x + (XY_ONE >> 1)) >> XY_SHIFT;
t1.x = (pt1.x + (XY_ONE >> 1)) >> XY_SHIFT;
Line( img, t0, t1, color, line_type );
}
else
{
t0.x = pt0.x; t1.x = pt1.x;
t0.y = pt0.y << XY_SHIFT;
t1.y = pt1.y << XY_SHIFT;
LineAA( img, t0, t1, color );
}
if( pt0.y == pt1.y )
continue;
if( pt0.y < pt1.y )
{
edge.y0 = pt0.y;
edge.y1 = pt1.y;
edge.x = pt0.x;
}
else
{
edge.y0 = pt1.y;
edge.y1 = pt0.y;
edge.x = pt1.x;
}
edge.dx = (pt1.x - pt0.x) / (pt1.y - pt0.y);
edges.push_back(edge);
}
}
struct CmpEdges
{
bool operator ()(const PolyEdge& e1, const PolyEdge& e2)
{
return e1.y0 - e2.y0 ? e1.y0 < e2.y0 :
e1.x - e2.x ? e1.x < e2.x : e1.dx < e2.dx;
}
};
/**************** helper macros and functions for sequence/contour processing ***********/
static void
FillEdgeCollection( Mat& img, vector<PolyEdge>& edges, const void* color )
{
PolyEdge tmp;
int i, y, total = (int)edges.size();
Size size = img.size();
PolyEdge* e;
int y_max = INT_MIN, x_max = INT_MIN, y_min = INT_MAX, x_min = INT_MAX;
int pix_size = (int)img.elemSize();
if( total < 2 )
return;
for( i = 0; i < total; i++ )
{
PolyEdge& e1 = edges[i];
assert( e1.y0 < e1.y1 );
y_min = std::min( y_min, e1.y0 );
y_max = std::max( y_max, e1.y1 );
x_min = std::min( x_min, e1.x );
x_max = std::max( x_max, e1.x );
}
if( y_max < 0 || y_min >= size.height || x_max < 0 || x_min >= (size.width<<XY_SHIFT) )
return;
std::sort( edges.begin(), edges.end(), CmpEdges() );
// start drawing
tmp.y0 = INT_MAX;
edges.push_back(tmp); // after this point we do not add
// any elements to edges, thus we can use pointers
i = 0;
tmp.next = 0;
e = &edges[i];
y_max = MIN( y_max, size.height );
for( y = e->y0; y < y_max; y++ )
{
PolyEdge *last, *prelast, *keep_prelast;
int sort_flag = 0;
int draw = 0;
int clipline = y < 0;
prelast = &tmp;
last = tmp.next;
while( last || e->y0 == y )
{
if( last && last->y1 == y )
{
// exclude edge if y reachs its lower point
prelast->next = last->next;
last = last->next;
continue;
}
keep_prelast = prelast;
if( last && (e->y0 > y || last->x < e->x) )
{
// go to the next edge in active list
prelast = last;
last = last->next;
}
else if( i < total )
{
// insert new edge into active list if y reachs its upper point
prelast->next = e;
e->next = last;
prelast = e;
e = &edges[++i];
}
else
break;
if( draw )
{
if( !clipline )
{
// convert x's from fixed-point to image coordinates
uchar *timg = img.data + y * img.step;
int x1 = keep_prelast->x;
int x2 = prelast->x;
if( x1 > x2 )
{
int t = x1;
x1 = x2;
x2 = t;
}
x1 = (x1 + XY_ONE - 1) >> XY_SHIFT;
x2 = x2 >> XY_SHIFT;
// clip and draw the line
if( x1 < size.width && x2 >= 0 )
{
if( x1 < 0 )
x1 = 0;
if( x2 >= size.width )
x2 = size.width - 1;
ICV_HLINE( timg, x1, x2, color, pix_size );
}
}
keep_prelast->x += keep_prelast->dx;
prelast->x += prelast->dx;
}
draw ^= 1;
}
// sort edges (using bubble sort)
keep_prelast = 0;
do
{
prelast = &tmp;
last = tmp.next;
while( last != keep_prelast && last->next != 0 )
{
PolyEdge *te = last->next;
// swap edges
if( last->x > te->x )
{
prelast->next = te;
last->next = te->next;
te->next = last;
prelast = te;
sort_flag = 1;
}
else
{
prelast = last;
last = te;
}
}
keep_prelast = prelast;
}
while( sort_flag && keep_prelast != tmp.next && keep_prelast != &tmp );
}
}
/* draws simple or filled circle */
static void
Circle( Mat& img, Point center, int radius, const void* color, int fill )
{
Size size = img.size();
size_t step = img.step;
int pix_size = (int)img.elemSize();
uchar* ptr = img.data;
int err = 0, dx = radius, dy = 0, plus = 1, minus = (radius << 1) - 1;
int inside = center.x >= radius && center.x < size.width - radius &&
center.y >= radius && center.y < size.height - radius;
#define ICV_PUT_POINT( ptr, x ) \
memcpy( ptr + (x)*pix_size, color, pix_size );
while( dx >= dy )
{
int mask;
int y11 = center.y - dy, y12 = center.y + dy, y21 = center.y - dx, y22 = center.y + dx;
int x11 = center.x - dx, x12 = center.x + dx, x21 = center.x - dy, x22 = center.x + dy;
if( inside )
{
uchar *tptr0 = ptr + y11 * step;
uchar *tptr1 = ptr + y12 * step;
if( !fill )
{
ICV_PUT_POINT( tptr0, x11 );
ICV_PUT_POINT( tptr1, x11 );
ICV_PUT_POINT( tptr0, x12 );
ICV_PUT_POINT( tptr1, x12 );
}
else
{
ICV_HLINE( tptr0, x11, x12, color, pix_size );
ICV_HLINE( tptr1, x11, x12, color, pix_size );
}
tptr0 = ptr + y21 * step;
tptr1 = ptr + y22 * step;
if( !fill )
{
ICV_PUT_POINT( tptr0, x21 );
ICV_PUT_POINT( tptr1, x21 );
ICV_PUT_POINT( tptr0, x22 );
ICV_PUT_POINT( tptr1, x22 );
}
else
{
ICV_HLINE( tptr0, x21, x22, color, pix_size );
ICV_HLINE( tptr1, x21, x22, color, pix_size );
}
}
else if( x11 < size.width && x12 >= 0 && y21 < size.height && y22 >= 0 )
{
if( fill )
{
x11 = std::max( x11, 0 );
x12 = MIN( x12, size.width - 1 );
}
if( (unsigned)y11 < (unsigned)size.height )
{
uchar *tptr = ptr + y11 * step;
if( !fill )
{
if( x11 >= 0 )
ICV_PUT_POINT( tptr, x11 );
if( x12 < size.width )
ICV_PUT_POINT( tptr, x12 );
}
else
ICV_HLINE( tptr, x11, x12, color, pix_size );
}
if( (unsigned)y12 < (unsigned)size.height )
{
uchar *tptr = ptr + y12 * step;
if( !fill )
{
if( x11 >= 0 )
ICV_PUT_POINT( tptr, x11 );
if( x12 < size.width )
ICV_PUT_POINT( tptr, x12 );
}
else
ICV_HLINE( tptr, x11, x12, color, pix_size );
}
if( x21 < size.width && x22 >= 0 )
{
if( fill )
{
x21 = std::max( x21, 0 );
x22 = MIN( x22, size.width - 1 );
}
if( (unsigned)y21 < (unsigned)size.height )
{
uchar *tptr = ptr + y21 * step;
if( !fill )
{
if( x21 >= 0 )
ICV_PUT_POINT( tptr, x21 );
if( x22 < size.width )
ICV_PUT_POINT( tptr, x22 );
}
else
ICV_HLINE( tptr, x21, x22, color, pix_size );
}
if( (unsigned)y22 < (unsigned)size.height )
{
uchar *tptr = ptr + y22 * step;
if( !fill )
{
if( x21 >= 0 )
ICV_PUT_POINT( tptr, x21 );
if( x22 < size.width )
ICV_PUT_POINT( tptr, x22 );
}
else
ICV_HLINE( tptr, x21, x22, color, pix_size );
}
}
}
dy++;
err += plus;
plus += 2;
mask = (err <= 0) - 1;
err -= minus & mask;
dx += mask;
minus -= mask & 2;
}
#undef ICV_PUT_POINT
}
static void
ThickLine( Mat& img, Point p0, Point p1, const void* color,
int thickness, int line_type, int flags, int shift )
{
static const double INV_XY_ONE = 1./XY_ONE;
p0.x <<= XY_SHIFT - shift;
p0.y <<= XY_SHIFT - shift;
p1.x <<= XY_SHIFT - shift;
p1.y <<= XY_SHIFT - shift;
if( thickness <= 1 )
{
if( line_type < CV_AA )
{
if( line_type == 1 || line_type == 4 || shift == 0 )
{
p0.x = (p0.x + (XY_ONE>>1)) >> XY_SHIFT;
p0.y = (p0.y + (XY_ONE>>1)) >> XY_SHIFT;
p1.x = (p1.x + (XY_ONE>>1)) >> XY_SHIFT;
p1.y = (p1.y + (XY_ONE>>1)) >> XY_SHIFT;
Line( img, p0, p1, color, line_type );
}
else
Line2( img, p0, p1, color );
}
else
LineAA( img, p0, p1, color );
}
else
{
Point pt[4], dp = Point(0,0);
double dx = (p0.x - p1.x)*INV_XY_ONE, dy = (p1.y - p0.y)*INV_XY_ONE;
double r = dx * dx + dy * dy;
int i, oddThickness = thickness & 1;
thickness <<= XY_SHIFT - 1;
if( fabs(r) > DBL_EPSILON )
{
r = (thickness + oddThickness*XY_ONE*0.5)/std::sqrt(r);
dp.x = cvRound( dy * r );
dp.y = cvRound( dx * r );
pt[0].x = p0.x + dp.x;
pt[0].y = p0.y + dp.y;
pt[1].x = p0.x - dp.x;
pt[1].y = p0.y - dp.y;
pt[2].x = p1.x - dp.x;
pt[2].y = p1.y - dp.y;
pt[3].x = p1.x + dp.x;
pt[3].y = p1.y + dp.y;
FillConvexPoly( img, pt, 4, color, line_type, XY_SHIFT );
}
for( i = 0; i < 2; i++ )
{
if( flags & (i+1) )
{
if( line_type < CV_AA )
{
Point center;
center.x = (p0.x + (XY_ONE>>1)) >> XY_SHIFT;
center.y = (p0.y + (XY_ONE>>1)) >> XY_SHIFT;
Circle( img, center, (thickness + (XY_ONE>>1)) >> XY_SHIFT, color, 1 );
}
else
{
EllipseEx( img, p0, cvSize(thickness, thickness),
0, 0, 360, color, -1, line_type );
}
}
p0 = p1;
}
}
}
static void
PolyLine( Mat& img, const Point* v, int count, bool is_closed,
const void* color, int thickness,
int line_type, int shift )
{
if( !v || count <= 0 )
return;
int i = is_closed ? count - 1 : 0;
int flags = 2 + !is_closed;
Point p0;
CV_Assert( 0 <= shift && shift <= XY_SHIFT && thickness >= 0 );
p0 = v[i];
for( i = !is_closed; i < count; i++ )
{
Point p = v[i];
ThickLine( img, p0, p, color, thickness, line_type, flags, shift );
p0 = p;
flags = 2;
}
}
/****************************************************************************************\
* External functions *
\****************************************************************************************/
void line( Mat& img, Point pt1, Point pt2, const Scalar& color,
int thickness, int line_type, int shift )
{
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
CV_Assert( 0 <= thickness && thickness <= 255 );
CV_Assert( 0 <= shift && shift <= XY_SHIFT );
double buf[4];
scalarToRawData( color, buf, img.type(), 0 );
ThickLine( img, pt1, pt2, buf, thickness, line_type, 3, shift );
}
void rectangle( Mat& img, Point pt1, Point pt2,
const Scalar& color, int thickness,
int lineType, int shift )
{
if( lineType == CV_AA && img.depth() != CV_8U )
lineType = 8;
CV_Assert( thickness <= 255 );
CV_Assert( 0 <= shift && shift <= XY_SHIFT );
double buf[4];
scalarToRawData(color, buf, img.type(), 0);
Point pt[4];
pt[0] = pt1;
pt[1].x = pt2.x;
pt[1].y = pt1.y;
pt[2] = pt2;
pt[3].x = pt1.x;
pt[3].y = pt2.y;
if( thickness >= 0 )
PolyLine( img, pt, 4, true, buf, thickness, lineType, shift );
else
FillConvexPoly( img, pt, 4, buf, lineType, shift );
}
void rectangle( Mat& img, Rect rec,
const Scalar& color, int thickness,
int lineType, int shift )
{
CV_Assert( 0 <= shift && shift <= XY_SHIFT );
if( rec.area() > 0 )
rectangle( img, rec.tl(), rec.br() - Point(1<<shift,1<<shift),
color, thickness, lineType, shift );
}
void circle( Mat& img, Point center, int radius,
const Scalar& color, int thickness, int line_type, int shift )
{
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
CV_Assert( radius >= 0 && thickness <= 255 &&
0 <= shift && shift <= XY_SHIFT );
double buf[4];
scalarToRawData(color, buf, img.type(), 0);
if( thickness > 1 || line_type >= CV_AA )
{
center.x <<= XY_SHIFT - shift;
center.y <<= XY_SHIFT - shift;
radius <<= XY_SHIFT - shift;
EllipseEx( img, center, Size(radius, radius),
0, 0, 360, buf, thickness, line_type );
}
else
Circle( img, center, radius, buf, thickness < 0 );
}
void ellipse( Mat& img, Point center, Size axes,
double angle, double start_angle, double end_angle,
const Scalar& color, int thickness, int line_type, int shift )
{
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
CV_Assert( axes.width >= 0 && axes.height >= 0 &&
thickness <= 255 && 0 <= shift && shift <= XY_SHIFT );
double buf[4];
scalarToRawData(color, buf, img.type(), 0);
int _angle = cvRound(angle);
int _start_angle = cvRound(start_angle);
int _end_angle = cvRound(end_angle);
center.x <<= XY_SHIFT - shift;
center.y <<= XY_SHIFT - shift;
axes.width <<= XY_SHIFT - shift;
axes.height <<= XY_SHIFT - shift;
EllipseEx( img, center, axes, _angle, _start_angle,
_end_angle, buf, thickness, line_type );
}
void ellipse(Mat& img, const RotatedRect& box, const Scalar& color,
int thickness, int lineType)
{
if( lineType == CV_AA && img.depth() != CV_8U )
lineType = 8;
CV_Assert( box.size.width >= 0 && box.size.height >= 0 &&
thickness <= 255 );
double buf[4];
scalarToRawData(color, buf, img.type(), 0);
int _angle = cvRound(box.angle);
Point center(cvRound(box.center.x*(1 << XY_SHIFT)),
cvRound(box.center.y*(1 << XY_SHIFT)));
Size axes(cvRound(box.size.width*(1 << (XY_SHIFT - 1))),
cvRound(box.size.height*(1 << (XY_SHIFT - 1))));
EllipseEx( img, center, axes, _angle, 0, 360, buf, thickness, lineType );
}
void fillConvexPoly( Mat& img, const Point* pts, int npts,
const Scalar& color, int line_type, int shift )
{
if( !pts || npts <= 0 )
return;
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
double buf[4];
CV_Assert( 0 <= shift && shift <= XY_SHIFT );
scalarToRawData(color, buf, img.type(), 0);
FillConvexPoly( img, pts, npts, buf, line_type, shift );
}
void fillPoly( Mat& img, const Point** pts, const int* npts, int ncontours,
const Scalar& color, int line_type,
int shift, Point offset )
{
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
CV_Assert( pts && npts && ncontours >= 0 && 0 <= shift && shift <= XY_SHIFT );
double buf[4];
scalarToRawData(color, buf, img.type(), 0);
vector<PolyEdge> edges;
int i, total = 0;
for( i = 0; i < ncontours; i++ )
total += npts[i];
edges.reserve( total + 1 );
for( i = 0; i < ncontours; i++ )
CollectPolyEdges( img, pts[i], npts[i], edges, buf, line_type, shift, offset );
FillEdgeCollection(img, edges, buf);
}
void polylines( Mat& img, const Point** pts, const int* npts, int ncontours, bool isClosed,
const Scalar& color, int thickness, int line_type, int shift )
{
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
CV_Assert( pts && npts && ncontours >= 0 &&
0 <= thickness && thickness <= 255 &&
0 <= shift && shift <= XY_SHIFT );
double buf[4];
scalarToRawData( color, buf, img.type(), 0 );
for( int i = 0; i < ncontours; i++ )
PolyLine( img, pts[i], npts[i], isClosed, buf, thickness, line_type, shift );
}
enum { FONT_SIZE_SHIFT=8, FONT_ITALIC_ALPHA=(1 << 8),
FONT_ITALIC_DIGIT=(2 << 8), FONT_ITALIC_PUNCT=(4 << 8),
FONT_ITALIC_BRACES=(8 << 8), FONT_HAVE_GREEK=(16 << 8),
FONT_HAVE_CYRILLIC=(32 << 8) };
static const int HersheyPlain[] = {
(5 + 4*16) + FONT_HAVE_GREEK,
199, 214, 217, 233, 219, 197, 234, 216, 221, 222, 228, 225, 211, 224, 210, 220,
200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 191, 226, 192,
215, 190, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 193, 84,
194, 85, 86, 87, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126,
195, 223, 196, 88 };
static const int HersheyPlainItalic[] = {
(5 + 4*16) + FONT_ITALIC_ALPHA + FONT_HAVE_GREEK,
199, 214, 217, 233, 219, 197, 234, 216, 221, 222, 228, 225, 211, 224, 210, 220,
200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 212, 213, 191, 226, 192,
215, 190, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 193, 84,
194, 85, 86, 87, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161,
162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176,
195, 223, 196, 88 };
static const int HersheyComplexSmall[] = {
(6 + 7*16) + FONT_HAVE_GREEK,
1199, 1214, 1217, 1275, 1274, 1271, 1272, 1216, 1221, 1222, 1219, 1232, 1211, 1231, 1210, 1220,
1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1212, 2213, 1241, 1238, 1242,
1215, 1273, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013,
1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1223, 1084,
1224, 1247, 586, 1249, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111,
1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126,
1225, 1229, 1226, 1246 };
static const int HersheyComplexSmallItalic[] = {
(6 + 7*16) + FONT_ITALIC_ALPHA + FONT_HAVE_GREEK,
1199, 1214, 1217, 1275, 1274, 1271, 1272, 1216, 1221, 1222, 1219, 1232, 1211, 1231, 1210, 1220,
1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1212, 1213, 1241, 1238, 1242,
1215, 1273, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063,
1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1223, 1084,
1224, 1247, 586, 1249, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161,
1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176,
1225, 1229, 1226, 1246 };
static const int HersheySimplex[] = {
(9 + 12*16) + FONT_HAVE_GREEK,
2199, 714, 717, 733, 719, 697, 734, 716, 721, 722, 728, 725, 711, 724, 710, 720,
700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 712, 713, 691, 726, 692,
715, 690, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513,
514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 693, 584,
694, 2247, 586, 2249, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611,
612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626,
695, 723, 696, 2246 };
static const int HersheyDuplex[] = {
(9 + 12*16) + FONT_HAVE_GREEK,
2199, 2714, 2728, 2732, 2719, 2733, 2718, 2727, 2721, 2722, 2723, 2725, 2711, 2724, 2710, 2720,
2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2712, 2713, 2730, 2726, 2731,
2715, 2734, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513,
2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2223, 2084,
2224, 2247, 587, 2249, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611,
2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626,
2225, 2229, 2226, 2246 };
static const int HersheyComplex[] = {
(9 + 12*16) + FONT_HAVE_GREEK + FONT_HAVE_CYRILLIC,
2199, 2214, 2217, 2275, 2274, 2271, 2272, 2216, 2221, 2222, 2219, 2232, 2211, 2231, 2210, 2220,
2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2212, 2213, 2241, 2238, 2242,
2215, 2273, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013,
2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2223, 2084,
2224, 2247, 587, 2249, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111,
2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126,
2225, 2229, 2226, 2246 };
static const int HersheyComplexItalic[] = {
(9 + 12*16) + FONT_ITALIC_ALPHA + FONT_ITALIC_DIGIT + FONT_ITALIC_PUNCT +
FONT_HAVE_GREEK + FONT_HAVE_CYRILLIC,
2199, 2764, 2778, 2782, 2769, 2783, 2768, 2777, 2771, 2772, 2219, 2232, 2211, 2231, 2210, 2220,
2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2212, 2213, 2241, 2238, 2242,
2765, 2273, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, 2061, 2062, 2063,
2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2223, 2084,
2224, 2247, 587, 2249, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161,
2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176,
2225, 2229, 2226, 2246 };
static const int HersheyTriplex[] = {
(9 + 12*16) + FONT_HAVE_GREEK,
2199, 3214, 3228, 3232, 3219, 3233, 3218, 3227, 3221, 3222, 3223, 3225, 3211, 3224, 3210, 3220,
3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3212, 3213, 3230, 3226, 3231,
3215, 3234, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013,
2014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 2223, 2084,
2224, 2247, 587, 2249, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111,
3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126,
2225, 2229, 2226, 2246 };
static const int HersheyTriplexItalic[] = {
(9 + 12*16) + FONT_ITALIC_ALPHA + FONT_ITALIC_DIGIT +
FONT_ITALIC_PUNCT + FONT_HAVE_GREEK,
2199, 3264, 3278, 3282, 3269, 3233, 3268, 3277, 3271, 3272, 3223, 3225, 3261, 3224, 3260, 3270,
3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3262, 3263, 3230, 3226, 3231,
3265, 3234, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063,
2064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3075, 3076, 2223, 2084,
2224, 2247, 587, 2249, 3151, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161,
3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176,
2225, 2229, 2226, 2246 };
static const int HersheyScriptSimplex[] = {
(9 + 12*16) + FONT_ITALIC_ALPHA + FONT_HAVE_GREEK,
2199, 714, 717, 733, 719, 697, 734, 716, 721, 722, 728, 725, 711, 724, 710, 720,
700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 712, 713, 691, 726, 692,
715, 690, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563,
564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 693, 584,
694, 2247, 586, 2249, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661,
662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676,
695, 723, 696, 2246 };
static const int HersheyScriptComplex[] = {
(9 + 12*16) + FONT_ITALIC_ALPHA + FONT_ITALIC_DIGIT + FONT_ITALIC_PUNCT + FONT_HAVE_GREEK,
2199, 2764, 2778, 2782, 2769, 2783, 2768, 2777, 2771, 2772, 2219, 2232, 2211, 2231, 2210, 2220,
2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2212, 2213, 2241, 2238, 2242,
2215, 2273, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563,
2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2223, 2084,
2224, 2247, 586, 2249, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661,
2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676,
2225, 2229, 2226, 2246 };
static const int* getFontData(int fontFace)
{
bool isItalic = (fontFace & FONT_ITALIC) != 0;
const int* ascii = 0;
switch( fontFace & 15 )
{
case FONT_HERSHEY_SIMPLEX:
ascii = HersheySimplex;
break;
case FONT_HERSHEY_PLAIN:
ascii = !isItalic ? HersheyPlain : HersheyPlainItalic;
break;
case FONT_HERSHEY_DUPLEX:
ascii = HersheyDuplex;
break;
case FONT_HERSHEY_COMPLEX:
ascii = !isItalic ? HersheyComplex : HersheyComplexItalic;
break;
case FONT_HERSHEY_TRIPLEX:
ascii = !isItalic ? HersheyTriplex : HersheyTriplexItalic;
break;
case FONT_HERSHEY_COMPLEX_SMALL:
ascii = !isItalic ? HersheyComplexSmall : HersheyComplexSmallItalic;
break;
case FONT_HERSHEY_SCRIPT_SIMPLEX:
ascii = HersheyScriptSimplex;
break;
case FONT_HERSHEY_SCRIPT_COMPLEX:
ascii = HersheyScriptComplex;
break;
default:
CV_Error( CV_StsOutOfRange, "Unknown font type" );
}
return ascii;
}
void putText( Mat& img, const string& text, Point org,
int fontFace, double fontScale, Scalar color,
int thickness, int line_type, bool bottomLeftOrigin )
{
const int* ascii = getFontData(fontFace);
double buf[4];
scalarToRawData(color, buf, img.type(), 0);
int base_line = -(ascii[0] & 15);
int hscale = cvRound(fontScale*XY_ONE), vscale = hscale;
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
if( bottomLeftOrigin )
vscale = -vscale;
int view_x = org.x << XY_SHIFT;
int view_y = (org.y << XY_SHIFT) + base_line*vscale;
vector<Point> pts;
pts.reserve(1 << 10);
const char **faces = cv::g_HersheyGlyphs;
for( int i = 0; text[i] != '\0'; i++ )
{
int c = (uchar)text[i];
Point p;
if( c >= 127 || c < ' ' )
c = '?';
const char* ptr = faces[ascii[(c-' ')+1]];
p.x = (uchar)ptr[0] - 'R';
p.y = (uchar)ptr[1] - 'R';
int dx = p.y*hscale;
view_x -= p.x*hscale;
pts.resize(0);
for( ptr += 2;; )
{
if( *ptr == ' ' || !*ptr )
{
if( pts.size() > 1 )
PolyLine( img, &pts[0], (int)pts.size(), false, buf, thickness, line_type, XY_SHIFT );
if( !*ptr++ )
break;
pts.resize(0);
}
else
{
p.x = (uchar)ptr[0] - 'R';
p.y = (uchar)ptr[1] - 'R';
ptr += 2;
pts.push_back(Point(p.x*hscale + view_x, p.y*vscale + view_y));
}
}
view_x += dx;
}
}
Size getTextSize( const string& text, int fontFace, double fontScale, int thickness, int* _base_line)
{
Size size;
double view_x = 0;
const char **faces = cv::g_HersheyGlyphs;
const int* ascii = getFontData(fontFace);
int base_line = (ascii[0] & 15);
int cap_line = (ascii[0] >> 4) & 15;
size.height = cvRound((cap_line + base_line)*fontScale + (thickness+1)/2);
for( int i = 0; text[i] != '\0'; i++ )
{
int c = (uchar)text[i];
Point p;
if( c >= 127 || c < ' ' )
c = '?';
const char* ptr = faces[ascii[(c-' ')+1]];
p.x = (uchar)ptr[0] - 'R';
p.y = (uchar)ptr[1] - 'R';
view_x += (p.y - p.x)*fontScale;
}
size.width = cvRound(view_x + thickness);
if( _base_line )
*_base_line = cvRound(base_line*fontScale + thickness*0.5);
return size;
}
}
void cv::fillConvexPoly(InputOutputArray _img, InputArray _points,
const Scalar& color, int lineType, int shift)
{
Mat img = _img.getMat(), points = _points.getMat();
CV_Assert(points.checkVector(2, CV_32S) >= 0);
fillConvexPoly(img, (const Point*)points.data, points.rows*points.cols*points.channels()/2, color, lineType, shift);
}
void cv::fillPoly(InputOutputArray _img, InputArrayOfArrays pts,
const Scalar& color, int lineType, int shift, Point offset)
{
Mat img = _img.getMat();
int i, ncontours = (int)pts.total();
if( ncontours == 0 )
return;
AutoBuffer<Point*> _ptsptr(ncontours);
AutoBuffer<int> _npts(ncontours);
Point** ptsptr = _ptsptr;
int* npts = _npts;
for( i = 0; i < ncontours; i++ )
{
Mat p = pts.getMat(i);
CV_Assert(p.checkVector(2, CV_32S) >= 0);
ptsptr[i] = (Point*)p.data;
npts[i] = p.rows*p.cols*p.channels()/2;
}
fillPoly(img, (const Point**)ptsptr, npts, (int)ncontours, color, lineType, shift, offset);
}
void cv::polylines(InputOutputArray _img, InputArrayOfArrays pts,
bool isClosed, const Scalar& color,
int thickness, int lineType, int shift )
{
Mat img = _img.getMat();
bool manyContours = pts.kind() == _InputArray::STD_VECTOR_VECTOR ||
pts.kind() == _InputArray::STD_VECTOR_MAT;
int i, ncontours = manyContours ? (int)pts.total() : 1;
if( ncontours == 0 )
return;
AutoBuffer<Point*> _ptsptr(ncontours);
AutoBuffer<int> _npts(ncontours);
Point** ptsptr = _ptsptr;
int* npts = _npts;
for( i = 0; i < ncontours; i++ )
{
Mat p = pts.getMat(manyContours ? i : -1);
if( p.total() == 0 )
continue;
CV_Assert(p.checkVector(2, CV_32S) >= 0);
ptsptr[i] = (Point*)p.data;
npts[i] = p.rows*p.cols*p.channels()/2;
}
polylines(img, (const Point**)ptsptr, npts, (int)ncontours, isClosed, color, thickness, lineType, shift);
}
static const int CodeDeltas[8][2] =
{ {1, 0}, {1, -1}, {0, -1}, {-1, -1}, {-1, 0}, {-1, 1}, {0, 1}, {1, 1} };
#define CV_ADJUST_EDGE_COUNT( count, seq ) \
((count) -= ((count) == (seq)->total && !CV_IS_SEQ_CLOSED(seq)))
CV_IMPL void
cvDrawContours( void* _img, CvSeq* contour,
CvScalar _externalColor, CvScalar _holeColor,
int maxLevel, int thickness,
int line_type, CvPoint _offset )
{
CvSeq *contour0 = contour, *h_next = 0;
CvTreeNodeIterator iterator;
cv::vector<cv::PolyEdge> edges;
cv::vector<cv::Point> pts;
cv::Scalar externalColor = _externalColor, holeColor = _holeColor;
cv::Mat img = cv::cvarrToMat(_img);
cv::Point offset = _offset;
double ext_buf[4], hole_buf[4];
if( line_type == CV_AA && img.depth() != CV_8U )
line_type = 8;
if( !contour )
return;
CV_Assert( thickness <= 255 );
scalarToRawData( externalColor, ext_buf, img.type(), 0 );
scalarToRawData( holeColor, hole_buf, img.type(), 0 );
maxLevel = MAX(maxLevel, INT_MIN+2);
maxLevel = MIN(maxLevel, INT_MAX-1);
if( maxLevel < 0 )
{
h_next = contour->h_next;
contour->h_next = 0;
maxLevel = -maxLevel+1;
}
cvInitTreeNodeIterator( &iterator, contour, maxLevel );
while( (contour = (CvSeq*)cvNextTreeNode( &iterator )) != 0 )
{
CvSeqReader reader;
int i, count = contour->total;
int elem_type = CV_MAT_TYPE(contour->flags);
void* clr = (contour->flags & CV_SEQ_FLAG_HOLE) == 0 ? ext_buf : hole_buf;
cvStartReadSeq( contour, &reader, 0 );
if( thickness < 0 )
pts.resize(0);
if( CV_IS_SEQ_CHAIN_CONTOUR( contour ))
{
cv::Point pt = ((CvChain*)contour)->origin;
cv::Point prev_pt = pt;
char prev_code = reader.ptr ? reader.ptr[0] : '\0';
prev_pt += offset;
for( i = 0; i < count; i++ )
{
char code;
CV_READ_SEQ_ELEM( code, reader );
assert( (code & ~7) == 0 );
if( code != prev_code )
{
prev_code = code;
if( thickness >= 0 )
cv::ThickLine( img, prev_pt, pt, clr, thickness, line_type, 2, 0 );
else
pts.push_back(pt);
prev_pt = pt;
}
pt.x += CodeDeltas[(int)code][0];
pt.y += CodeDeltas[(int)code][1];
}
if( thickness >= 0 )
cv::ThickLine( img, prev_pt,
cv::Point(((CvChain*)contour)->origin) + offset,
clr, thickness, line_type, 2, 0 );
else
cv::CollectPolyEdges(img, &pts[0], (int)pts.size(),
edges, ext_buf, line_type, 0, offset);
}
else if( CV_IS_SEQ_POLYLINE( contour ))
{
CV_Assert( elem_type == CV_32SC2 );
cv::Point pt1, pt2;
int shift = 0;
count -= !CV_IS_SEQ_CLOSED(contour);
CV_READ_SEQ_ELEM( pt1, reader );
pt1 += offset;
if( thickness < 0 )
pts.push_back(pt1);
for( i = 0; i < count; i++ )
{
CV_READ_SEQ_ELEM( pt2, reader );
pt2 += offset;
if( thickness >= 0 )
cv::ThickLine( img, pt1, pt2, clr, thickness, line_type, 2, shift );
else
pts.push_back(pt2);
pt1 = pt2;
}
if( thickness < 0 )
cv::CollectPolyEdges( img, &pts[0], (int)pts.size(),
edges, ext_buf, line_type, 0, cv::Point() );
}
}
if( thickness < 0 )
cv::FillEdgeCollection( img, edges, ext_buf );
if( h_next && contour0 )
contour0->h_next = h_next;
}
CV_IMPL int
cvClipLine( CvSize size, CvPoint* pt1, CvPoint* pt2 )
{
CV_Assert( pt1 && pt2 );
return cv::clipLine( size, *(cv::Point*)pt1, *(cv::Point*)pt2 );
}
CV_IMPL int
cvEllipse2Poly( CvPoint center, CvSize axes, int angle,
int arc_start, int arc_end, CvPoint* _pts, int delta )
{
cv::vector<cv::Point> pts;
cv::ellipse2Poly( center, axes, angle, arc_start, arc_end, delta, pts );
memcpy( _pts, &pts[0], pts.size()*sizeof(_pts[0]) );
return (int)pts.size();
}
CV_IMPL CvScalar
cvColorToScalar( double packed_color, int type )
{
CvScalar scalar;
if( CV_MAT_DEPTH( type ) == CV_8U )
{
int icolor = cvRound( packed_color );
if( CV_MAT_CN( type ) > 1 )
{
scalar.val[0] = icolor & 255;
scalar.val[1] = (icolor >> 8) & 255;
scalar.val[2] = (icolor >> 16) & 255;
scalar.val[3] = (icolor >> 24) & 255;
}
else
{
scalar.val[0] = CV_CAST_8U( icolor );
scalar.val[1] = scalar.val[2] = scalar.val[3] = 0;
}
}
else if( CV_MAT_DEPTH( type ) == CV_8S )
{
int icolor = cvRound( packed_color );
if( CV_MAT_CN( type ) > 1 )
{
scalar.val[0] = (char)icolor;
scalar.val[1] = (char)(icolor >> 8);
scalar.val[2] = (char)(icolor >> 16);
scalar.val[3] = (char)(icolor >> 24);
}
else
{
scalar.val[0] = CV_CAST_8S( icolor );
scalar.val[1] = scalar.val[2] = scalar.val[3] = 0;
}
}
else
{
int cn = CV_MAT_CN( type );
switch( cn )
{
case 1:
scalar.val[0] = packed_color;
scalar.val[1] = scalar.val[2] = scalar.val[3] = 0;
break;
case 2:
scalar.val[0] = scalar.val[1] = packed_color;
scalar.val[2] = scalar.val[3] = 0;
break;
case 3:
scalar.val[0] = scalar.val[1] = scalar.val[2] = packed_color;
scalar.val[3] = 0;
break;
default:
scalar.val[0] = scalar.val[1] =
scalar.val[2] = scalar.val[3] = packed_color;
break;
}
}
return scalar;
}
CV_IMPL int
cvInitLineIterator( const CvArr* img, CvPoint pt1, CvPoint pt2,
CvLineIterator* iterator, int connectivity,
int left_to_right )
{
CV_Assert( iterator != 0 );
cv::LineIterator li(cv::cvarrToMat(img), pt1, pt2, connectivity, left_to_right!=0);
iterator->err = li.err;
iterator->minus_delta = li.minusDelta;
iterator->plus_delta = li.plusDelta;
iterator->minus_step = li.minusStep;
iterator->plus_step = li.plusStep;
iterator->ptr = li.ptr;
return li.count;
}
CV_IMPL void
cvLine( CvArr* _img, CvPoint pt1, CvPoint pt2, CvScalar color,
int thickness, int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::line( img, pt1, pt2, color, thickness, line_type, shift );
}
CV_IMPL void
cvRectangle( CvArr* _img, CvPoint pt1, CvPoint pt2,
CvScalar color, int thickness,
int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::rectangle( img, pt1, pt2, color, thickness, line_type, shift );
}
CV_IMPL void
cvRectangleR( CvArr* _img, CvRect rec,
CvScalar color, int thickness,
int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::rectangle( img, rec, color, thickness, line_type, shift );
}
CV_IMPL void
cvCircle( CvArr* _img, CvPoint center, int radius,
CvScalar color, int thickness, int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::circle( img, center, radius, color, thickness, line_type, shift );
}
CV_IMPL void
cvEllipse( CvArr* _img, CvPoint center, CvSize axes,
double angle, double start_angle, double end_angle,
CvScalar color, int thickness, int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::ellipse( img, center, axes, angle, start_angle, end_angle,
color, thickness, line_type, shift );
}
CV_IMPL void
cvFillConvexPoly( CvArr* _img, const CvPoint *pts, int npts,
CvScalar color, int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::fillConvexPoly( img, (const cv::Point*)pts, npts,
color, line_type, shift );
}
CV_IMPL void
cvFillPoly( CvArr* _img, CvPoint **pts, const int *npts, int ncontours,
CvScalar color, int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::fillPoly( img, (const cv::Point**)pts, npts, ncontours, color, line_type, shift );
}
CV_IMPL void
cvPolyLine( CvArr* _img, CvPoint **pts, const int *npts,
int ncontours, int closed, CvScalar color,
int thickness, int line_type, int shift )
{
cv::Mat img = cv::cvarrToMat(_img);
cv::polylines( img, (const cv::Point**)pts, npts, ncontours,
closed != 0, color, thickness, line_type, shift );
}
CV_IMPL void
cvPutText( CvArr* _img, const char *text, CvPoint org, const CvFont *_font, CvScalar color )
{
cv::Mat img = cv::cvarrToMat(_img);
CV_Assert( text != 0 && _font != 0);
cv::putText( img, text, org, _font->font_face, (_font->hscale+_font->vscale)*0.5,
color, _font->thickness, _font->line_type,
CV_IS_IMAGE(_img) && ((IplImage*)_img)->origin != 0 );
}
CV_IMPL void
cvInitFont( CvFont *font, int font_face, double hscale, double vscale,
double shear, int thickness, int line_type )
{
CV_Assert( font != 0 && hscale > 0 && vscale > 0 && thickness >= 0 );
font->ascii = cv::getFontData(font_face);
font->font_face = font_face;
font->hscale = (float)hscale;
font->vscale = (float)vscale;
font->thickness = thickness;
font->shear = (float)shear;
font->greek = font->cyrillic = 0;
font->line_type = line_type;
}
CV_IMPL void
cvGetTextSize( const char *text, const CvFont *_font, CvSize *_size, int *_base_line )
{
CV_Assert(text != 0 && _font != 0);
cv::Size size = cv::getTextSize( text, _font->font_face, (_font->hscale + _font->vscale)*0.5,
_font->thickness, _base_line );
if( _size )
*_size = size;
}
/* End of file. */
| [
"simon@makotechnology.com"
] | simon@makotechnology.com |
8617fb092c300847f6b039d03506872487e441ef | b1b215c30ab90943646077c4407e2fe70e144015 | /cpp/opengl/game_simple/GameWindow.h | 983af61ebeabc503ee36b04a5383d912679fce35 | [] | no_license | Tigrolik/git_workspace | 7bba081a31054c6491e65bd3db0f7f50c6209af3 | 5bca3ead66e6a9ed69edc84bad9e6f0646ae9894 | refs/heads/master | 2021-01-01T03:55:32.498126 | 2016-06-10T16:42:25 | 2016-06-10T16:42:25 | 57,963,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | h | #ifndef _GAMEWINDOW_H_
#define _GAMEWINDOW_H_
#include <iostream>
#include <GL/glew.h>
#include <GL/glfw.h>
class GameWindow {
private:
bool _running;
GLfloat _width;
GLfloat _height;
GLuint _vertexBufferID;
public:
GameWindow(bool running);
void setRunning(bool newRunning);
bool getRunning();
void render();
void update();
};
#endif
| [
"ivan.martynov@lut.fi"
] | ivan.martynov@lut.fi |
2a3308a4509bfce4602697db5a3d168515b14816 | 53e8e19bd1e3f771bbddcb42bfeb8dbd7c87e330 | /Src/Controller/ControllerTrackingAlgorithm.h | 0435fa110aa9a0673d90beabe858f84a0dcb2162 | [] | no_license | Junxen/biotracker_backgroundsubtraction_tracker | f2845acf06cda7a631216a1a120032d1b01f5a5e | fcaf48f84481edb752a6a43ebf2c85330480fb2d | refs/heads/master | 2021-02-16T22:30:43.769382 | 2020-03-02T03:11:42 | 2020-03-02T03:11:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,579 | h | #ifndef CONTROLLERTRACKINGALGORITHM_H
#define CONTROLLERTRACKINGALGORITHM_H
#include "Interfaces/IController/IController.h"
#include "../Model/BioTrackerTrackingAlgorithm.h"
#include "Interfaces/IBioTrackerContext.h"
#include "Interfaces/IModel/IModelDataExporter.h"
#include "../Config.h"
class ControllerTrackingAlgorithm : public IController
{
Q_OBJECT
public:
ControllerTrackingAlgorithm(QObject *parent = 0, IBioTrackerContext *context = 0, ENUMS::CONTROLLERTYPE ctr = ENUMS::CONTROLLERTYPE::NO_CTR);
Config *getConfig() { return _cfg;};
void setConfig(Config *cfg) { _cfg = cfg;};
// IController interface
public:
void connectControllerToController() override;
void doTracking(std::shared_ptr<cv::Mat> mat, uint number);
IView *getTrackingParameterWidget();
public Q_SLOTS:
void receiveAreaDescriptorUpdate(IModelAreaDescriptor *areaDescr);
protected:
void createModel() override;
void createView() override;
void connectModelToController() override;
Q_SIGNALS:
void emitCvMat(std::shared_ptr<cv::Mat> mat, QString name);
void emitTrackingDone(uint framenumber);
void emitChangeDisplayImage(QString str);
void emitAreaDescriptorUpdate(IModelAreaDescriptor *areaDescr);
private Q_SLOTS:
void receiveCvMatFromTrackingAlgorithm(std::shared_ptr<cv::Mat> mat, QString name);
void receiveTrackingDone(uint framenumber);
void receiveChangeDisplayImage(QString str);
private:
IModel* m_TrackingParameter;
IModel *m_TrackedTrajectoryMajor;
Config *_cfg;
};
#endif // CONTROLLERTRACKINGALGORITHM_H
| [
"hauke_moenck@gmx.de"
] | hauke_moenck@gmx.de |
ce6802cb3407de544d8ae94d1768333da6dc373b | 747cb90e7a09a0580e3a83e42a8c70c350ab50c5 | /gpstracker-cpp/src/utils/StringToNumber.cpp | 3e652de21c85fe1104bf0d7bf30387475b4c1b05 | [] | no_license | GabrielMartinMoran/GPSTracker | 84c2f990354acd3bc481dd4b86b0331fe1af5309 | 1f2faf1c94583a60aef737da5ca4bfa005d9ca7e | refs/heads/master | 2022-12-09T03:01:20.958268 | 2019-07-05T15:08:14 | 2019-07-05T15:08:14 | 195,426,638 | 0 | 0 | null | 2021-06-01T23:55:00 | 2019-07-05T14:53:50 | C++ | UTF-8 | C++ | false | false | 96 | cpp |
#include <utils/StringToNumber.h>
//implementacion en el .h debido a deficiencias del lenguaje | [
"cybercat_666_78@hotmail.com"
] | cybercat_666_78@hotmail.com |
da3d0e486beae27f36fcb642c4e5e9034b7fadf8 | 1ef7f309bf775b45ee69e80b9db0d242184c3bc2 | /v3d_main/jba/newmat11/newmatnl.cpp | 56c52ea248158948986276d526d560d0d89c0e61 | [
"MIT"
] | permissive | Vaa3D/v3d_external | 8eebb703b6bc7be5af73597fe0b2972d93e8490f | 5405addd44bba9867eaa7037d6e985cc9ed311e7 | refs/heads/master | 2023-08-17T19:13:40.159258 | 2022-08-22T13:38:11 | 2022-08-22T13:38:11 | 50,527,479 | 43 | 48 | MIT | 2022-10-19T12:29:00 | 2016-01-27T18:12:19 | C++ | UTF-8 | C++ | false | false | 7,255 | cpp | /// \ingroup newmat
///@{
/// \file newmatnl.cpp
/// Non-linear optimisation.
// Copyright (C) 1993,4,5,6: R B Davies
#define WANT_MATH
#define WANT_STREAM
#include "newmatap.h"
#include "newmatnl.h"
#ifdef use_namespace
namespace NEWMAT {
#endif
void FindMaximum2::Fit(ColumnVector& Theta, int n_it)
{
Tracer tr("FindMaximum2::Fit");
enum State {Start, Restart, Continue, Interpolate, Extrapolate,
Fail, Convergence};
State TheState = Start;
Real z,w,x,x2,g,l1,l2,l3,d1,d2=0,d3;
ColumnVector Theta1, Theta2, Theta3;
int np = Theta.Nrows();
ColumnVector H1(np), H3, HP(np), K, K1(np);
bool oorg, conv;
int counter = 0;
Theta1 = Theta; HP = 0.0; g = 0.0;
// This is really a set of gotos and labels, but they do not work
// correctly in AT&T C++ and Sun 4.01 C++.
for(;;)
{
switch (TheState)
{
case Start:
tr.ReName("FindMaximum2::Fit/Start");
Value(Theta1, true, l1, oorg);
if (oorg) Throw(ProgramException("invalid starting value\n"));
case Restart:
tr.ReName("FindMaximum2::Fit/ReStart");
conv = NextPoint(H1, d1);
if (conv) { TheState = Convergence; break; }
if (counter++ > n_it) { TheState = Fail; break; }
z = 1.0 / sqrt(d1);
H3 = H1 * z; K = (H3 - HP) * g; HP = H3;
g = 0.0; // de-activate to use curved projection
if ( g == 0.0 ) K1 = 0.0; else K1 = K * 0.2 + K1 * 0.6;
// (K - K1) * alpha + K1 * (1 - alpha)
// = K * alpha + K1 * (1 - 2 * alpha)
K = K1 * d1; g = z;
case Continue:
tr.ReName("FindMaximum2::Fit/Continue");
Theta2 = Theta1 + H1 + K;
Value(Theta2, false, l2, oorg);
if (counter++ > n_it) { TheState = Fail; break; }
if (oorg)
{
H1 *= 0.5; K *= 0.25; d1 *= 0.5; g *= 2.0;
TheState = Continue; break;
}
d2 = LastDerivative(H1 + K * 2.0);
case Interpolate:
tr.ReName("FindMaximum2::Fit/Interpolate");
z = d1 + d2 - 3.0 * (l2 - l1);
w = z * z - d1 * d2;
if (w < 0.0) { TheState = Extrapolate; break; }
w = z + sqrt(w);
if (1.5 * w + d1 < 0.0)
{ TheState = Extrapolate; break; }
if (d2 > 0.0 && l2 > l1 && w > 0.0)
{ TheState = Extrapolate; break; }
x = d1 / (w + d1); x2 = x * x; g /= x;
Theta3 = Theta1 + H1 * x + K * x2;
Value(Theta3, true, l3, oorg);
if (counter++ > n_it) { TheState = Fail; break; }
if (oorg)
{
if (x <= 1.0)
{ x *= 0.5; x2 = x*x; g *= 2.0; d1 *= x; H1 *= x; K *= x2; }
else
{
x = 0.5 * (x-1.0); x2 = x*x; Theta1 = Theta2;
H1 = (H1 + K * 2.0) * x;
K *= x2; g = 0.0; d1 = x * d2; l1 = l2;
}
TheState = Continue; break;
}
if (l3 >= l1 && l3 >= l2)
{ Theta1 = Theta3; l1 = l3; TheState = Restart; break; }
d3 = LastDerivative(H1 + K * 2.0);
if (l1 > l2)
{ H1 *= x; K *= x2; Theta2 = Theta3; d1 *= x; d2 = d3*x; }
else
{
Theta1 = Theta2; Theta2 = Theta3;
x -= 1.0; x2 = x*x; g = 0.0; H1 = (H1 + K * 2.0) * x;
K *= x2; l1 = l2; l2 = l3; d1 = x*d2; d2 = x*d3;
if (d1 <= 0.0) { TheState = Start; break; }
}
TheState = Interpolate; break;
case Extrapolate:
tr.ReName("FindMaximum2::Fit/Extrapolate");
Theta1 = Theta2; g = 0.0; K *= 4.0; H1 = (H1 * 2.0 + K);
d1 = 2.0 * d2; l1 = l2;
TheState = Continue; break;
case Fail:
Throw(ConvergenceException(Theta));
case Convergence:
Theta = Theta1; return;
}
}
}
void NonLinearLeastSquares::Value
(const ColumnVector& Parameters, bool, Real& v, bool& oorg)
{
Tracer tr("NonLinearLeastSquares::Value");
Y.resize(n_obs); X.resize(n_obs,n_param);
// put the fitted values in Y, the derivatives in X.
Pred.Set(Parameters);
if (!Pred.IsValid()) { oorg=true; return; }
for (int i=1; i<=n_obs; i++)
{
Y(i) = Pred(i);
X.Row(i) = Pred.Derivatives();
}
if (!Pred.IsValid()) { oorg=true; return; } // check afterwards as well
Y = *DataPointer - Y; Real ssq = Y.SumSquare();
errorvar = ssq / (n_obs - n_param);
cout << endl;
cout << setw(15) << setprecision(10) << " " << errorvar;
Derivs = Y.t() * X; // get the derivative and stash it
oorg = false; v = -0.5 * ssq;
}
bool NonLinearLeastSquares::NextPoint(ColumnVector& Adj, Real& test)
{
Tracer tr("NonLinearLeastSquares::NextPoint");
QRZ(X, U); QRZ(X, Y, M); // do the QR decomposition
test = M.SumSquare();
cout << " " << setw(15) << setprecision(10)
<< test << " " << Y.SumSquare() / (n_obs - n_param);
Adj = U.i() * M;
if (test < errorvar * criterion) return true;
else return false;
}
Real NonLinearLeastSquares::LastDerivative(const ColumnVector& H)
{ return (Derivs * H).AsScalar(); }
void NonLinearLeastSquares::Fit(const ColumnVector& Data,
ColumnVector& Parameters)
{
Tracer tr("NonLinearLeastSquares::Fit");
n_param = Parameters.Nrows(); n_obs = Data.Nrows();
DataPointer = &Data;
FindMaximum2::Fit(Parameters, Lim);
cout << "\nConverged" << endl;
}
void NonLinearLeastSquares::MakeCovariance()
{
if (Covariance.Nrows()==0)
{
UpperTriangularMatrix UI = U.i();
Covariance << UI * UI.t() * errorvar;
SE << Covariance; // get diagonals
for (int i = 1; i<=n_param; i++) SE(i) = sqrt(SE(i));
}
}
void NonLinearLeastSquares::GetStandardErrors(ColumnVector& SEX)
{ MakeCovariance(); SEX = SE.AsColumn(); }
void NonLinearLeastSquares::GetCorrelations(SymmetricMatrix& Corr)
{ MakeCovariance(); Corr << SE.i() * Covariance * SE.i(); }
void NonLinearLeastSquares::GetHatDiagonal(DiagonalMatrix& Hat) const
{
Hat.resize(n_obs);
for (int i = 1; i<=n_obs; i++) Hat(i) = X.Row(i).SumSquare();
}
// the MLE_D_FI routines
void MLE_D_FI::Value
(const ColumnVector& Parameters, bool wg, Real& v, bool& oorg)
{
Tracer tr("MLE_D_FI::Value");
if (!LL.IsValid(Parameters,wg)) { oorg=true; return; }
v = LL.LogLikelihood();
if (!LL.IsValid()) { oorg=true; return; } // check validity again
cout << endl;
cout << setw(20) << setprecision(10) << v;
oorg = false;
Derivs = LL.Derivatives(); // Get derivatives
}
bool MLE_D_FI::NextPoint(ColumnVector& Adj, Real& test)
{
Tracer tr("MLE_D_FI::NextPoint");
SymmetricMatrix FI = LL.FI();
LT = Cholesky(FI);
ColumnVector Adj1 = LT.i() * Derivs;
Adj = LT.t().i() * Adj1;
test = SumSquare(Adj1);
cout << " " << setw(20) << setprecision(10) << test;
return (test < Criterion);
}
Real MLE_D_FI::LastDerivative(const ColumnVector& H)
{ return (Derivs.t() * H).AsScalar(); }
void MLE_D_FI::Fit(ColumnVector& Parameters)
{
Tracer tr("MLE_D_FI::Fit");
FindMaximum2::Fit(Parameters,Lim);
cout << "\nConverged" << endl;
}
void MLE_D_FI::MakeCovariance()
{
if (Covariance.Nrows()==0)
{
LowerTriangularMatrix LTI = LT.i();
Covariance << LTI.t() * LTI;
SE << Covariance; // get diagonal
int n = Covariance.Nrows();
for (int i=1; i <= n; i++) SE(i) = sqrt(SE(i));
}
}
void MLE_D_FI::GetStandardErrors(ColumnVector& SEX)
{ MakeCovariance(); SEX = SE.AsColumn(); }
void MLE_D_FI::GetCorrelations(SymmetricMatrix& Corr)
{ MakeCovariance(); Corr << SE.i() * Covariance * SE.i(); }
#ifdef use_namespace
}
#endif
///@}
| [
"71705889+JazzBrain@users.noreply.github.com"
] | 71705889+JazzBrain@users.noreply.github.com |
24725e9112d216745092b58513ad17b33482965c | 2ddc2dbf5340a56d7a9edf969ff430edf0461326 | /Approximate Number of Primes_2159.cpp | 43d10b98b922ae9eed0eeda297211665d1c8a6ce | [] | no_license | babu12f/uri_problem_solved | 791df063744bf4319014779f68d9264f5bb6461f | 768c6f4ed7a31f361fba1843f1a5707b12476644 | refs/heads/master | 2021-05-08T07:13:03.025964 | 2017-10-16T18:08:59 | 2017-10-16T18:08:59 | 106,715,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 234 | cpp | #include <bits/stdc++.h>
#define pf printf
#define sf scanf
#define ll long long
using namespace std;
int main()
{
double n;
cin>>n;
pf("%.1lf ",(n/(log(n))));
pf("%.1lf\n",(n/(log(n)))*1.25506);
return 0;
}
| [
"babu_12f@yahoo.com"
] | babu_12f@yahoo.com |
0ffa85872ff483fe5583148b75ac95220eac1006 | dabc85d7c8c9510b9305be4925e5e2a3736abdcb | /Source/VolumetricLightingDirectX/Scene.h | ae2a0df5aecc35bd7c965f170e863798beb6a35b | [] | no_license | skarthik0196/VolumetricLighting | 14706f02d4226384760b9f8da20e468e12be9787 | 4d611c7e8c0666bc234b1ac919cfde5199f5e933 | refs/heads/master | 2020-03-18T17:52:56.708227 | 2018-08-07T03:13:30 | 2018-08-07T03:13:30 | 135,057,321 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,340 | h | #pragma once
#include "GameObject.h"
#include "Direct3D.h"
#include "Camera.h"
#include "Shader.h"
#include "LightManager.h"
#include "GBuffer.h"
#include "ScreenQuad.h"
#include "PostProcessing.h"
#include "SkyBox.h"
#include "SSAO.h"
namespace Rendering
{
class SceneManager;
class Scene
{
public:
Scene(SceneManager& sceneManagerReference);
~Scene() = default;
void UpdateScene();
void DrawScene(std::shared_ptr<Direct3D>& direct3DRenderer);
void AddGameObject(std::shared_ptr<GameObject> gameObject);
void RemoveGameObject(std::shared_ptr<GameObject> gameObject);
void CreateGameObject(Transform transform = Transform(), const std::string& ModelPath = "", bool flipUVs = false, ID3D11Device2* device = nullptr);
void InitializeScene();
std::shared_ptr<Shader>& GetDefaultVertexShader();
std::shared_ptr<Shader>& GetDefaultPixelShader();
std::shared_ptr<LightManager>& GetLightManager();
ID3D11Buffer* GetVSCBufferPerObject();
ID3D11Buffer* GetVSCBufferPerFrame();
ID3D11Buffer* GetPSCBufferPerObject();
ID3D11Buffer* GetPSCBufferPerFrame();
std::shared_ptr<Camera>& GetCamera();
std::shared_ptr<GBuffer>& GetGBuffer();
std::vector<std::shared_ptr<GameObject>>& GetGameObjectList();
private:
void HandleInput();
void AddPostProcessingEffects(ID3D11Device2* device);
SceneManager& SceneManagerReference;
std::vector<std::shared_ptr<GameObject>> GameObjectList;
std::vector <std::shared_ptr<PostProcessing>> PostProcessList;
std::shared_ptr<SSAO> SSAOPostProcess;
std::shared_ptr<Camera> MainCamera;
std::shared_ptr<LightManager> Lights;
std::shared_ptr<GBuffer> GBuffer1;
std::shared_ptr<ScreenQuad> ScreenQuad1;
std::shared_ptr<SkyBox> SceneSkyBox;
std::shared_ptr<Shader> DefaultVertexShader;
std::shared_ptr<Shader> DefaultPixelShader;
Microsoft::WRL::ComPtr<ID3D11Buffer> VSCBufferPerObject;
Microsoft::WRL::ComPtr<ID3D11Buffer> PSCBufferPerObject;
Microsoft::WRL::ComPtr<ID3D11Buffer> VSCBufferPerFrame;
Microsoft::WRL::ComPtr<ID3D11Buffer> PSCBufferPerFrame;
Microsoft::WRL::ComPtr<ID3D11SamplerState> DefaultSamplerState;
Microsoft::WRL::ComPtr<ID3D11SamplerState> ShadowMapSamplerState;
Microsoft::WRL::ComPtr<ID3D11SamplerState> PointClampSamplerState;
Microsoft::WRL::ComPtr<ID3D11SamplerState> PointWrapSamplerState;
};
}
| [
"skarthik0196@gmail.com"
] | skarthik0196@gmail.com |
ce256c7249ee21eaca4cb81059db40449969f539 | f14626611951a4f11a84cd71f5a2161cd144a53a | /武侠世界/代码/Common/Packets/GCTeamFollowList.cpp | 19440abe30a3b0a6a78c0a9bfe8b2c2a9b75cfd9 | [] | no_license | Deadmanovi4/mmo-resourse | 045616f9be76f3b9cd4a39605accd2afa8099297 | 1c310e15147ae775a59626aa5b5587c6895014de | refs/heads/master | 2021-05-29T06:14:28.650762 | 2015-06-18T01:16:43 | 2015-06-18T01:16:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 966 | cpp | #include "stdafx.h"
#include "GCTeamFollowList.h"
BOOL GCTeamFollowList::Read(SocketInputStream& iStream )
{
__ENTER_FUNCTION
iStream.Read( (CHAR*)&m_ObjID, sizeof(m_ObjID) );
iStream.Read( (CHAR*)&m_Count, sizeof(UCHAR) );
if ( m_Count>0 && m_Count<=MAX_TEAM_MEMBER )
{
iStream.Read( (CHAR*)m_GUIDs, m_Count * sizeof(GUID_t) );
}
return TRUE;
__LEAVE_FUNCTION
return FALSE;
}
BOOL GCTeamFollowList::Write(SocketOutputStream& oStream ) const
{
__ENTER_FUNCTION
oStream.Write( (CHAR*)&m_ObjID, sizeof(m_ObjID) );
oStream.Write( (CHAR*)&m_Count, sizeof(UCHAR) );
if ( m_Count>0 && m_Count<=MAX_TEAM_MEMBER )
{
oStream.Write( (CHAR*)m_GUIDs, m_Count * sizeof(GUID_t) );
}
return TRUE;
__LEAVE_FUNCTION
return FALSE;
}
UINT GCTeamFollowList::Execute(Player* pPlayer )
{
__ENTER_FUNCTION
return GCTeamFollowListHandler::Execute(this,pPlayer);
__LEAVE_FUNCTION
return FALSE;
}
| [
"ichenq@gmail.com"
] | ichenq@gmail.com |
ff769bb7defe4c14728bb5287f1b294429fffb96 | 0652c8c9e21d3fe4837fa8e17d17d1e4aab3c0f6 | /include/coord.h | 064ac34e384c77e594d47c4b968560489f459911 | [] | no_license | rkochkin/loca | 869411686da2cbc20f43685b8558b2269bf895c5 | 8499510e02bead25da18f2243c28a0abde7f035a | refs/heads/master | 2023-06-12T00:53:09.400857 | 2023-06-02T18:07:10 | 2023-06-02T18:07:10 | 74,580,008 | 0 | 0 | null | 2022-12-16T19:49:55 | 2016-11-23T13:36:37 | C++ | UTF-8 | C++ | false | false | 404 | h | #pragma once
#include <cstdint>
struct Coord {
Coord() = default;
Coord(int32_t x, int32_t y) : X(x), Y(y) {
}
bool operator<(const Coord &rhs) const {
if (Y < rhs.Y) {
return true;
} else if (Y == rhs.Y){
if (X < rhs.X) {
return true;
}
}
return false;
}
int32_t X = 0;
int32_t Y = 0;
}; | [
"noreply@github.com"
] | rkochkin.noreply@github.com |
45bf9d6eb554271da28dd55d3baed44205a59403 | ae33344a3ef74613c440bc5df0c585102d403b3b | /SDK/SOT_AthenaRigging_structs.hpp | a5ac842e88d3fc4841c9be5512e05aa408016313 | [] | no_license | ThePotato97/SoT-SDK | bd2d253e811359a429bd8cf0f5dfff73b25cecd9 | d1ff6182a2d09ca20e9e02476e5cb618e57726d3 | refs/heads/master | 2020-03-08T00:48:37.178980 | 2018-03-30T12:23:36 | 2018-03-30T12:23:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,949 | hpp | #pragma once
// SOT: Sea of Thieves (1.0) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x4)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
//Script Structs
//---------------------------------------------------------------------------
// ScriptStruct AthenaRigging.RopeCatenaryLengthParams
// 0x0010
struct FRopeCatenaryLengthParams
{
float MinTautLength; // 0x0000(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float MaxTautLength; // 0x0004(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float CatenaryScaleAtMinLength; // 0x0008(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float CatenaryScaleAtMaxLength; // 0x000C(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.RopeCatenarySlopeBlendParams
// 0x0008
struct FRopeCatenarySlopeBlendParams
{
float MinSlopeForTautBlend; // 0x0000(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float MaxSlopeForTautBlend; // 0x0004(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.RopeCatenaryShapeParams
// 0x0018
struct FRopeCatenaryShapeParams
{
struct FRopeCatenaryLengthParams Length; // 0x0000(0x0010) (CPF_Edit, CPF_BlueprintVisible)
struct FRopeCatenarySlopeBlendParams Slope; // 0x0010(0x0008) (CPF_Edit, CPF_BlueprintVisible)
};
// ScriptStruct AthenaRigging.RopeCatenarySwingParams
// 0x0008
struct FRopeCatenarySwingParams
{
float LengthForNeutralSwing; // 0x0000(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
float LengthBias; // 0x0004(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.RopeCatenaryDynamicsParams
// 0x0008
struct FRopeCatenaryDynamicsParams
{
float CatenaryToTautLengthRatioToConsiderCatenary; // 0x0000(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
unsigned char ReactsToWind; // 0x0004(0x0001) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.InstancedRopeParams
// 0x0050
struct FInstancedRopeParams
{
struct FVector Start; // 0x0000(0x000C) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
struct FVector End; // 0x000C(0x000C) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float Thickness; // 0x0018(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float UVScale; // 0x001C(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float UVOffset; // 0x0020(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
float Roughness; // 0x0024(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_IsPlainOldData)
struct FRopeCatenaryShapeParams Shape; // 0x0028(0x0018) (CPF_Edit, CPF_BlueprintVisible)
struct FRopeCatenarySwingParams Swing; // 0x0040(0x0008) (CPF_Edit, CPF_BlueprintVisible)
struct FRopeCatenaryDynamicsParams Dynamics; // 0x0048(0x0008) (CPF_Edit, CPF_BlueprintVisible)
};
// ScriptStruct AthenaRigging.RiggingSystemLine
// 0x0010
struct FRiggingSystemLine
{
uint32_t RopeStart; // 0x0000(0x0004) (CPF_ZeroConstructor, CPF_IsPlainOldData)
uint32_t SocketStart; // 0x0004(0x0004) (CPF_ZeroConstructor, CPF_IsPlainOldData)
uint32_t PulleyStart; // 0x0008(0x0004) (CPF_ZeroConstructor, CPF_IsPlainOldData)
uint32_t NumRopes; // 0x000C(0x0004) (CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.RiggingSystemPulleyData
// 0x0060
struct FRiggingSystemPulleyData
{
TArray<class UStaticMeshComponent*> Meshes; // 0x0000(0x0010) (CPF_ExportObject, CPF_ZeroConstructor)
TArray<float> AttachmentSag; // 0x0010(0x0010) (CPF_ZeroConstructor)
TArray<float> AttachmentLength; // 0x0020(0x0010) (CPF_ZeroConstructor)
TArray<float> Scale; // 0x0030(0x0010) (CPF_ZeroConstructor)
TArray<float> ScaledOffset; // 0x0040(0x0010) (CPF_ZeroConstructor)
TArray<float> ScaledRadius; // 0x0050(0x0010) (CPF_ZeroConstructor)
};
// ScriptStruct AthenaRigging.RopeStyleParams
// 0x0020
struct FRopeStyleParams
{
class UStaticMesh* Mesh; // 0x0000(0x0008) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
class UTexture2D* DiffuseTexture; // 0x0008(0x0008) (CPF_Edit, CPF_BlueprintVisible, CPF_BlueprintReadOnly, CPF_ZeroConstructor, CPF_IsPlainOldData)
class UTexture2D* NormalTexture; // 0x0010(0x0008) (CPF_Edit, CPF_BlueprintVisible, CPF_BlueprintReadOnly, CPF_ZeroConstructor, CPF_IsPlainOldData)
int ShadowLOD; // 0x0018(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_BlueprintReadOnly, CPF_ZeroConstructor, CPF_IsPlainOldData)
unsigned char UnknownData00[0x4]; // 0x001C(0x0004) MISSED OFFSET
};
// ScriptStruct AthenaRigging.PulleyVisualParams
// 0x0010
struct FPulleyVisualParams
{
class UStaticMesh* Mesh; // 0x0000(0x0008) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
float Scale; // 0x0008(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
float Radius; // 0x000C(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.RopeVisualParams
// 0x000C
struct FRopeVisualParams
{
float Thickness; // 0x0000(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_BlueprintReadOnly, CPF_ZeroConstructor, CPF_IsPlainOldData)
float UVScale; // 0x0004(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_BlueprintReadOnly, CPF_ZeroConstructor, CPF_IsPlainOldData)
float Roughness; // 0x0008(0x0004) (CPF_Edit, CPF_BlueprintVisible, CPF_BlueprintReadOnly, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.RiggingSystemPulleyAttachmentParams
// 0x0014
struct FRiggingSystemPulleyAttachmentParams
{
struct FRopeVisualParams Visuals; // 0x0000(0x000C) (CPF_Edit)
float Length; // 0x000C(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
float Sag; // 0x0010(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// ScriptStruct AthenaRigging.RiggingSystemPulleyParams
// 0x0050
struct FRiggingSystemPulleyParams
{
struct FSocketId Anchor; // 0x0000(0x0020) (CPF_Edit)
float OffsetFromAnchor; // 0x0020(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
unsigned char UnknownData00[0x4]; // 0x0024(0x0004) MISSED OFFSET
struct FPulleyVisualParams Visuals; // 0x0028(0x0010) (CPF_Edit)
struct FRiggingSystemPulleyAttachmentParams AttachmentRope; // 0x0038(0x0014) (CPF_Edit)
unsigned char UnknownData01[0x4]; // 0x004C(0x0004) MISSED OFFSET
};
// ScriptStruct AthenaRigging.RiggingSystemLineParams
// 0x0078
struct FRiggingSystemLineParams
{
struct FSocketId Start; // 0x0000(0x0020) (CPF_Edit)
TArray<struct FRiggingSystemPulleyParams> Pulleys; // 0x0020(0x0010) (CPF_Edit, CPF_ZeroConstructor)
struct FSocketId End; // 0x0030(0x0020) (CPF_Edit)
struct FRopeVisualParams Visuals; // 0x0050(0x000C) (CPF_Edit)
struct FRopeCatenaryShapeParams Shape; // 0x005C(0x0018) (CPF_Edit)
unsigned char UnknownData00[0x4]; // 0x0074(0x0004) MISSED OFFSET
};
// ScriptStruct AthenaRigging.RopeAggregateTickFunction
// 0x0018 (0x0060 - 0x0048)
struct FRopeAggregateTickFunction : public FTickFunction
{
unsigned char UnknownData00[0x18]; // 0x0048(0x0018) MISSED OFFSET
};
// ScriptStruct AthenaRigging.RiggingSystemAggregateTickFunction
// 0x0018 (0x0060 - 0x0048)
struct FRiggingSystemAggregateTickFunction : public FTickFunction
{
unsigned char UnknownData00[0x8]; // 0x0048(0x0008) MISSED OFFSET
TArray<class ARiggingSystem*> RiggingSystems; // 0x0050(0x0010) (CPF_ZeroConstructor)
};
// ScriptStruct AthenaRigging.RopeCatenaryLengthPair
// 0x0008
struct FRopeCatenaryLengthPair
{
float Taut; // 0x0000(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
float Catenary; // 0x0004(0x0004) (CPF_Edit, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"antoniohermano@gmail.com"
] | antoniohermano@gmail.com |
fd009a9e2ab77be84cdc74e78dae57ecfa8c806d | 91b878cac077c5f682358a7e2f896275b6edde13 | /Baekjoon/solved/1890/sol.cpp | 91996191b28aa4fa45f78c36359514ef4b316a61 | [] | no_license | ku-alps/cse17_keunbum | 0151a8d8d9f62dc48201c830cbc60cd7d3322bc9 | f144766a6bf723bb7453875d909808676e61ac3a | refs/heads/master | 2020-04-28T17:29:39.071134 | 2020-03-24T13:41:29 | 2020-03-24T13:41:29 | 175,448,761 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 630 | cpp | #include <bits/stdc++.h>
using namespace std;
const int N = 123;
int a[N][N];
long long dp[N][N];
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> a[i][j];
}
}
dp[0][0] = 1L;
for (int x = 0; x < n; x++) {
for (int y = 0; y < n; y++) {
if (a[x][y] == 0) {
continue;
}
if (x + a[x][y] < n) {
dp[x + a[x][y]][y] += dp[x][y];
}
if (y + a[x][y] < n) {
dp[x][y + a[x][y]] += dp[x][y];
}
}
}
cout << dp[n - 1][n - 1] << '\n';
return 0;
}
| [
"rkeunbum@gmail.com"
] | rkeunbum@gmail.com |
b552201ef2957230e307e91b72acba764453359a | b3a042d294a90a1632d38a498a144129a22e7ade | /Autograder_QtCreatorProject/src/test/collection-test-hashmap.cpp | e8165fc85bcdcf90b474f770f80cac2282fbf0d4 | [] | no_license | swordcyber/stanford-cpp-library | 4f0dd17397dc086add30b28e5a225d920a8f2e8d | cf5de556c65fff91a18aca4c8bb031dc280d4224 | refs/heads/master | 2020-03-30T02:57:14.809006 | 2018-09-26T01:28:40 | 2018-09-26T01:28:40 | 150,660,069 | 1 | 0 | null | 2018-09-27T23:42:13 | 2018-09-27T23:42:12 | null | UTF-8 | C++ | false | false | 7,252 | cpp | /*
* Test file for verifying the Stanford C++ lib collection functionality.
*/
#include "testcases.h"
#include "hashmap.h"
#include "hashcode.h"
#include "hashset.h"
#include "queue.h"
#include "assertions.h"
#include "collection-test-common.h"
#include "gtest-marty.h"
#include "strlib.h"
#include <initializer_list>
#include <iostream>
#include <sstream>
#include <string>
TEST_CATEGORY(HashMapTests, "HashMap tests");
TIMED_TEST(HashMapTests, forEachTest_HashMap, TEST_TIMEOUT_DEFAULT) {
HashMap<std::string, int> hmap;
hmap["a"] = 1;
hmap["bbbb"] = 2;
hmap["zz"] = 26;
Queue<std::string> expectedKeys {"a", "bbbb", "zz"};
Queue<int> expectedValues {1, 2, 26};
while (!expectedKeys.isEmpty()) {
std::string key = expectedKeys.dequeue();
assertTrue("HashMap must contain key " + key, hmap.containsKey(key));
int value = expectedValues.dequeue();
assertEqualsInt("HashMap[" + key + "] must equal " + integerToString(value), value, hmap[key]);
}
}
TIMED_TEST(HashMapTests, frontBackTest_HashMap, TEST_TIMEOUT_DEFAULT) {
HashMap<std::string, int> hmap {{"a", 10}, {"b", 20}, {"c", 30}};
std::string front = hmap.front();
std::string back = hmap.back();
if (front != "a" && front != "b" && front != "c") {
assertFail("HashMap front fail!");
}
if ((back != "a" && back != "b" && back != "c") || (front == back)) {
assertFail("HashMap back fail!");
}
}
TIMED_TEST(HashMapTests, hashCodeTest_HashMap, TEST_TIMEOUT_DEFAULT) {
HashMap<int, int> hmap;
hmap.add(69, 96);
hmap.add(42, 24);
assertEqualsInt("hashcode of self hashmap", hashCode(hmap), hashCode(hmap));
HashMap<int, int> copy = hmap;
assertEqualsInt("hashcode of copy hashmap", hashCode(hmap), hashCode(copy));
HashMap<int, int> empty;
// shouldn't add two copies of equivalent maps
HashSet<HashMap<int, int> > hashhashmap {hmap, copy, empty, empty};
assertEqualsInt("hashset of hashmap size", 2, hashhashmap.size());
HashMap< HashSet<Vector<std::string> >, Vector<std::string> > ngram;
HashSet<Vector<std::string> > key1;
HashSet<Vector<std::string> > key2;
Vector<std::string> keySub;
keySub.add("fooo");
key2.add(keySub);
Vector<std::string> v1;
v1.add("a");
v1.add("b");
Vector<std::string> v2;
v2.add("c");
ngram.put(key1, v1);
ngram.put(key2, v2);
assertEqualsString("hashmap of hashset of vector", "{{}:{\"a\", \"b\"}, {{\"fooo\"}}:{\"c\"}}", ngram.toString());
// hash code of hash collections after they are deep-copied
HashMap<int, int> hmapcode;
for (int i = 0; i < 99; i++) {
int rand = randomInteger(-9999, 9999);
hmapcode[rand] = i*i;
}
int hash1 = hashCode(hmapcode);
HashMap<int, int> hmapcode2 = hmapcode;
int hash2 = hashCode(hmapcode2);
assertEqualsString("hashmap copies must be equal", hmapcode.toString(), hmapcode2.toString());
assertEqualsInt("hashmap copies must have equal hashCodes", hash1, hash2);
assertEqualsInt("hashmap copies must have equal sizes", hmapcode.size(), hmapcode2.size());
HashSet<int> hsetcode;
for (int i = 0; i < 99; i++) {
int rand = randomInteger(-9999, 9999);
hsetcode.add(rand);
}
hash1 = hashCode(hsetcode);
HashSet<int> hsetcode2 = hsetcode;
hash2 = hashCode(hsetcode2);
assertEqualsString("hashset copies must be equal", hsetcode.toString(), hsetcode2.toString());
assertEqualsInt("hashset copies must have equal hashCodes", hash1, hash2);
assertEqualsInt("hashset copies must have equal sizes", hsetcode.size(), hsetcode2.size());
}
TIMED_TEST(HashMapTests, initializerListTest_HashMap, TEST_TIMEOUT_DEFAULT) {
std::initializer_list<std::pair<std::string, int> > pairlist = {{"k", 60}, {"t", 70}};
std::initializer_list<std::pair<std::string, int> > pairlist2 = {{"b", 20}, {"e", 50}};
std::initializer_list<std::pair<std::string, int> > expected;
HashMap<std::string, int> hmap {{"a", 10}, {"b", 20}, {"c", 30}};
assertEqualsInt("init list HashMap get a", 10, hmap.get("a"));
assertEqualsInt("init list HashMap get b", 20, hmap.get("b"));
assertEqualsInt("init list HashMap get c", 30, hmap.get("c"));
assertEqualsInt("init list HashMap size", 3, hmap.size());
hmap += {{"d", 40}, {"e", 50}};
expected = {{"a", 10}, {"b", 20}, {"c", 30}, {"d", 40}, {"e", 50}};
assertMap("after +=", expected, hmap);
HashMap<std::string, int> copy = hmap + pairlist;
expected = {{"a", 10}, {"b", 20}, {"c", 30}, {"d", 40}, {"e", 50}};
assertMap("after + (shouldn't modify)", expected, hmap);
expected = {{"a", 10}, {"b", 20}, {"c", 30}, {"d", 40}, {"e", 50}, {"k", 60}, {"t", 70}};
assertMap("after + copy", expected, copy);
copy = hmap - pairlist2;
expected = {{"a", 10}, {"b", 20}, {"c", 30}, {"d", 40}, {"e", 50}};
assertMap("after - (shouldn't modify)", expected, hmap);
expected = {{"a", 10}, {"c", 30}, {"d", 40}};
assertMap("after - copy", expected, copy);
copy = hmap * pairlist2;
expected = {{"a", 10}, {"b", 20}, {"c", 30}, {"d", 40}, {"e", 50}};
assertMap("after * (shouldn't modify)", expected, hmap);
expected = {{"b", 20}, {"e", 50}};
assertMap("after * copy", expected, copy);
hmap -= {{"d", 40}, {"e", 50}};
expected = {{"a", 10}, {"b", 20}, {"c", 30}};
assertMap("after -=", expected, hmap);
hmap *= pairlist2;
expected = {{"b", 20}};
assertMap("after *=", expected, hmap);
}
#ifdef SPL_THROW_ON_INVALID_ITERATOR
TIMED_TEST(HashMapTests, iteratorVersionTest_HashMap, TEST_TIMEOUT_DEFAULT) {
HashMap<std::string, int> map {{"a", 10}, {"b", 20}, {"c", 30}, {"d", 40}, {"e", 50}, {"f", 60}};
try {
for (std::string key : map) {
int val = map[key];
if (val % 2 == 0) {
map.remove(key);
}
}
assertFail("should not get to end of test; should throw exception before now");
} catch (ErrorException ex) {
assertPass("threw exception successfully");
}
}
#endif // SPL_THROW_ON_INVALID_ITERATOR
TIMED_TEST(HashMapTests, randomKeyTest_HashMap, TEST_TIMEOUT_DEFAULT) {
Map<std::string, int> counts;
int RUNS = 200;
std::initializer_list<std::string> list {"a", "b", "c", "d", "e", "f"};
HashMap<std::string, int> hmap;
hmap["a"] = 50;
hmap["b"] = 40;
hmap["c"] = 30;
hmap["d"] = 20;
hmap["e"] = 10;
hmap["f"] = 0;
for (int i = 0; i < RUNS; i++) {
std::string s = randomKey(hmap);
counts[s]++;
}
for (const std::string& s : list) {
assertTrue("must choose " + s + " sometimes", counts[s] > 0);
}
}
TIMED_TEST(HashMapTests, streamExtractTest_HashMap, TEST_TIMEOUT_DEFAULT) {
std::istringstream hmstream("{1:10, 2:20, 3:30}");
HashMap<int, int> hm;
hmstream >> hm;
assertEqualsString("hm", "{1:10, 2:20, 3:30}", hm.toString());
}
TIMED_TEST(HashMapTests, streamExtractTest_HashMap2bad, TEST_TIMEOUT_DEFAULT) {
HashMap<int, int> hm;
std::istringstream hmstreambad("1:1, 2, 33}");
bool result = bool(hmstreambad >> hm);
assertFalse("operator >> on bad hashmap", result);
}
| [
"stepp@cs.stanford.edu"
] | stepp@cs.stanford.edu |
9c3e96037a0eee111acaa4d90600f56bfbb0cad3 | 868e8628acaa0bf276134f9cc3ced379679eab10 | /squareDrop/0.026/p_rgh | c1c10293092628dca682cb497f80f37001bc9a3e | [] | no_license | stigmn/droplet | 921af6851f88c0acf8b1cd84f5e2903f1d0cb87a | 1649ceb0a9ce5abb243fb77569211558c2f0dc96 | refs/heads/master | 2020-04-04T20:08:37.912624 | 2015-11-25T11:20:32 | 2015-11-25T11:20:32 | 45,102,907 | 0 | 0 | null | 2015-10-28T09:46:30 | 2015-10-28T09:46:29 | null | UTF-8 | C++ | false | false | 122,001 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.026";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
10000
(
-0.00391628
-0.00391468
-0.00391428
-0.00391496
-0.00391656
-0.00391896
-0.00392217
-0.00392625
-0.00393128
-0.00393735
-0.0039446
-0.00395316
-0.00396319
-0.00397491
-0.00398857
-0.00400446
-0.00402286
-0.0040441
-0.00406847
-0.00409622
-0.00412763
-0.00416294
-0.00420237
-0.00424613
-0.00429444
-0.00434746
-0.0044054
-0.0044684
-0.00453661
-0.00461011
-0.00468889
-0.00477285
-0.00486177
-0.0049553
-0.005053
-0.00515435
-0.00525872
-0.00536539
-0.00547359
-0.00558245
-0.00569109
-0.00579858
-0.005904
-0.00600639
-0.00610482
-0.00619838
-0.00628618
-0.00636743
-0.00644142
-0.0065075
-0.00391692
-0.0039157
-0.0039154
-0.00391605
-0.00391759
-0.00391994
-0.00392308
-0.00392709
-0.00393206
-0.0039381
-0.00394534
-0.00395391
-0.00396398
-0.00397575
-0.00398948
-0.00400543
-0.00402393
-0.00404526
-0.00406972
-0.00409758
-0.00412909
-0.0041645
-0.00420404
-0.0042479
-0.00429628
-0.00434933
-0.00440724
-0.00447016
-0.00453822
-0.00461149
-0.00468995
-0.00477348
-0.00486186
-0.00495476
-0.00505174
-0.0051523
-0.00525582
-0.00536159
-0.00546884
-0.00557666
-0.00568427
-0.00579074
-0.00589516
-0.00599661
-0.00609419
-0.00618701
-0.00627422
-0.00635507
-0.00642886
-0.00649497
-0.00391691
-0.00391587
-0.00391562
-0.00391621
-0.00391759
-0.00391975
-0.00392272
-0.00392656
-0.00393138
-0.00393729
-0.0039444
-0.00395284
-0.00396279
-0.00397445
-0.00398807
-0.00400391
-0.00402229
-0.00404349
-0.0040678
-0.00409551
-0.00412687
-0.00416214
-0.00420154
-0.00424527
-0.00429352
-0.00434645
-0.00440424
-0.00446702
-0.0045349
-0.00460794
-0.00468611
-0.0047693
-0.00485727
-0.00494973
-0.00504626
-0.00514634
-0.00524937
-0.00535465
-0.00546137
-0.00556879
-0.00567597
-0.00578204
-0.00588609
-0.00598723
-0.00608455
-0.00617722
-0.00626439
-0.00634532
-0.00641934
-0.00648584
-0.00391599
-0.00391491
-0.00391456
-0.00391501
-0.00391619
-0.00391811
-0.00392083
-0.00392442
-0.00392899
-0.00393463
-0.00394147
-0.00394963
-0.00395926
-0.00397059
-0.00398385
-0.00399931
-0.00401729
-0.00403808
-0.00406197
-0.00408925
-0.00412019
-0.00415505
-0.00419405
-0.0042374
-0.00428529
-0.00433788
-0.00439536
-0.00445785
-0.00452547
-0.00459826
-0.00467619
-0.00475917
-0.00484698
-0.00493932
-0.00503579
-0.00513588
-0.00523898
-0.00534438
-0.00545132
-0.00555897
-0.00566645
-0.00577287
-0.00587733
-0.00597893
-0.00607677
-0.00617001
-0.00625784
-0.00633949
-0.00641428
-0.00648159
-0.00391402
-0.00391284
-0.00391233
-0.00391258
-0.00391351
-0.00391513
-0.00391753
-0.00392079
-0.003925
-0.00393025
-0.00393666
-0.00394434
-0.00395346
-0.00396423
-0.0039769
-0.00399176
-0.0040091
-0.00402923
-0.00405244
-0.00407903
-0.00410928
-0.00414344
-0.00418176
-0.00422444
-0.00427171
-0.00432375
-0.00438074
-0.00444282
-0.00451012
-0.00458267
-0.00466045
-0.00474337
-0.00483123
-0.00492373
-0.00502048
-0.00512098
-0.00522461
-0.00533066
-0.00543837
-0.00554689
-0.00565534
-0.00576282
-0.00586842
-0.00597122
-0.00607033
-0.00616487
-0.00625401
-0.00633697
-0.00641304
-0.00648158
-0.00391092
-0.00390968
-0.003909
-0.00390901
-0.00390965
-0.00391094
-0.00391296
-0.00391579
-0.00391951
-0.00392422
-0.00393001
-0.00393701
-0.00394541
-0.00395542
-0.0039673
-0.00398133
-0.00399782
-0.00401707
-0.00403936
-0.00406498
-0.00409423
-0.00412738
-0.0041647
-0.00420643
-0.00425281
-0.00430406
-0.0043604
-0.00442198
-0.00448892
-0.00456127
-0.004639
-0.00472201
-0.00481011
-0.00490302
-0.00500035
-0.0051016
-0.00520618
-0.00531337
-0.00542239
-0.00553239
-0.00564249
-0.00575176
-0.00585926
-0.00596406
-0.0060652
-0.00616178
-0.00625291
-0.00633778
-0.00641562
-0.00648577
-0.00390675
-0.00390547
-0.00390462
-0.00390439
-0.00390472
-0.00390563
-0.0039072
-0.00390949
-0.00391258
-0.00391656
-0.00392154
-0.00392767
-0.00393514
-0.00394419
-0.00395508
-0.00396809
-0.00398352
-0.00400163
-0.00402272
-0.00404708
-0.004075
-0.00410681
-0.0041428
-0.00418327
-0.0042285
-0.00427877
-0.00433431
-0.00439529
-0.00446185
-0.004534
-0.00461173
-0.00469494
-0.00478344
-0.00487697
-0.00497517
-0.00507756
-0.00518353
-0.00529238
-0.00540332
-0.00551548
-0.00562799
-0.00573987
-0.00585014
-0.00595779
-0.00606181
-0.00616122
-0.00625509
-0.00634252
-0.00642268
-0.00649483
-0.00390158
-0.00390028
-0.00389929
-0.00389883
-0.00389883
-0.00389931
-0.00390033
-0.00390196
-0.00390426
-0.00390734
-0.00391133
-0.00391639
-0.00392274
-0.00393064
-0.00394035
-0.00395212
-0.00396622
-0.00398291
-0.00400248
-0.00402523
-0.00405149
-0.00408163
-0.00411599
-0.00415494
-0.00419881
-0.00424791
-0.0043025
-0.00436278
-0.00442885
-0.00450075
-0.00457847
-0.00466191
-0.00475094
-0.00484532
-0.0049447
-0.00504862
-0.0051565
-0.00526763
-0.00538121
-0.00549635
-0.00561218
-0.00572763
-0.00584164
-0.00595314
-0.00606104
-0.00616427
-0.00626179
-0.0063526
-0.00643575
-0.0065104
-0.00389555
-0.00389424
-0.00389315
-0.00389245
-0.00389209
-0.00389208
-0.00389245
-0.00389328
-0.00389465
-0.00389666
-0.00389948
-0.00390329
-0.00390835
-0.00391491
-0.0039232
-0.00393346
-0.00394592
-0.00396085
-0.00397854
-0.00399934
-0.00402362
-0.0040518
-0.00408429
-0.00412149
-0.0041638
-0.00421154
-0.004265
-0.00432437
-0.00438978
-0.0044613
-0.00453894
-0.00462266
-0.00471235
-0.00480783
-0.00490876
-0.00501472
-0.00512513
-0.00523929
-0.00535638
-0.00547546
-0.00559568
-0.00571583
-0.00583481
-0.00595145
-0.00606453
-0.00617286
-0.00627524
-0.00637049
-0.00645754
-0.0065354
-0.00388879
-0.00388751
-0.00388633
-0.00388538
-0.00388462
-0.00388404
-0.00388367
-0.00388357
-0.00388386
-0.00388465
-0.00388615
-0.00388856
-0.00389212
-0.00389715
-0.00390372
-0.00391213
-0.00392259
-0.00393539
-0.00395086
-0.00396938
-0.0039914
-0.00401737
-0.00404777
-0.00408302
-0.00412353
-0.00416967
-0.00422172
-0.00427992
-0.00434444
-0.00441542
-0.00449293
-0.00457699
-0.00466754
-0.00476443
-0.00486738
-0.00497598
-0.00508967
-0.00520776
-0.00532943
-0.00545377
-0.00557959
-0.00570592
-0.00583148
-0.00595494
-0.00607493
-0.00619002
-0.0062988
-0.00639988
-0.00649198
-0.0065739
-0.00388146
-0.00388024
-0.00387897
-0.00387775
-0.00387654
-0.00387531
-0.00387409
-0.00387296
-0.00387205
-0.00387151
-0.00387156
-0.00387238
-0.00387414
-0.00387754
-0.00388199
-0.00388815
-0.00389623
-0.00390653
-0.00391944
-0.0039354
-0.0039549
-0.00397844
-0.0040065
-0.00403954
-0.00407796
-0.00412217
-0.00417249
-0.00422923
-0.00429267
-0.00436299
-0.00444038
-0.0045249
-0.00461656
-0.00471526
-0.00482078
-0.00493274
-0.00505061
-0.00517374
-0.00530129
-0.00543231
-0.00556568
-0.0057002
-0.00583445
-0.00596689
-0.00609591
-0.0062198
-0.00633688
-0.00644544
-0.00654393
-0.00663094
-0.00387372
-0.00387259
-0.00387123
-0.00386973
-0.003868
-0.00386602
-0.00386387
-0.00386162
-0.00385942
-0.00385746
-0.00385592
-0.00385501
-0.00385491
-0.00385589
-0.00385801
-0.00386157
-0.00386693
-0.00387437
-0.0038844
-0.00389752
-0.00391424
-0.00393507
-0.00396049
-0.00399096
-0.00402693
-0.00406884
-0.00411712
-0.00417217
-0.00423437
-0.00430401
-0.00438133
-0.00446651
-0.00455962
-0.00466063
-0.0047694
-0.00488561
-0.00500883
-0.00513845
-0.00527368
-0.00541351
-0.00555673
-0.00570195
-0.00584749
-0.00599153
-0.0061321
-0.00626716
-0.00639466
-0.00651255
-0.00661893
-0.00671213
-0.00386577
-0.00386476
-0.00386333
-0.00386148
-0.00385916
-0.00385638
-0.00385322
-0.00384978
-0.00384623
-0.00384273
-0.00383945
-0.00383656
-0.00383423
-0.00383264
-0.003832
-0.0038326
-0.00383483
-0.00383911
-0.00384596
-0.00385593
-0.00386954
-0.00388728
-0.00390964
-0.00393712
-0.00397023
-0.00400952
-0.00405551
-0.00410872
-0.0041696
-0.00423857
-0.00431596
-0.00440204
-0.00449701
-0.00460095
-0.00471383
-0.0048355
-0.00496565
-0.00510375
-0.00524904
-0.00540037
-0.00555634
-0.0057153
-0.00587523
-0.00603387
-0.00618885
-0.00633766
-0.00647783
-0.00660694
-0.00672271
-0.00682316
-0.00385783
-0.00385697
-0.00385543
-0.00385319
-0.00385024
-0.00384662
-0.00384239
-0.0038377
-0.00383271
-0.00382754
-0.00382234
-0.00381721
-0.00381233
-0.00380787
-0.00380412
-0.00380142
-0.00380022
-0.00380102
-0.00380436
-0.00381079
-0.00382084
-0.00383501
-0.00385384
-0.00387789
-0.00390779
-0.00394418
-0.0039877
-0.00403894
-0.00409847
-0.00416681
-0.00424442
-0.00433172
-0.00442907
-0.00453674
-0.00465492
-0.00478369
-0.00492289
-0.00507205
-0.00523034
-0.00539647
-0.00556871
-0.005745
-0.00592285
-0.00609947
-0.00627188
-0.00643708
-0.00659209
-0.00673406
-0.00686035
-0.00696865
-0.00385014
-0.00384946
-0.00384778
-0.00384513
-0.00384152
-0.00383704
-0.00383167
-0.00382567
-0.00381912
-0.00381213
-0.00380477
-0.00379714
-0.0037894
-0.0037818
-0.00377464
-0.00376835
-0.00376341
-0.00376037
-0.00375979
-0.0037622
-0.00376818
-0.00377826
-0.00379309
-0.00381332
-0.0038397
-0.00387296
-0.00391381
-0.00396296
-0.00402107
-0.00408882
-0.00416683
-0.00425575
-0.00435617
-0.00446869
-0.00459378
-0.00473177
-0.00488265
-0.00504599
-0.00522086
-0.00540569
-0.00559832
-0.00579605
-0.00599576
-0.00619388
-0.00638677
-0.00657075
-0.00674229
-0.00689808
-0.00703514
-0.00715096
-0.00384304
-0.00384242
-0.00384063
-0.00383757
-0.00383326
-0.00382777
-0.00382134
-0.00381396
-0.00380573
-0.00379668
-0.00378693
-0.00377654
-0.0037657
-0.00375468
-0.00374386
-0.00373368
-0.00372468
-0.0037174
-0.00371241
-0.00371028
-0.00371164
-0.00371715
-0.00372755
-0.00374363
-0.0037662
-0.00379605
-0.00383401
-0.00388087
-0.00393746
-0.00400464
-0.00408329
-0.00417435
-0.0042788
-0.00439759
-0.00453155
-0.00468127
-0.00484693
-0.00502814
-0.00522376
-0.00543183
-0.00564947
-0.00587318
-0.00609886
-0.00632202
-0.00653807
-0.0067426
-0.00693148
-0.00710094
-0.00724778
-0.0073695
-0.00383671
-0.00383619
-0.0038343
-0.00383081
-0.00382581
-0.00381943
-0.00381176
-0.00380286
-0.00379276
-0.00378149
-0.00376907
-0.00375567
-0.00374148
-0.00372682
-0.00371208
-0.00369772
-0.00368427
-0.00367229
-0.00366237
-0.00365518
-0.00365144
-0.00365195
-0.00365756
-0.00366914
-0.00368755
-0.00371367
-0.00374842
-0.00379275
-0.00384768
-0.00391432
-0.00399392
-0.00408781
-0.00419741
-0.00432411
-0.00446915
-0.00463345
-0.00481742
-0.00502066
-0.00524171
-0.00547797
-0.00572564
-0.00598005
-0.00623583
-0.00648721
-0.00672848
-0.00695445
-0.00716042
-0.00734229
-0.0074967
-0.00762128
-0.00383144
-0.00383106
-0.00382907
-0.00382517
-0.0038195
-0.00381215
-0.00380319
-0.00379263
-0.00378046
-0.00376672
-0.00375146
-0.00373484
-0.00371711
-0.00369857
-0.00367962
-0.00366073
-0.0036424
-0.00362522
-0.00360988
-0.00359716
-0.0035879
-0.00358304
-0.00358348
-0.00359016
-0.00360401
-0.00362601
-0.00365719
-0.0036987
-0.00375182
-0.00381801
-0.00389892
-0.00399637
-0.00411227
-0.00424858
-0.00440707
-0.00458906
-0.00479514
-0.00502483
-0.00527622
-0.00554586
-0.00582872
-0.00611859
-0.00640839
-0.0066907
-0.00695851
-0.00720603
-0.00742813
-0.00762039
-0.00777938
-0.00790296
-0.00382755
-0.00382733
-0.00382526
-0.00382098
-0.00381463
-0.00380627
-0.00379591
-0.00378354
-0.00376915
-0.00375275
-0.00373445
-0.00371443
-0.00369293
-0.00367026
-0.00364678
-0.00362293
-0.00359926
-0.00357642
-0.00355523
-0.00353657
-0.00352144
-0.0035108
-0.00350566
-0.00350699
-0.00351584
-0.00353327
-0.00356051
-0.00359892
-0.00365009
-0.00371587
-0.00379838
-0.00390001
-0.00402332
-0.00417094
-0.00434526
-0.00454803
-0.00477999
-0.00504049
-0.00532706
-0.00563525
-0.00595849
-0.00628856
-0.00661608
-0.00693168
-0.00722686
-0.00749571
-0.00773301
-0.00793398
-0.00809502
-0.00821417
-0.00382537
-0.00382534
-0.00382322
-0.00381857
-0.00381151
-0.00380208
-0.00379023
-0.00377593
-0.00375916
-0.00373996
-0.00371847
-0.00369485
-0.00366935
-0.00364222
-0.00361381
-0.00358458
-0.00355512
-0.00352622
-0.00349879
-0.00347384
-0.00345243
-0.00343561
-0.00342442
-0.00341995
-0.00342332
-0.00343577
-0.00345869
-0.0034937
-0.00354271
-0.00360798
-0.00369221
-0.00379848
-0.00393015
-0.0040906
-0.00428287
-0.00450914
-0.00477032
-0.00506555
-0.00539184
-0.00574358
-0.00611241
-0.00648761
-0.00685678
-0.00720821
-0.00753155
-0.00782202
-0.00807487
-0.00828486
-0.00844767
-0.00856095
-0.00382523
-0.00382541
-0.00382327
-0.00381825
-0.00381045
-0.00379988
-0.00378646
-0.00377012
-0.00375088
-0.00372877
-0.00370394
-0.00367653
-0.00364673
-0.00361478
-0.00358103
-0.00354598
-0.00351035
-0.00347501
-0.003441
-0.00340939
-0.00338129
-0.00335783
-0.00334014
-0.00332941
-0.00332689
-0.00333396
-0.00335216
-0.00338337
-0.00342983
-0.00349431
-0.00358016
-0.0036913
-0.00383194
-0.00400626
-0.00421796
-0.00446969
-0.00476261
-0.00509581
-0.00546578
-0.00586586
-0.00628585
-0.00671217
-0.00712809
-0.00751894
-0.0078716
-0.00818553
-0.00845732
-0.00868022
-0.00884818
-0.00895755
-0.00382752
-0.00382791
-0.00382574
-0.00382033
-0.00381176
-0.00379999
-0.00378493
-0.0037665
-0.00374471
-0.00371961
-0.00369129
-0.00365985
-0.00362543
-0.00358827
-0.00354877
-0.00350755
-0.00346539
-0.00342329
-0.00338234
-0.00334367
-0.00330846
-0.00327793
-0.00325333
-0.00323596
-0.00322717
-0.00322843
-0.00324144
-0.00326827
-0.00331158
-0.00337473
-0.00346185
-0.00357766
-0.00372726
-0.00391567
-0.00414729
-0.00442537
-0.00475142
-0.00512471
-0.00554162
-0.0059949
-0.00647289
-0.00695911
-0.00742972
-0.00786615
-0.00824904
-0.00859041
-0.00888908
-0.00913397
-0.00931496
-0.00942582
-0.00383256
-0.00383318
-0.00383096
-0.00382512
-0.00381573
-0.00380272
-0.00378598
-0.00376543
-0.00374107
-0.00371288
-0.00368091
-0.00364518
-0.00360582
-0.0035631
-0.0035175
-0.00346976
-0.00342078
-0.00337159
-0.00332333
-0.0032772
-0.00323449
-0.00319655
-0.00316471
-0.00314037
-0.00312492
-0.00311988
-0.00312703
-0.00314872
-0.00318807
-0.00324909
-0.00333664
-0.00345626
-0.00361391
-0.00381551
-0.00406631
-0.00437017
-0.00472922
-0.00514337
-0.00560978
-0.00612185
-0.00666725
-0.00722764
-0.00776706
-0.00825994
-0.00866992
-0.00904441
-0.00938428
-0.00966663
-0.0098728
-0.00999231
-0.00384068
-0.00384151
-0.00383922
-0.00383291
-0.00382264
-0.00380837
-0.00378995
-0.00376729
-0.00374032
-0.00370896
-0.00367316
-0.00363289
-0.00358829
-0.00353972
-0.00348776
-0.00343324
-0.00337712
-0.00332049
-0.00326457
-0.00321066
-0.00316018
-0.00311456
-0.00307524
-0.00304361
-0.00302102
-0.003009
-0.00300947
-0.00302508
-0.0030594
-0.00311703
-0.00320349
-0.00332511
-0.00348875
-0.00370134
-0.00396901
-0.00429624
-0.00468612
-0.00514013
-0.00565807
-0.00623608
-0.00686291
-0.00752062
-0.00815428
-0.00872125
-0.00914458
-0.00955687
-0.00996059
-0.0103041
-0.0105514
-0.0106855
-0.00385217
-0.0038532
-0.00385077
-0.00384395
-0.0038328
-0.00381725
-0.00379717
-0.00377241
-0.00374281
-0.00370819
-0.00366838
-0.00362336
-0.00357331
-0.00351867
-0.00346013
-0.00339857
-0.00333502
-0.00327067
-0.00320683
-0.00314493
-0.0030865
-0.00303306
-0.00298603
-0.0029467
-0.00291635
-0.00289651
-0.00288928
-0.0028976
-0.0029254
-0.00297773
-0.00306074
-0.00318146
-0.00334768
-0.00356741
-0.00384759
-0.00419322
-0.0046088
-0.00509933
-0.00566987
-0.00632224
-0.00705696
-0.00785387
-0.00861206
-0.0092773
-0.00968509
-0.0101283
-0.0106333
-0.0110762
-0.0113855
-0.0115373
-0.00386728
-0.00386847
-0.00386587
-0.00385851
-0.00384646
-0.00382967
-0.00380797
-0.00378112
-0.00374886
-0.00371086
-0.00366692
-0.003617
-0.00356136
-0.00350051
-0.00343521
-0.00336641
-0.00329521
-0.00322292
-0.00315102
-0.00308107
-0.00301467
-0.0029533
-0.00289825
-0.00285066
-0.00281174
-0.00278304
-0.0027668
-0.00276615
-0.00278531
-0.00282974
-0.00290605
-0.00302177
-0.00318539
-0.00340636
-0.00369229
-0.00404806
-0.00448018
-0.00500074
-0.00562227
-0.00635111
-0.00723103
-0.00830241
-0.00918267
-0.0100014
-0.0102561
-0.0107082
-0.0114056
-0.0120178
-0.0124195
-0.0125898
-0.00388622
-0.00388752
-0.00388471
-0.00387681
-0.0038639
-0.00384591
-0.00382263
-0.00379371
-0.00375873
-0.00371729
-0.00366913
-0.00361426
-0.00355297
-0.00348583
-0.00341365
-0.00333744
-0.00325847
-0.00317821
-0.00309827
-0.00302035
-0.002946
-0.00287654
-0.00281304
-0.00275644
-0.00270788
-0.0026689
-0.0026418
-0.00262988
-0.00263769
-0.00267095
-0.00273653
-0.00284181
-0.00299538
-0.00320944
-0.00349275
-0.00384719
-0.00428095
-0.00481901
-0.0054859
-0.00627562
-0.00719154
-0.00748843
-0.00900454
-0.0114584
-0.0104697
-0.0111498
-0.0122958
-0.0131813
-0.013716
-0.0139051
-0.00390915
-0.00391052
-0.00390749
-0.00389908
-0.00388535
-0.00386624
-0.00384141
-0.00381041
-0.00377269
-0.00372778
-0.00367541
-0.0036156
-0.00354868
-0.00347522
-0.00339609
-0.00331247
-0.00322577
-0.00313766
-0.0030499
-0.00296417
-0.00288187
-0.00280404
-0.00273143
-0.00266479
-0.00260505
-0.00255372
-0.0025132
-0.00248712
-0.00248037
-0.00249887
-0.00254909
-0.00263696
-0.0027702
-0.00296869
-0.00324028
-0.00357923
-0.00399284
-0.00452806
-0.00521791
-0.00606789
-0.00690502
-0.0080397
-0.00221738
-0.000533924
-0.005428
-0.0111401
-0.0134554
-0.0146656
-0.0153801
-0.0155742
-0.00393619
-0.00393758
-0.00393435
-0.00392547
-0.00391102
-0.00389085
-0.00386452
-0.00383145
-0.00379099
-0.00374265
-0.00368616
-0.00362151
-0.00354902
-0.00346928
-0.0033833
-0.00329239
-0.00319821
-0.0031026
-0.00300736
-0.00291402
-0.00282368
-0.00273699
-0.00265433
-0.00257604
-0.00250284
-0.00243624
-0.00237903
-0.00233542
-0.00231079
-0.00231116
-0.00234167
-0.00240491
-0.00250847
-0.00268398
-0.00293614
-0.00324373
-0.00361917
-0.00414034
-0.00481234
-0.00568522
-0.00605846
-0.00756382
-0.00887651
-0.00524152
-0.00609792
-0.00839481
-0.0149089
-0.0167969
-0.0176253
-0.0177338
-0.00396741
-0.0039688
-0.00396538
-0.00395611
-0.00394103
-0.00391988
-0.00389211
-0.00385701
-0.0038139
-0.00376226
-0.0037018
-0.00363247
-0.00355455
-0.00346873
-0.00337611
-0.00327827
-0.00317708
-0.00307448
-0.00297219
-0.00287142
-0.00277282
-0.00267652
-0.0025823
-0.00248998
-0.00240005
-0.00231439
-0.00223657
-0.00217178
-0.00212627
-0.0021063
-0.00211566
-0.0021469
-0.00220766
-0.00233931
-0.00259261
-0.00286178
-0.00313602
-0.00363211
-0.00436646
-0.0050597
-0.00603442
-0.0066796
-0.00724523
-0.00726009
-0.00856498
-0.00805553
-0.0184009
-0.0199344
-0.0207142
-0.0205464
-0.00400282
-0.00400417
-0.0040006
-0.00399105
-0.00397544
-0.0039534
-0.00392426
-0.00388725
-0.00384166
-0.00378695
-0.00372274
-0.00364896
-0.00356589
-0.00347431
-0.00337552
-0.00327134
-0.00316381
-0.00305489
-0.00294603
-0.00283799
-0.00273076
-0.00262366
-0.00251561
-0.00240587
-0.00229495
-0.00218551
-0.0020826
-0.00199316
-0.00192425
-0.0018829
-0.00186628
-0.00188251
-0.00179959
-0.00176509
-0.00228998
-0.002485
-0.00248865
-0.00289184
-0.00349857
-0.00442066
-0.00523297
-0.00573771
-0.00618612
-0.00735904
-0.0105725
-0.00860418
-0.0162753
-0.0235448
-0.0243689
-0.0238267
-0.00404237
-0.00404365
-0.00403998
-0.00403023
-0.0040142
-0.0039914
-0.00396104
-0.00392233
-0.00387452
-0.00381701
-0.00374938
-0.00367149
-0.00358368
-0.00348686
-0.0033826
-0.00327291
-0.00315995
-0.0030455
-0.00293064
-0.00281546
-0.00269899
-0.00257933
-0.00245436
-0.00232283
-0.00218565
-0.00204683
-0.00191391
-0.00179695
-0.00170379
-0.00164182
-0.00161465
-0.00124976
0.00105187
0.00229809
0.000361555
-0.00205294
-0.00150031
-0.00178564
-0.00305147
-0.00390681
-0.00457792
-0.00482531
-0.00487768
-0.00766228
-0.00942529
-0.00933334
-0.0189212
-0.0263965
-0.0276858
-0.026745
-0.00408594
-0.00408714
-0.0040834
-0.00407353
-0.00405721
-0.0040338
-0.00400246
-0.00396233
-0.00391265
-0.00385272
-0.00378206
-0.00370053
-0.00360856
-0.00350728
-0.00339849
-0.00328438
-0.00316707
-0.00304809
-0.00292792
-0.00280572
-0.00267911
-0.00254462
-0.00239893
-0.00224041
-0.00207073
-0.0018961
-0.00172792
-0.00158132
-0.00147116
-0.00140114
-0.00134982
0.000945289
0.00304856
0.00274329
0.00268208
-0.00153981
-8.80086e-06
-0.000300881
-0.00207147
-0.00336524
-0.00413808
-0.00387891
-0.0029905
-0.0068722
-0.0116262
-0.0140899
-0.0163004
-0.0263159
-0.0300168
-0.0282644
-0.00413339
-0.00413447
-0.00413068
-0.00412077
-0.00410428
-0.00408048
-0.00404845
-0.00400729
-0.00395614
-0.00389425
-0.00382107
-0.00373652
-0.00364118
-0.00353645
-0.00342434
-0.00330713
-0.00318681
-0.00306453
-0.00293996
-0.00281087
-0.00267305
-0.00252119
-0.0023506
-0.00215926
-0.00194994
-0.0017319
-0.00152148
-0.00134042
-0.00121172
-0.00114797
-0.00118252
0.000687383
0.00330505
0.0029507
0.00125982
-0.0011618
0.0013507
0.00416707
0.00274827
0.00103711
-0.00412602
0.00448715
0.00100555
-0.00494813
-0.00474045
-0.000376315
-0.0139206
-0.0667291
-0.0760663
-0.0567366
-0.00418447
-0.00418538
-0.00418156
-0.00417168
-0.00415518
-0.00413125
-0.00409889
-0.00405712
-0.00400499
-0.00394166
-0.00386658
-0.00377979
-0.0036821
-0.00357516
-0.00346117
-0.00334244
-0.00322078
-0.00309678
-0.00296897
-0.00283331
-0.00268341
-0.00251185
-0.00231228
-0.00208218
-0.00182563
-0.00155517
-0.00129201
-0.0010644
-0.00090595
-0.000851584
-0.000899229
-0.00105936
-0.000372109
0.00010435
0.000292934
-0.0012211
-0.00130947
0.0146772
0.0154823
0.0243904
0.0154128
0.0129996
0.0261356
0.0264624
-0.0156235
0.00656807
-0.315674
1.46581
6.6198
10.2939
-0.0042389
-0.00423957
-0.00423569
-0.00422592
-0.00420959
-0.00418581
-0.00415352
-0.00411161
-0.00405904
-0.00399489
-0.00391867
-0.00383059
-0.00373176
-0.00362408
-0.00350988
-0.0033915
-0.00327052
-0.00314676
-0.00301728
-0.00287589
-0.00271376
-0.00252099
-0.00228934
-0.00201557
-0.00170473
-0.0013719
-0.0010422
-0.000750008
-0.000541433
-0.000471849
-0.000568764
-0.000655911
-0.000597446
-0.000586698
-0.000888068
-0.00387679
-0.00988006
0.0129733
0.0265321
0.0472487
0.0151412
-0.0510972
1.62711
2.6007
2.91739
11.7293
33.0556
45.4669
48.5017
48.7919
-0.00429624
-0.00429661
-0.00429266
-0.00428306
-0.0042671
-0.00424379
-0.00421198
-0.00417045
-0.00411801
-0.00405374
-0.00397724
-0.003889
-0.00379041
-0.0036836
-0.00357109
-0.00345526
-0.00333735
-0.00321623
-0.00308726
-0.00294194
-0.00276871
-0.00255499
-0.00229037
-0.00197048
-0.00160008
-0.00119433
-0.000778981
-0.000392499
-9.75446e-05
-8.32913e-06
-0.00020343
-0.000314323
-0.00023822
-0.000136835
1.07543e-05
-0.00226204
-0.0353092
0.121977
0.0640735
0.0823342
0.0480901
3.09424
8.13551
18.3518
35.2237
41.4424
43.2856
44.7488
45.8418
45.9617
-0.00435599
-0.00435595
-0.00435192
-0.00434259
-0.0043272
-0.00430468
-0.00427378
-0.00423315
-0.00418148
-0.00411784
-0.00404205
-0.00395489
-0.00385802
-0.00375383
-0.0036451
-0.00353427
-0.00342218
-0.00330661
-0.00318117
-0.003035
-0.00285376
-0.00262216
-0.00232753
-0.00196337
-0.00153141
-0.00104108
-0.000508475
3.63394e-05
0.000514573
0.000677873
0.000234526
-6.33339e-05
0.000402997
0.00162186
0.00800554
0.029379
-0.00370281
0.460527
0.0816142
0.183162
3.36152
11.6897
27.0627
37.7579
39.828
40.9549
42.2518
43.2887
43.9841
44.1068
-0.00441747
-0.00441697
-0.00441284
-0.00440388
-0.00438927
-0.00436787
-0.00433832
-0.00429912
-0.00424889
-0.00418669
-0.00411266
-0.00402787
-0.00393423
-0.00383449
-0.00373175
-0.00362853
-0.00352525
-0.00341867
-0.00330073
-0.00315836
-0.00297476
-0.00273242
-0.0024166
-0.00201746
-0.00152923
-0.000945686
-0.000248769
0.000589419
0.00144986
0.00255252
0.00119446
0.00150752
-0.000317166
-0.00249721
0.00378728
0.0622307
0.0751107
0.153331
-0.571296
7.07116
21.7361
31.6636
35.3987
37.331
38.9603
40.2461
41.3652
42.2086
42.7197
42.837
-0.00447992
-0.00447889
-0.0044747
-0.00446621
-0.0044526
-0.00443265
-0.00440486
-0.00436758
-0.00431943
-0.00425963
-0.00418849
-0.00410729
-0.00401836
-0.00392487
-0.00383031
-0.00373731
-0.00364597
-0.0035522
-0.00344652
-0.00331414
-0.00313675
-0.00289583
-0.0025758
-0.00216357
-0.00164229
-0.00097836
-9.73311e-05
0.00116841
0.0042495
0.0107626
0.0144672
0.00236145
-0.00116582
-0.0183235
-0.0442168
0.110766
0.117943
0.271839
4.50504
22.5676
32.7787
34.439
35.7225
37.264
38.64
39.7902
40.7351
41.4236
41.8309
41.9426
-0.00454247
-0.00454088
-0.00453663
-0.00452878
-0.00451639
-0.0044982
-0.00447255
-0.00443772
-0.00439232
-0.00433578
-0.00426852
-0.00419212
-0.0041093
-0.00402375
-0.0039394
-0.00385907
-0.00378268
-0.00370556
-0.00361726
-0.00350214
-0.0033419
-0.00311935
-0.00282153
-0.0024375
-0.00194937
-0.00131448
-0.000414673
0.00122608
0.00847084
0.0132637
0.00650449
0.0103161
0.0104407
-0.000992969
0.216053
0.111234
0.0851531
4.18145
20.4905
29.8206
33.0401
34.8361
36.1662
37.4606
38.6076
39.5658
40.3328
40.885
41.212
41.3131
-0.00460414
-0.00460201
-0.00459779
-0.00459071
-0.00457976
-0.00456359
-0.00454043
-0.00450851
-0.00446653
-0.00441401
-0.00435155
-0.00428099
-0.00420552
-0.00412936
-0.00405693
-0.00399132
-0.00393246
-0.00387534
-0.00380914
-0.00371833
-0.00358619
-0.00339963
-0.00315246
-0.00284377
-0.0024696
-0.00200166
-0.00138425
-0.0005618
0.00969567
0.0104472
0.0119718
0.019206
0.0323896
0.070002
0.044122
-0.0807206
4.22933
18.0295
31.4434
33.0111
34.548
35.8051
36.8681
37.8822
38.7746
39.5161
40.1058
40.532
40.7881
40.8743
-0.00466391
-0.00466129
-0.00465719
-0.00465104
-0.00464173
-0.0046278
-0.00460742
-0.00457884
-0.00454083
-0.004493
-0.0044361
-0.00437225
-0.00430509
-0.00423941
-0.00418011
-0.00413064
-0.00409105
-0.00405629
-0.00401561
-0.00395441
-0.00385875
-0.00372079
-0.00354233
-0.00333292
-0.00309993
-0.00283365
-0.00251402
-0.00209545
0.00749549
0.00717805
0.0110266
0.0180242
0.0281271
0.0840694
0.240374
-0.0161074
7.97076
35.1424
35.7651
35.4619
36.1273
36.904
37.6679
38.3926
39.0291
39.5649
39.9956
40.3116
40.5051
40.5739
-0.00472072
-0.00471769
-0.00471385
-0.00470878
-0.00470126
-0.00468974
-0.00467238
-0.00464749
-0.0046139
-0.00457129
-0.0045205
-0.00446398
-0.00440578
-0.00435119
-0.00430561
-0.00427285
-0.0042532
-0.00424175
-0.0042282
-0.00419947
-0.00414491
-0.00406234
-0.00396164
-0.00386156
-0.00377813
-0.00371433
-0.00366997
-0.00355991
0.00508741
0.0025489
0.00655726
0.00663227
0.00692207
0.141239
0.178251
2.45221
21.945
38.613
37.5924
37.244
37.4905
37.9306
38.4148
38.8792
39.2975
39.6611
39.9604
40.1842
40.3237
40.3748
-0.00477349
-0.00477018
-0.00476673
-0.00476287
-0.00475726
-0.00474827
-0.00473412
-0.00471318
-0.00468432
-0.00464725
-0.00460294
-0.00455408
-0.00450511
-0.00446174
-0.00442975
-0.00441333
-0.00441304
-0.0044243
-0.00443756
-0.00444154
-0.00442889
-0.0044029
-0.00438061
-0.00438715
-0.00444186
-0.00454784
-0.00470354
-0.0048737
-0.00248943
0.00125978
-0.00155539
-0.00337667
-0.00390791
0.0255927
0.508763
15.7433
40.5643
40.1916
39.1335
38.6686
38.6396
38.8092
39.0497
39.304
39.5512
39.7783
39.9726
40.1216
40.2157
40.2499
-0.00482118
-0.00481773
-0.00481481
-0.00481227
-0.00480864
-0.00480227
-0.00479143
-0.00477458
-0.0047506
-0.00471922
-0.00468151
-0.00464036
-0.0046005
-0.00456791
-0.00454869
-0.00454731
-0.00456463
-0.00459647
-0.00463434
-0.00466886
-0.00469609
-0.00472456
-0.00477768
-0.00488682
-0.00507727
-0.005357
-0.00571345
-0.00610405
-0.00641861
-0.00226436
-0.00687646
-0.00919082
-0.00853469
0.0131667
0.212617
31.4514
43.9037
41.4311
40.3038
39.7519
39.5441
39.5133
39.5693
39.6637
39.7804
39.9014
40.0131
40.1023
40.1593
40.1784
-0.00486279
-0.00485936
-0.00485711
-0.00485597
-0.00485436
-0.00485063
-0.00484312
-0.00483036
-0.00481125
-0.00478552
-0.00475431
-0.00472062
-0.00468934
-0.00466662
-0.00465869
-0.00467024
-0.00470233
-0.00475133
-0.00480982
-0.00487046
-0.00493287
-0.0050106
-0.00513249
-0.00533583
-0.00565374
-0.00610796
-0.006716
-0.00751374
-0.00861286
-0.010302
-0.0127326
-0.0136529
-0.00996821
-0.0458949
0.0141048
37.9519
42.3574
41.6953
41.0128
40.5183
40.2202
40.057
39.9808
39.9608
39.9788
40.0189
40.0667
40.1093
40.1368
40.1431
-0.00489743
-0.00489418
-0.00489273
-0.00489301
-0.00489342
-0.0048923
-0.00488806
-0.00487927
-0.00486484
-0.00484451
-0.00481945
-0.00479271
-0.00476917
-0.00475498
-0.00475638
-0.00477808
-0.00482135
-0.00488307
-0.00495678
-0.00503714
-0.00512722
-0.00524504
-0.00542411
-0.00570564
-0.00612727
-0.00672132
-0.0075335
-0.00865385
-0.0102642
-0.0127141
-0.0158165
-0.0174338
-0.0138779
-0.0861808
7.2432
40.7031
42.2045
42.0644
41.5632
41.0815
40.7165
40.4616
40.2937
40.192
40.1394
40.1205
40.1211
40.1288
40.1337
40.1297
-0.00492431
-0.0049214
-0.00492083
-0.00492257
-0.00492494
-0.00492632
-0.00492517
-0.0049201
-0.00491001
-0.00489466
-0.0048752
-0.00485464
-0.00483771
-0.00483041
-0.00483884
-0.00486759
-0.00491806
-0.00498753
-0.00507041
-0.00516305
-0.00527119
-0.00541634
-0.00563569
-0.0059728
-0.00646573
-0.00714855
-0.00807612
-0.00935802
-0.011187
-0.0138808
-0.0173787
-0.0204256
-0.0217978
-0.098959
24.6387
45.2736
43.7576
42.8146
42.0747
41.4952
41.0585
40.7383
40.5106
40.3555
40.2563
40.1979
40.1665
40.15
40.1391
40.1276
-0.00494275
-0.00494032
-0.00494072
-0.00494389
-0.00494814
-0.00495184
-0.00495351
-0.00495178
-0.00494556
-0.00493459
-0.00492
-0.00490464
-0.004893
-0.00489076
-0.0049037
-0.00493625
-0.00498986
-0.00506214
-0.00514835
-0.00524604
-0.00536253
-0.005521
-0.00576035
-0.00612515
-0.00665233
-0.00737256
-0.00833321
-0.00963096
-0.0114145
-0.0138841
-0.016935
-0.0192621
-0.0209339
-0.0225146
35.0634
47.8541
44.8356
43.3343
42.3929
41.7303
41.2463
40.8903
40.6317
40.449
40.3252
40.2453
40.196
40.1657
40.1453
40.129
-0.00656517
-0.00661401
-0.00665374
-0.0066842
-0.00670537
-0.00671737
-0.00672042
-0.0067149
-0.00670131
-0.00668018
-0.00665218
-0.00661806
-0.00657854
-0.00653384
-0.00648519
-0.00643336
-0.00637909
-0.00632278
-0.00626505
-0.00620655
-0.00614826
-0.00609063
-0.00603412
-0.00597905
-0.00592599
-0.00587527
-0.0058269
-0.0057809
-0.00573731
-0.00569627
-0.00565802
-0.00562259
-0.00558984
-0.00555971
-0.00553208
-0.00550666
-0.00548311
-0.00546132
-0.00544136
-0.00542308
-0.00540639
-0.00539133
-0.00537792
-0.00536606
-0.00535515
-0.00534506
-0.00533606
-0.00532871
-0.00532293
-0.00531937
-0.00655289
-0.0066022
-0.0066426
-0.00667392
-0.0066961
-0.00670922
-0.00671352
-0.0067093
-0.00669701
-0.00667715
-0.00665035
-0.00661725
-0.00657861
-0.0065354
-0.00648798
-0.00643699
-0.00638326
-0.00632735
-0.00626997
-0.00621171
-0.00615342
-0.00609565
-0.00603893
-0.00598364
-0.00593023
-0.00587905
-0.00583018
-0.00578368
-0.00573961
-0.00569813
-0.0056594
-0.00562345
-0.00559021
-0.00555957
-0.00553136
-0.00550534
-0.00548128
-0.00545904
-0.0054386
-0.00541983
-0.00540275
-0.00538727
-0.00537345
-0.00536119
-0.0053501
-0.00534009
-0.00533117
-0.00532364
-0.00531795
-0.00531433
-0.00654428
-0.00659427
-0.00663548
-0.00666774
-0.00669097
-0.00670521
-0.00671067
-0.00670764
-0.00669653
-0.00667781
-0.0066521
-0.00662
-0.00658223
-0.00653947
-0.00649238
-0.00644164
-0.00638799
-0.00633205
-0.00627443
-0.00621588
-0.00615711
-0.00609882
-0.00604149
-0.00598551
-0.00593136
-0.00587942
-0.00582982
-0.0057826
-0.00573785
-0.00569575
-0.00565648
-0.00562002
-0.00558627
-0.00555513
-0.00552638
-0.0054998
-0.00547523
-0.00545254
-0.00543168
-0.00541264
-0.00539528
-0.00537956
-0.00536546
-0.00535288
-0.00534164
-0.00533169
-0.00532299
-0.00531552
-0.00530949
-0.00530551
-0.0065409
-0.00659178
-0.00663391
-0.00666708
-0.00669121
-0.00670634
-0.00671265
-0.00671041
-0.00670003
-0.00668197
-0.00665678
-0.00662504
-0.00658746
-0.00654472
-0.00649746
-0.00644637
-0.00639213
-0.00633558
-0.00627723
-0.00621782
-0.00615804
-0.00609866
-0.00604027
-0.0059833
-0.00592812
-0.00587511
-0.00582447
-0.00577633
-0.0057308
-0.00568804
-0.00564817
-0.00561118
-0.00557695
-0.00554537
-0.00551621
-0.00548929
-0.00546442
-0.00544143
-0.00542037
-0.00540121
-0.00538382
-0.00536799
-0.0053537
-0.00534093
-0.00532978
-0.00531993
-0.00531113
-0.00530369
-0.00529742
-0.00529306
-0.00654204
-0.00659399
-0.00663708
-0.00667109
-0.00669596
-0.00671172
-0.00671858
-0.00671677
-0.00670669
-0.0066888
-0.00666364
-0.00663178
-0.00659384
-0.00655061
-0.00650266
-0.00645073
-0.00639547
-0.0063377
-0.00627807
-0.00621728
-0.00615607
-0.00609523
-0.00603537
-0.00597695
-0.00592037
-0.00586605
-0.00581424
-0.00576504
-0.00571857
-0.005675
-0.00563445
-0.00559695
-0.00556236
-0.00553042
-0.00550095
-0.00547377
-0.00544877
-0.00542576
-0.00540465
-0.00538542
-0.00536808
-0.00535237
-0.00533819
-0.00532541
-0.00531422
-0.00530446
-0.00529579
-0.00528821
-0.00528174
-0.00527715
-0.00654763
-0.00660074
-0.00664476
-0.00667948
-0.00670485
-0.00672093
-0.00672792
-0.00672608
-0.00671579
-0.00669753
-0.00667183
-0.00663931
-0.00660056
-0.00655633
-0.00650723
-0.00645395
-0.00639723
-0.00633785
-0.00627652
-0.00621394
-0.00615093
-0.00608824
-0.00602658
-0.00596644
-0.0059082
-0.00585229
-0.00579904
-0.00574858
-0.00570106
-0.00565667
-0.00561549
-0.00557748
-0.00554248
-0.00551025
-0.00548058
-0.0054533
-0.00542829
-0.00540537
-0.00538439
-0.00536532
-0.00534817
-0.00533259
-0.00531856
-0.00530603
-0.00529503
-0.00528532
-0.00527673
-0.00526906
-0.00526255
-0.00525782
-0.00655833
-0.0066127
-0.00665758
-0.00669278
-0.0067183
-0.00673423
-0.00674074
-0.00673819
-0.00672696
-0.00670761
-0.00668067
-0.00664679
-0.0066066
-0.00656082
-0.00651012
-0.0064551
-0.00639653
-0.00633523
-0.00627195
-0.00620735
-0.00614229
-0.00607755
-0.00601382
-0.00595164
-0.00589147
-0.00583375
-0.00577886
-0.00572703
-0.00567837
-0.00563305
-0.00559116
-0.00555265
-0.00551728
-0.0054848
-0.005455
-0.00542777
-0.00540295
-0.0053803
-0.00535955
-0.00534068
-0.0053237
-0.00530863
-0.00529492
-0.00528268
-0.00527196
-0.00526247
-0.00525404
-0.0052464
-0.00523997
-0.00523527
-0.00657587
-0.0066316
-0.00667723
-0.00671261
-0.00673773
-0.00675276
-0.00675794
-0.00675368
-0.00674047
-0.00671894
-0.00668977
-0.00665357
-0.00661109
-0.00656307
-0.00651016
-0.00645303
-0.00639235
-0.00632894
-0.00626354
-0.00619685
-0.00612961
-0.00606267
-0.00599677
-0.00593242
-0.00587013
-0.00581042
-0.00575372
-0.00570033
-0.0056504
-0.00560403
-0.00556135
-0.00552232
-0.00548664
-0.00545399
-0.00542415
-0.00539707
-0.00537257
-0.0053504
-0.00533016
-0.0053117
-0.00529526
-0.0052806
-0.00526734
-0.00525544
-0.00524504
-0.00523583
-0.00522765
-0.00522025
-0.00521395
-0.00520943
-0.00660325
-0.00666048
-0.00670669
-0.00674177
-0.00676574
-0.00677885
-0.00678146
-0.00677411
-0.00675746
-0.00673224
-0.00669932
-0.00665946
-0.00661346
-0.00656217
-0.00650631
-0.00644648
-0.00638334
-0.00631764
-0.00625002
-0.00618122
-0.00611189
-0.0060428
-0.00597472
-0.0059082
-0.00584378
-0.00578201
-0.00572336
-0.00566824
-0.0056169
-0.00556943
-0.0055259
-0.00548631
-0.00545035
-0.00541766
-0.00538793
-0.00536116
-0.00533716
-0.00531562
-0.00529608
-0.0052783
-0.00526252
-0.00524844
-0.00523576
-0.00522432
-0.00521426
-0.0052054
-0.00519746
-0.00519041
-0.00518419
-0.00517979
-0.00664466
-0.00670355
-0.00675012
-0.00678429
-0.00680614
-0.00681602
-0.00681452
-0.00680229
-0.00678023
-0.0067493
-0.00671059
-0.0066651
-0.00661385
-0.00655775
-0.00649766
-0.00643422
-0.006368
-0.00629965
-0.00622973
-0.00615883
-0.00608756
-0.00601659
-0.00594658
-0.00587808
-0.00581166
-0.0057479
-0.00568734
-0.00563048
-0.00557767
-0.00552903
-0.00548464
-0.00544449
-0.00540826
-0.00537563
-0.00534622
-0.00531997
-0.00529666
-0.0052759
-0.00525721
-0.00524039
-0.0052254
-0.00521208
-0.00520008
-0.00518925
-0.00517964
-0.00517119
-0.00516352
-0.00515672
-0.00515064
-0.00514619
-0.00670524
-0.00676599
-0.00681271
-0.00684531
-0.00686397
-0.00686913
-0.00686163
-0.00684237
-0.00681249
-0.00677328
-0.00672616
-0.00667241
-0.00661338
-0.00655021
-0.00648392
-0.00641537
-0.00634498
-0.00627331
-0.0062008
-0.00612781
-0.00605484
-0.00598238
-0.00591091
-0.00584091
-0.0057729
-0.00570744
-0.00564517
-0.00558666
-0.00553242
-0.00548264
-0.00543742
-0.00539673
-0.00536033
-0.00532787
-0.00529897
-0.00527342
-0.00525096
-0.00523115
-0.00521348
-0.00519771
-0.0051838
-0.00517139
-0.00516021
-0.00515014
-0.00514117
-0.00513322
-0.00512593
-0.00511925
-0.00511334
-0.00510884
-0.00679069
-0.00685357
-0.00690026
-0.00693062
-0.00694492
-0.00694377
-0.0069282
-0.00689947
-0.00685904
-0.00680856
-0.00674979
-0.00668448
-0.00661436
-0.00654107
-0.00646597
-0.00638981
-0.00631343
-0.00623722
-0.00616145
-0.00608621
-0.00601174
-0.00593828
-0.00586602
-0.00579524
-0.00572634
-0.00565982
-0.00559631
-0.0055365
-0.00548101
-0.00543019
-0.00538419
-0.00534301
-0.00530649
-0.00527432
-0.00524607
-0.0052214
-0.00519996
-0.00518127
-0.00516481
-0.00515021
-0.00513779
-0.00512639
-0.00511619
-0.00510703
-0.00509885
-0.00509149
-0.0050847
-0.00507822
-0.00507253
-0.00506808
-0.00690659
-0.00697177
-0.00701812
-0.00704551
-0.00705424
-0.00704511
-0.00701939
-0.00697866
-0.00692475
-0.00685974
-0.00678582
-0.0067052
-0.0066201
-0.00653276
-0.00644503
-0.00635826
-0.00627329
-0.00619059
-0.00611027
-0.00603219
-0.0059562
-0.00588218
-0.00580994
-0.00573937
-0.00567061
-0.00560401
-0.0055401
-0.00547959
-0.00542324
-0.00537162
-0.00532498
-0.00528336
-0.00524676
-0.00521495
-0.00518746
-0.00516382
-0.00514362
-0.00512627
-0.00511128
-0.00509827
-0.00508709
-0.0050771
-0.0050681
-0.00505997
-0.00505271
-0.00504605
-0.00503981
-0.0050337
-0.0050281
-0.0050237
-0.00705709
-0.00712433
-0.00716969
-0.00719312
-0.00719498
-0.00717622
-0.00713832
-0.00708323
-0.00701314
-0.00693053
-0.00683804
-0.00673835
-0.00663425
-0.0065286
-0.006424
-0.00632255
-0.00622552
-0.00613351
-0.00604659
-0.00596441
-0.00588639
-0.00581196
-0.00574047
-0.00567129
-0.00560405
-0.00553873
-0.00547567
-0.00541545
-0.00535891
-0.00530686
-0.00525978
-0.00521788
-0.00518127
-0.00514987
-0.00512325
-0.00510082
-0.005082
-0.00506624
-0.00505296
-0.00504169
-0.00503208
-0.00502362
-0.00501597
-0.00500904
-0.00500275
-0.00499682
-0.00499108
-0.00498544
-0.00497984
-0.00497526
-0.0072436
-0.00731179
-0.00735489
-0.00737292
-0.00736635
-0.00733632
-0.00728448
-0.00721302
-0.00712449
-0.00702175
-0.00690787
-0.0067859
-0.00665915
-0.0065311
-0.0064053
-0.00628473
-0.00617148
-0.00606659
-0.00597019
-0.00588186
-0.00580069
-0.00572559
-0.00565534
-0.00558869
-0.00552453
-0.00546223
-0.00540168
-0.00534321
-0.00528758
-0.0052358
-0.00518868
-0.00514674
-0.00511032
-0.00507942
-0.00505376
-0.00503266
-0.00501542
-0.00500139
-0.00499
-0.00498066
-0.00497283
-0.00496603
-0.00495989
-0.00495428
-0.00494909
-0.00494402
-0.00493877
-0.00493345
-0.00492784
-0.00492293
-0.00746426
-0.00753104
-0.00756953
-0.00758
-0.00756306
-0.00751998
-0.00745254
-0.00736307
-0.00725438
-0.00712966
-0.00699228
-0.00684571
-0.00669361
-0.00653995
-0.00638911
-0.00624521
-0.00611148
-0.00598975
-0.00588055
-0.00578347
-0.0056974
-0.00562082
-0.00555194
-0.00548876
-0.00542936
-0.00537217
-0.0053163
-0.00526157
-0.00520851
-0.00515819
-0.00511178
-0.00507024
-0.00503424
-0.00500399
-0.00497936
-0.00495964
-0.00494408
-0.00493193
-0.00492254
-0.00491528
-0.00490941
-0.00490441
-0.00489992
-0.00489578
-0.00489177
-0.00488762
-0.00488297
-0.00487787
-0.00487231
-0.00486716
-0.00771462
-0.00777633
-0.00780668
-0.00780635
-0.00777628
-0.00771787
-0.00763297
-0.00752392
-0.00739353
-0.00724529
-0.00708292
-0.00691025
-0.00673111
-0.00654983
-0.00637132
-0.00620087
-0.00604306
-0.00590089
-0.00577561
-0.00566706
-0.00557409
-0.00549487
-0.00542711
-0.00536817
-0.00531519
-0.00526549
-0.00521699
-0.00516865
-0.0051205
-0.00507345
-0.00502898
-0.00498856
-0.00495336
-0.00492391
-0.00490052
-0.00488202
-0.00486817
-0.00485802
-0.00485075
-0.00484564
-0.0048419
-0.00483886
-0.00483616
-0.00483363
-0.00483094
-0.00482777
-0.00482387
-0.00481902
-0.00481345
-0.00480812
-0.00799039
-0.00804223
-0.00805973
-0.00804421
-0.00799711
-0.00792007
-0.00781498
-0.00768412
-0.00753022
-0.00735669
-0.00716764
-0.00696745
-0.00676023
-0.00655033
-0.00634283
-0.00614391
-0.00595964
-0.00579445
-0.00565058
-0.00552841
-0.00542691
-0.00534405
-0.00527714
-0.00522307
-0.00517812
-0.00513841
-0.00510044
-0.00506181
-0.00502165
-0.00498049
-0.00493986
-0.00490176
-0.00486801
-0.00483979
-0.0048174
-0.00480028
-0.00478806
-0.00477996
-0.00477498
-0.00477215
-0.00477063
-0.00476973
-0.00476898
-0.00476814
-0.00476684
-0.00476465
-0.00476146
-0.00475701
-0.00475131
-0.00474566
-0.00829133
-0.00832812
-0.00832719
-0.00829097
-0.00822163
-0.00812117
-0.00799169
-0.00783537
-0.00765482
-0.00745318
-0.00723479
-0.00700469
-0.00676772
-0.00652823
-0.00629111
-0.00606291
-0.00585099
-0.00566148
-0.0054978
-0.00536097
-0.00525025
-0.00516348
-0.00509757
-0.00504909
-0.00501379
-0.00498666
-0.00496267
-0.00493766
-0.00490934
-0.00487747
-0.00484342
-0.00480956
-0.00477835
-0.00475173
-0.00473069
-0.0047151
-0.00470449
-0.00469833
-0.00469563
-0.00469524
-0.00469607
-0.00469738
-0.00469868
-0.0046996
-0.00469975
-0.00469863
-0.00469609
-0.00469203
-0.00468622
-0.00468011
-0.00862485
-0.00864209
-0.00861696
-0.00855357
-0.00845527
-0.00832483
-0.00816469
-0.00797725
-0.00776494
-0.00753058
-0.00727836
-0.00701407
-0.00674382
-0.00647248
-0.00620462
-0.00594645
-0.00570623
-0.00549178
-0.005308
-0.00515668
-0.00503718
-0.00494725
-0.00488339
-0.00484172
-0.00481781
-0.00480585
-0.00479931
-0.0047922
-0.00478026
-0.00476189
-0.00473795
-0.00471104
-0.00468432
-0.00466032
-0.00464098
-0.00462702
-0.00461819
-0.00461395
-0.00461341
-0.00461536
-0.00461856
-0.00462214
-0.00462555
-0.0046283
-0.00462991
-0.00462995
-0.00462813
-0.00462441
-0.0046186
-0.00461214
-0.00900782
-0.00900232
-0.00894719
-0.0088491
-0.00871351
-0.0085445
-0.00834532
-0.00811887
-0.00786754
-0.00759375
-0.00730127
-0.00699645
-0.00668689
-0.006379
-0.00607754
-0.0057879
-0.00551834
-0.00527808
-0.00507373
-0.0049082
-0.00478108
-0.00468965
-0.00462984
-0.00459701
-0.00458642
-0.00459213
-0.00460645
-0.00462145
-0.00463072
-0.00463077
-0.00462142
-0.00460494
-0.00458522
-0.0045657
-0.00454898
-0.0045368
-0.00452975
-0.00452743
-0.00452895
-0.00453308
-0.00453852
-0.00454429
-0.00454979
-0.00455444
-0.00455759
-0.00455884
-0.00455792
-0.00455463
-0.00454888
-0.00454218
-0.00946435
-0.00943381
-0.0093423
-0.00920006
-0.00901638
-0.00879807
-0.00854987
-0.00827522
-0.00797641
-0.00765496
-0.00731438
-0.00696122
-0.00660427
-0.00625239
-0.00591187
-0.00558752
-0.0052866
-0.00501885
-0.0047926
-0.00461223
-0.00447813
-0.00438703
-0.00433372
-0.00431241
-0.00431759
-0.00434322
-0.00438129
-0.00442227
-0.00445753
-0.00448106
-0.00449132
-0.00448975
-0.00448017
-0.00446731
-0.00445476
-0.00444511
-0.00443989
-0.00443937
-0.00444281
-0.00444896
-0.00445651
-0.00446442
-0.00447196
-0.00447847
-0.00448323
-0.00448575
-0.0044858
-0.0044831
-0.00447744
-0.00447046
-0.010021
-0.00996164
-0.0098245
-0.00962522
-0.00937944
-0.00909886
-0.00879125
-0.00846053
-0.00810709
-0.00772981
-0.00733318
-0.00692171
-0.00650749
-0.0061015
-0.00571335
-0.00534892
-0.00501391
-0.00471691
-0.00446695
-0.00427014
-0.00412845
-0.0040388
-0.00399439
-0.00398755
-0.00401141
-0.00405937
-0.00412349
-0.00419342
-0.0042587
-0.00431064
-0.00434528
-0.00436337
-0.00436808
-0.0043646
-0.00435798
-0.004352
-0.00434914
-0.00435046
-0.00435567
-0.0043637
-0.00437316
-0.0043831
-0.00439263
-0.00440097
-0.00440734
-0.00441118
-0.00441218
-0.00441011
-0.0044046
-0.00439732
-0.0107021
-0.0106048
-0.0104074
-0.0101331
-0.0098074
-0.0094497
-0.00907286
-0.00868191
-0.00827215
-0.00783526
-0.00737067
-0.00688887
-0.00640535
-0.00593229
-0.00548428
-0.00507115
-0.0046983
-0.00437151
-0.0040979
-0.00388401
-0.00373412
-0.00364674
-0.00361375
-0.00362457
-0.00367025
-0.00374321
-0.00383545
-0.00393641
-0.00403425
-0.00411863
-0.00418231
-0.00422424
-0.00424741
-0.00425683
-0.0042585
-0.00425759
-0.00425783
-0.00426124
-0.00426817
-0.00427778
-0.00428911
-0.00430097
-0.00431241
-0.0043225
-0.00433043
-0.00433557
-0.00433753
-0.00433603
-0.00433067
-0.00432318
-0.0115315
-0.0113779
-0.0110965
-0.0107224
-0.0102952
-0.00984397
-0.00938968
-0.00893986
-0.00847875
-0.00798105
-0.00743956
-0.00686879
-0.00629921
-0.00574193
-0.00521797
-0.00474373
-0.00432701
-0.00397082
-0.00367724
-0.00344989
-0.00329441
-0.00321201
-0.00319431
-0.00322722
-0.00329861
-0.00339951
-0.00352171
-0.00365537
-0.00378735
-0.00390606
-0.00400248
-0.00407238
-0.00411759
-0.00414322
-0.00415587
-0.00416192
-0.00416639
-0.00417237
-0.00418111
-0.00419233
-0.00420519
-0.0042187
-0.00423186
-0.00424357
-0.00425294
-0.0042593
-0.0042622
-0.00426124
-0.00425602
-0.00424831
-0.0125424
-0.0123013
-0.0118989
-0.0113896
-0.0108346
-0.0102718
-0.00973249
-0.0092373
-0.00873786
-0.00817822
-0.00755058
-0.00686114
-0.0061813
-0.00551753
-0.00489836
-0.00434802
-0.00387883
-0.00349293
-0.00318553
-0.002953
-0.0028007
-0.00273178
-0.00273717
-0.00279901
-0.0029018
-0.00303472
-0.00318909
-0.00335613
-0.00352351
-0.00367746
-0.00380784
-0.00390854
-0.00397911
-0.00402401
-0.00405016
-0.00406507
-0.00407507
-0.00408438
-0.00409515
-0.00410787
-0.0041221
-0.00413701
-0.00415159
-0.00416469
-0.00417535
-0.00418278
-0.00418655
-0.00418611
-0.00418102
-0.00417307
-0.013789
-0.0134156
-0.0128353
-0.0121365
-0.0114185
-0.0107207
-0.0100836
-0.00954754
-0.00903786
-0.00843673
-0.00769931
-0.00685546
-0.00603878
-0.00523792
-0.00450064
-0.00386101
-0.00333205
-0.00291543
-0.00259967
-0.00237076
-0.00223471
-0.0021965
-0.00224144
-0.00234367
-0.00248574
-0.00265593
-0.00284601
-0.00304708
-0.00324929
-0.00343885
-0.00360349
-0.00373573
-0.00383344
-0.00389993
-0.00394189
-0.0039675
-0.00398427
-0.00399764
-0.0040108
-0.00402502
-0.00404044
-0.00405647
-0.00407215
-0.00408637
-0.00409809
-0.00410648
-0.00411099
-0.00411105
-0.00410611
-0.004098
-0.0153501
-0.0147857
-0.0139416
-0.0129656
-0.0120365
-0.0111617
-0.0104358
-0.00984684
-0.0092056
-0.00749437
-0.00785482
-0.00682278
-0.00586716
-0.00488103
-0.00399158
-0.00325259
-0.00266424
-0.00222119
-0.00190271
-0.00168024
-0.00157135
-0.00158918
-0.0017027
-0.00186452
-0.00205765
-0.00227163
-0.00250079
-0.00273802
-0.00297411
-0.00319751
-0.00339548
-0.00355887
-0.00368401
-0.00377299
-0.00383215
-0.00386989
-0.00389452
-0.00391261
-0.00392845
-0.00394422
-0.00396066
-0.00397754
-0.00399402
-0.00400906
-0.00402161
-0.00403082
-0.004036
-0.00403654
-0.00403178
-0.00402363
-0.0173318
-0.0165065
-0.0152618
-0.0138303
-0.0125964
-0.0114186
-0.0107061
-0.0101535
-0.0098114
-0.00836109
-0.00667843
-0.00661349
-0.00571073
-0.00441185
-0.00332588
-0.00248208
-0.00184119
-0.00138678
-0.0010848
-0.000855383
-0.000778349
-0.00088628
-0.00111358
-0.00136265
-0.00162308
-0.00189091
-0.00216308
-0.00243762
-0.00270755
-0.00296274
-0.00319143
-0.00338381
-0.00353516
-0.00364628
-0.00372289
-0.00377336
-0.00380653
-0.00382986
-0.00384863
-0.00386594
-0.00388322
-0.00390066
-0.00391764
-0.00393322
-0.00394637
-0.00395623
-0.00396201
-0.003963
-0.0039585
-0.0039504
-0.0198497
-0.0187094
-0.0168619
-0.0146272
-0.0129821
-0.0114673
-0.0107264
-0.0106267
-0.0103639
-0.0094924
-0.00286207
-0.00147793
-0.00508431
-0.00375185
-0.00243768
-0.00148823
-0.00082272
-0.000379132
6.66103e-05
0.000133274
0.000180048
-5.82474e-05
-0.000468736
-0.000841423
-0.00118676
-0.00151888
-0.00184117
-0.00215498
-0.00245805
-0.00274288
-0.00299924
-0.00321753
-0.00339223
-0.00352361
-0.00361667
-0.00367953
-0.00372127
-0.00375001
-0.00377182
-0.00379065
-0.0038086
-0.00382631
-0.00384347
-0.00385929
-0.00387283
-0.00388316
-0.00388944
-0.00389087
-0.0038867
-0.00387878
-0.0227118
-0.0213194
-0.0187252
-0.0150375
-0.0131532
-0.011262
-0.0103207
-0.0114858
-0.0113414
-0.00925054
-0.0051507
0.00461291
-0.00282611
-0.00279738
-0.00126143
-0.000190312
0.000448638
0.000790276
0.00100585
0.00131975
0.00139958
0.0009285
0.000200096
-0.000329527
-0.000759948
-0.00116064
-0.00153938
-0.00189643
-0.00223302
-0.00254554
-0.00282598
-0.00306602
-0.0032606
-0.00340924
-0.00351658
-0.00359051
-0.00364011
-0.00367388
-0.00369855
-0.00371875
-0.00373716
-0.00375489
-0.00377193
-0.0037877
-0.00380138
-0.003812
-0.00381865
-0.00382047
-0.00381673
-0.00380914
-0.0247473
-0.0232218
-0.0200548
-0.0142533
-0.0122856
-0.00951787
-0.00863849
-0.0128567
-0.0132873
-0.00921392
-0.00843433
0.00514649
-0.00363544
-0.00147205
0.000459859
0.00149574
0.00202877
0.00208981
0.00199278
0.00279495
0.00325817
0.00216391
0.000702905
0.00010621
-0.000353795
-0.000821592
-0.00126259
-0.00166638
-0.00203771
-0.00237662
-0.00267801
-0.00293568
-0.00314547
-0.00330739
-0.0034259
-0.00350866
-0.00356464
-0.00360253
-0.00362947
-0.00365062
-0.00366919
-0.00368664
-0.00370328
-0.00371873
-0.00373227
-0.00374297
-0.00374987
-0.00375206
-0.00374883
-0.00374175
-0.0245996
-0.0233921
-0.0199074
-0.0103199
-0.00758176
-0.00648602
-0.00143149
-0.0148836
-0.0188627
-0.0123666
-0.0033703
0.0021475
-0.000757063
0.00136077
0.00299251
0.003817
0.00405962
0.00367949
0.00203606
0.011047
0.0152386
0.00617153
0.000315062
0.000506671
5.22173e-05
-0.000508048
-0.00101838
-0.00147239
-0.00187883
-0.0022421
-0.00256078
-0.00283134
-0.00305143
-0.00322201
-0.00334777
-0.00343631
-0.00349651
-0.00353704
-0.00356527
-0.00358671
-0.00360492
-0.00362171
-0.00363762
-0.00365249
-0.00366565
-0.0036762
-0.0036832
-0.00368573
-0.00368307
-0.00367665
-0.0521242
-0.0626382
-0.0458456
0.00680018
-0.00227423
0.00187241
0.0256869
0.0566588
-0.0246415
-0.0174432
-0.00453128
0.00275787
0.00589318
0.00612255
0.00655102
0.00678141
0.00671104
0.00660737
0.0122649
0.052185
0.052114
0.0496574
0.00598313
0.00162831
0.000546345
-0.00019924
-0.00080888
-0.00132323
-0.00176535
-0.00214931
-0.00248013
-0.00275792
-0.00298265
-0.00315659
-0.00328502
-0.00337561
-0.00343724
-0.00347844
-0.0035066
-0.00352739
-0.00354458
-0.0035602
-0.00357502
-0.00358898
-0.00360151
-0.0036117
-0.00361864
-0.00362147
-0.00361945
-0.00361386
7.78342
3.40313
-0.104717
0.081898
-0.0732975
-0.0306974
0.078847
0.134775
0.0282402
0.0220661
0.0163374
0.0232924
0.0149471
0.0110542
0.0100909
0.00982815
0.00934692
0.00880211
0.0126079
0.0529892
0.0558949
0.0451378
0.00478437
0.00179078
0.000722743
-6.96591e-05
-0.000718301
-0.00125859
-0.00171699
-0.00210921
-0.00244281
-0.00272007
-0.00294266
-0.003114
-0.00323996
-0.00332842
-0.00338817
-0.00342761
-0.00345399
-0.00347295
-0.00348829
-0.00350213
-0.00351541
-0.00352811
-0.00353971
-0.00354937
-0.00355614
-0.00355921
-0.00355792
-0.00355332
46.54
43.8627
38.612
22.7189
5.22679
1.45232
0.192953
0.301993
0.0334494
0.0445297
0.0348337
0.0229382
0.015085
0.0128038
0.0129321
0.0127115
0.0118379
0.0102936
0.0078357
0.014486
0.0163629
0.00870784
0.00187348
0.00136847
0.000606627
-0.000124853
-0.000752722
-0.00128663
-0.00174091
-0.00212734
-0.0024529
-0.00272078
-0.00293375
-0.00309606
-0.00321409
-0.00329593
-0.00335023
-0.00338518
-0.00340779
-0.00342348
-0.00343597
-0.00344739
-0.00345863
-0.00346971
-0.00348011
-0.00348899
-0.00349549
-0.0034988
-0.00349833
-0.0034949
45.0502
43.9848
42.9026
41.9154
38.0896
20.8045
6.35301
5.82981
1.14118
0.143329
0.0565752
0.135567
0.0136456
0.0114052
0.0149524
0.0162941
0.0150251
0.0128072
0.0105925
0.0087905
0.00646703
0.00447913
0.00240682
0.00139319
0.000518514
-0.000232662
-0.000864892
-0.00139217
-0.00183367
-0.00220378
-0.00251127
-0.00276093
-0.00295663
-0.00310337
-0.00320794
-0.00327854
-0.00332372
-0.00335133
-0.00336804
-0.00337894
-0.00338749
-0.00339571
-0.00340441
-0.0034135
-0.00342243
-0.00343035
-0.00343644
-0.00343999
-0.00344041
-0.00343831
43.6537
42.8891
41.8775
40.5074
38.3506
36.1058
34.5835
22.7843
8.4307
1.27757
0.0260728
0.0391182
0.0130776
0.0103005
0.0179994
0.0221442
0.0194345
0.0159571
0.0123529
0.00943157
0.00679873
0.00461296
0.00272603
0.00133225
0.00032396
-0.000457249
-0.00107989
-0.00158494
-0.00199859
-0.00233914
-0.00261749
-0.00283974
-0.0030105
-0.00313524
-0.00322099
-0.0032759
-0.00330832
-0.00332577
-0.00333443
-0.00333896
-0.00334249
-0.00334674
-0.00335237
-0.00335911
-0.0033663
-0.00337309
-0.00337869
-0.00338246
-0.00338381
-0.00338319
42.5708
42.0035
41.1623
40.0092
38.5601
37.3122
36.6554
35.4981
26.3795
13.4246
2.84999
0.0778729
-0.00151476
0.00456365
0.0202178
0.031765
0.0250569
0.0194032
0.0143798
0.0103609
0.00713997
0.00465247
0.00256206
0.000937975
-0.000111197
-0.000869033
-0.00142973
-0.00187793
-0.00223928
-0.00253265
-0.00276909
-0.00295433
-0.00309273
-0.0031895
-0.00325151
-0.00328671
-0.00330309
-0.00330773
-0.00330633
-0.003303
-0.00330042
-0.00329995
-0.00330207
-0.00330606
-0.00331127
-0.00331678
-0.00332182
-0.00332577
-0.00332802
-0.00332926
41.7711
41.346
40.6821
39.7839
38.7198
37.6819
36.7518
35.8002
34.9416
31.827
14.2875
1.72338
-0.0961464
-0.0303458
0.0290792
0.0477705
0.032956
0.0225864
0.015516
0.0105687
0.00683955
0.00408064
0.00200265
-4.30484e-05
-0.000942466
-0.00148866
-0.00191979
-0.00227079
-0.00255185
-0.00277911
-0.00296058
-0.00309955
-0.00319879
-0.00326242
-0.00329657
-0.00330869
-0.0033063
-0.00329592
-0.00328268
-0.00327016
-0.00326052
-0.00325473
-0.00325272
-0.00325371
-0.00325674
-0.00326087
-0.00326533
-0.00326949
-0.00327282
-0.00327553
41.1987
40.8827
40.377
39.6972
38.8919
38.0357
37.1674
36.3068
35.3535
33.8048
30.7621
14.806
2.66135
-0.0169305
0.0637979
0.0891934
0.043308
0.0236861
0.0147801
0.00953544
0.00574641
0.00255652
0.00471692
-0.00162732
-0.00211132
-0.00226789
-0.00252589
-0.00274482
-0.00292235
-0.00306778
-0.00318321
-0.00326805
-0.00332249
-0.00334886
-0.00335201
-0.00333855
-0.00331531
-0.00328827
-0.0032619
-0.00323919
-0.00322176
-0.00321007
-0.00320364
-0.00320138
-0.00320211
-0.00320479
-0.00320864
-0.003213
-0.0032174
-0.00322165
40.7973
40.5659
40.1918
39.6919
39.096
38.4366
37.7367
37.0376
36.3187
35.5004
35.4355
29.5258
9.52581
0.0774762
0.204601
0.139735
0.0365781
0.0181956
0.0107309
0.00645415
0.0039524
0.00658044
0.0143313
0.00283797
-0.00288826
-0.00304993
-0.00316293
-0.00325234
-0.00332399
-0.00338184
-0.00342497
-0.00345052
-0.00345628
-0.00344258
-0.00341276
-0.00337223
-0.00332702
-0.00328238
-0.00324213
-0.00320864
-0.00318298
-0.00316509
-0.003154
-0.00314833
-0.00314667
-0.00314789
-0.00315112
-0.00315569
-0.00316114
-0.00316698
40.5216
40.3544
40.0834
39.7236
39.2944
38.8117
38.2793
37.6969
37.0537
36.3742
35.8881
35.3274
18.998
1.99241
0.379412
0.416687
2.35833e-06
0.000405745
0.000564272
0.00089103
0.00131992
0.00937933
0.0116071
0.00334896
-0.00390101
-0.00388246
-0.00383822
-0.00378733
-0.00374484
-0.00370892
-0.00367493
-0.00363768
-0.00359242
-0.00353723
-0.00347361
-0.0034056
-0.00333817
-0.00327572
-0.00322139
-0.00317696
-0.00314294
-0.00311873
-0.00310291
-0.00309378
-0.00308974
-0.00308951
-0.00309212
-0.00309689
-0.00310339
-0.00311079
40.3383
40.219
40.0259
39.771
39.4679
39.1257
38.7387
38.2866
37.7571
37.2036
36.717
36.159
33.225
8.57578
0.789088
-0.0358668
-0.0240247
-0.0139808
-0.00931121
-0.00528764
-0.00446122
0.00892085
0.00981055
-0.00356117
-0.00485647
-0.00469198
-0.00450101
-0.00432165
-0.0041662
-0.0040347
-0.00392184
-0.0038204
-0.00372339
-0.00362656
-0.00352941
-0.00343444
-0.00334536
-0.00326563
-0.00319763
-0.00314255
-0.00310035
-0.00306992
-0.00304946
-0.00303696
-0.00303061
-0.00302899
-0.00303103
-0.00303598
-0.00304349
-0.0030524
40.2233
40.1391
40.0043
39.8284
39.622
39.3911
39.1316
38.8284
38.4762
38.1222
37.8489
37.669
37.8512
28.1336
3.25786
-0.0787152
-0.0289381
-0.0190078
-0.0116373
-0.0116618
-0.00571155
0.00885611
-0.000504547
-0.00585254
-0.00581511
-0.00550556
-0.00516329
-0.0048483
-0.00457653
-0.00434776
-0.00415555
-0.00399014
-0.00384201
-0.00370458
-0.00357523
-0.00345469
-0.0033453
-0.00324946
-0.00316877
-0.00310378
-0.00305392
-0.00301764
-0.00299279
-0.00297711
-0.00296861
-0.00296571
-0.00296721
-0.00297235
-0.00298082
-0.00299114
40.1577
40.0993
40.0085
39.8937
39.7636
39.6245
39.4771
39.3166
39.1455
38.9991
38.948
39.0638
39.5975
41.0035
4.86997
-0.0613047
-0.0126775
-0.0154706
-0.016189
-0.0152561
-0.0119312
-0.0100183
-0.00956222
-0.00799125
-0.00709198
-0.00641403
-0.00584188
-0.00536103
-0.00496304
-0.00463574
-0.00436562
-0.00413845
-0.00394153
-0.0037658
-0.00360654
-0.00346265
-0.00333497
-0.00322479
-0.00313287
-0.00305911
-0.00300242
-0.0029609
-0.00293211
-0.00291357
-0.00290313
-0.00289908
-0.00290012
-0.00290545
-0.00291481
-0.00292639
40.1257
40.0861
40.029
39.9617
39.8926
39.8295
39.778
39.7421
39.7303
39.7693
39.9045
40.1728
40.6019
41.0443
20.4932
0.113867
0.00389293
-0.0147728
-0.0177588
-0.0172532
-0.0155935
-0.0131602
-0.0111759
-0.00946354
-0.00818995
-0.0072113
-0.00643452
-0.00580609
-0.00529537
-0.00487972
-0.00453939
-0.00425637
-0.00401537
-0.00380525
-0.00361946
-0.00345519
-0.00331185
-0.00318957
-0.00308824
-0.00300715
-0.00294475
-0.00289882
-0.00286669
-0.00284573
-0.00283364
-0.00282862
-0.00282929
-0.00283481
-0.00284495
-0.00285763
40.1142
40.0882
40.0559
40.0245
40.0026
40.0001
40.0266
40.0917
40.2103
40.406
40.7088
41.127
41.5729
41.64
36.217
-0.248791
-0.0533741
-0.0251241
-0.0239029
-0.0210573
-0.0177579
-0.0148344
-0.012423
-0.0104873
-0.00898483
-0.00781188
-0.00688615
-0.00614552
-0.00554763
-0.00506215
-0.00466496
-0.00433568
-0.00405771
-0.00381869
-0.00361078
-0.00342982
-0.00327395
-0.00314217
-0.00303357
-0.00294683
-0.00288003
-0.00283068
-0.00279594
-0.00277307
-0.0027597
-0.00275393
-0.00275433
-0.00276003
-0.00277084
-0.00278443
40.1128
40.0957
40.0803
40.0737
40.0855
40.127
40.2105
40.3508
40.5674
40.8877
41.3501
42.001
42.8896
44.1232
45.3864
4.29565
-0.0815418
-0.0315935
-0.027666
-0.0234859
-0.0192916
-0.0158909
-0.0132284
-0.0111241
-0.00947731
-0.00818649
-0.00716817
-0.0063562
-0.00570187
-0.00516964
-0.00473265
-0.00436964
-0.00406388
-0.00380284
-0.00357816
-0.00338481
-0.00321989
-0.00308147
-0.00296791
-0.00287737
-0.00280762
-0.00275595
-0.00271942
-0.00269523
-0.00268097
-0.00267471
-0.00267494
-0.00268082
-0.00269217
-0.00270646
40.114
40.1013
40.095
40.1024
40.1334
40.2007
40.3191
40.5063
40.7849
41.1876
41.764
42.5979
43.8446
45.9035
49.831
10.0321
-0.0669418
-0.0322573
-0.028276
-0.0238436
-0.0196287
-0.0162107
-0.0135073
-0.0113561
-0.00965878
-0.0083228
-0.00726794
-0.00642718
-0.00574878
-0.00519455
-0.00473654
-0.0043539
-0.00403087
-0.0037557
-0.00352027
-0.00331921
-0.00314895
-0.00300686
-0.00289073
-0.00279832
-0.00272713
-0.0026743
-0.00263685
-0.00261197
-0.00259725
-0.00259074
-0.00259095
-0.002597
-0.00260875
-0.0026235
-0.0049522
-0.00495038
-0.00495182
-0.00495636
-0.00496234
-0.00496813
-0.00497229
-0.00497343
-0.00497047
-0.00496314
-0.00495252
-0.00494125
-0.00493347
-0.00493438
-0.00494936
-0.0049825
-0.00503524
-0.00510565
-0.00518979
-0.00528621
-0.0054028
-0.00556236
-0.00580259
-0.00616631
-0.00668866
-0.00739673
-0.00833092
-0.00956961
-0.0112238
-0.0133881
-0.0157035
-0.0165342
-0.0137312
0.0150061
31.6737
46.2471
44.4574
43.2652
42.4008
41.7559
41.2749
40.9183
40.6576
40.4718
40.3439
40.2596
40.2058
40.1714
40.1479
40.1293
-0.00495226
-0.00495116
-0.00495365
-0.00495949
-0.00496701
-0.00497461
-0.00498084
-0.00498428
-0.00498387
-0.00497934
-0.00497168
-0.00496329
-0.00495789
-0.00496016
-0.00497489
-0.00500574
-0.00505404
-0.0051183
-0.00519538
-0.00528479
-0.00539433
-0.00554517
-0.00577099
-0.00610902
-0.00658988
-0.00723756
-0.0080921
-0.00923292
-0.0107928
-0.0129228
-0.0152168
-0.0156304
-0.0102129
-0.0559178
23.1023
43.5483
43.5041
42.8566
42.1664
41.5909
41.1507
40.8253
40.5902
40.4248
40.3129
40.2405
40.1953
40.1664
40.1457
40.1275
-0.00494261
-0.00494233
-0.00494588
-0.00495291
-0.00496177
-0.00497087
-0.00497871
-0.00498383
-0.00498516
-0.00498248
-0.00497666
-0.00496986
-0.00496541
-0.00496739
-0.00497994
-0.00500618
-0.00504726
-0.00510198
-0.00516805
-0.00524555
-0.0053416
-0.00547477
-0.00567348
-0.00596699
-0.00637594
-0.00691697
-0.00762489
-0.008592
-0.0100175
-0.0122205
-0.015046
-0.0166777
-0.0136489
-0.0899972
10.8867
43.6375
43.2525
42.4995
41.8025
41.263
40.8791
40.613
40.4313
40.3107
40.235
40.1909
40.167
40.1529
40.141
40.1258
-0.00492311
-0.00492371
-0.0049283
-0.00493639
-0.00494636
-0.00495663
-0.0049656
-0.00497174
-0.004974
-0.00497214
-0.00496699
-0.00496046
-0.00495552
-0.00495577
-0.00496459
-0.00498454
-0.00501648
-0.00505954
-0.00511232
-0.00517502
-0.00525352
-0.00536237
-0.00552334
-0.00575693
-0.00607075
-0.00646364
-0.00694254
-0.00758905
-0.00862009
-0.0104501
-0.0133697
-0.0167419
-0.0182307
-0.0801284
2.7155
45.1378
43.464
42.0886
41.2544
40.7437
40.4474
40.2782
40.1828
40.1336
40.115
40.116
40.1263
40.1363
40.1394
40.1298
-0.00489369
-0.00489524
-0.00490083
-0.00490984
-0.00492071
-0.00493179
-0.00494139
-0.0049479
-0.00495026
-0.00494824
-0.00494257
-0.004935
-0.00492823
-0.0049254
-0.00492929
-0.00494179
-0.00496342
-0.00499377
-0.0050324
-0.00508005
-0.00514089
-0.0052244
-0.00534408
-0.00551047
-0.00571891
-0.00594156
-0.00611635
-0.00627644
-0.00654542
-0.00706424
-0.0082942
-0.00907733
-0.0110791
-0.015133
0.761926
30.408
42.387
41.1555
40.3674
39.9814
39.8407
39.8192
39.8485
39.899
39.9597
40.0229
40.0809
40.1251
40.1491
40.148
-0.00485444
-0.00485697
-0.0048635
-0.00487329
-0.00488484
-0.00489642
-0.00490618
-0.00491243
-0.0049141
-0.00491092
-0.00490356
-0.00489371
-0.00488388
-0.00487681
-0.00487485
-0.00487922
-0.00489007
-0.00490733
-0.00493156
-0.00496488
-0.00501096
-0.00507499
-0.00516211
-0.00527277
-0.00539551
-0.00547545
-0.00537598
-0.00495134
-0.00428906
-0.0031665
-0.00144531
0.00165724
0.0105405
0.043178
0.310151
8.1713
40.2602
40.0015
39.199
38.9951
39.0722
39.2436
39.4328
39.613
39.7765
39.9203
40.04
40.1287
40.1804
40.1909
-0.00480554
-0.00480906
-0.00481647
-0.00482692
-0.00483893
-0.00485071
-0.00486023
-0.00486568
-0.00486595
-0.00486071
-0.00485057
-0.00483721
-0.0048231
-0.00481085
-0.00480238
-0.00479838
-0.00479858
-0.00480293
-0.00481289
-0.0048322
-0.00486599
-0.00491832
-0.00498962
-0.00507403
-0.00516207
-0.00521314
-0.00464907
-0.00399565
-0.00281754
-0.000738768
0.00311732
0.0108771
0.0280688
0.0898423
0.284619
0.867562
30.3919
39.4569
37.7469
37.8066
38.1778
38.5655
38.9403
39.2788
39.5709
39.8165
40.014
40.1589
40.2455
40.2707
-0.0047472
-0.00475177
-0.00475998
-0.00477099
-0.00478329
-0.00479499
-0.00480391
-0.00480813
-0.0048064
-0.00479832
-0.00478447
-0.00476653
-0.004747
-0.00472861
-0.00471305
-0.00470072
-0.00469092
-0.00468335
-0.00467976
-0.00468497
-0.00470628
-0.00474996
-0.00481761
-0.00490456
-0.00501316
-0.00519152
-0.00450975
-0.00366658
-0.00267034
-0.00109155
0.00127815
0.00566285
0.0157122
0.0582458
0.267824
2.50388
14.5799
34.4645
35.0849
36.3701
37.2487
37.8351
38.3857
38.9005
39.3467
39.7184
40.0139
40.2287
40.3581
40.4009
-0.00467975
-0.0046855
-0.0046944
-0.00470582
-0.00471828
-0.00472968
-0.00473771
-0.00474034
-0.0047362
-0.00472468
-0.00470633
-0.00468287
-0.004657
-0.00463153
-0.0046083
-0.00458763
-0.00456854
-0.00455032
-0.00453439
-0.00452567
-0.00453229
-0.00456272
-0.00462296
-0.00471467
-0.0048409
-0.00507204
-0.0048104
0.00356501
-0.000439534
-0.00332537
-0.00506119
-0.0110663
-0.02277
0.036731
0.0929004
-0.449901
2.28998
16.3766
32.9426
35.439
36.5802
37.181
37.8197
38.4948
39.1124
39.6359
40.0535
40.3547
40.5349
40.5968
-0.00460393
-0.00461047
-0.00462013
-0.00463189
-0.0046443
-0.00465534
-0.00466226
-0.00466301
-0.00465612
-0.00464079
-0.00461742
-0.00458774
-0.0045548
-0.00452143
-0.00448991
-0.00446064
-0.0044326
-0.00440461
-0.00437736
-0.00435493
-0.00434433
-0.00435287
-0.00438583
-0.00444728
-0.00451877
-0.00455866
-0.00256173
0.0136092
0.0107914
-0.00208371
-0.00671076
-0.0138852
-0.0335056
-0.0145917
0.00450165
0.00034313
0.393549
8.76661
22.2135
35.3915
36.2312
36.6375
37.2637
38.0867
38.8913
39.5927
40.157
40.5617
40.7998
40.878
-0.00452001
-0.00452732
-0.00453763
-0.00454969
-0.00456198
-0.00457238
-0.00457819
-0.00457704
-0.00456722
-0.0045478
-0.00451903
-0.00448271
-0.00444198
-0.00440018
-0.00435986
-0.00432178
-0.00428498
-0.00424776
-0.00420995
-0.00417451
-0.00414666
-0.00413102
-0.00412767
-0.0041299
-0.00411176
-0.00400077
-0.00165251
0.0109803
0.0115465
0.0102643
-0.00528309
-0.00842301
-0.0149172
-0.00749383
0.00867626
0.0238101
0.0721291
0.173412
6.40407
36.1772
36.0796
35.6674
36.496
37.684
38.7387
39.6407
40.3684
40.8903
41.1899
41.272
-0.00442848
-0.00443658
-0.00444742
-0.0044597
-0.00447182
-0.00448153
-0.00448617
-0.0044831
-0.00447041
-0.00444687
-0.00441255
-0.00436929
-0.00432033
-0.0042696
-0.00422014
-0.00417328
-0.00412816
-0.00408266
-0.00403532
-0.00398778
-0.00394453
-0.00391011
-0.00388581
-0.00386776
-0.00385259
-0.00385003
-0.00385954
-6.15178e-05
0.00268906
-0.00249153
-0.00534294
-0.00546562
-0.00425096
0.00145756
0.0122175
0.0265803
0.0175267
-0.0233326
-0.176814
10.2994
23.0265
33.1712
35.5205
37.4869
38.8
39.8711
40.7515
41.4017
41.766
41.822
-0.00432994
-0.00433879
-0.00435012
-0.00436244
-0.00437437
-0.00438344
-0.00438692
-0.00438209
-0.00436667
-0.00433916
-0.00429939
-0.00424908
-0.00419168
-0.00413152
-0.00407251
-0.00401684
-0.00396401
-0.00391142
-0.00385614
-0.00379753
-0.00373843
-0.00368302
-0.003633
-0.00358605
-0.00354342
-0.00350836
-0.00346175
-0.00327244
-0.00334492
-0.0038509
-0.00407759
-0.0029307
-0.000556688
0.00417045
0.0125844
0.0107806
0.0158486
-0.00805939
-0.0510309
0.355317
7.68334
19.7751
35.2031
38.4497
39.3816
40.3794
41.3473
42.1688
42.6267
42.6072
-0.00422523
-0.00423463
-0.00424638
-0.00425868
-0.00427028
-0.00427876
-0.00428117
-0.00427479
-0.00425701
-0.00422591
-0.00418106
-0.00412387
-0.0040579
-0.00398789
-0.00391872
-0.00385369
-0.00379329
-0.00373478
-0.00367371
-0.00360663
-0.00353337
-0.00345661
-0.0033784
-0.00329751
-0.00321135
-0.00311512
-0.00299637
-0.00284286
-0.00283142
-0.00280454
-0.00251485
-0.00159743
-0.00021044
0.00186892
0.0056182
0.00618855
0.0113536
0.0080925
-0.010704
0.0170172
0.0695133
4.45531
9.99025
28.2014
40.2314
41.1084
42.1272
43.3013
43.9551
43.8485
-0.00411497
-0.00412476
-0.00413673
-0.00414903
-0.00416026
-0.00416818
-0.00416973
-0.00416207
-0.00414236
-0.00410829
-0.00405893
-0.00399544
-0.00392111
-0.00384099
-0.00376087
-0.00368551
-0.00361673
-0.00355239
-0.00348704
-0.00341459
-0.00333119
-0.00323659
-0.00313223
-0.00301795
-0.00289036
-0.0027442
-0.0025753
-0.00238136
-0.0022217
-0.00198462
-0.0015455
-0.000768389
0.000177585
0.00188832
0.0040173
0.00474069
0.00327806
0.0212995
0.0213579
0.0211176
0.036178
0.0363316
0.797719
0.746906
7.46545
26.7632
41.5557
45.0353
46.2127
46.2738
-0.00399966
-0.00400984
-0.00402185
-0.00403403
-0.0040449
-0.00405223
-0.00405314
-0.00404458
-0.00402347
-0.00398721
-0.0039343
-0.00386539
-0.0037834
-0.00369344
-0.00360191
-0.00351502
-0.00343629
-0.00336483
-0.00329511
-0.00321905
-0.00312931
-0.00302197
-0.00289685
-0.00275478
-0.00259405
-0.00240982
-0.00219789
-0.00195401
-0.00168648
-0.0013341
-0.000816179
-6.16515e-05
0.000889611
0.00217305
0.00358109
0.009549
0.00895397
0.0176113
0.0262127
0.0244661
0.0394516
0.0357131
0.0508994
0.0644654
-0.0267823
-0.603896
1.82781
12.2574
24.77
29.6517
-0.00388007
-0.00389048
-0.00390248
-0.00391433
-0.00392481
-0.00393159
-0.00393199
-0.00392289
-0.00390102
-0.00386339
-0.0038081
-0.00373505
-0.00364661
-0.00354761
-0.00344488
-0.0033457
-0.00325539
-0.00317477
-0.00309917
-0.00301957
-0.00292571
-0.00281001
-0.00266988
-0.00250651
-0.00232052
-0.00210848
-0.00186481
-0.00158425
-0.00125875
-0.000846464
-0.000297825
0.000432831
0.00138814
0.00254785
0.00330898
0.00602023
0.008528
0.0140912
0.0173478
0.0193667
0.0282281
0.0380943
0.0274718
0.0486206
0.0175675
-0.0311103
-0.0953713
-0.115258
-0.0903211
-0.0473307
-0.00375719
-0.0037675
-0.00377938
-0.00379072
-0.00380063
-0.00380687
-0.00380688
-0.00379751
-0.00377544
-0.00373734
-0.00368089
-0.00360523
-0.00351198
-0.00340541
-0.0032924
-0.00318095
-0.00307796
-0.00298619
-0.00290265
-0.00281849
-0.00272173
-0.00260144
-0.00245191
-0.00227358
-0.00206901
-0.00183772
-0.00157463
-0.00127309
-0.000922404
-0.000493387
4.51832e-05
0.000706817
0.00158223
0.0027992
0.00378276
0.00539684
0.0076317
0.0109016
0.0125206
0.0120519
0.0172311
0.0199999
0.0112233
0.0108176
-0.0010873
-0.0167625
-0.0248305
-0.0272512
-0.025072
-0.0189868
-0.00363148
-0.00364156
-0.00365303
-0.00366385
-0.00367304
-0.0036787
-0.00367832
-0.00366895
-0.00364714
-0.00360941
-0.00355298
-0.00347638
-0.00338025
-0.00326814
-0.00314653
-0.00302371
-0.00290773
-0.00280333
-0.00270966
-0.00261936
-0.00252009
-0.00239859
-0.00224561
-0.00205964
-0.00184409
-0.00160093
-0.0013278
-0.00101867
-0.000663555
-0.000241094
0.000285358
0.00098909
0.00262246
0.00342528
0.00375555
0.0050075
0.00666513
0.0084893
0.00986031
0.0105135
0.0130124
0.0130769
0.00926251
0.00451149
-0.00396295
-0.0155013
-0.0227988
-0.0253008
-0.0241661
-0.0207288
-0.00350337
-0.00351323
-0.00352407
-0.00353424
-0.00354261
-0.00354761
-0.00354686
-0.00353758
-0.00351639
-0.00347977
-0.0034245
-0.00334854
-0.00325162
-0.00313637
-0.00300851
-0.00287617
-0.00274793
-0.00263015
-0.00252448
-0.00242594
-0.00232333
-0.00220248
-0.00205144
-0.00186551
-0.00164754
-0.00140159
-0.00112737
-0.000821065
-0.000474164
-6.98934e-05
0.000421466
0.00109562
0.00263782
0.00282974
0.00335761
0.00435962
0.00550788
0.0066615
0.00750677
0.00838604
0.0101914
0.00997968
0.00729935
0.00246413
-0.00418853
-0.0123642
-0.0176206
-0.0207598
-0.0204366
-0.0187547
-0.00337348
-0.00338296
-0.00339311
-0.00340242
-0.00340988
-0.00341411
-0.00341297
-0.00340384
-0.00338352
-0.0033485
-0.00329538
-0.0032215
-0.00312585
-0.00300999
-0.00287869
-0.00273938
-0.00260067
-0.00247005
-0.0023514
-0.00224259
-0.00213465
-0.00201394
-0.00186739
-0.0016877
-0.00147525
-0.00123478
-0.000968388
-0.000673683
-0.000344472
2.90884e-05
0.000457992
0.00100835
0.00158444
0.00215877
0.00286056
0.00359359
0.0043473
0.00501185
0.00534383
0.00497755
0.00650171
0.00882489
0.00735814
0.000984741
-0.00395436
-0.00544312
-0.0138064
-0.0157919
-0.0161553
-0.0155083
-0.00324264
-0.00325147
-0.00326084
-0.00326905
-0.00327549
-0.00327884
-0.00327723
-0.00326825
-0.00324893
-0.00321585
-0.00316554
-0.00309494
-0.00300233
-0.00288832
-0.0027565
-0.00261324
-0.00246675
-0.00232517
-0.00219403
-0.00207383
-0.0019585
-0.00183621
-0.0016938
-0.0015225
-0.00132071
-0.00109173
-0.000839198
-0.000562422
-0.000257196
8.16789e-05
0.000460257
0.000889802
0.00134734
0.00183647
0.00234702
0.00285168
0.00329916
0.00360902
0.00371057
0.00628401
0.0180836
0.015417
0.012926
0.0140125
0.0144451
-0.00521388
-0.0102046
-0.0120594
-0.012688
-0.0125763
-0.00311117
-0.00311926
-0.00312768
-0.00313471
-0.00314001
-0.00314233
-0.00314013
-0.0031312
-0.00311286
-0.00308187
-0.00303479
-0.00296836
-0.00288025
-0.00277018
-0.00264059
-0.00249662
-0.00234563
-0.0021959
-0.00205427
-0.00192335
-0.00179968
-0.00167406
-0.00153454
-0.00137146
-0.00118182
-0.000967577
-0.000732267
-0.000477113
-0.000199494
0.000103489
0.000432626
0.000785382
0.00115175
0.0015218
0.00187732
0.00219074
0.00241321
0.0024824
0.0023437
0.00377213
0.0170147
0.0161417
0.0147073
0.0118152
-0.00302576
-0.00660746
-0.00823007
-0.00952691
-0.0101591
-0.0102555
-0.00297934
-0.00298672
-0.00299406
-0.00299993
-0.00300397
-0.00300517
-0.00300219
-0.00299318
-0.00297568
-0.00294673
-0.00290303
-0.00284125
-0.00275868
-0.00265429
-0.00252933
-0.00238773
-0.00223576
-0.00208126
-0.00193186
-0.0017921
-0.00166102
-0.00153169
-0.00139409
-0.00123887
-0.00106158
-0.000863434
-0.000647314
-0.00041545
-0.000167434
9.83766e-05
0.0003799
0.000669704
0.000956929
0.00122356
0.0014537
0.00162007
0.00167722
0.00156177
0.0011206
0.000180055
0.00150925
0.00113397
-0.00274942
-0.00221627
-0.0037934
-0.00545244
-0.00676521
-0.00771569
-0.00825498
-0.0084148
-0.00284763
-0.00285427
-0.00286053
-0.00286524
-0.00286794
-0.00286795
-0.00286407
-0.00285479
-0.00283793
-0.00281081
-0.0027704
-0.00271344
-0.002637
-0.00253953
-0.00242119
-0.00228458
-0.0021348
-0.00197902
-0.00182505
-0.00167878
-0.00154169
-0.00140955
-0.00127401
-0.0011267
-0.000962305
-0.000780951
-0.000585469
-0.000378199
-0.000160391
6.77933e-05
0.000303513
0.000538073
0.000757889
0.000945195
0.00108552
0.00115714
0.00112653
0.000947791
0.00057719
-6.36191e-05
-0.000680608
-0.00166856
-0.00243578
-0.00273088
-0.00361003
-0.00467482
-0.00563226
-0.00634832
-0.00678581
-0.00694863
-0.00271653
-0.00272235
-0.00272755
-0.00273107
-0.00273246
-0.00273122
-0.00272636
-0.00271664
-0.00270014
-0.00267456
-0.00263716
-0.00258491
-0.00251485
-0.00242498
-0.00231467
-0.00218525
-0.00204046
-0.00188653
-0.00173107
-0.00158083
-0.00143921
-0.0013049
-0.0011718
-0.00103247
-0.000881508
-0.000717606
-0.000543235
-0.000361175
-0.000173457
1.84531e-05
0.000211331
0.000396916
0.000561798
0.000690275
0.000768723
0.000781056
0.000705785
0.000513491
0.000180432
-0.000283199
-0.000828277
-0.00153887
-0.00217773
-0.00264377
-0.00331813
-0.00406201
-0.00474509
-0.00527881
-0.00562261
-0.00576612
-0.00258645
-0.0025914
-0.00259561
-0.00259787
-0.00259799
-0.00259544
-0.00258954
-0.00257921
-0.00256284
-0.00253845
-0.00250367
-0.00245577
-0.00239197
-0.00230998
-0.00220851
-0.00208786
-0.0019505
-0.00180138
-0.00164738
-0.00149561
-0.00135098
-0.00121463
-0.00108341
-0.000951284
-0.00081312
-0.000666553
-0.000512951
-0.000355264
-0.000195911
-3.73187e-05
0.000117134
0.00026051
0.00038141
0.000466452
0.000503298
0.000479933
0.000382856
0.000196443
-8.91554e-05
-0.00047091
-0.000924429
-0.00146161
-0.00198426
-0.00243902
-0.00297695
-0.00352868
-0.00402684
-0.00442178
-0.0046841
-0.00480078
-0.00245766
-0.00246174
-0.00246495
-0.002466
-0.00246486
-0.00246106
-0.00245408
-0.002443
-0.00242651
-0.00240297
-0.00237038
-0.00232636
-0.00226838
-0.00219416
-0.00210188
-0.00199101
-0.00186291
-0.00172124
-0.00157169
-0.00142096
-0.001275
-0.00113687
-0.00100622
-0.000879328
-0.000751716
-0.000620622
-0.00048599
-0.000350406
-0.00021649
-8.68889e-05
3.48306e-05
0.000143121
0.00022911
0.000281953
0.00029114
0.000247385
0.000142377
-3.15063e-05
-0.000278316
-0.000593838
-0.00096204
-0.00138271
-0.00180791
-0.00221053
-0.00263893
-0.00305869
-0.0034303
-0.00372377
-0.00392036
-0.00401019
-0.00233037
-0.00233364
-0.00233578
-0.00233575
-0.00233339
-0.00232844
-0.00232039
-0.00230849
-0.00229173
-0.00226875
-0.00223793
-0.00219726
-0.00214452
-0.00207749
-0.00199424
-0.00189365
-0.00177608
-0.00164391
-0.00150157
-0.00135477
-0.0012096
-0.0010706
-0.000939579
-0.000815395
-0.000694954
-0.000575781
-0.000456986
-0.000339934
-0.00022725
-0.000121591
-2.63531e-05
5.39791e-05
0.000112833
0.000141881
0.000132727
7.816e-05
-2.70663e-05
-0.000186106
-0.000398946
-0.000661002
-0.000962467
-0.00129711
-0.00164136
-0.00197957
-0.00232112
-0.00264577
-0.00292861
-0.00314973
-0.00329703
-0.00336445
-0.00220475
-0.00220725
-0.00220838
-0.00220733
-0.00220389
-0.00219789
-0.00218888
-0.00217618
-0.00215905
-0.00213643
-0.00210702
-0.00206916
-0.00202098
-0.0019604
-0.00188555
-0.00179505
-0.00168857
-0.00156733
-0.00143445
-0.00129446
-0.0011528
-0.00101465
-0.000883457
-0.000760237
-0.000643724
-0.000532227
-0.000424906
-0.000322105
-0.000225803
-0.000138576
-6.34564e-05
-4.10956e-06
3.46477e-05
4.67301e-05
2.58184e-05
-3.34917e-05
-0.00013462
-0.000278462
-0.000462959
-0.000683239
-0.000931843
-0.00120175
-0.00148014
-0.00175671
-0.0020291
-0.0022834
-0.00250272
-0.00267294
-0.00278546
-0.0028366
-0.00208085
-0.00208261
-0.00208285
-0.00208085
-0.00207651
-0.0020696
-0.00205974
-0.00204637
-0.00202888
-0.00200647
-0.00197818
-0.00194266
-0.00189833
-0.00184337
-0.00177607
-0.00169499
-0.00159944
-0.00148981
-0.0013679
-0.00123707
-0.00110183
-0.000967138
-0.000837203
-0.000714665
-0.00060011
-0.000492893
-0.00039261
-0.000299395
-0.000214539
-0.000140272
-7.91742e-05
-3.42385e-05
-9.0379e-06
-7.86222e-06
-3.52055e-05
-9.49322e-05
-0.000189313
-0.000318244
-0.000478899
-0.000666223
-0.000873627
-0.00109459
-0.00132095
-0.00154549
-0.00176331
-0.00196463
-0.00213765
-0.00227187
-0.00236071
-0.00240147
-0.00195861
-0.00195968
-0.00195915
-0.00195633
-0.00195125
-0.00194362
-0.00193305
-0.00191912
-0.00190136
-0.00187917
-0.00185182
-0.00181824
-0.00177712
-0.00172697
-0.00166629
-0.00159374
-0.00150844
-0.00141028
-0.00130013
-0.00118012
-0.0010537
-0.000925262
-0.000799068
-0.000678429
-0.000565407
-0.000460585
-0.000364131
-0.000276502
-0.00019868
-0.000132456
-7.99664e-05
-4.36045e-05
-2.60614e-05
-3.03674e-05
-5.95896e-05
-0.000116315
-0.000201979
-0.000316125
-0.000455945
-0.000616522
-0.000791707
-0.000975631
-0.0011621
-0.00134565
-0.00152157
-0.00168302
-0.00182187
-0.00193038
-0.00200328
-0.00203826
-0.00183793
-0.00183843
-0.00183727
-0.00183382
-0.00182812
-0.00181992
-0.00180882
-0.00179451
-0.00177659
-0.00175466
-0.00172818
-0.00169628
-0.00165787
-0.00161178
-0.00155684
-0.00149185
-0.00141588
-0.00132853
-0.00123007
-0.00112173
-0.00100589
-0.000886055
-0.000766166
-0.000649645
-0.000539176
-0.000436434
-0.000342324
-0.000257734
-0.000183701
-0.000121716
-7.35555e-05
-4.11308e-05
-2.64946e-05
-3.1815e-05
-5.91446e-05
-0.00011011
-0.000185537
-0.000284869
-0.000405634
-0.000543461
-0.000692796
-0.000848206
-0.00100446
-0.00115695
-0.0013016
-0.00143361
-0.00154745
-0.00163761
-0.00169993
-0.00173231
-0.00171882
-0.00171886
-0.00171719
-0.0017133
-0.00170717
-0.00169858
-0.00168714
-0.00167262
-0.00165472
-0.00163317
-0.00160756
-0.00157715
-0.00154112
-0.00149853
-0.00144849
-0.00139007
-0.00132241
-0.00124489
-0.00115748
-0.0010608
-0.000956422
-0.000846862
-0.000735395
-0.000625277
-0.000519266
-0.000419589
-0.000327846
-0.000245364
-0.000173408
-0.000113366
-6.67643e-05
-3.51441e-05
-2.01157e-05
-2.32878e-05
-4.60537e-05
-8.93533e-05
-0.000153565
-0.00023816
-0.000341133
-0.000458776
-0.000586381
-0.000719029
-0.000852022
-0.000981173
-0.00110291
-0.00121368
-0.00130962
-0.00138686
-0.00144226
-0.00147396
-0.00160138
-0.00160103
-0.00159899
-0.0015948
-0.00158838
-0.0015796
-0.00156808
-0.00155356
-0.00153589
-0.00151489
-0.00149021
-0.00146124
-0.00142736
-0.0013879
-0.00134212
-0.00128932
-0.00122885
-0.00116009
-0.00108277
-0.000997147
-0.000904194
-0.000805677
-0.000704081
-0.000602205
-0.000502616
-0.000407668
-0.000319371
-0.000239377
-0.000169195
-0.000110253
-6.39364e-05
-3.15509e-05
-1.44013e-05
-1.37256e-05
-3.0496e-05
-6.52354e-05
-0.000118048
-0.000188449
-0.00027485
-0.000374289
-0.000482928
-0.000596504
-0.000710838
-0.000822055
-0.000926828
-0.00102226
-0.00110551
-0.0011738
-0.00122477
-0.00125688
-0.00148569
-0.00148503
-0.00148274
-0.00147835
-0.00147182
-0.001463
-0.00145159
-0.0014373
-0.00142006
-0.00139976
-0.00137613
-0.00134864
-0.00131681
-0.00128019
-0.00123825
-0.00119042
-0.00113612
-0.00107495
-0.00100661
-0.000931091
-0.000848967
-0.000761447
-0.000670339
-0.000577827
-0.000486202
-0.000397676
-0.000314314
-0.000237929
-0.000170201
-0.000112647
-6.65901e-05
-3.31703e-05
-1.34853e-05
-8.56189e-06
-1.91277e-05
-4.54768e-05
-8.75249e-05
-0.00014484
-0.000216184
-0.000299291
-0.000391103
-0.000488137
-0.000586737
-0.000683392
-0.000775013
-0.000858997
-0.00093303
-0.000994974
-0.00104303
-0.00107587
-0.00137177
-0.0013709
-0.00136846
-0.00136396
-0.00135747
-0.00134879
-0.00133761
-0.00132376
-0.00130714
-0.0012877
-0.0012652
-0.00123923
-0.00120943
-0.00117551
-0.00113708
-0.00109368
-0.00104484
-0.000990233
-0.000929715
-0.000863224
-0.000791021
-0.00071384
-0.000633135
-0.000550454
-0.0004677
-0.000386836
-0.000309777
-0.000238321
-0.000174206
-0.000118974
-7.38982e-05
-4.00248e-05
-1.83352e-05
-9.73716e-06
-1.47974e-05
-3.36775e-05
-6.62363e-05
-0.000112073
-0.0001702
-0.00023895
-0.000315927
-0.000398375
-0.000483257
-0.000567458
-0.000648154
-0.000722943
-0.000789769
-0.000846818
-0.000892594
-0.000925969
-0.00125965
-0.00125862
-0.00125616
-0.0012517
-0.00124535
-0.00123691
-0.00122615
-0.00121289
-0.00119705
-0.00117858
-0.00115732
-0.00113297
-0.00110522
-0.00107386
-0.00103866
-0.000999256
-0.000955286
-0.000906499
-0.000852816
-0.000794236
-0.000730876
-0.00066323
-0.000592302
-0.0005193
-0.000445718
-0.000373191
-0.00030339
-0.000237961
-0.000178575
-0.000126743
-8.36769e-05
-5.03542e-05
-2.76684e-05
-1.64413e-05
-1.71924e-05
-2.99945e-05
-5.46734e-05
-9.08653e-05
-0.000137852
-0.00019434
-0.000258508
-0.000328187
-0.000400937
-0.000474122
-0.000545222
-0.000612011
-0.000672588
-0.000725316
-0.000768855
-0.000802195
-0.00114939
-0.00114826
-0.00114577
-0.00114145
-0.00113535
-0.00112727
-0.00111702
-0.00110446
-0.00108952
-0.00107219
-0.00105233
-0.00102967
-0.001004
-0.000975176
-0.000943025
-0.000907301
-0.000867729
-0.000824141
-0.000776505
-0.00072489
-0.000669363
-0.000610248
-0.000548276
-0.000484389
-0.000419778
-0.000355734
-0.000293625
-0.000234888
-0.00018104
-0.000133503
-9.34126e-05
-6.16693e-05
-3.91041e-05
-2.64547e-05
-2.42046e-05
-3.24221e-05
-5.09287e-05
-7.94075e-05
-0.000117319
-0.000163648
-0.000217004
-0.000275716
-0.000337832
-0.000401164
-0.00046354
-0.000522963
-0.000577659
-0.000626118
-0.000667096
-0.000699646
-0.00104095
-0.00103972
-0.00103727
-0.00103316
-0.00102732
-0.00101969
-0.00101005
-0.000998293
-0.00098435
-0.000968261
-0.000949923
-0.000929085
-0.000905537
-0.000879229
-0.000850042
-0.000817807
-0.000782308
-0.000743457
-0.000701251
-0.000655804
-0.000607214
-0.000555695
-0.000501797
-0.000446282
-0.00039009
-0.00033423
-0.000279781
-0.000227954
-0.000180067
-0.000137402
-0.000101
-7.16878e-05
-5.02107e-05
-3.72424e-05
-3.32402e-05
-3.82859e-05
-5.22137e-05
-7.47589e-05
-0.000105488
-0.000143625
-0.000188065
-0.000237498
-0.000290381
-0.000344933
-0.000399304
-0.000451754
-0.00050068
-0.000544692
-0.000582633
-0.000613599
-0.000934185
-0.000932846
-0.000930446
-0.000926567
-0.000921098
-0.00091396
-0.000905012
-0.000894113
-0.000881266
-0.00086652
-0.000849802
-0.0008309
-0.000809575
-0.000785762
-0.000759457
-0.000730592
-0.000698975
-0.000664537
-0.000627317
-0.000587431
-0.000545031
-0.000500308
-0.000453667
-0.000405724
-0.000357232
-0.000309
-0.000261873
-0.00021681
-0.000174926
-0.000137363
-0.000105058
-7.87439e-05
-5.90768e-05
-4.66766e-05
-4.1964e-05
-4.50375e-05
-5.57349e-05
-7.38505e-05
-9.90179e-05
-0.000130615
-0.000167773
-0.000209439
-0.000254356
-0.000301098
-0.000348129
-0.000393963
-0.0004372
-0.000476583
-0.000511047
-0.000539741
-0.000828735
-0.000827344
-0.000825063
-0.000821428
-0.000816384
-0.000809816
-0.000801652
-0.000791743
-0.000780074
-0.000766759
-0.000751729
-0.000734807
-0.000715756
-0.000694495
-0.00067106
-0.000645469
-0.000617605
-0.000587359
-0.000554806
-0.000520077
-0.000483314
-0.000444703
-0.00040458
-0.00036346
-0.000321945
-0.000280679
-0.000240331
-0.00020165
-0.000165557
-0.000133038
-0.000104938
-8.1906e-05
-6.45053e-05
-5.32851e-05
-4.86284e-05
-5.06327e-05
-5.91532e-05
-7.3989e-05
-9.48534e-05
-0.000121234
-0.000152407
-0.000187535
-0.000225589
-0.000265411
-0.000305761
-0.000345396
-0.000383119
-0.000417817
-0.000448531
-0.000474482
-0.000724395
-0.000722992
-0.000720869
-0.000717561
-0.00071299
-0.000707102
-0.000699807
-0.000691034
-0.000680675
-0.000668836
-0.00065552
-0.000640597
-0.000623826
-0.000605163
-0.000584651
-0.000562325
-0.000538114
-0.000511906
-0.000483782
-0.000453874
-0.000422312
-0.000389283
-0.000355072
-0.000320103
-0.000284879
-0.000249941
-0.000215812
-0.000183038
-0.000152355
-0.000124631
-0.000100633
-8.09149e-05
-6.59661e-05
-5.62746e-05
-5.21807e-05
-5.37313e-05
-6.08075e-05
-7.32023e-05
-9.06627e-05
-0.000112794
-0.00013899
-0.00016855
-0.000200666
-0.000234396
-0.000268736
-0.000302656
-0.000335147
-0.000365255
-0.000392137
-0.00041509
-0.000620842
-0.000619596
-0.000617761
-0.000614886
-0.000610816
-0.000605689
-0.0005994
-0.000591847
-0.000582913
-0.000572626
-0.00056105
-0.000548118
-0.000533653
-0.000517602
-0.000500008
-0.000481078
-0.000460386
-0.000438093
-0.000414196
-0.000388822
-0.00036211
-0.000334241
-0.000305448
-0.000276088
-0.000246598
-0.000217421
-0.000188956
-0.000161605
-0.000135936
-0.000112672
-9.251e-05
-7.59707e-05
-6.34964e-05
-5.5492e-05
-5.22419e-05
-5.37313e-05
-5.98272e-05
-7.03446e-05
-8.505e-05
-0.000103621
-0.000125591
-0.000150375
-0.000177326
-0.000205689
-0.000234646
-0.000263347
-0.000290952
-0.000316661
-0.00033975
-0.000359601
-0.000518173
-0.000517138
-0.000515803
-0.000513357
-0.000509812
-0.000505458
-0.000500238
-0.000494015
-0.000486562
-0.000477871
-0.000468071
-0.000457145
-0.000445022
-0.000431646
-0.000417076
-0.000401309
-0.000384173
-0.000365682
-0.000345844
-0.000324784
-0.00030264
-0.000279603
-0.000255873
-0.000231718
-0.000207503
-0.000183602
-0.000160331
-0.000137961
-0.000116908
-9.77703e-05
-8.11484e-05
-6.75294e-05
-5.73953e-05
-5.11453e-05
-4.88939e-05
-5.05701e-05
-5.6001e-05
-6.50027e-05
-7.74054e-05
-9.29423e-05
-0.000111257
-0.000131886
-0.000154298
-0.000177887
-0.000201992
-0.00022592
-0.00024898
-0.000270508
-0.0002899
-0.000306636
-0.000416479
-0.000415694
-0.00041478
-0.00041283
-0.000409915
-0.000406333
-0.000402158
-0.00039726
-0.000391299
-0.000384252
-0.00037622
-0.000367347
-0.000357595
-0.000346911
-0.000335371
-0.000322802
-0.000309122
-0.000294306
-0.000278374
-0.000261472
-0.000243745
-0.000225346
-0.000206418
-0.000187174
-0.000167915
-0.000148917
-0.000130423
-0.00011263
-9.58183e-05
-8.04458e-05
-6.70284e-05
-5.60079e-05
-4.79813e-05
-4.3447e-05
-4.23716e-05
-4.444e-05
-4.94363e-05
-5.72007e-05
-6.76293e-05
-8.05366e-05
-9.56375e-05
-0.000112571
-0.000130919
-0.000150198
-0.000169879
-0.000189402
-0.000208211
-0.000225771
-0.000241594
-0.000255264
-0.000315745
-0.000315186
-0.000314477
-0.000313129
-0.000310992
-0.000308225
-0.000305058
-0.000301356
-0.000296846
-0.000291462
-0.000285246
-0.000278467
-0.000271127
-0.000263133
-0.000254533
-0.00024512
-0.000234833
-0.000223634
-0.000211535
-0.000198691
-0.000185277
-0.000171427
-0.000157203
-0.000142706
-0.000128145
-0.000113735
-9.96581e-05
-8.60407e-05
-7.30581e-05
-6.10489e-05
-5.04145e-05
-4.15341e-05
-3.53e-05
-3.25251e-05
-3.29234e-05
-3.56602e-05
-4.04457e-05
-4.72199e-05
-5.59366e-05
-6.65057e-05
-7.87309e-05
-9.23334e-05
-0.000106989
-0.000122326
-0.000137931
-0.000153364
-0.00016819
-0.000182
-0.000194418
-0.000205125
-0.000215881
-0.000215433
-0.000215007
-0.000214239
-0.000212875
-0.000211017
-0.000208828
-0.000206256
-0.000203136
-0.000199424
-0.00019514
-0.000190505
-0.000185548
-0.000180227
-0.000174615
-0.000168337
-0.000161377
-0.000153758
-0.000145511
-0.000136747
-0.00012764
-0.000118305
-0.000108726
-9.8873e-05
-8.88276e-05
-7.87279e-05
-6.8711e-05
-5.88589e-05
-4.92542e-05
-4.00302e-05
-3.13816e-05
-2.36123e-05
-1.85776e-05
-1.78423e-05
-2.08507e-05
-2.47314e-05
-2.95215e-05
-3.55127e-05
-4.27708e-05
-5.12722e-05
-6.09177e-05
-7.15203e-05
-8.28344e-05
-9.45783e-05
-0.000106444
-0.000118106
-0.000129241
-0.000139555
-0.000148773
-0.000156666
-0.00011667
-0.000115947
-0.000115879
-0.000115727
-0.000115225
-0.000114337
-0.000113124
-0.000111659
-0.000109873
-0.000107791
-0.000105498
-0.000103153
-0.000100707
-9.80887e-05
-9.53828e-05
-9.23721e-05
-8.88887e-05
-8.48988e-05
-8.05065e-05
-7.58805e-05
-7.11491e-05
-6.63563e-05
-6.14163e-05
-5.6159e-05
-5.04991e-05
-4.4508e-05
-3.82924e-05
-3.18435e-05
-2.5115e-05
-1.7924e-05
-1.0192e-05
-2.22292e-06
4.82212e-06
1.94642e-06
-6.87226e-06
-1.27491e-05
-1.75804e-05
-2.27804e-05
-2.86425e-05
-3.52201e-05
-4.24727e-05
-5.02879e-05
-5.84995e-05
-6.69065e-05
-7.52935e-05
-8.34384e-05
-9.11244e-05
-9.81553e-05
-0.000104354
-0.00010957
-3.40818e-05
-3.36621e-05
-3.37891e-05
-3.39888e-05
-3.40992e-05
-3.39963e-05
-3.36257e-05
-3.3086e-05
-3.24354e-05
-3.17585e-05
-3.11578e-05
-3.07186e-05
-3.03638e-05
-2.99966e-05
-2.96124e-05
-2.92268e-05
-2.85785e-05
-2.76538e-05
-2.65302e-05
-2.5367e-05
-2.4281e-05
-2.32667e-05
-2.21837e-05
-2.08199e-05
-1.89915e-05
-1.66683e-05
-1.39344e-05
-1.07571e-05
-6.98396e-06
-2.28768e-06
3.72322e-06
1.0813e-05
2.10973e-05
1.97426e-05
4.32978e-06
-2.06261e-06
-5.5496e-06
-8.6485e-06
-1.18911e-05
-1.53803e-05
-1.91176e-05
-2.30604e-05
-2.71303e-05
-3.12228e-05
-3.52289e-05
-3.90431e-05
-4.25635e-05
-4.57e-05
-4.83746e-05
-5.05215e-05
40.1132
40.1006
40.0956
40.1055
40.1408
40.215
40.3442
40.5477
40.8499
41.2836
41.8938
42.7608
43.9976
45.9045
49.2424
11.3788
-0.060758
-0.0299814
-0.0269727
-0.0230206
-0.0191244
-0.0159
-0.0132921
-0.0111964
-0.00953389
-0.00822239
-0.00718588
-0.00635823
-0.00568748
-0.00513541
-0.00467496
-0.00428699
-0.00395755
-0.00367655
-0.00343671
-0.00323282
-0.00306101
-0.00291825
-0.00280194
-0.00270956
-0.00263843
-0.00258561
-0.00254813
-0.00252319
-0.00250845
-0.00250198
-0.00250229
-0.00250849
-0.0025205
-0.00253548
40.1094
40.0925
40.0808
40.0817
40.1056
40.1665
40.2811
40.4695
40.7574
41.1777
41.7694
42.5495
43.5029
44.5262
45.0521
6.25551
-0.0663483
-0.0249648
-0.0241139
-0.0213187
-0.0179431
-0.0150442
-0.0126264
-0.0106663
-0.00911811
-0.00789749
-0.00693175
-0.006157
-0.00552355
-0.00499593
-0.00455013
-0.00417011
-0.00384473
-0.00356603
-0.00332804
-0.00312611
-0.00295647
-0.00281595
-0.00270176
-0.00261123
-0.0025416
-0.00248993
-0.00245326
-0.00242892
-0.0024146
-0.00240845
-0.00240898
-0.00241535
-0.00242748
-0.00244245
40.1049
40.0793
40.0529
40.0328
40.0292
40.0555
40.1285
40.2679
40.5018
40.8665
41.4037
42.1321
42.9827
43.5206
40.6121
1.05603
-0.0539659
-0.019552
-0.0204577
-0.0186501
-0.0159954
-0.0136768
-0.0115506
-0.00978916
-0.00843595
-0.00737127
-0.0065255
-0.00583943
-0.00526914
-0.00478496
-0.00436832
-0.00400768
-0.00369551
-0.00342638
-0.00319593
-0.00300038
-0.00283633
-0.00270071
-0.00259074
-0.00250374
-0.00243694
-0.00238745
-0.00235241
-0.00232925
-0.0023158
-0.00231025
-0.00231117
-0.00231773
-0.00232986
-0.00234461
40.1054
40.0669
40.0178
39.9647
39.9168
39.8858
39.8885
39.9407
40.0749
40.3397
40.8075
41.5623
42.6991
44.2095
33.5257
-0.376748
-0.00632743
-0.0137348
-0.0155116
-0.0146572
-0.0133423
-0.0119954
-0.01011
-0.0085994
-0.00751889
-0.00667586
-0.0059987
-0.00543118
-0.00494347
-0.00451646
-0.00413949
-0.00380682
-0.00351498
-0.0032613
-0.00304314
-0.00285772
-0.00270219
-0.00257377
-0.00246984
-0.00238783
-0.00232503
-0.00227865
-0.00224596
-0.00222454
-0.00221236
-0.00220768
-0.00220913
-0.0022159
-0.00222792
-0.00224224
40.1196
40.0642
39.9849
39.8868
39.7778
39.6671
39.566
39.4891
39.4675
39.5646
39.8889
40.5934
42.016
45.2708
17.249
0.00571683
-0.0022129
-0.0097231
-0.0113137
-0.0111564
-0.0108317
-0.0103719
-0.00789589
-0.00710215
-0.00634258
-0.00583799
-0.0053932
-0.00496624
-0.00457157
-0.00420812
-0.00387599
-0.00357618
-0.00330934
-0.0030753
-0.00287303
-0.0027007
-0.00255605
-0.00243671
-0.00234033
-0.00226451
-0.00220669
-0.00216421
-0.0021345
-0.00211533
-0.00210477
-0.0021012
-0.00210329
-0.00211027
-0.00212206
-0.0021358
40.1582
40.0825
39.9657
39.8114
39.6243
39.4103
39.1737
38.9222
38.6845
38.5383
38.5999
38.9702
39.8584
36.4124
6.56157
-0.0355103
-0.00867484
-0.00815786
-0.00496726
-0.00850499
-0.00800727
-0.00237755
0.0110091
-0.000512882
-0.00483143
-0.00497811
-0.0047808
-0.0044925
-0.0041845
-0.00387999
-0.0035911
-0.00332488
-0.00308504
-0.00287314
-0.00268918
-0.00253205
-0.00240006
-0.00229126
-0.00220362
-0.00213497
-0.00208291
-0.00204496
-0.00201876
-0.00200225
-0.00199362
-0.00199135
-0.00199419
-0.00200138
-0.00201284
-0.00202582
40.2336
40.1343
39.9736
39.7519
39.4701
39.129
38.7247
38.255
37.7519
37.3178
37.07
36.9315
36.1071
14.3823
2.84851
0.0306894
0.0054775
-0.00155344
-0.00284155
-0.00426697
-0.0043892
0.000373784
0.0127926
0.0106748
-0.00190951
-0.00445897
-0.00433434
-0.0040895
-0.00381943
-0.0035513
-0.00329631
-0.00306069
-0.0028478
-0.00265917
-0.00249499
-0.0023545
-0.00223642
-0.00213923
-0.00206122
-0.00200045
-0.00195475
-0.00192184
-0.00189957
-0.00188604
-0.00187959
-0.00187879
-0.00188244
-0.00188983
-0.00190087
-0.00191298
40.3587
40.2332
40.0228
39.723
39.3292
38.8351
38.2308
37.5129
36.7258
36.0109
35.6176
35.6821
26.9569
5.90309
1.15347
0.0653739
0.0149247
0.00340506
0.00102659
-0.000652705
-0.00117243
0.00184567
0.0124313
0.0148309
-0.0011455
-0.00458416
-0.00412912
-0.0037805
-0.00348236
-0.0032251
-0.00299501
-0.00278739
-0.00260135
-0.00243679
-0.00229341
-0.00217056
-0.00206727
-0.00198242
-0.00191465
-0.00186228
-0.00182336
-0.00179586
-0.00177782
-0.00176753
-0.00176344
-0.00176421
-0.00176873
-0.00177631
-0.00178687
-0.00179802
40.5473
40.3928
40.1299
39.7435
39.219
38.5467
37.7164
36.7385
35.6512
34.5974
34.0575
31.0135
14.0159
3.43097
0.0595623
0.125907
0.01014
0.00217478
0.000709003
-0.000281844
-0.000626481
4.83942e-05
0.0145566
0.0161552
-0.00196703
-0.00399697
-0.00364145
-0.00334413
-0.00309198
-0.0028735
-0.00267898
-0.00250413
-0.00234748
-0.00220853
-0.00208702
-0.00198255
-0.00189465
-0.00182262
-0.00176546
-0.00172179
-0.00168992
-0.00166805
-0.00165446
-0.00164757
-0.00164596
-0.00164839
-0.00165381
-0.00166158
-0.00167161
-0.00168172
40.8134
40.6273
40.3178
39.8477
39.1824
38.3171
37.2489
35.9662
34.4265
32.7707
31.4605
18.209
3.58897
-0.0717706
0.00768304
0.0263356
-0.0139856
-0.00316335
-0.000587085
-0.000435259
-0.0007695
-0.00165747
9.11701e-05
0.00146476
-0.00402613
-0.003521
-0.00312558
-0.00288029
-0.00268056
-0.00250711
-0.00235336
-0.00221477
-0.00208963
-0.00197749
-0.0018785
-0.00179285
-0.0017206
-0.00166159
-0.0016152
-0.00158036
-0.00155565
-0.00153952
-0.00153046
-0.00152704
-0.00152798
-0.0015321
-0.00153844
-0.0015464
-0.00155586
-0.00156491
41.1695
40.9469
40.6202
40.1012
39.3029
38.2599
37.0137
35.3718
33.1373
30.3376
22.0635
5.75385
0.217482
0.0391065
0.0161424
0.00721853
-9.65811e-05
0.000842057
0.00102334
0.000523163
-0.000154827
-0.000956648
-0.0017032
-0.00220417
-0.00279959
-0.00265016
-0.00249759
-0.00235939
-0.00223931
-0.00212733
-0.00202232
-0.00192367
-0.00183161
-0.00174693
-0.00167067
-0.00160386
-0.00154715
-0.00150111
-0.00146542
-0.00143934
-0.00142175
-0.00141134
-0.00140681
-0.00140687
-0.00141035
-0.00141615
-0.00142341
-0.00143156
-0.00144044
-0.00144841
41.6159
41.3364
41.0784
40.6215
39.6985
38.5133
37.4218
35.5876
30.9369
20.1321
4.8532
-0.105855
0.058316
0.0398193
0.022652
0.0146927
0.00628324
0.00401978
0.00261422
0.00156179
0.000607021
-0.000177603
-0.000947065
-0.00142713
-0.00178328
-0.00187767
-0.00187759
-0.00184702
-0.00180388
-0.00175284
-0.00169677
-0.00163791
-0.00157845
-0.00152058
-0.00146641
-0.00141785
-0.00137637
-0.0013429
-0.00131762
-0.00130007
-0.00128943
-0.00128461
-0.00128449
-0.00128795
-0.0012939
-0.00130135
-0.0013095
-0.00131782
-0.00132613
-0.00133304
42.1116
41.6818
41.7115
41.6201
40.4602
38.9109
39.0112
32.5126
14.4266
3.75848
0.100507
0.0245942
0.126582
0.0250573
0.0154425
0.0116343
0.00754222
0.00513469
0.00343327
0.00231036
0.0012058
0.000231646
-0.000322278
-0.000747329
-0.00105956
-0.0012307
-0.00132343
-0.00137345
-0.00139562
-0.0013984
-0.00138677
-0.00136454
-0.00133525
-0.00130225
-0.00126866
-0.00123722
-0.00121008
-0.00118856
-0.00117319
-0.0011638
-0.00115979
-0.00116032
-0.00116443
-0.00117113
-0.00117945
-0.00118847
-0.00119746
-0.00120594
-0.00121368
-0.00121956
42.5277
41.576
42.4971
43.7869
41.8676
34.7681
23.4836
12.7693
3.05483
0.287021
0.100181
0.0757772
0.0177848
0.00753956
0.00949609
0.00945086
0.00737423
0.00553458
0.00419298
0.0032134
0.00217319
0.00106489
0.000223015
-0.000152565
-0.000471416
-0.000691075
-0.000844557
-0.000952467
-0.0010264
-0.00107376
-0.00109988
-0.00110927
-0.00110633
-0.0010953
-0.00108012
-0.00106421
-0.00105017
-0.00103968
-0.0010335
-0.0010317
-0.00103389
-0.00103942
-0.00104751
-0.00105725
-0.00106777
-0.00107825
-0.00108802
-0.00109663
-0.00110383
-0.0011087
42.6059
39.6795
43.1692
44.5378
27.1234
2.11095
-1.46703
1.85488
-0.3332
0.00866778
0.0782432
0.0437028
0.0269277
0.0128836
0.00990748
0.00866043
0.00709866
0.00569425
0.00466198
0.024346
0.0141998
0.00182256
0.000825862
0.000386243
3.46082e-05
-0.000232704
-0.000434818
-0.000587936
-0.000702195
-0.000784765
-0.000841095
-0.000876163
-0.000894975
-0.000902428
-0.000903056
-0.000900715
-0.000898307
-0.000897694
-0.000899805
-0.000904884
-0.000912724
-0.000922833
-0.000934537
-0.000947058
-0.000959588
-0.000971383
-0.000981846
-0.000990573
-0.0009973
-0.00100111
23.7981
12.6327
4.96323
1.83671
0.523426
0.312126
0.250686
0.0298545
-0.0350403
-0.0189497
-0.00654519
0.0153092
0.0143219
0.0104102
0.00874239
0.00761657
0.00649026
0.00555562
0.0122782
0.0297335
0.029877
0.0104411
0.00129784
0.000819743
0.000436773
0.000136438
-9.94169e-05
-0.000284133
-0.000427019
-0.000534953
-0.000613456
-0.000667809
-0.000703416
-0.000725588
-0.000739188
-0.000748271
-0.000755833
-0.000763798
-0.00077318
-0.000784337
-0.00079719
-0.000811368
-0.000826297
-0.000841275
-0.000855566
-0.000868503
-0.000879555
-0.000888366
-0.000894699
-0.000897403
-0.044884
-0.0470601
-0.0623547
-0.0684755
-0.0246723
0.0951872
0.0755319
0.0390338
-0.0144168
-0.0162628
-0.00895672
0.0066024
0.00817056
0.00737278
0.00689007
0.00626482
0.00553732
0.00492729
0.0154174
0.029635
0.0289831
0.0128943
0.00170527
0.00114491
0.000734294
0.000414716
0.000159519
-4.27617e-05
-0.000202217
-0.000325536
-0.000418132
-0.000485381
-0.000532849
-0.000565979
-0.000589688
-0.000607982
-0.00062378
-0.000638948
-0.000654507
-0.000670874
-0.00068805
-0.000705747
-0.000723454
-0.000740529
-0.0007563
-0.000770177
-0.000781696
-0.000790508
-0.000796305
-0.000798525
-0.0109857
-0.0055791
-0.0136175
-0.0269089
-0.0212517
0.00425434
0.00617768
0.0127069
-0.0024518
-0.00801182
-0.00326785
0.00528207
0.0062597
0.0048814
0.00511239
0.00489278
0.0044482
0.00388353
0.00388174
0.0281083
0.014667
0.00296442
0.00177139
0.0012859
0.000903552
0.000593503
0.000341325
0.000137366
-2.64212e-05
-0.000155475
-0.000254551
-0.000328762
-0.000383516
-0.000424093
-0.000455182
-0.000480536
-0.000502845
-0.000523831
-0.000544455
-0.00056514
-0.000585926
-0.000606559
-0.000626563
-0.000645341
-0.00066229
-0.000676893
-0.000688744
-0.000697514
-0.00070286
-0.000704561
-0.0171833
-0.0151744
-0.0176298
-0.0207944
-0.0159931
-0.00368466
0.00260696
0.00398265
-0.00079039
-0.00264595
-0.00215802
0.00570062
0.0043958
0.00335555
0.00381496
0.0037415
0.00349645
0.00299571
0.00294072
0.00348169
0.00282112
0.0019979
0.00159926
0.00125374
0.000948613
0.000682305
0.000454538
0.000262915
0.00010519
-2.14291e-05
-0.000120563
-0.000196715
-0.00025484
-0.000299786
-0.000335799
-0.000366219
-0.000393407
-0.000418874
-0.000443477
-0.000467602
-0.000491277
-0.000514244
-0.000536042
-0.000556117
-0.000573932
-0.000589039
-0.000601087
-0.000609766
-0.000614719
-0.000615939
-0.0170011
-0.016004
-0.0161468
-0.0156362
-0.0114409
-0.00492822
-0.00113283
0.000605952
-0.00047538
-0.00130548
-0.000729456
0.00271309
0.0018671
0.00231748
0.00278223
0.00289538
0.00277521
0.00248882
0.00237674
0.00228549
0.00201842
0.00167541
0.00144194
0.00119205
0.000946842
0.000720075
0.000519118
0.000345729
0.000200302
8.16832e-05
-1.28522e-05
-8.71579e-05
-0.000145589
-0.000192395
-0.000231241
-0.000264964
-0.000295547
-0.00032426
-0.000351823
-0.000378543
-0.000404396
-0.000429092
-0.000452177
-0.000473142
-0.000491515
-0.000506909
-0.00051902
-0.000527565
-0.000532175
-0.000532995
-0.0146332
-0.0139069
-0.0132847
-0.0119543
-0.00899941
-0.00531271
-0.00273705
-0.00109246
-0.000783317
-0.000938991
0.000338364
0.000499549
0.0010451
0.00167464
0.0020663
0.00222764
0.00222914
0.00210643
0.00195768
0.00188349
0.00172864
0.00151945
0.00131593
0.00111521
0.000913733
0.000722262
0.000548425
0.000395923
0.000266295
0.000159105
7.22134e-05
2.36531e-06
-5.41447e-05
-0.000100884
-0.000140875
-0.000176414
-0.000209103
-0.000239962
-0.000269554
-0.000298073
-0.000325414
-0.000351247
-0.000375126
-0.000396589
-0.000415224
-0.000430699
-0.000442757
-0.000451132
-0.000455451
-0.000455956
-0.0121237
-0.0115303
-0.0107653
-0.00950989
-0.00748734
-0.00515687
-0.00325386
-0.0019125
-0.000688414
-1.28197e-05
-0.000310557
0.000350055
0.000807659
0.00124608
0.00156076
0.00173308
0.00178971
0.00176139
0.00168538
0.00161383
0.00150032
0.00135411
0.00119303
0.00102672
0.00085997
0.000699865
0.000552522
0.000421854
0.000309627
0.000215627
0.000138095
7.43118e-05
2.12299e-05
-2.4025e-05
-6.38356e-05
-9.99865e-05
-0.000133709
-0.00016577
-0.000196559
-0.000226139
-0.000254315
-0.000280724
-0.000304934
-0.000326529
-0.000345152
-0.000360525
-0.000372425
-0.000380603
-0.000384682
-0.000384952
-0.0100138
-0.00954564
-0.00884526
-0.0078015
-0.00635582
-0.00475288
-0.00332191
-0.00184852
-0.000221485
0.000101647
-0.000264687
0.000154663
0.000553147
0.000904817
0.00117074
0.00134225
0.00142947
0.00144954
0.00142405
0.0013768
0.00129489
0.00118632
0.0010617
0.000928235
0.000792607
0.000661205
0.000539257
0.000430234
0.000335675
0.00025539
0.000187899
0.000130993
8.22544e-05
3.9468e-05
8.34175e-07
-3.49746e-05
-6.88531e-05
-0.000101322
-0.000132579
-0.000162548
-0.000190959
-0.000217427
-0.000241544
-0.00026294
-0.000281309
-0.000296419
-0.000308074
-0.00031603
-0.000319907
-0.00032001
-0.00828234
-0.00792083
-0.00733934
-0.00651046
-0.00544701
-0.00429255
-0.00323622
-0.00234521
-0.00166138
-0.001019
-0.000498345
-6.43592e-05
0.000306802
0.000616981
0.000856995
0.00102594
0.00112913
0.00117631
0.00118127
0.00115668
0.00110278
0.00102451
0.000929841
0.00082561
0.000718104
0.000613028
0.000514835
0.000426353
0.00034876
0.000281823
0.00022432
0.000174514
0.000130577
9.08809e-05
5.41311e-05
1.93927e-05
-1.39324e-05
-4.61326e-05
-7.72189e-05
-0.000106987
-0.000135098
-0.000161167
-0.000184818
-0.000205725
-0.000223634
-0.000238344
-0.000249674
-0.000257377
-0.00026108
-0.000261071
-0.00687247
-0.00659337
-0.00612808
-0.0054821
-0.00468492
-0.00382635
-0.00301418
-0.00228742
-0.00165921
-0.00110769
-0.000638758
-0.000236122
0.000101992
0.000381539
0.000602717
0.00076661
0.000876825
0.000939495
0.000963792
0.000958236
0.000926403
0.000872438
0.000802924
0.000724158
0.000641736
0.000560449
0.000483879
0.000414193
0.000352214
0.000297681
0.000249621
0.000206741
0.000167734
0.000131469
9.70711e-05
6.39345e-05
3.17244e-05
3.66271e-07
-2.99904e-05
-5.90388e-05
-8.63953e-05
-0.000111677
-0.000134545
-0.000154726
-0.000172001
-0.000186193
-0.000197121
-0.000204533
-0.000208074
-0.000207995
-0.00572021
-0.00550477
-0.00513799
-0.00463717
-0.00403167
-0.00337673
-0.00273339
-0.00213843
-0.00160641
-0.00113193
-0.000717828
-0.000362361
-6.0321e-05
0.000192051
0.000395756
0.000552085
0.000663658
0.000734631
0.000771471
0.000780812
0.000766269
0.000732143
0.000684117
0.000627595
0.000567294
0.000507061
0.000449643
0.000396621
0.000348529
0.00030512
0.000265677
0.000229303
0.000195131
0.000162433
0.00013067
9.95141e-05
6.88602e-05
3.88174e-05
9.66332e-06
-1.82258e-05
-4.44468e-05
-6.86268e-05
-9.0465e-05
-0.000109727
-0.000126228
-0.000139795
-0.000150243
-0.00015732
-0.000160699
-0.000160578
-0.00477178
-0.00460656
-0.00432056
-0.00393299
-0.00346902
-0.00296408
-0.00245619
-0.00197284
-0.00152787
-0.0011245
-0.000766767
-0.000455011
-0.000186524
4.057e-05
0.00022701
0.000373859
0.000483105
0.000557876
0.000602943
0.000623406
0.00062273
0.000605212
0.000575605
0.000538338
0.000497206
0.000455178
0.000414279
0.000375614
0.000339526
0.000305828
0.000274049
0.000243631
0.000214058
0.000184917
0.000155939
0.000127027
9.82705e-05
6.99221e-05
4.23499e-05
1.59708e-05
-8.81156e-06
-3.16495e-05
-5.227e-05
-7.04695e-05
-8.60767e-05
-9.89208e-05
-0.000108812
-0.000115507
-0.000118717
-0.000118577
-0.00399044
-0.00386479
-0.00364419
-0.00334512
-0.00298782
-0.00259634
-0.00219538
-0.00180459
-0.00143631
-0.00109691
-0.000790684
-0.000519253
-0.000282315
-7.94222e-05
8.97163e-05
0.000225852
0.000330545
0.000406211
0.000456561
0.000485402
0.000496137
0.00049258
0.000478591
0.000457689
0.000432799
0.000406122
0.000379098
0.00035249
0.000326535
0.00030114
0.000276053
0.00025099
0.000225699
0.000200012
0.000173877
0.000147386
0.000120778
9.44102e-05
6.87052e-05
4.40956e-05
2.09714e-05
-3.48939e-07
-1.96197e-05
-3.66469e-05
-5.12617e-05
-6.32949e-05
-7.25593e-05
-7.88296e-05
-8.18541e-05
-8.17191e-05
-0.00334979
-0.00325452
-0.00308559
-0.00285534
-0.00257921
-0.00227417
-0.00195695
-0.0016417
-0.00133879
-0.00105485
-0.000794562
-0.000560198
-0.000352923
-0.0001732
-2.11383e-05
0.000103724
0.000202585
0.000277418
0.000330963
0.000366261
0.000386345
0.000394364
0.000393373
0.000386057
0.000374574
0.000360497
0.000344834
0.000328119
0.000310555
0.00029215
0.000272831
0.000252515
0.000231151
0.00020876
0.000185462
0.000161495
0.000137205
0.000113013
8.93693e-05
6.67015e-05
4.53768e-05
2.56869e-05
7.85969e-06
-7.91335e-06
-2.1457e-05
-3.26058e-05
-4.11864e-05
-4.69975e-05
-4.98199e-05
-4.97177e-05
-0.00282549
-0.00275321
-0.0026242
-0.00244706
-0.00223302
-0.00199428
-0.00174265
-0.00148852
-0.00124022
-0.00100387
-0.000783848
-0.000583101
-0.000403252
-0.000245278
-0.000109574
4.09059e-06
9.65995e-05
0.000169481
0.000224827
0.000265043
0.000292615
0.000310021
0.000319563
0.000323197
0.000322458
0.000318443
0.000311857
0.000303103
0.000292381
0.00027979
0.000265386
0.000249233
0.000231431
0.000212146
0.000191631
0.000170226
0.000148345
0.000126442
0.000104969
8.43373e-05
6.48872e-05
4.68902e-05
3.05663e-05
1.61075e-05
3.6909e-06
-6.52269e-06
-1.43811e-05
-1.97112e-05
-2.23184e-05
-2.22792e-05
-0.00239399
-0.00233958
-0.00224138
-0.00210526
-0.00193912
-0.0017518
-0.00155189
-0.00134718
-0.00114426
-0.000948385
-0.000763567
-0.000592685
-0.000437648
-0.00029956
-0.000179041
-7.60404e-05
1.0057e-05
8.03954e-05
0.00013656
0.000180388
0.000213772
0.000238533
0.000256307
0.000268461
0.000276054
0.00027985
0.000280355
0.000277892
0.000272677
0.000264867
0.00025461
0.000242075
0.000227477
0.000211092
0.000193264
0.0001744
0.000154949
0.000135372
0.000116109
9.75417e-05
7.99891e-05
6.37088e-05
4.89176e-05
3.58071e-05
2.45487e-05
1.52934e-05
8.17371e-06
3.33122e-06
9.41565e-07
8.93037e-07
-0.00203524
-0.00199554
-0.00192158
-0.00181751
-0.00168889
-0.00154207
-0.00138342
-0.00121885
-0.00105356
-0.00089192
-0.000737423
-0.000592714
-0.000459726
-0.000339351
-0.000232556
-0.000139381
-5.9426e-05
8.11908e-06
6.43896e-05
0.000110689
0.000148334
0.000178566
0.000202482
0.000220998
0.000234832
0.000244519
0.000250441
0.000252862
0.000252015
0.000248087
0.000241292
0.000231877
0.000220141
0.000206437
0.000191168
0.000174774
0.000157714
0.00014044
0.000123363
0.00010684
9.11678e-05
7.65961e-05
6.33377e-05
5.15789e-05
4.14816e-05
3.31829e-05
2.67938e-05
2.2429e-05
2.0245e-05
2.0096e-05
-0.0017344
-0.00170736
-0.00165307
-0.00157455
-0.00147575
-0.00136128
-0.00123585
-0.00110401
-0.000969851
-0.000836945
-0.00070823
-0.000585985
-0.000471829
-0.000367262
-0.000272644
-0.000188269
-0.000113989
-4.93108e-05
6.47999e-06
5.41999e-05
9.46715e-05
0.00012867
0.00015689
0.000179924
0.000198251
0.000212246
0.000222197
0.000228339
0.000230887
0.000230063
0.000226125
0.000219381
0.000210184
0.000198936
0.000186068
0.000172032
0.000157278
0.000142232
0.000127274
0.000112735
9.88964e-05
8.59963e-05
7.42407e-05
6.38066e-05
5.48441e-05
4.74746e-05
4.17901e-05
3.78779e-05
3.58757e-05
3.56253e-05
-0.00148148
-0.00146549
-0.00142744
-0.00136955
-0.00129469
-0.00120619
-0.00110762
-0.00100245
-0.000893914
-0.000784892
-0.000677807
-0.000574607
-0.000476775
-0.000385457
-0.000301295
-0.000224637
-0.000155521
-9.37572e-05
-3.90045e-05
9.15309e-06
5.11568e-05
8.74428e-05
0.00011842
0.000144452
0.000165846
0.000182858
0.000195702
0.00020458
0.000209702
0.000211314
0.000209709
0.000205232
0.000198272
0.000189251
0.000178608
0.000166788
0.000154216
0.000141286
0.000128346
0.000115704
0.000103622
9.23288e-05
8.2018e-05
7.28553e-05
6.49782e-05
5.84927e-05
5.3471e-05
4.99735e-05
4.81231e-05
4.77774e-05
-0.00126951
-0.00126298
-0.00123829
-0.00119706
-0.00114139
-0.00107375
-0.000996818
-0.000913263
-0.000825632
-0.000736218
-0.000646995
-0.000559604
-0.000475355
-0.00039525
-0.000320006
-0.000250086
-0.000185723
-0.000126984
-7.38231e-05
-2.6116e-05
1.6311e-05
5.36588e-05
8.61347e-05
0.000113936
0.00013724
0.000156208
0.000171001
0.000181793
0.000188797
0.000192278
0.000192553
0.000189986
0.000184979
0.000177958
0.000169353
0.000159582
0.00014904
0.000138085
0.000127036
0.000116178
0.000105754
9.59779e-05
8.70311e-05
7.90669e-05
7.22092e-05
6.65472e-05
6.21337e-05
5.90119e-05
5.72845e-05
5.6852e-05
-0.00109287
-0.00109408
-0.00108013
-0.00105219
-0.00101179
-0.000960758
-0.000901105
-0.000834886
-0.000764085
-0.000690525
-0.000615819
-0.00054135
-0.000468286
-0.000397575
-0.00032997
-0.000266031
-0.000206161
-0.000150621
-9.95636e-05
-5.30588e-05
-1.11121e-05
2.6313e-05
5.92769e-05
8.78511e-05
0.000112115
0.000132163
0.000148116
0.000160138
0.000168448
0.000173321
0.000175085
0.000174111
0.000170797
0.000165554
0.000158787
0.000150882
0.000142195
0.000133054
0.000123749
0.000114541
0.000105656
9.72891e-05
8.96102e-05
8.27592e-05
7.68448e-05
7.19385e-05
6.80778e-05
6.52964e-05
6.36633e-05
6.31535e-05
-0.000946307
-0.0009535
-0.00094791
-0.000930323
-0.000901844
-0.000863816
-0.000817746
-0.000765208
-0.000707747
-0.000646824
-0.000583775
-0.000519805
-0.000455973
-0.000393196
-0.000332246
-0.000273767
-0.000218258
-0.000166099
-0.000117571
-7.2867e-05
-3.21169e-05
4.5974e-06
3.72278e-05
6.57554e-05
9.01925e-05
0.000110591
0.000127053
0.000139741
0.000148879
0.000154745
0.000157668
0.000158007
0.000156143
0.000152457
0.000147325
0.000141085
0.000134065
0.00012656
0.000118837
0.00011113
0.000103648
9.65727e-05
9.00573e-05
8.42277e-05
7.91749e-05
7.49541e-05
7.15934e-05
6.91349e-05
6.75609e-05
6.69899e-05
-0.000824709
-0.000836181
-0.000836764
-0.00082695
-0.00080751
-0.000779422
-0.000743811
-0.000701882
-0.000654856
-0.000603931
-0.000550246
-0.00049487
-0.000438779
-0.000382852
-0.000327859
-0.000274472
-0.000223239
-0.000174607
-0.000128935
-8.64999e-05
-4.75204e-05
-1.21624e-05
1.94538e-05
4.72536e-05
7.12131e-05
9.13657e-05
0.000107809
0.000120705
0.00013028
0.000136808
0.000140604
0.000142006
0.000141362
0.00013901
0.000135309
0.000130523
0.00012497
0.000118915
0.000112599
0.000106237
0.000100019
9.41103e-05
8.86507e-05
8.37477e-05
7.94741e-05
7.58693e-05
7.2942e-05
7.06853e-05
6.92498e-05
6.86675e-05
-0.000723144
-0.00073729
-0.000742083
-0.0007378
-0.000724956
-0.000704254
-0.000676537
-0.00064274
-0.000603854
-0.000560887
-0.000514827
-0.000466625
-0.000417175
-0.000367303
-0.000317746
-0.000269162
-0.000222123
-0.000177115
-0.000134547
-9.4759e-05
-5.80262e-05
-2.45636e-05
5.47309e-06
3.19874e-05
5.49449e-05
7.43763e-05
9.03797e-05
0.000103118
0.000112812
0.000119723
0.000124144
0.000126379
0.000126733
0.000125505
0.00012299
0.000119457
0.000115171
0.000110377
0.000105294
0.00010012
9.50238e-05
9.01597e-05
8.56481e-05
8.15782e-05
7.80057e-05
7.49575e-05
7.24393e-05
7.04496e-05
6.90456e-05
6.85025e-05
-0.000636961
-0.000652364
-0.000659699
-0.00065909
-0.000650861
-0.000635511
-0.000613686
-0.000586132
-0.000553667
-0.000517145
-0.000477426
-0.000435348
-0.000391713
-0.000347277
-0.000302729
-0.000258698
-0.000215762
-0.000174441
-0.000135181
-9.83582e-05
-6.42724e-05
-3.31503e-05
-5.14904e-06
1.96389e-05
4.11853e-05
5.95263e-05
7.47617e-05
8.70507e-05
9.66019e-05
0.000103657
0.000108476
0.00011132
0.000112449
0.000112121
0.000110586
0.000108092
0.000104878
0.000101161
9.71448e-05
9.30078e-05
8.88933e-05
8.4956e-05
8.12873e-05
7.79596e-05
7.50143e-05
7.24676e-05
7.032e-05
6.85642e-05
6.72198e-05
6.67097e-05
-0.000562048
-0.000577576
-0.000586145
-0.000587767
-0.000582637
-0.000571114
-0.000553701
-0.000531008
-0.000503707
-0.000472517
-0.000438175
-0.000401413
-0.000362939
-0.00032343
-0.000283524
-0.000243826
-0.000204916
-0.000167326
-0.000131543
-9.7952e-05
-6.6839e-05
-3.84085e-05
-1.27942e-05
9.93242e-06
2.97582e-05
4.67268e-05
6.09382e-05
7.25428e-05
8.17306e-05
8.87144e-05
9.37143e-05
9.69488e-05
9.86342e-05
9.89878e-05
9.82294e-05
9.65788e-05
9.425e-05
9.14427e-05
8.8341e-05
8.51121e-05
8.18233e-05
7.87096e-05
7.57846e-05
7.31128e-05
7.07259e-05
6.86308e-05
6.68192e-05
6.52767e-05
6.40533e-05
6.34563e-05
-0.000495078
-0.000509917
-0.000518765
-0.00052157
-0.000518449
-0.000509662
-0.000495604
-0.000476764
-0.000453695
-0.000426992
-0.000397283
-0.000365198
-0.000331355
-0.000296355
-0.000260788
-0.000225237
-0.000190277
-0.000156455
-0.000124279
-9.41249e-05
-6.62321e-05
-4.07568e-05
-1.77905e-05
2.62642e-06
2.04994e-05
3.58795e-05
4.8863e-05
5.95861e-05
6.82136e-05
7.49239e-05
7.98967e-05
8.33098e-05
8.53414e-05
8.61754e-05
8.60031e-05
8.50185e-05
8.34119e-05
8.13612e-05
7.90279e-05
7.65524e-05
7.40422e-05
7.1616e-05
6.93322e-05
6.72348e-05
6.53429e-05
6.36558e-05
6.21582e-05
6.08356e-05
5.96823e-05
5.89652e-05
-0.000433564
-0.000447166
-0.000455646
-0.000458918
-0.000457048
-0.00045023
-0.00043876
-0.00042303
-0.000403489
-0.00038063
-0.000354976
-0.000327068
-0.00029744
-0.000266627
-0.000235165
-0.000203597
-0.000172486
-0.000142428
-0.000113937
-8.73599e-05
-6.28695e-05
-4.05476e-05
-2.04256e-05
-2.50648e-06
1.32345e-05
2.68536e-05
3.84388e-05
4.81067e-05
5.59923e-05
6.22384e-05
6.69879e-05
7.03832e-05
7.25711e-05
7.37065e-05
7.39536e-05
7.34807e-05
7.24537e-05
7.10276e-05
6.93415e-05
6.75148e-05
6.56465e-05
6.38198e-05
6.20913e-05
6.04945e-05
5.90405e-05
5.77206e-05
5.65111e-05
5.53809e-05
5.43075e-05
5.3468e-05
-0.000375719
-0.000387744
-0.00039544
-0.000398703
-0.000397565
-0.000392166
-0.00038273
-0.000369563
-0.000353029
-0.000333534
-0.000311511
-0.000287414
-0.0002617
-0.000234832
-0.000207278
-0.00017953
-0.00015213
-0.000125716
-0.000100906
-7.80196e-05
-5.70885e-05
-3.80867e-05
-2.09724e-05
-5.70654e-06
7.75384e-06
1.94654e-05
2.95033e-05
3.79593e-05
4.49374e-05
5.05468e-05
5.48985e-05
5.8106e-05
6.02884e-05
6.1574e-05
6.20998e-05
6.20078e-05
6.14382e-05
6.05218e-05
5.93744e-05
5.80944e-05
5.67631e-05
5.54474e-05
5.41945e-05
5.30309e-05
5.19623e-05
5.09737e-05
5.00336e-05
4.90875e-05
4.8097e-05
4.71609e-05
-0.00032029
-0.000330547
-0.0003372
-0.000340144
-0.000339383
-0.000335019
-0.000327226
-0.000316238
-0.000302348
-0.000285886
-0.000267205
-0.000246675
-0.000224671
-0.000201566
-0.000177738
-0.0001536
-0.000129658
-0.00010665
-8.54529e-05
-6.63734e-05
-4.91704e-05
-3.36612e-05
-1.97137e-05
-7.24487e-06
3.8029e-06
1.34794e-05
2.18397e-05
2.89477e-05
3.48763e-05
3.97048e-05
4.35168e-05
4.64e-05
4.84477e-05
4.97612e-05
5.04502e-05
5.06299e-05
5.04139e-05
4.99075e-05
4.92026e-05
4.83764e-05
4.74935e-05
4.66075e-05
4.57576e-05
4.49651e-05
4.42333e-05
4.35447e-05
4.28707e-05
4.21217e-05
4.12444e-05
4.02534e-05
-0.000266434
-0.000274837
-0.0002803
-0.000282731
-0.00028212
-0.000278542
-0.00027213
-0.000263069
-0.000251586
-0.000237943
-0.000222421
-0.000205304
-0.000186871
-0.000167386
-0.000147106
-0.000126324
-0.000105454
-8.54085e-05
-6.76944e-05
-5.26264e-05
-3.93949e-05
-2.75842e-05
-1.69698e-05
-7.43275e-06
1.08841e-06
8.62542e-06
1.52047e-05
2.08588e-05
2.56305e-05
2.95716e-05
3.27402e-05
3.51985e-05
3.70137e-05
3.82599e-05
3.90197e-05
3.93809e-05
3.94306e-05
3.92482e-05
3.89014e-05
3.84473e-05
3.79351e-05
3.74066e-05
3.68931e-05
3.64124e-05
3.59685e-05
3.55538e-05
3.51724e-05
3.47071e-05
3.39934e-05
3.29904e-05
-0.000213854
-0.000220391
-0.0002246
-0.000226411
-0.000225812
-0.000222858
-0.000217655
-0.000210346
-0.000201109
-0.000190142
-0.000177655
-0.000163845
-0.000148889
-0.000132923
-0.000116039
-9.83094e-05
-7.97988e-05
-6.17222e-05
-4.72018e-05
-3.67035e-05
-2.79311e-05
-2.01413e-05
-1.30648e-05
-6.59777e-06
-7.03761e-07
4.61187e-06
9.33637e-06
1.34667e-05
1.70147e-05
2.00042e-05
2.24668e-05
2.44377e-05
2.59573e-05
2.70726e-05
2.78394e-05
2.83185e-05
2.85699e-05
2.86469e-05
2.85944e-05
2.84503e-05
2.82486e-05
2.80187e-05
2.77833e-05
2.75542e-05
2.73436e-05
2.71576e-05
2.70726e-05
2.69568e-05
2.65997e-05
2.5716e-05
-0.000163041
-0.000167747
-0.000170683
-0.000171802
-0.000171106
-0.000168639
-0.000164488
-0.00015877
-0.000151619
-0.000143181
-0.000133601
-0.000123002
-0.000111464
-9.89903e-05
-8.54091e-05
-7.01891e-05
-5.24903e-05
-3.33498e-05
-2.11439e-05
-1.73553e-05
-1.44994e-05
-1.14955e-05
-8.38871e-06
-5.2551e-06
-2.15919e-06
8.17939e-07
3.60426e-06
6.15092e-06
8.43251e-06
1.044e-05
1.21736e-05
1.36389e-05
1.48473e-05
1.58184e-05
1.65799e-05
1.71642e-05
1.7603e-05
1.79237e-05
1.81488e-05
1.82981e-05
1.83894e-05
1.84368e-05
1.84484e-05
1.84273e-05
1.839e-05
1.83407e-05
1.84941e-05
1.90233e-05
1.94645e-05
1.90616e-05
-0.000113683
-0.0001166
-0.000118261
-0.000118648
-0.000117777
-0.000115696
-0.000112482
-0.000108228
-0.000103038
-9.70188e-05
-9.027e-05
-8.28584e-05
-7.47875e-05
-6.59374e-05
-5.57154e-05
-4.26676e-05
-2.34204e-05
4.41999e-06
1.6231e-05
7.00514e-06
8.80282e-07
-2.07854e-06
-3.56484e-06
-4.14605e-06
-4.09196e-06
-3.61284e-06
-2.86845e-06
-1.96942e-06
-9.88835e-07
2.36966e-08
1.03203e-06
2.00866e-06
2.9339e-06
3.79629e-06
4.59162e-06
5.32019e-06
5.98363e-06
6.58356e-06
7.12191e-06
7.60112e-06
8.0221e-06
8.37933e-06
8.65643e-06
8.82391e-06
8.84853e-06
8.64976e-06
8.61449e-06
1.11489e-05
1.31955e-05
1.37172e-05
-5.2092e-05
-5.30536e-05
-5.33917e-05
-5.31139e-05
-5.22489e-05
-5.08408e-05
-4.89454e-05
-4.66253e-05
-4.39449e-05
-4.09645e-05
-3.77287e-05
-3.42394e-05
-3.04071e-05
-2.59319e-05
-1.9948e-05
-1.02342e-05
9.45656e-06
4.74515e-05
4.47276e-05
2.14629e-05
9.88252e-06
3.72168e-06
-2.65391e-07
-3.00267e-06
-4.82926e-06
-5.99672e-06
-6.68397e-06
-7.01412e-06
-7.07179e-06
-6.91844e-06
-6.6021e-06
-6.16247e-06
-5.63311e-06
-5.04234e-06
-4.41392e-06
-3.76782e-06
-3.12059e-06
-2.48531e-06
-1.87167e-06
-1.2875e-06
-7.42593e-07
-2.55133e-07
1.39855e-07
3.78231e-07
3.5096e-07
-1.05686e-07
-9.39483e-07
7.55172e-07
3.93362e-06
5.03498e-06
)
;
boundaryField
{
leftWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
100
(
-0.00391628
-0.00391692
-0.00391691
-0.00391599
-0.00391402
-0.00391092
-0.00390675
-0.00390158
-0.00389555
-0.00388879
-0.00388146
-0.00387372
-0.00386577
-0.00385783
-0.00385014
-0.00384304
-0.00383671
-0.00383144
-0.00382755
-0.00382537
-0.00382523
-0.00382752
-0.00383256
-0.00384068
-0.00385217
-0.00386728
-0.00388622
-0.00390915
-0.00393619
-0.00396741
-0.00400282
-0.00404237
-0.00408594
-0.00413339
-0.00418447
-0.0042389
-0.00429624
-0.00435599
-0.00441747
-0.00447992
-0.00454247
-0.00460414
-0.00466391
-0.00472072
-0.00477349
-0.00482118
-0.00486279
-0.00489743
-0.00492431
-0.00494275
-0.0049522
-0.00495226
-0.00494261
-0.00492311
-0.00489369
-0.00485444
-0.00480554
-0.0047472
-0.00467975
-0.00460393
-0.00452001
-0.00442848
-0.00432994
-0.00422523
-0.00411497
-0.00399966
-0.00388007
-0.00375719
-0.00363148
-0.00350337
-0.00337348
-0.00324264
-0.00311117
-0.00297934
-0.00284763
-0.00271653
-0.00258645
-0.00245766
-0.00233037
-0.00220475
-0.00208085
-0.00195861
-0.00183793
-0.00171882
-0.00160138
-0.00148569
-0.00137177
-0.00125965
-0.00114939
-0.00104095
-0.000934185
-0.000828735
-0.000724395
-0.000620842
-0.000518173
-0.000416479
-0.000315745
-0.000215881
-0.00011667
-3.40818e-05
)
;
}
rightWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
100
(
-0.00531937
-0.00531433
-0.00530551
-0.00529306
-0.00527715
-0.00525782
-0.00523527
-0.00520943
-0.00517979
-0.00514619
-0.00510884
-0.00506808
-0.0050237
-0.00497526
-0.00492293
-0.00486716
-0.00480812
-0.00474566
-0.00468011
-0.00461214
-0.00454218
-0.00447046
-0.00439732
-0.00432318
-0.00424831
-0.00417307
-0.004098
-0.00402363
-0.0039504
-0.00387878
-0.00380914
-0.00374175
-0.00367665
-0.00361386
-0.00355332
-0.0034949
-0.00343831
-0.00338319
-0.00332926
-0.00327553
-0.00322165
-0.00316698
-0.00311079
-0.0030524
-0.00299114
-0.00292639
-0.00285763
-0.00278443
-0.00270646
-0.0026235
-0.00253548
-0.00244245
-0.00234461
-0.00224224
-0.0021358
-0.00202582
-0.00191298
-0.00179802
-0.00168172
-0.00156491
-0.00144841
-0.00133304
-0.00121956
-0.0011087
-0.00100111
-0.000897403
-0.000798525
-0.000704561
-0.000615939
-0.000532995
-0.000455956
-0.000384952
-0.00032001
-0.000261071
-0.000207995
-0.000160578
-0.000118577
-8.17191e-05
-4.97177e-05
-2.22792e-05
8.93037e-07
2.0096e-05
3.56253e-05
4.77774e-05
5.6852e-05
6.31535e-05
6.69899e-05
6.86675e-05
6.85025e-05
6.67097e-05
6.34563e-05
5.89652e-05
5.3468e-05
4.71609e-05
4.02534e-05
3.29904e-05
2.5716e-05
1.90616e-05
1.37172e-05
5.03498e-06
)
;
}
lowerWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
100
(
-0.00391628
-0.00391468
-0.00391428
-0.00391496
-0.00391656
-0.00391896
-0.00392217
-0.00392625
-0.00393128
-0.00393735
-0.0039446
-0.00395316
-0.00396319
-0.00397491
-0.00398857
-0.00400446
-0.00402286
-0.0040441
-0.00406847
-0.00409622
-0.00412763
-0.00416294
-0.00420237
-0.00424613
-0.00429444
-0.00434746
-0.0044054
-0.0044684
-0.00453661
-0.00461011
-0.00468889
-0.00477285
-0.00486177
-0.0049553
-0.005053
-0.00515435
-0.00525872
-0.00536539
-0.00547359
-0.00558245
-0.00569109
-0.00579858
-0.005904
-0.00600639
-0.00610482
-0.00619838
-0.00628618
-0.00636743
-0.00644142
-0.0065075
-0.00656517
-0.00661401
-0.00665374
-0.0066842
-0.00670537
-0.00671737
-0.00672042
-0.0067149
-0.00670131
-0.00668018
-0.00665218
-0.00661806
-0.00657854
-0.00653384
-0.00648519
-0.00643336
-0.00637909
-0.00632278
-0.00626505
-0.00620655
-0.00614826
-0.00609063
-0.00603412
-0.00597905
-0.00592599
-0.00587527
-0.0058269
-0.0057809
-0.00573731
-0.00569627
-0.00565802
-0.00562259
-0.00558984
-0.00555971
-0.00553208
-0.00550666
-0.00548311
-0.00546132
-0.00544136
-0.00542308
-0.00540639
-0.00539133
-0.00537792
-0.00536606
-0.00535515
-0.00534506
-0.00533606
-0.00532871
-0.00532293
-0.00531937
)
;
}
atmosphere
{
type totalPressure;
rho rho;
psi none;
gamma 1;
p0 uniform 0;
value nonuniform List<scalar>
100
(
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-2.37699e-08
-1.31367e-07
-3.46915e-07
-6.78303e-07
-1.12961e-06
-1.69946e-06
-2.38032e-06
-3.15773e-06
-4.01027e-06
-4.9103e-06
-5.82475e-06
-6.71651e-06
-7.54665e-06
-8.2769e-06
-8.87213e-06
-9.30276e-06
-9.547e-06
-9.59242e-06
-9.43691e-06
-9.08883e-06
-8.56623e-06
-7.89551e-06
-7.10943e-06
-6.24475e-06
-5.33978e-06
-4.43194e-06
-3.55572e-06
-2.74096e-06
-2.01194e-06
-1.38697e-06
-8.78101e-07
-4.90527e-07
-2.22676e-07
-6.82006e-08
-7.42882e-09
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-7.78752e-10
-4.49955e-09
-3.02442e-09
)
;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"stig.m.nilsen@gmail.com"
] | stig.m.nilsen@gmail.com | |
5b0ba1dd678324c727add505acd2fe53cb1e680e | 7dfe581423c87bf47b11bfd4b978d847697511cd | /Bomberman3D/OverlordEngine/ShadowMapMaterial.cpp | 8cd19e59c2731c81bb64735ee5cb7a7ed5544c59 | [] | no_license | WannesVanHooste/Bomberman3D | 00e1caba4d54e7bca499ca1bab4f1eab0600505e | e47d63535b9ac846deb527e1a9a9abcb364e59ef | refs/heads/master | 2020-08-06T21:38:09.838320 | 2019-10-06T12:43:13 | 2019-10-06T12:43:13 | 213,164,399 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,453 | cpp | //Precompiled Header [ALWAYS ON TOP IN CPP]
#include "stdafx.h"
#include "ShadowMapMaterial.h"
#include "ContentManager.h"
ShadowMapMaterial::~ShadowMapMaterial()
{
//TODO: make sure you don't have memory leaks and/or resource leaks :) -> Figure out if you need to do something here
}
void ShadowMapMaterial::Initialize(const GameContext& gameContext)
{
UNREFERENCED_PARAMETER(gameContext);
if (!m_IsInitialized)
{
//TODO: initialize the effect, techniques, shader variables, input layouts (hint use EffectHelper::BuildInputLayout), etc.
m_pShadowEffect = ContentManager::Load<ID3DX11Effect>(L"./Resources/Effects/ShadowMapGenerator.fx");
m_pShadowTechs[ShadowGenType::Static] = m_pShadowEffect->GetTechniqueByName("GenerateShadows");
m_pShadowTechs[ShadowGenType::Skinned] = m_pShadowEffect->GetTechniqueByName("GenerateShadows_Skinned");
m_pWorldMatrixVariable = m_pShadowEffect->GetVariableByName("gWorld")->AsMatrix();
m_pBoneTransforms = m_pShadowEffect->GetVariableByName("gBones")->AsMatrix();
m_pLightVPMatrixVariable = m_pShadowEffect->GetVariableByName("gLightViewProj")->AsMatrix();
if (!EffectHelper::BuildInputLayout(gameContext.pDevice, m_pShadowTechs[ShadowGenType::Static],
&m_pInputLayouts[ShadowGenType::Static], m_InputLayoutDescriptions[ShadowGenType::Static],
m_InputLayoutSizes[ShadowGenType::Static], m_InputLayoutIds[ShadowGenType::Static]))
Logger::LogError(L"inputlayout ShadowGenType::Static not initialized");
if (!EffectHelper::BuildInputLayout(gameContext.pDevice, m_pShadowTechs[ShadowGenType::Skinned],
&m_pInputLayouts[ShadowGenType::Skinned], m_InputLayoutDescriptions[ShadowGenType::Skinned],
m_InputLayoutSizes[ShadowGenType::Skinned], m_InputLayoutIds[ShadowGenType::Skinned]))
Logger::LogError(L"inputlayout 1 not initialized");
}
}
void ShadowMapMaterial::SetLightVP(DirectX::XMFLOAT4X4 lightVP) const
{
//UNREFERENCED_PARAMETER(lightVP);
//TODO: set the correct shader variable
m_pLightVPMatrixVariable->SetMatrix(&lightVP._11);
}
void ShadowMapMaterial::SetWorld(DirectX::XMFLOAT4X4 world) const
{
//UNREFERENCED_PARAMETER(world);
//TODO: set the correct shader variable
m_pWorldMatrixVariable->SetMatrix(&world._11);
}
void ShadowMapMaterial::SetBones(const float* pData, int count) const
{
//UNREFERENCED_PARAMETER(pData);
//UNREFERENCED_PARAMETER(count);
//TODO: set the correct shader variable
m_pBoneTransforms->SetMatrixArray(pData, 0, count);
}
| [
"56222387+WannesVanHooste@users.noreply.github.com"
] | 56222387+WannesVanHooste@users.noreply.github.com |
66d0e6635ccfdfd4e1c31909a1b75b3615fc76fb | cfc1daf5ff111751fe67e188a45bb376d13dd1e9 | /RPGProject/RPGProject/Player.cpp | 2bb386fe1aa41c29b4983203917aab5e5cac42f2 | [] | no_license | rafalh26/Cpp | 7a315457daa6e293dab2c8ef6b074709f1856429 | d152ad3163444d0b46a4ea4dd6b8fd1f11eba6e2 | refs/heads/master | 2023-02-24T22:38:54.901340 | 2021-01-31T10:18:59 | 2021-01-31T10:18:59 | 322,566,462 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 984 | cpp | #include "Player.h"
using namespace std;
//constr
Player::Player(string name, Race race, int hitPoints, int magicPoints)
{
this->name = name;
this->race = race;
this->hitPoints = hitPoints;
this->magicPoints = magicPoints;
}
//setters
void Player::setName(string name)
{
this->name = name;
}
void Player::setRace(Race race)
{
this->race = race;
}
void Player::setHP(int hitPoints)
{
this->hitPoints = hitPoints;
}
void Player::setMP(int magicPoints)
{
this->magicPoints = magicPoints;
}
//getters
string Player::getName() const
{
return name;
}
Race Player::getRace() const
{
return race;
}
string Player::whatRace() const
{
string output = "";
switch (race)
{
case 0:
output = "HUMAN";
break;
case 1:
output = "ELF";
break;
case 2:
output = "DWARF";
break;
case 3:
output = "ORC";
break;
case 4:
output = "TROLL";
break;
}
return output;
}
int Player::getHP() const
{
return hitPoints;
}
int Player::getMP() const
{
return magicPoints;
} | [
"rafalh26@gmail.com"
] | rafalh26@gmail.com |
a8dca5ac43e393b677fb2504da96887f07e0acbc | 46c5ddf56b0b44648ca03c7ab2394d6944d8d783 | /AlienAttackV2/player.cpp | 00f8e7dacb972ce20ac2d1086817a452bc8b0771 | [] | no_license | jdordonezn/AlienAttack | a308369e8b0f0bfe4a70a4545f37c5142819d751 | cc1bf080427ebb7fa438106c86966be548beb13f | refs/heads/master | 2020-04-08T23:58:19.554495 | 2018-12-15T21:21:01 | 2018-12-15T21:21:01 | 159,847,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,785 | cpp | #include "player.h"
Jugador::Jugador(QGraphicsItem* jug):QGraphicsPixmapItem(jug)
{
setPixmap(QPixmap(":/Pictures/derecha.png"));
}
Jugador::~Jugador()
{
}
void Jugador::mover()
{
if(vx==0){
if(vUnit==1){
setPixmap(QPixmap(":/Pictures/derecha.png"));
}
else{
setPixmap(QPixmap(":/Pictures/izquierda.png"));
}
}
else{
if(vUnit==1){
if(cont<5){
setPixmap(QPixmap(":/Pictures/derecha1.gif"));
}
else{
setPixmap(QPixmap(":/Pictures/derecha2.gif"));
if(cont==10){
cont=0;
}
}
}
else{
if(cont<5){
setPixmap(QPixmap(":/Pictures/izquierda1.gif"));
}
else{
setPixmap(QPixmap(":/Pictures/izquierda2.gif"));
if(cont==10){
cont=0;
}
}
}
cont++;
}
vx=vx*exp(-(cd/masa)*dt);
px=px+(vx*dt);
setPos(px,py);
}
int Jugador::getPx() const
{
return px;
}
void Jugador::setPx(int value)
{
px = value;
}
int Jugador::getPy() const
{
return py;
}
void Jugador::setPy(int value)
{
py = value;
}
void Jugador::salto()
{
vy=vy+ay*dt;
py=py+(vy*dt)+(0.5*ay*dt*dt);
}
int Jugador::getVx() const
{
return vx;
}
void Jugador::setVx(int value)
{
vx = value;
}
double Jugador::getCd() const
{
return cd;
}
void Jugador::setCd(double value)
{
cd = value;
}
int Jugador::getVUnit() const
{
return vUnit;
}
void Jugador::setVUnit(int value)
{
vUnit = value;
}
int Jugador::getVy() const
{
return vy;
}
void Jugador::setVy(int value)
{
vy = value;
}
| [
"david.ordonez@udea.edu.co"
] | david.ordonez@udea.edu.co |
09d3f55cf96ecf729997e63a491b76fc99dff86b | d561fb973fcb9ee5c2b006dc9f736400b8d07d6a | /871.cpp | ba309d622a4808bbbb0551381e2b44bceff372ff | [] | no_license | pnikic/Hacking-uva | 02947286d02a64a3b9ec7326c4581a11724d27fa | cf236c0239f5fba9f934e8431441cadd919ce13d | refs/heads/master | 2020-06-21T22:34:40.688518 | 2018-11-04T12:46:19 | 2018-11-04T12:46:19 | 74,769,347 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 874 | cpp | #include <iostream>
#include <vector>
#include <string>
using namespace std;
typedef vector<string> vs;
vs G, S;
int M;
int dx[] = {1, 1, 1, 0, 0, -1, -1, -1};
int dy[] = {0, -1, 1, 1, -1, 0, -1, 1};
int dfs(int x, int y)
{
S[x][y] = 1;
int area = 1;
for (int i = 0; i < 8; ++i)
{
int xx = x + dx[i], yy = y + dy[i];
if (xx >= 0 && yy >= 0 && xx < G.size() && yy < G[0].size() && !S[xx][yy] && G[xx][yy] == '1')
area += dfs(xx, yy);
}
return area;
}
int main()
{
int T;
cin >> T;
cin.ignore(2);
while (T--)
{
M = 0;
G.clear();
string str;
while (getline(cin, str), str != "")
G.push_back(str);
S.assign(G.size(), string(G[0].size(), 0));
for (int i = 0; i < G.size(); ++i)
for (int j = 0; j < G[0].size(); ++j)
if (!S[i][j] && G[i][j] == '1')
M = max(dfs(i, j), M);
cout << M << (T ? "\n\n" : "\n");
}
}
| [
"pnikic@mathos.hr"
] | pnikic@mathos.hr |
6f702d06d8cceb5143eadd362271161f058d3f3a | 9460e1f3dd962e8859a9d39e7e21021043186907 | /WindowSystemProgramming/WindowSystemProgramming/OverlappedEx.h | 0f3ef9422371d4deafe837c39f373fb5c538d78d | [] | no_license | JungSeunghun/WindowSystemProgramming | 83803f2d5615ac45052d284cb5dc48f2f8271360 | 049b98b370c58a5c942834c4fa9f23ff72c3d438 | refs/heads/main | 2023-03-09T06:57:44.964270 | 2021-02-20T16:09:39 | 2021-02-20T16:09:39 | 340,565,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 469 | h | #pragma once
#include "Define.h"
class BaseSocket;
enum class State {
NONE,
RECVED,
SENDED,
};
struct OverlappedEx : OVERLAPPED
{
BaseSocket* baseSocket;
WSABUF wsaBuf;
State state;
OverlappedEx() {
memset(this, 0, sizeof(*this));
wsaBuf.buf = nullptr;
wsaBuf.len = 0;
baseSocket = nullptr;
state = State::NONE;
}
~OverlappedEx() {
if (baseSocket != nullptr)
baseSocket = nullptr;
if (wsaBuf.buf != nullptr)
wsaBuf.buf = nullptr;
}
};
| [
"31593322+JungSeunghun@users.noreply.github.com"
] | 31593322+JungSeunghun@users.noreply.github.com |
524e5c300f8340fcf3728cdfde20a5348497a398 | de16bfc842800501ecc29b96060a1f7cafd27c83 | /uva12372/uva12372_mguid2088.cpp | acbc4b0802e6edd6333042cb382fa07ca5c503ff | [] | no_license | mguid65/uva | ba5333b7ade16d5dd7f5ef49e0e9b6d51155d742 | a5317300eb5b357d2f5297308b48a8a13e9ae089 | refs/heads/master | 2020-04-03T16:13:51.841106 | 2019-09-10T23:40:59 | 2019-09-10T23:40:59 | 155,396,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 285 | cpp | #include <iostream>
int main() {
int cases, l, w, h;
std::cin >> cases;
for(int i = 1; i <= cases; i++) {
std::cin >> l >> w >> h;
if((l <=20) && (h <= 20) && (w <= 20)) std::cout << "Case " << i << ": good\n";
else std::cout << "Case " << i << ": bad\n";
}
}
| [
"mguid2088@gmail.com"
] | mguid2088@gmail.com |
219780b9460eafe0c715c64b590179a341e13823 | 7ed7aa5e28bd3cdea44e809bbaf8a527a61259fb | /CodeForces/1365A.cpp | fa6a2e8f7cba9d94018ecb23f947d6ba6f6ec96e | [] | no_license | NaiveRed/Problem-solving | bdbf3d355ee0cb2390cc560d8d35f5e86fc2f2c3 | acb47328736a845a60f0f1babcb42f9b78dfdd10 | refs/heads/master | 2022-06-16T03:50:18.823384 | 2022-06-12T10:02:23 | 2022-06-12T10:02:23 | 38,728,377 | 4 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 1,371 | cpp | #include <bits/stdc++.h>
//#define DEBUG
#define MULTICASE
#define IOS \
ios::sync_with_stdio(false); \
cin.tie(0); \
cout.tie(0);
#define dbg(x) cerr << #x " = " << x << endl;
#define CASET \
int ___T; \
scanf("%d", &___T); \
for (int _t = 1; _t <= ___T; ++_t)
using namespace std;
inline int Input()
{
char c;
int n = 0;
while (c = getchar())
if (c != '\n' && c != ' ')
n = n * 10 + c - '0';
else
break;
return n;
}
void solve()
{
int n, m, state;
int row[50] = {}, col[50] = {};
scanf("%d%d", &n, &m);
for (int i = 0; i < n; ++i)
for (int j = 0; j < m; ++j)
{
state = Input();
//scanf("%d", &state);
row[i] |= state;
col[j] |= state;
}
int row_count = 0, col_count = 0;
for (int i = 0; i < n; ++i)
{
if (!row[i])
++row_count;
}
for (int i = 0; i < m; ++i)
{
if (!col[i])
++col_count;
}
puts((min(row_count, col_count) & 1) ? "Ashish" : "Vivek");
}
int main()
{
#ifdef DEBUG
freopen("problem.in", "r", stdin);
freopen("problem.out", "w", stdout);
clock_t _t_start = clock();
#endif
#ifdef MULTICASE
CASET
{
solve();
}
#else
{
solve();
}
#endif
#ifdef DEBUG
fprintf(stderr, "\nRuntime: %.10f s\n", (double)(clock() - _t_start) / CLOCKS_PER_SEC);
#endif
return 0;
}
| [
"jason841201@gmail.com"
] | jason841201@gmail.com |
1f3db1b78fcdcab7d2193d9b34b3f5501f319206 | 7e03d8855200c80d27474a2bb9e0f002af72c3a6 | /MCSproject_client/qtcsocket.h | cc3717e0e8935be4658b1284a6ecbd1e1ae56ff1 | [] | no_license | kimbakcho/MSCproject | cef4479ef3ca7cf424b3ed460eef985344702438 | 811ce17848a70be2885c4754033e25b762ec55ea | refs/heads/master | 2021-01-21T04:47:09.359146 | 2016-06-09T08:41:38 | 2016-06-09T08:41:38 | 55,408,974 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 372 | h | #ifndef QTCSOCKET_H
#define QTCSOCKET_H
#include <QObject>
#include <QTcpSocket>
#include <QHostAddress>
#include <QTimer>
class QTcsocket : public QTcpSocket
{
Q_OBJECT
public:
explicit QTcsocket(QString ip, int port);
QTimer *connecttimer;
QString ip;
int port;
signals:
public slots:
void timeout_connectcheck();
};
#endif // QTCSOCKET_H
| [
"vngkgk624@naver.com"
] | vngkgk624@naver.com |
cc6b5fc1fc17dda0d70b3529f20b21e6f5427a29 | d7ef1300dc1b4d6174788605bf2f19ece12a1708 | /other/old_scripts/scripts/MC_true_zarah/K0s_analysis_part1+true_52.cxx | 2fd93b23a81175553b2daf4e312d9373453f7491 | [] | no_license | libov/zeus | 388a2d49eb83f098c06008cb23b6ab42ae42e0e5 | a0ca857ede59c74cace29924503d78670e10fe7b | refs/heads/master | 2021-01-01T05:51:48.516178 | 2014-12-03T09:14:02 | 2014-12-03T09:14:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,422 | cxx | //////////////////////////////////////////////////
////////////// K0s analysis /////////////////
////////////// with V0lite /////////////////
////////////// (part1) /////////////////
//////////////////////////////////////////////////
// //
// //
// Libov Vladyslav //
// T.S. National University of Kiev //
// April 2008 //
// //
// //
//////////////////////////////////////////////////
////////// ///////////
////////// Part1: peparing small trees ///////////
////////// ///////////
//////////////////////////////////////////////////
// //
// 1. Event selection //
// 2. K0s selection (loose) //
// 3. Writing data to small tree //
// easy to analyze //
// //
//////////////////////////////////////////////////
// Modified 05 September: add true info
#ifndef __CINT__
#include <TChain.h>
#include <TH1F.h>
#include <TFile.h>
#include <TTree.h>
#include <TClonesArray.h>
#include <TROOT.h>
#include <TSystem.h>
#include <iostream>
using namespace std;
#include<Daughter.h>
#include<Mother.h>
#endif
void analysis()
{
Int_t goa=0,
nevents=0,
Nv0lite=0,
Sincand=0,
Tt1_id[80],
Tt2_id[80],
Tq1[80],
Tq2[80],
Trk_ntracks=0,
Trk_id[300],
Tt1_layout[80],
Tt2_layout[80],
Tt1_layinn[80],
Tt2_layinn[80];
Float_t Tinvmass_k0[80],
Tinvmass_lambda[80],
Tinvmass_alambda[80],
Tinvmass_ee[80],
Tsecvtx_collin3[80],
Tsecvtx_collin2[80],
Tsecvtx[80][3],
reso_mass=0,
Tp1[80][3],
Tp2[80][3],
Tpk[80][3],
corr=0,
Siq2el[10],
Siyel[10],
Siyjb[10],
Sizuhmom[4][10],
Sicalpos[3][10],
Sisrtpos[2][10],
Sisrtene[10],
Siecorr[3][10],
Sith[10],
Siprob[10];
Int_t Trk_prim_vtx[300],
Trk_sec_vtx[300],
Trk_vtx[300],
Runnr=0,
year=0,
k0_cand=0;
const Int_t low_2004=47010,
up_2004=51245,
low_2005=52244,
up_2005=57123,
low_2006=58181,
up_2006=59947,
low_2006p=60005,
up_2006p=61746,
low_2007=61747,
up_2007=62638;
const Float_t corr_2004=1.005,
corr_2005=1.009,
corr_2006=1.0077,
corr_2007=1.0065;
Float_t Xvtx=0,
Yvtx=0,
Zvtx=0;
Int_t Tltw[14];
Float_t Cal_et=0;
Int_t Kt_njet_a=0;
Float_t Kt_etjet_a[20],
Kt_etajet_a[20],
Kt_phijet_a[20];
Int_t Fmck_nstor=0, // Number of stored (e.g. those survived pT cut)
// FMCKIN particles
Fmck_prt[500], // particle code FMCPRT
Fmck_daug[500]; // Daughter of
Float_t Fmck_m[500]; // particle mass
Int_t Fmck_id[500]; // particle FMCKIN ID
Float_t Fmck_px[500], // particle px
Fmck_py[500], // particle py
Fmck_pz[500]; // particle pz
//TChain *myChain=new TChain("resonance");
TChain *myChain=new TChain("orange");
// PATH to NTUPLES
gSystem->Load("libzio.so");
gSystem->Load("libdcap.so");
//------------------------------------------------------------------------------------------//
myChain->Add("zeus://acs/mc/ntup/05/v01/dijetPHP/root/dwwe25.f13548.lfres.e0506.uncut_0106.root");
myChain->Add("zeus://acs/mc/ntup/05/v01/dijetPHP/root/dwwe25.f13548.lfres.e0506.uncut_0107.root");
myChain->Add("zeus://acs/mc/ntup/05/v01/dijetPHP/root/dwwe25.f13548.lfres.e0506.uncut_0108.root");
//input
//------------------------------------------------------------------------------------------//
// V0lite
myChain->SetBranchAddress("Nv0lite",&Nv0lite);
//myChain->SetBranchAddress("Tinvmass_k0",Tinvmass_k0);
//myChain->SetBranchAddress("Tinvmass_lambda",Tinvmass_lambda);
//myChain->SetBranchAddress("Tinvmass_alambda",Tinvmass_alambda);
myChain->SetBranchAddress("Tinvmass_ee",Tinvmass_ee);
myChain->SetBranchAddress("Tsecvtx_collin3",Tsecvtx_collin3);
myChain->SetBranchAddress("Tsecvtx_collin2",Tsecvtx_collin2);
myChain->SetBranchAddress("Tpk",Tpk);
myChain->SetBranchAddress("Tp1",Tp1);
myChain->SetBranchAddress("Tp2",Tp2);
//myChain->SetBranchAddress("Tq1",Tq1);
//myChain->SetBranchAddress("Tq2",Tq2);
myChain->SetBranchAddress("Tt1_id",Tt1_id);
myChain->SetBranchAddress("Tt2_id",Tt2_id);
myChain->SetBranchAddress("Tt1_layout",Tt1_layout);
myChain->SetBranchAddress("Tt2_layout",Tt2_layout);
myChain->SetBranchAddress("Tt1_layinn",Tt1_layinn);
myChain->SetBranchAddress("Tt2_layinn",Tt2_layinn);
// Tracking, Trk_vtx
myChain->SetBranchAddress("Trk_ntracks",&Trk_ntracks);
myChain->SetBranchAddress("Trk_id",Trk_id);
myChain->SetBranchAddress("Trk_prim_vtx",Trk_prim_vtx);
myChain->SetBranchAddress("Trk_sec_vtx",Trk_sec_vtx);
myChain->SetBranchAddress("Trk_vtx",Trk_vtx);
//Vertex
myChain->SetBranchAddress("Xvtx",&Xvtx);
myChain->SetBranchAddress("Yvtx",&Yvtx);
myChain->SetBranchAddress("Zvtx",&Zvtx);
//Sira, Si_kin
myChain->SetBranchAddress("Sincand",&Sincand);
myChain->SetBranchAddress("Siq2el",Siq2el);
myChain->SetBranchAddress("Siyel",Siyel);
myChain->SetBranchAddress("Siyjb",Siyjb);
myChain->SetBranchAddress("Sizuhmom",Sizuhmom);
//myChain->SetBranchAddress("Siecorr",Siecorr);
//myChain->SetBranchAddress("Sith",Sith);
myChain->SetBranchAddress("Sicalpos",Sicalpos);
myChain->SetBranchAddress("Sisrtpos",Sisrtpos);
myChain->SetBranchAddress("Sisrtene",Sisrtene);
myChain->SetBranchAddress("Siprob",Siprob);
// Event
myChain->SetBranchAddress("Runnr",&Runnr);
// CAL block - calorimeter info
myChain->SetBranchAddress("Cal_et",&Cal_et);
// ktJETSA_A
myChain->SetBranchAddress("Kt_njet_a",&Kt_njet_a);
myChain->SetBranchAddress("Kt_etjet_a",Kt_etjet_a);
myChain->SetBranchAddress("Kt_etajet_a",Kt_etajet_a);
myChain->SetBranchAddress("Kt_phijet_a",Kt_phijet_a);
// FMCKIN (common ntuple additional block)
myChain->SetBranchAddress("Fmck_nstor",&Fmck_nstor);
myChain->SetBranchAddress("Fmck_prt",Fmck_prt);
myChain->SetBranchAddress("Fmck_m",Fmck_m);
myChain->SetBranchAddress("Fmck_daug",Fmck_daug);
myChain->SetBranchAddress("Fmck_id",Fmck_id);
myChain->SetBranchAddress("Fmck_px",Fmck_px);
myChain->SetBranchAddress("Fmck_py",Fmck_py);
myChain->SetBranchAddress("Fmck_pz",Fmck_pz);
// Trigger stuff
//myChain->SetBranchAddress("Tltw", Tltw);
cout<<"Calculating number of events..."<<endl;
nevents=myChain->GetEntries();
cout<<nevents<<" events in this chain..."<<endl;
// TREE VARIABLES DEFINITION
// these variables are written to tree for further analysis
Int_t nv0=0, // number K0s candidates that passed soft selection
id1[80], // id of the first track
id2[80], // id of the second track
runnr=0, // number of run
is1_sec[80], // =1 if 1st track flagged as secondary
is2_sec[80], // =1 if 2nd track flagged as secondary
is1_prim[80], // =1 if 1st track flagged as primary
is2_prim[80], // =1 if 2nd track flagged as primary
sincand, // Number of Sinistra electron candidates
layout1[80], //outer superlayer of 1st pion
layout2[80], //outer superlayer of 2nd pion
layinn1[80], //inner superlayer of 1st pion
layinn2[80]; //inner superlayer of 2nd pion
Float_t p1[80][3], // momenta of 1st track
p2[80][3], // momenta of 2nd track
coll2[80], // angle 2D
coll3[80], // collinearity angle 3D
q2el, // Q^2 from electron method (1st Sinistra candidate)
yel, // y from electron method (1st Sinistra candidate)
yjb, // y from Jaquet-Blondel method (1st Sinistra candidate)
box_x, // x position of scattered electron
box_y, // y position of electron
e_pz, // E-pz calculated both from hadronic system and electron
siprob, // probability of 1st Sinistra candidate
mass_lambda[80],// invariant mass assuming proton(larger momenuma) and pion
mass_ee[80]; // invariant mass assuming electron and positron
Int_t tlt[6][16]; // 3rd-level trigger: tlt[m][k]
// m=3 SPP, m=4 DIS ... k=1 bit 1 (e.g. HPP01) k=2 bit 2 ..
Float_t xvtx=0, // coordinates of primary vertex; 0 if none
yvtx=0, //
zvtx=0; //
Float_t cal_et=0; // Transverse Energy =SUM(CALTRU_E*sin(thetai))
Int_t njet=0; // Number of jets (kT jet finder A)
Float_t etjet[20], // Transverse energy of jets
etajet[20], // eta of jets
phijet[20]; // phi of jets
Int_t ntrue=0, // Number of stored (e.g. those survived pT cut)
// FMCKIN particles
fmcprt[50], // FMCPRT
daug_of[50]; // Daughter of
Float_t mass[50]; // mass
Int_t fmckin_id[50]; // FMCKIN ID of the particle
Float_t px[50], // px of the particle
py[50], // py of the particle
pz[50]; // pz of the particle
//-------------------------------------------------------------------------------------------//
Int_t err=0;
Int_t with_V0=0,
ev_pass_DIS=0;
TH1F *hdebug=new TH1F("hdebug","",10,0,10);
cout<<"Start add branches"<<endl;
TTree *tree=new TTree("resonance","K0sK0s");
tree->Branch("nv0",&nv0,"nv0/I");
tree->Branch("p1",p1,"p1[nv0][3]/F");
tree->Branch("p2",p2,"p2[nv0][3]/F");
tree->Branch("coll2",coll2,"coll2[nv0]/F");
tree->Branch("coll3",coll3,"coll3[nv0]/F");
tree->Branch("id1",id1,"id1[nv0]/I");
tree->Branch("id2",id2,"id2[nv0]/I");
tree->Branch("is1_sec",is1_sec,"is1_sec[nv0]/I");
tree->Branch("is2_sec",is2_sec,"is2_sec[nv0]/I");
tree->Branch("is1_prim",is1_prim,"is1_prim[nv0]/I");
tree->Branch("is2_prim",is2_prim,"is2_prim[nv0]/I");
tree->Branch("runnr",&runnr,"runnr/I");
tree->Branch("q2el",&q2el,"q2el/F");
tree->Branch("yel",&yel,"yel/F");
tree->Branch("yjb",&yel,"yjb/F");
tree->Branch("siprob",&siprob,"siprob/F");
tree->Branch("sincand",&sincand,"sincand/I");
tree->Branch("box_x",&box_x,"box_x/F");
tree->Branch("box_y",&box_y,"box_y/F");
tree->Branch("e_pz",&e_pz,"e_pz/F");
tree->Branch("mass_lambda",mass_lambda,"mass_lambda[nv0]/F");
tree->Branch("mass_ee",mass_ee,"mass_ee[nv0]/F");
tree->Branch("layout1",layout1,"layout1[nv0]/I");
tree->Branch("layout2",layout2,"layout2[nv0]/I");
tree->Branch("layinn1",layinn1,"layinn1[nv0]/I");
tree->Branch("layinn2",layinn2,"layinn2[nv0]/I");
//tree->Branch("tlt",tlt,"tlt[6][16]/I");
tree->Branch("xvtx",&xvtx,"xvtx/F");
tree->Branch("yvtx",&yvtx,"yvtx/F");
tree->Branch("zvtx",&zvtx,"zvtx/F");
tree->Branch("cal_et",&cal_et,"cal_et/F");
tree->Branch("njet",&njet,"njet/I");
tree->Branch("etjet",&etjet,"etjet[njet]/F");
tree->Branch("etajet",&etajet,"etajet[njet]/F");
tree->Branch("phijet",&phijet,"phijet[njet]/F");
tree->Branch("ntrue",&ntrue,"ntrue/I");
tree->Branch("fmcprt",&fmcprt,"fmcprt[ntrue]/I");
tree->Branch("mass",&mass,"mass[ntrue]/F");
tree->Branch("daug_of",&daug_of,"daug_of[ntrue]/I");
tree->Branch("fmckin_id",&fmckin_id,"fmckin_id[ntrue]/I");
tree->Branch("px",&px,"px[ntrue]/F");
tree->Branch("py",&py,"py[ntrue]/F");
tree->Branch("pz",&pz,"pz[ntrue]/F");
//------ Loop over events -------//
char name[256];
Int_t file_num=0;
bool fire;
cout<<"Start looping..."<<endl;
for(Int_t i=0;i<nevents;i++)
{
if (goa==10000)
{
cout<<i<<" events processed"<<" Runnr:"<<Runnr<<endl;
goa=0;
}
goa++;
//cout<<"Getting entry "<<i<<" ..."<<endl;
myChain->GetEntry(i);
//cout<<"event "<<i<<endl;
//------DIS event selection------//
hdebug->Fill(1);
//if (Siq2el[0]<1) continue; // Q^2>1 GeV^2
hdebug->Fill(2);
// E-pz calculation
float Empz_had = Sizuhmom[0][3] - Sizuhmom[0][2];
float Empz_e = Siecorr[0][2]*(1-TMath::Cos( Sith[0] ));
float EminPz_Evt = Empz_e + Empz_had;
//if ((EminPz_Evt<38)||(EminPz_Evt>60)) continue; // 38 < E-pz < 60 GeV
hdebug->Fill(3);
// electron position calculation (box cut)
float x_srtd=Sicalpos[0][0]; // position of electron in calorimeter
float y_srtd=Sicalpos[0][1];
if (Sisrtene[0]>0)
{
x_srtd=Sisrtpos[0][0]; // position of electron in SRDT
y_srtd=Sisrtpos[0][1];
}
//if (TMath::Abs(x_srtd)<12) // box cut: electron required to be outside 12x6 cm^2 box
{
//if (TMath::Abs(y_srtd)<6) continue;
}
hdebug->Fill(4);
//if (Siyel[0]>0.95) continue; // y from electron method < 0.95
hdebug->Fill(5);
//if (Siyjb[0]<0.01) continue; // y from Jacquet-Blondel method > 0.01
hdebug->Fill(6);
ev_pass_DIS++;
//------ (soft) K0s selection------//
Int_t cand_k0=0,
list_k0[180];
if (Nv0lite<1) continue;
with_V0++;
if (Nv0lite>75) cout<<Nv0lite<<endl;
//this loop is now sensless but it will become necessary if we restrict to at least 2K0s
for(Int_t j=0;j<Nv0lite;j++)
{
Daughter t1(Tp1[j][0],Tp1[j][1],Tp1[j][2]);
Daughter t2(Tp2[j][0],Tp2[j][1],Tp2[j][2]);
if ((t1.GetPt()<0.1)||(t2.GetPt()<0.1)) continue;
if ((Tt1_layout[j]<3)||(Tt2_layout[j]<3)) continue;
Mother K0s_cand(t1,t2);
Float_t p1=t1.GetP();
Float_t p2=t2.GetP();
Float_t mass_pi_p=0;
if (p1>=p2) //first track proton(antiproton); second track pion_minus(pion_plus)
{
mass_pi_p=K0s_cand.GetMass_m(6,4);
//if(Tq1[j]>0) cout<<"Lambda"<<endl;
//if(Tq1[j]<0) cout<<"ALambda"<<endl;
}
if (p1<p2) //first track pion_minus(pion_plus); first track proton(antiproton);
{
mass_pi_p=K0s_cand.GetMass_m(4,6);
//if(Tq1[j]>0) cout<<"ALambda"<<endl;
//if(Tq1[j]<0) cout<<"Lambda"<<endl;
}
//cout<<mass_pi_p<<" "<<Tinvmass_lambda[j]<<" "<<Tinvmass_alambda[j]<<endl;
//if (mass_pi_p<1.116) continue;
//mass_lambda=mass_pi_p;
//mass_ee=Tinvmass_ee[j];
//if (Tinvmass_ee[j]<0.05) continue;
Int_t take1=1,
take2=1;
for (Int_t n=0; n<Trk_ntracks; n++)
{
unsigned int idx=Trk_id[n];
if (idx == Tt1_id[j])
{
take1=Trk_prim_vtx[n];
continue;
}
if (idx == Tt2_id[j])
{
take2=Trk_prim_vtx[n];
continue;
}
}
//if ((take1==1)||(take2==1)) continue;
list_k0[cand_k0]=j;
cand_k0++;
} //end k0 selection
if (Trk_ntracks>295) cout<<Trk_ntracks<<endl;
if (cand_k0<1) continue;
nv0=cand_k0;
if (nv0>75) cout<<nv0<<endl;
Int_t id=0;
//---- Tree filling -----//
for(Int_t k=0;k<nv0;k++)
{
id=list_k0[k];
p1[k][0]=Tp1[id][0];
p1[k][1]=Tp1[id][1];
p1[k][2]=Tp1[id][2];
p2[k][0]=Tp2[id][0];
p2[k][1]=Tp2[id][1];
p2[k][2]=Tp2[id][2];
coll2[k]=Tsecvtx_collin2[id];
coll3[k]=Tsecvtx_collin3[id];
id1[k]=Tt1_id[id];
id2[k]=Tt2_id[id];
Int_t t1_prim=1,
t2_prim=1,
t1_sec=0,
t2_sec=0,
t1_vertex_id=-1,
t2_vertex_id=-1;
for (Int_t n=0; n<Trk_ntracks; n++)
{
unsigned int idx=Trk_id[n];
if (idx == Tt1_id[id])
{
t1_prim=Trk_prim_vtx[n];
t1_sec=Trk_sec_vtx[n];
t1_vertex_id=Trk_vtx[n];
continue;
}
if (idx == Tt2_id[id])
{
t2_prim=Trk_prim_vtx[n];
t2_sec=Trk_sec_vtx[n];
t2_vertex_id=Trk_vtx[n];
continue;
}
}
is1_sec[k]=t1_sec;
is2_sec[k]=t2_sec;
is1_prim[k]=t1_prim;
is2_prim[k]=t2_prim;
Daughter temp1(Tp1[id][0],Tp1[id][1],Tp1[id][2]);
Daughter temp2(Tp2[id][0],Tp2[id][1],Tp2[id][2]);
Mother K0s_candtemp(temp1,temp2);
Float_t ptemp1=temp1.GetP();
Float_t ptemp2=temp2.GetP();
Float_t mass_pi_ptemp=0;
if (ptemp1>ptemp2) //first track proton(antiproton); second track pion_minus(pion_plus)
{
mass_pi_ptemp=K0s_candtemp.GetMass_m(6,4);
}
if (ptemp1<ptemp2) //first track pion_minus(pion_plus); first track proton(antiproton);
{
mass_pi_ptemp=K0s_candtemp.GetMass_m(4,6);
}
mass_lambda[k]=mass_pi_ptemp;
mass_ee[k]=Tinvmass_ee[id];
layout1[k]=Tt1_layout[id];
layout2[k]=Tt2_layout[id];
layinn1[k]=Tt1_layinn[id];
layinn2[k]=Tt2_layinn[id];
}
runnr=Runnr;
if (Sincand>0)
{
q2el=Siq2el[0];
siprob=Siprob[0];
}
if (Sincand==0)
{
q2el=0;
siprob=0;
}
sincand=Sincand;
//cout<<Sincand<<" "<<Siyel[0]<<" "<<Siyjb[0]<<endl;
yel=Siyel[0];
yjb=Siyjb[0];
box_x=x_srtd;
box_y=y_srtd;
e_pz=EminPz_Evt;
cal_et=Cal_et;
/*
// trigger defining
for (int m=0;m<6;m++)
{
for (int k=0;k<16;k++)
{
fire = (Bool_t)(Tltw[m+6-1] & (1 << k) );
//tlt[m][k]=2;
tlt[m][k]=0;
if (fire)
{
tlt[m][k]=1;
//cout<<m<<", bit"<<k+1<<" fired"<<endl;
}
}
}
*/
xvtx=Xvtx;
yvtx=Yvtx;
zvtx=Zvtx;
njet=Kt_njet_a;
for (int jet=0;jet<njet;jet++)
{
etjet[jet]=Kt_etjet_a[jet];
etajet[jet]=Kt_etajet_a[jet];
phijet[jet]=Kt_phijet_a[jet];
}
bool kshort=false,
pi_plus=false,
pi_minus=false,
pi=false,
f0980=false,
daug_of_kshort=false;
ntrue=0;
for (int k=0;k<Fmck_nstor;k++)
{
// particle k identification
kshort=false;
pi_plus=false;
pi_minus=false;
f0980=false;
daug_of_kshort=false;
kshort=(Fmck_prt[k]==62);
pi_plus=(Fmck_prt[k]==54);
pi_minus=(Fmck_prt[k]==55);
pi=(pi_plus||pi_minus);
f0980=(Fmck_prt[k]==81);
if (pi)
{
Int_t parent_fmckin=0;
parent_fmckin=Fmck_daug[k]; // Fmckin id of mother of k
//cout<<"Parent of pi+/pi-: "<<parent_fmckin<<endl;
for (int jj=0;jj<Fmck_nstor;jj++)
{
//cout<<Fmck_id[jj]<<endl;
if (Fmck_id[jj]!=parent_fmckin) continue; // skip if not of mother of k
//cout<<Fmck_prt[jj]<<endl;
// now jj is index of mother of particle k
daug_of_kshort=(Fmck_prt[jj]==62);
//cout<<"Parent of pi+/pi-: "<<parent_fmckin<<endl;
break;
}
}
if (f0980||kshort||((pi_plus||pi_minus)&&daug_of_kshort))
{
fmcprt[ntrue]=Fmck_prt[k];
mass[ntrue]=Fmck_m[k];
daug_of[ntrue]=Fmck_daug[k];
fmckin_id[ntrue]=Fmck_id[k];
px[ntrue]=Fmck_px[k];
py[ntrue]=Fmck_py[k];
pz[ntrue]=Fmck_pz[k];
ntrue++;
}
}
tree->Fill();
}
//------- End of events loop ---------//
tree->Print();
Int_t temp=sprintf(name,"batch52.root");//output
TFile *f2 =new TFile(name,"recreate");
cout<<"File created"<<endl;
tree->Write();
cout<<"Tree wrote"<<endl;
f2->Close();
cout<<"File Closed"<<endl;
delete tree;
cout<<"Tree deleted, O.K.!"<<endl;
cout<<ev_pass_DIS<<" events passed DIS selection"<<endl;
cout<<with_V0<<" events with at least 1 V0"<<endl;
cout<<"Done!!!"<<endl;
}
#ifndef __CINT__
int main(int argc, char **argv)
{
analysis();
return 0;
}
#endif
| [
"libov@mail.desy.de"
] | libov@mail.desy.de |
abcaab9241d306c06522edc7b4591aad1304ea69 | e3dace4f26a44422bbd4785bf5b1ddf185603a98 | /Workshop1015/3.ReadAnalogVoltage/3.ReadAnalogVoltage.ino | cddd090058a76ff22dd23bd4ddbcab33c29f493e | [] | no_license | minguk-kim-wow/kim | 0326cb62e7425311105e1f4349855bc4fab35bb9 | 01b92f4b0e6cd4e69edd861c7ef07043d606591b | refs/heads/master | 2020-08-14T21:52:08.826915 | 2019-10-17T08:02:28 | 2019-10-17T08:02:28 | 215,237,337 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 923 | ino | /*
ReadAnalogVoltage
Reads an analog input on pin 0, converts it to voltage, and prints the result to the Serial Monitor.
Graphical representation is available using Serial Plotter (Tools > Serial Plotter menu).
Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.
This example code is in the public domain.
http://www.arduino.cc/en/Tutorial/ReadAnalogVoltage
*/
// the setup routine runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
}
// the loop routine runs over and over again forever:
void loop() {
// read the input on analog pin 0:
int sensorValue = analogRead(A0);
// Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 5V):
float voltage = sensorValue * (5.0 / 1023.0);
// print out the value you read:
delay(1000);
Serial.println(voltage);
}
| [
"56580503+minguk-kim-wow@users.noreply.github.com"
] | 56580503+minguk-kim-wow@users.noreply.github.com |
bffd2aaa832f2d507bed80c8d18c1af26c01e59e | 81549aed4755d86ac18dc1052fbf7955f28dbf25 | /Cplus/2017 - Kartojimas/02 - Procedūros.Funkcijos/4.2.2 Funkcija, grąžinanti apskaičiuotą reikšmę per parametrus/4.2.2.3/4_2_2_3_e.cpp | ee571919c66cae2b5988530f7ab67a2f5fadc50a | [] | no_license | DreDasLT/Informatika | 9d33ca3dcdadf7aa2f533334805c635b07d1ddea | 6409bc0458fb282577526395c477c048a211469a | refs/heads/master | 2020-12-31T00:09:35.849832 | 2017-06-19T21:17:32 | 2017-06-19T21:17:32 | 86,560,959 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,519 | cpp | // Energija
#include <fstream>
#include <iomanip>
using namespace std;
const char CDfv[] = "Duomenys.txt";
const char CRfv[] = "Rezultatai.txt";
//---------------------------------------------
void Produktas(double rv, double bv, double av, double r, double b, double a, double p, double & er, double & eb, double & ea);
//---------------------------------------------
int main ()
{
int n; // produktų skaičius
double rv, bv, av; // viename grame riebalų, baltymų ir angliavandenių esantys kcal kiekiai
double r, b, a; // produkto 100 gramų esantys riebalų, baltymų ir angliavandenių kiekiai gramais
double p; // produkto kiekis gramais, reikalingas gaminant pateikalą
double er, eb, ea; // riebalų, baltymų ir angliavandenių energetinė vertė kcal
double pp = 0; // pagaminto patiekalo energetinė vertė kcal
ifstream fd(CDfv);
ofstream fr(CRfv);
fd >> rv >> bv >> av;
fd >> n;
for (int i = 1; i <= n; i++){
fd >> r >> b >> a >> p;
Produktas(rv, bv, av, r, b, a, p, er, eb, ea);
fr << fixed << setprecision(2) << er << " " << eb << " " << ea << endl;
pp = pp + er + eb + ea;
}
fr << fixed << setprecision(2) << pp << endl;
fd.close();
fr.close();
return 0;
}
//---------------------------------------------
void Produktas(double rv, double bv, double av, double r, double b, double a, double p, double & er, double & eb, double & ea){
er = (p / 100) * r * rv;
eb = (p / 100) * b * bv;
ea = (p / 100) * a * av;
}
| [
"noreply@github.com"
] | DreDasLT.noreply@github.com |
585d90516cd5614c239d9563a6fe81d9601824ce | 97c211320795bd62240247bfcc577fbc419542fa | /WhatBox/cLockQueue.cpp | 41f2097f8f42eeaae4c6a62c6a00dd4745c4a620 | [] | no_license | NeuroWhAI/Biogram | 855c6fd4a25739aa5c416f4824cc7339d95da251 | 7e534514220673cb1971469e7b0559da3805d267 | refs/heads/master | 2021-01-17T06:01:30.016073 | 2016-06-19T05:19:30 | 2016-06-19T05:19:30 | 48,879,071 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25 | cpp | #include "cLockQueue.h"
| [
"neurowhai@gmail.com"
] | neurowhai@gmail.com |
75959a6fa20bd09c81d08d9052e9019e00004730 | ea3cefc841d4638e4c24b83d9f9d1bf04b44acc2 | /finn_docker_output/code_gen_ipgen_StreamingDataflowPartition_0_IODMA_0_bh67u2ww/project_StreamingDataflowPartition_0_IODMA_0/sol1/syn/systemc/StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0.h | 3bb4fb1fc21e0fa79ad2491e274cee8453624a26 | [] | no_license | pgreksic/FINN_Export_AXI_Lite_Missing | 0bb3fd92eca030d4ba59ec19ae3ef5c79ce9ddce | 915be24be5d2c4ca96018bdfd73abff31fcdd057 | refs/heads/main | 2023-03-11T23:23:32.250197 | 2021-03-01T17:33:42 | 2021-03-01T17:33:42 | 335,460,254 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,002 | h | // ==============================================================
// RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and OpenCL
// Version: 2020.1.1
// Copyright (C) 1986-2020 Xilinx, Inc. All Rights Reserved.
//
// ===========================================================
#ifndef _StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0_HH_
#define _StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0_HH_
#include "systemc.h"
#include "AESL_pkg.h"
#include "StreamingDataflowPartition_0_IODMA_0_Mem2Stream_Batch.h"
#include "StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0_control_s_axi.h"
#include "StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0_gmem_m_axi.h"
namespace ap_rtl {
template<unsigned int C_S_AXI_CONTROL_ADDR_WIDTH = 6,
unsigned int C_S_AXI_CONTROL_DATA_WIDTH = 32,
unsigned int C_M_AXI_GMEM_ADDR_WIDTH = 64,
unsigned int C_M_AXI_GMEM_ID_WIDTH = 1,
unsigned int C_M_AXI_GMEM_AWUSER_WIDTH = 1,
unsigned int C_M_AXI_GMEM_DATA_WIDTH = 32,
unsigned int C_M_AXI_GMEM_WUSER_WIDTH = 1,
unsigned int C_M_AXI_GMEM_ARUSER_WIDTH = 1,
unsigned int C_M_AXI_GMEM_RUSER_WIDTH = 1,
unsigned int C_M_AXI_GMEM_BUSER_WIDTH = 1>
struct StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0 : public sc_module {
// Port declarations 68
sc_in< sc_logic > s_axi_control_AWVALID;
sc_out< sc_logic > s_axi_control_AWREADY;
sc_in< sc_uint<C_S_AXI_CONTROL_ADDR_WIDTH> > s_axi_control_AWADDR;
sc_in< sc_logic > s_axi_control_WVALID;
sc_out< sc_logic > s_axi_control_WREADY;
sc_in< sc_uint<C_S_AXI_CONTROL_DATA_WIDTH> > s_axi_control_WDATA;
sc_in< sc_uint<C_S_AXI_CONTROL_DATA_WIDTH/8> > s_axi_control_WSTRB;
sc_in< sc_logic > s_axi_control_ARVALID;
sc_out< sc_logic > s_axi_control_ARREADY;
sc_in< sc_uint<C_S_AXI_CONTROL_ADDR_WIDTH> > s_axi_control_ARADDR;
sc_out< sc_logic > s_axi_control_RVALID;
sc_in< sc_logic > s_axi_control_RREADY;
sc_out< sc_uint<C_S_AXI_CONTROL_DATA_WIDTH> > s_axi_control_RDATA;
sc_out< sc_lv<2> > s_axi_control_RRESP;
sc_out< sc_logic > s_axi_control_BVALID;
sc_in< sc_logic > s_axi_control_BREADY;
sc_out< sc_lv<2> > s_axi_control_BRESP;
sc_in_clk ap_clk;
sc_in< sc_logic > ap_rst_n;
sc_out< sc_logic > interrupt;
sc_out< sc_logic > m_axi_gmem_AWVALID;
sc_in< sc_logic > m_axi_gmem_AWREADY;
sc_out< sc_uint<C_M_AXI_GMEM_ADDR_WIDTH> > m_axi_gmem_AWADDR;
sc_out< sc_uint<C_M_AXI_GMEM_ID_WIDTH> > m_axi_gmem_AWID;
sc_out< sc_lv<8> > m_axi_gmem_AWLEN;
sc_out< sc_lv<3> > m_axi_gmem_AWSIZE;
sc_out< sc_lv<2> > m_axi_gmem_AWBURST;
sc_out< sc_lv<2> > m_axi_gmem_AWLOCK;
sc_out< sc_lv<4> > m_axi_gmem_AWCACHE;
sc_out< sc_lv<3> > m_axi_gmem_AWPROT;
sc_out< sc_lv<4> > m_axi_gmem_AWQOS;
sc_out< sc_lv<4> > m_axi_gmem_AWREGION;
sc_out< sc_uint<C_M_AXI_GMEM_AWUSER_WIDTH> > m_axi_gmem_AWUSER;
sc_out< sc_logic > m_axi_gmem_WVALID;
sc_in< sc_logic > m_axi_gmem_WREADY;
sc_out< sc_uint<C_M_AXI_GMEM_DATA_WIDTH> > m_axi_gmem_WDATA;
sc_out< sc_uint<C_M_AXI_GMEM_DATA_WIDTH/8> > m_axi_gmem_WSTRB;
sc_out< sc_logic > m_axi_gmem_WLAST;
sc_out< sc_uint<C_M_AXI_GMEM_ID_WIDTH> > m_axi_gmem_WID;
sc_out< sc_uint<C_M_AXI_GMEM_WUSER_WIDTH> > m_axi_gmem_WUSER;
sc_out< sc_logic > m_axi_gmem_ARVALID;
sc_in< sc_logic > m_axi_gmem_ARREADY;
sc_out< sc_uint<C_M_AXI_GMEM_ADDR_WIDTH> > m_axi_gmem_ARADDR;
sc_out< sc_uint<C_M_AXI_GMEM_ID_WIDTH> > m_axi_gmem_ARID;
sc_out< sc_lv<8> > m_axi_gmem_ARLEN;
sc_out< sc_lv<3> > m_axi_gmem_ARSIZE;
sc_out< sc_lv<2> > m_axi_gmem_ARBURST;
sc_out< sc_lv<2> > m_axi_gmem_ARLOCK;
sc_out< sc_lv<4> > m_axi_gmem_ARCACHE;
sc_out< sc_lv<3> > m_axi_gmem_ARPROT;
sc_out< sc_lv<4> > m_axi_gmem_ARQOS;
sc_out< sc_lv<4> > m_axi_gmem_ARREGION;
sc_out< sc_uint<C_M_AXI_GMEM_ARUSER_WIDTH> > m_axi_gmem_ARUSER;
sc_in< sc_logic > m_axi_gmem_RVALID;
sc_out< sc_logic > m_axi_gmem_RREADY;
sc_in< sc_uint<C_M_AXI_GMEM_DATA_WIDTH> > m_axi_gmem_RDATA;
sc_in< sc_logic > m_axi_gmem_RLAST;
sc_in< sc_uint<C_M_AXI_GMEM_ID_WIDTH> > m_axi_gmem_RID;
sc_in< sc_uint<C_M_AXI_GMEM_RUSER_WIDTH> > m_axi_gmem_RUSER;
sc_in< sc_lv<2> > m_axi_gmem_RRESP;
sc_in< sc_logic > m_axi_gmem_BVALID;
sc_out< sc_logic > m_axi_gmem_BREADY;
sc_in< sc_lv<2> > m_axi_gmem_BRESP;
sc_in< sc_uint<C_M_AXI_GMEM_ID_WIDTH> > m_axi_gmem_BID;
sc_in< sc_uint<C_M_AXI_GMEM_BUSER_WIDTH> > m_axi_gmem_BUSER;
sc_out< sc_lv<8> > out_V_V_TDATA;
sc_out< sc_logic > out_V_V_TVALID;
sc_in< sc_logic > out_V_V_TREADY;
sc_signal< sc_logic > ap_var_for_const0;
sc_signal< sc_lv<8> > ap_var_for_const8;
sc_signal< sc_logic > ap_var_for_const1;
sc_signal< sc_lv<64> > ap_var_for_const2;
sc_signal< sc_lv<1> > ap_var_for_const3;
sc_signal< sc_lv<32> > ap_var_for_const4;
sc_signal< sc_lv<3> > ap_var_for_const5;
sc_signal< sc_lv<2> > ap_var_for_const6;
sc_signal< sc_lv<4> > ap_var_for_const7;
// Module declarations
StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0(sc_module_name name);
SC_HAS_PROCESS(StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0);
~StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0();
sc_trace_file* mVcdFile;
ofstream mHdltvinHandle;
ofstream mHdltvoutHandle;
StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0_control_s_axi<C_S_AXI_CONTROL_ADDR_WIDTH,C_S_AXI_CONTROL_DATA_WIDTH>* StreamingDataflowPartition_0_IODMA_0_control_s_axi_U;
StreamingDataflowPartition_0_IODMA_0_StreamingDataflowPartition_0_IODMA_0_gmem_m_axi<0,8,64,5,16,16,16,16,C_M_AXI_GMEM_ID_WIDTH,C_M_AXI_GMEM_ADDR_WIDTH,C_M_AXI_GMEM_DATA_WIDTH,C_M_AXI_GMEM_AWUSER_WIDTH,C_M_AXI_GMEM_ARUSER_WIDTH,C_M_AXI_GMEM_WUSER_WIDTH,C_M_AXI_GMEM_RUSER_WIDTH,C_M_AXI_GMEM_BUSER_WIDTH,C_M_AXI_GMEM_USER_VALUE,C_M_AXI_GMEM_PROT_VALUE,C_M_AXI_GMEM_CACHE_VALUE>* StreamingDataflowPartition_0_IODMA_0_gmem_m_axi_U;
StreamingDataflowPartition_0_IODMA_0_Mem2Stream_Batch* Mem2Stream_Batch_U0;
sc_signal< sc_logic > ap_rst_n_inv;
sc_signal< sc_logic > ap_start;
sc_signal< sc_logic > ap_ready;
sc_signal< sc_logic > ap_done;
sc_signal< sc_logic > ap_idle;
sc_signal< sc_lv<64> > in0_V;
sc_signal< sc_lv<32> > numReps;
sc_signal< sc_logic > gmem_AWREADY;
sc_signal< sc_logic > gmem_WREADY;
sc_signal< sc_logic > gmem_ARREADY;
sc_signal< sc_logic > gmem_RVALID;
sc_signal< sc_lv<8> > gmem_RDATA;
sc_signal< sc_logic > gmem_RLAST;
sc_signal< sc_lv<1> > gmem_RID;
sc_signal< sc_lv<1> > gmem_RUSER;
sc_signal< sc_lv<2> > gmem_RRESP;
sc_signal< sc_logic > gmem_BVALID;
sc_signal< sc_lv<2> > gmem_BRESP;
sc_signal< sc_lv<1> > gmem_BID;
sc_signal< sc_lv<1> > gmem_BUSER;
sc_signal< sc_logic > Mem2Stream_Batch_U0_ap_start;
sc_signal< sc_logic > Mem2Stream_Batch_U0_ap_done;
sc_signal< sc_logic > Mem2Stream_Batch_U0_ap_continue;
sc_signal< sc_logic > Mem2Stream_Batch_U0_ap_idle;
sc_signal< sc_logic > Mem2Stream_Batch_U0_ap_ready;
sc_signal< sc_logic > Mem2Stream_Batch_U0_m_axi_in_V_AWVALID;
sc_signal< sc_lv<64> > Mem2Stream_Batch_U0_m_axi_in_V_AWADDR;
sc_signal< sc_lv<1> > Mem2Stream_Batch_U0_m_axi_in_V_AWID;
sc_signal< sc_lv<32> > Mem2Stream_Batch_U0_m_axi_in_V_AWLEN;
sc_signal< sc_lv<3> > Mem2Stream_Batch_U0_m_axi_in_V_AWSIZE;
sc_signal< sc_lv<2> > Mem2Stream_Batch_U0_m_axi_in_V_AWBURST;
sc_signal< sc_lv<2> > Mem2Stream_Batch_U0_m_axi_in_V_AWLOCK;
sc_signal< sc_lv<4> > Mem2Stream_Batch_U0_m_axi_in_V_AWCACHE;
sc_signal< sc_lv<3> > Mem2Stream_Batch_U0_m_axi_in_V_AWPROT;
sc_signal< sc_lv<4> > Mem2Stream_Batch_U0_m_axi_in_V_AWQOS;
sc_signal< sc_lv<4> > Mem2Stream_Batch_U0_m_axi_in_V_AWREGION;
sc_signal< sc_lv<1> > Mem2Stream_Batch_U0_m_axi_in_V_AWUSER;
sc_signal< sc_logic > Mem2Stream_Batch_U0_m_axi_in_V_WVALID;
sc_signal< sc_lv<8> > Mem2Stream_Batch_U0_m_axi_in_V_WDATA;
sc_signal< sc_lv<1> > Mem2Stream_Batch_U0_m_axi_in_V_WSTRB;
sc_signal< sc_logic > Mem2Stream_Batch_U0_m_axi_in_V_WLAST;
sc_signal< sc_lv<1> > Mem2Stream_Batch_U0_m_axi_in_V_WID;
sc_signal< sc_lv<1> > Mem2Stream_Batch_U0_m_axi_in_V_WUSER;
sc_signal< sc_logic > Mem2Stream_Batch_U0_m_axi_in_V_ARVALID;
sc_signal< sc_lv<64> > Mem2Stream_Batch_U0_m_axi_in_V_ARADDR;
sc_signal< sc_lv<1> > Mem2Stream_Batch_U0_m_axi_in_V_ARID;
sc_signal< sc_lv<32> > Mem2Stream_Batch_U0_m_axi_in_V_ARLEN;
sc_signal< sc_lv<3> > Mem2Stream_Batch_U0_m_axi_in_V_ARSIZE;
sc_signal< sc_lv<2> > Mem2Stream_Batch_U0_m_axi_in_V_ARBURST;
sc_signal< sc_lv<2> > Mem2Stream_Batch_U0_m_axi_in_V_ARLOCK;
sc_signal< sc_lv<4> > Mem2Stream_Batch_U0_m_axi_in_V_ARCACHE;
sc_signal< sc_lv<3> > Mem2Stream_Batch_U0_m_axi_in_V_ARPROT;
sc_signal< sc_lv<4> > Mem2Stream_Batch_U0_m_axi_in_V_ARQOS;
sc_signal< sc_lv<4> > Mem2Stream_Batch_U0_m_axi_in_V_ARREGION;
sc_signal< sc_lv<1> > Mem2Stream_Batch_U0_m_axi_in_V_ARUSER;
sc_signal< sc_logic > Mem2Stream_Batch_U0_m_axi_in_V_RREADY;
sc_signal< sc_logic > Mem2Stream_Batch_U0_m_axi_in_V_BREADY;
sc_signal< sc_lv<8> > Mem2Stream_Batch_U0_out_V_V_TDATA;
sc_signal< sc_logic > Mem2Stream_Batch_U0_out_V_V_TVALID;
sc_signal< sc_logic > ap_sync_continue;
sc_signal< sc_logic > ap_sync_done;
sc_signal< sc_logic > ap_sync_ready;
sc_signal< sc_logic > Mem2Stream_Batch_U0_start_full_n;
sc_signal< sc_logic > Mem2Stream_Batch_U0_start_write;
static const int C_S_AXI_DATA_WIDTH;
static const int C_S_AXI_WSTRB_WIDTH;
static const int C_S_AXI_ADDR_WIDTH;
static const sc_logic ap_const_logic_1;
static const int C_M_AXI_GMEM_USER_VALUE;
static const int C_M_AXI_GMEM_PROT_VALUE;
static const int C_M_AXI_GMEM_CACHE_VALUE;
static const int C_M_AXI_ID_WIDTH;
static const int C_M_AXI_ADDR_WIDTH;
static const int C_M_AXI_DATA_WIDTH;
static const int C_M_AXI_WSTRB_WIDTH;
static const int C_M_AXI_AWUSER_WIDTH;
static const int C_M_AXI_ARUSER_WIDTH;
static const int C_M_AXI_WUSER_WIDTH;
static const int C_M_AXI_RUSER_WIDTH;
static const int C_M_AXI_BUSER_WIDTH;
static const sc_lv<8> ap_const_lv8_0;
static const sc_logic ap_const_logic_0;
static const sc_lv<64> ap_const_lv64_0;
static const sc_lv<64> ap_const_lv64_1;
static const sc_lv<1> ap_const_lv1_0;
static const sc_lv<1> ap_const_lv1_1;
static const sc_lv<32> ap_const_lv32_0;
static const sc_lv<32> ap_const_lv32_1;
static const sc_lv<3> ap_const_lv3_0;
static const sc_lv<3> ap_const_lv3_1;
static const sc_lv<2> ap_const_lv2_0;
static const sc_lv<2> ap_const_lv2_1;
static const sc_lv<4> ap_const_lv4_0;
static const sc_lv<4> ap_const_lv4_1;
static const sc_lv<8> ap_const_lv8_1;
// Thread declarations
void thread_ap_var_for_const0();
void thread_ap_var_for_const8();
void thread_ap_var_for_const1();
void thread_ap_var_for_const2();
void thread_ap_var_for_const3();
void thread_ap_var_for_const4();
void thread_ap_var_for_const5();
void thread_ap_var_for_const6();
void thread_ap_var_for_const7();
void thread_Mem2Stream_Batch_U0_ap_continue();
void thread_Mem2Stream_Batch_U0_ap_start();
void thread_Mem2Stream_Batch_U0_start_full_n();
void thread_Mem2Stream_Batch_U0_start_write();
void thread_ap_done();
void thread_ap_idle();
void thread_ap_ready();
void thread_ap_rst_n_inv();
void thread_ap_sync_continue();
void thread_ap_sync_done();
void thread_ap_sync_ready();
void thread_out_V_V_TDATA();
void thread_out_V_V_TVALID();
void thread_hdltv_gen();
};
}
using namespace ap_rtl;
#endif
| [
"petar.greksic@gmail.com"
] | petar.greksic@gmail.com |
17e743267a7359126d7a28287e9f07337da6e2a2 | 3c1009f45ca0108eac0e97b87aab5453daf3846d | /DoublyList/doublylist.cpp | 5325a2a5c69ef4943fe2f63e1f28611b80aac628 | [] | no_license | pedroeagle/notes-ed1 | f60a1d00000305fd86797640bd341e9d9d7294f5 | 7e384e20aba524b94413cb32bc89d8c2e4a6bd0c | refs/heads/master | 2020-04-26T19:29:05.060657 | 2018-11-26T12:40:18 | 2018-11-26T12:40:18 | 173,776,545 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,746 | cpp | #include "doublylist.hpp"
#include <iostream>
using namespace std;
DoublyList::DoublyList(){
head = tail = 0;
}
DoublyList::DoublyList(int info){
addToHead(info);
}
DoublyList::~DoublyList(){
while(size){
killHead();
}
}
void DoublyList::addToTail(int info){
Node *newTail = new Node(info);
if(tail != 0){
tail->next = newTail;
newTail->previous = tail;
tail = newTail;
}
else{ //se for nulo minha lista está vazia
head = newTail;
tail = newTail;
}
size++;
}
void DoublyList::addToHead(int info){
Node *newHead = new Node(info);
if(head != 0){
newHead->next = head;
head->previous = newHead;
head = newHead;
}
else{
head = newHead;
tail = newHead;
}
size++;
}
void DoublyList::showAll(){
auto temp = head;
while(temp){
cout<<temp->info<<endl;
temp = temp->next;
}
}
void DoublyList::insert(int i, int info){
if(!i){
addToHead(info);
}
else if(i == size){
addToTail(info);
}
else if(i > size || i < 0){
cout<<"posição inválida. não foi possível fazer uma inserção na posição "<<i<<endl;
}
else{
auto temp = head;
while(i--){
temp = temp->next; //como a lista duplamente encadeada armazena o previous posso encontrar diretamente meu elemento
}
Node *insertion = new Node(info, temp->previous, temp); //crio um novo nó em que o previous seja o previous do meu antigo nó naquela
//posição porém meu next deve ser o nó que estava nessa posição
temp->previous->next = insertion; //o next do meu elemento anterior deve ser meu novo nó
temp->previous = insertion; //o anterior do meu antigo nó nessa posição deve ser meu novo nó nessa posição
size++;
}
}
void DoublyList::remove(int i){
if(i == 0){
killHead();
}
else if(i == size){
killTail();
}
else if(i > size || i < 0){
cout<<"posição inválida. não foi possível fazer a remoção da posição "<<i<<endl;
}
else{
auto temp = head;
while(i--){
temp = temp->next;
}
temp->previous->next = temp->next;
temp->next->previous = temp->previous;
delete temp;
size--;
}
}
void DoublyList::killTail(){
if(tail == 0){
cout<<"sua lista está vazia, não há tail a ser removido."<<endl;
return;
}
else if(tail == head){
delete tail;
delete head;
tail = head = 0;
size--;
}
else{
auto temp = tail;
tail = tail->previous;
tail->next = 0;
delete temp;
size--;
}
}
void DoublyList::killHead(){
if(head == 0){
cout<<"sua lista está vazia, não há head a ser removido."<<endl;
return;
}
else if(head == tail){
delete head;
delete tail;
head = tail = 0;
size--;
}
else{
auto temp = head;
head = head->next;
head->previous = 0;
delete temp;
size--;
}
}
bool DoublyList::isEmpty(){
return head == tail;
} | [
"pedroigor@aluno.unb.br"
] | pedroigor@aluno.unb.br |
fe5efad166fa3e9c3c2a01b33e8628e09961c7e4 | 6813143e43a182bbbb49b5bd5cb227af0d2aaae0 | /convert/convert_bvecs.cpp | 61bf82633d464d3c5deb586faaf68334541b22cf | [
"MIT"
] | permissive | takanokage/Product-Quantization-Tree | e808d182cb3e1daa662009e674bdc18c5d438ad9 | 2651ba871100ff4c0ccef42ba57e871fbc6181f8 | refs/heads/master | 2020-04-24T05:56:39.735318 | 2019-02-28T19:06:47 | 2019-02-28T19:06:47 | 171,748,296 | 0 | 0 | MIT | 2019-02-20T20:59:10 | 2019-02-20T20:59:09 | null | UTF-8 | C++ | false | false | 1,856 | cpp | #include <iostream>
#include <fstream>
#include <string>
#include <stdexcept>
#include <cassert>
#include "helper.hpp"
#include "filehelper.hpp"
#include <gflags/gflags.h>
using namespace std;
DEFINE_string(bvecs, "/graphics/projects/scratch/ANNSIFTDB/ANN_SIFT1B/bigann_query.bvecs" , "(input) path to bvec file");
DEFINE_string(umem, "/tmp/query.umem" , "(output) path to umem file");
DEFINE_int32(chunkSize, 100000 , "number of vectors per chunk");
int main(int argc, char *argv[]) {
// parse flags
gflags::SetUsageMessage("This script converts bvecs into umem files\n"
"Usage:\n"
" convert_bvecs --bvecs .. --umem ... \n");
gflags::SetVersionString("1.0.0");
gflags::ParseCommandLineFlags(&argc, &argv, true);
const uint chunkSize = FLAGS_chunkSize;
string fs = FLAGS_bvecs;
// ****************************** HEADER **********************
uint n1 = 0;
uint d1 = 0;
readJegouHeader<uint8_t>(fs.c_str(), n1, d1);
cout << "header dim " << d1 << endl;
cout << "header num " << n1 << endl;
cout << "filesize " << (sizeof(uint8_t)*n1 * d1) / 100000.0 << " mb " << endl;
const uint fileSize = sizeof(uint8_t) * n1 * d1;
n1 = 50000000;
std::fstream fin(FLAGS_umem, std::ios_base::out | std::ios_base::binary);
fin << n1 << std::endl;
fin << d1 << std::endl;
fin.ignore();
fin.seekg( 20 , std::ios::beg );
for (uint pos = 0; pos < n1; pos += chunkSize) {
const uint start = pos;
const uint end = (start + chunkSize > n1) ? n1 : start + chunkSize;
const uint length = end - start ;
cout << "read from " << pos << " to " << end << endl;
uint8_t *data = readBatchJegou(fs.c_str(), start, length);
fin.write((char*) data, length * d1 * sizeof(uint8_t));
fin.flush();
delete[] data;
}
fin.close();
return 0;
} | [
"patrick@wieschollek.info"
] | patrick@wieschollek.info |
ce4a5ac4bf7de53061d494c6984901affad6ccc0 | b3d1a207125a6bcf3d7ea75c357026eb6d21ab0b | /N-QueenProblem.cpp | 7438058c01deb23d9821d947522263585ca2304d | [] | no_license | khanmosajjid/Backtracking | 856a2dde36bd2d175e63893508891a76c3ade045 | dbdf94922220362cfe65b14109cd8a7c8d5ed8f8 | refs/heads/master | 2020-07-31T14:53:34.692667 | 2019-09-24T17:15:57 | 2019-09-24T17:15:57 | 210,643,014 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,783 | cpp | #include<bits/stdc++.h>
using namespace std;
bool isSafe(int board[][10],int i,int j,int n){
//you can check for the column
// j is the column;
for(int row=0;row<i;row++){
if(board[row][j]==1){
return false;
}
}
//you can check for left diagonal row;
int x=i;
int y=j;
while(x>=0&&y>=0){
if(board[x][y]==1){
return false;
}
x--;
y--;
}
//check for the right diagonal;
x=i;
y=j;
while(x>=0&&y<n){
if(board[x][y]==1){
return false;
}
x--;
y++;
}
//agar kahi se bhi false return nhi ho ra it means we have corect position;
return true;
}
// n is total number of rows;
//i is the current row;
bool solveNQueen(int board[][10],int i,int n){
//base case
if(i==n){
//you have successfully placed queens in n rows from 0...n-1;
//print the board;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(board[i][j]==1){
cout<<" Q ";
}
else
cout<<" x ";
}
cout<<""<<endl;
}
cout<<""<<endl;
return false;
}
//Recursive call;
// in recursion we assume that our subboard is solve by recursion and we placed queen in current row;
//call on the remaining part;
for(int j=0;j<n;j++){
// we have to check that we can place queen in i,j position or not;
//assumint that i,j is right position of queen;
if(isSafe(board,i,j,n)){
board[i][j]=1;
bool nextQueenRakhPaaRhe=solveNQueen(board,i+1,n);
if(nextQueenRakhPaaRhe){
return true;
}
//if we come here means i,j is not correct position;
board[i][j]=0; //backtrack kr liya hmne;
}
}
//it means hmne cuurent row me saare positon try kiya aur queen nhi rakh paaye;
return false;
}
int main(){
int n;
//n is total number of rows
cin>>n;
int board[10][10]={0};
solveNQueen(board,0,n);
}
| [
"mosajjid.khan@gmail.com"
] | mosajjid.khan@gmail.com |
ccf76948970e5cbe7b45ef5aac8962f4309f3d2a | 1ae11bb968939fa66e9e5bc55faea3aed19fd22b | /Player.cpp | e688a461b53734461cee6da8de4b02cb45c90739 | [] | no_license | damnyana/BlackJack | ffa159a2eea36d7d14dd6a136256b7b9ad0f33d2 | 53b98dfe274e3a35df1683bbde7d9fb9c07c43ba | refs/heads/main | 2023-04-08T17:56:59.745432 | 2021-04-18T22:57:19 | 2021-04-18T22:57:19 | 359,219,438 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,705 | cpp | #include "Player.h"
#include <iostream>
void Player::copy(const Player& other)
{
strcpy_s(name, 128, other.name);
age = other.age;
wins = other.wins;
cWins = other.cWins;
currentPoints = other.currentPoints;
}
Player::Player()
{
setName("Default Default");
age = 18;
wins = 0;
cWins = 0.0;
currentPoints = 0;
}
Player::Player(const char* _name, int _age, int _wins, double _cWins, int _currentPoints)
{
setName(_name);
age = _age;
wins = _wins;
cWins = _cWins;
currentPoints = _currentPoints;
}
Player::Player(const char* _name, int _wins, double _cWins)
{
strcpy_s(name, 128, _name);
wins = _wins;
cWins = _cWins;
}
Player::Player(const Player& other)
{
copy(other);
}
Player& Player::operator=(const Player& other)
{
if (this != &other)
{
copy(other);
}
return *this;
}
bool Player::isCorrect(const char* _name)
{
int count = 0, space_index = 0;
bool capitals = false;
for (int i = 0; i < strlen(_name) + 1; i++)
{
if (_name[i] == ' ')
{
count++;
space_index = i;
}
}
if (count != 1)
{
return false;
}
if (_name[0] >= 'A' && _name[0] <= 'Z' &&
_name[space_index + 1] >= 'A' && _name[space_index + 1] <= 'Z')
{
capitals = true;
}
return capitals;
}
void Player::setName(const char* _name)
{
strcpy_s(this->name, 64, _name);
}
const char* Player::getName() const
{
return this->name;
}
void Player::change_points(int _currPoints)
{
currentPoints += _currPoints;
}
std::ostream& operator<<(std::ostream& out, const Player& other)
{
out << "Name: " << other.name << std::endl
<< "Age: " << other.age << std::endl
<< "Wins: " << other.wins << std::endl
<< "Coeficient Wins: " << other.cWins << std::endl
<< "Current Points: " << other.currentPoints << std::endl;
return out;
}
std::istream& operator>>(std::istream& in, Player& other)
{
std::cout << "Enter Player Name (First Last) : ";
char _name[64];
in.getline(_name, 128);
while (other.isCorrect(_name) == false)
{
std::cout << "Wrong input! Example: (Default Default). Try again: ";
in.getline(_name, 128);
}
strcpy_s(other.name, strlen(_name) + 1, _name);
bool ageCheck = false; // flag is false
while (ageCheck == false)
{
std::cout << "Age:(must be between 18 and 90 years) ";
in >> other.age;
if (other.age >= 18 && other.age <= 90)
{
ageCheck = true; // if the condition is satisfied, flag is true and loop stops
}
}
std::cout << "Wins: ";
in >> other.wins;
std::cout << "Win Rate: ";
in >> other.cWins;
std::cout << "Current Points: ";
in >> other.currentPoints;
return in;
} | [
"noreply@github.com"
] | damnyana.noreply@github.com |
30000ae1d663ffae9d3ca5463b857aa8a9de8338 | af172028a211cd5ec72b254bbe506cacfe1d9e60 | /FBEngineFacade/CollisionShapeInfo.h | 18c5a15d64c42fb298242e08fc56ffe8776c0ebc | [] | no_license | fastbird/fastbirdEngine | c99ea03416217696ca048db96da7346c7001d24a | 619e1c3af72a58ff939c3ecba8f5cc56b5ea3144 | refs/heads/master | 2021-01-17T00:26:01.866593 | 2017-06-17T10:21:05 | 2017-06-17T10:21:05 | 22,362,299 | 18 | 6 | null | 2015-12-04T06:32:44 | 2014-07-29T00:17:23 | C++ | UTF-8 | C++ | false | false | 1,628 | h | /*
-----------------------------------------------------------------------------
This source file is part of fastbird engine
For the latest info, see http://www.jungwan.net/
Copyright (c) 2013-2015 Jungwan Byun
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
#include "FBSceneObjectFactory/CollisionShapeType.h"
namespace fb{
struct CollisionShapeInfo{
ColisionShapeType::Enum mType;
Vec3 mOffset;
Quat mRot;
Vec3 mScale;
Vec3s mPositions; // for meshes
};
typedef std::vector<CollisionShapeInfo> CollisionShapeInfos;
} | [
"jungwan82@gmail.com"
] | jungwan82@gmail.com |
02aeedd7b768f1222ab489ec694ed7b3d5ec4ee5 | eb61be9b6a0f2774dae6f3f6d5bffdbe24c44435 | /basic/edges_detect/main.cpp | 8c0b254bed2898992a572eb7db57b51cf0eb66bc | [] | no_license | vuhonganh/handTracking | 54e416963f373635eb88994f41219670e65391c3 | dfdd513367bcf943cc96090c4721938a85836cd5 | refs/heads/master | 2021-06-17T09:16:39.293580 | 2017-03-28T21:06:41 | 2017-03-28T21:06:41 | 34,799,122 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,252 | cpp | #include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
using namespace std;
using namespace cv;
Mat edges, edges_thresholded;
string winName = "thresholded scharr edges", trackbarName = "threshold value";
int slider = 50;
void on_slider(int, void *)
{
if(!edges.empty())
{
threshold(edges, edges_thresholded, slider, 255, THRESH_TOZERO);
imshow(winName, edges_thresholded);
}
}
int main()
{
Mat im = imread("lena.jpg");
Mat im_blurred;
//blur image to remove noise
GaussianBlur(im, im_blurred, Size(3,3), 0);
//change to gray scale
Mat gray;
cvtColor(im_blurred, gray, CV_RGB2GRAY);
//start calculating gradient
Mat Gx, Gy;
Scharr(gray, Gx, CV_32F, 1, 0);//CV_32F for calculating
Scharr(gray, Gy, CV_32F, 0, 1);
pow(Gx, 2, Gx);
pow(Gy, 2, Gy);
Mat G;
sqrt(Gx+Gy, G);
//to display, need to reconvert to CV_8U
G.convertTo(edges, CV_8U);
namedWindow(winName);
threshold(edges, edges_thresholded, slider, 255, THRESH_TOZERO);
imshow(winName, edges_thresholded);
createTrackbar(trackbarName, winName, &slider, 255, on_slider);//255 the max value a slider could be
while(char(waitKey(1)) != 'q'){}
return 0;
}
| [
"vuhonganh91@gmail.com"
] | vuhonganh91@gmail.com |
9aaa0e8d980d99e39b2978e09256ac28ad00c77c | bc75c4a8fea774f41fbdc6ba13a43ff741db980c | /p3_wages/salary.cpp | b15d5eb9d39ae72bb2803b9435fa6fc431877018 | [] | no_license | aronhoff/1E3 | afcd15432e258f5219c89e1a737217e7aae6ee14 | 5f29c424298f43c2622db1f60e792f90cb0dc587 | refs/heads/master | 2020-04-14T13:04:24.761529 | 2016-04-07T13:33:06 | 2016-04-07T13:33:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,494 | cpp | #include <iostream>
#include <string>
#include <iomanip>
using namespace std;
int main() {
double hours, wage;
string name;
double tax, prsi, net_pay, grosswage, taxcredit;
cin >> hours >> wage >> taxcredit;
getline(cin, name);
cout << setfill(' ');
int width = 37;
string current = "Name";
cout << current;
cout << setw(width - current.length()) << name << endl;
current = "Hours";
cout << current;
cout << setw(width - current.length()) << hours << endl;
width = 40;
cout << fixed << setprecision(2);
current = "Hourly rate";
cout << current;
cout << setw(width - current.length()) << wage << endl;
if (hours <= 35) {
grosswage = hours*wage;
}
else {
grosswage = 35*wage + (hours-35)*wage*1.5;
}
current = "Gross Wage";
cout << current;
cout << setw(width - current.length()) << grosswage << endl;
tax = grosswage*0.2;
if (tax > taxcredit) {
tax = tax - taxcredit;
}
else {
tax = 0;
}
current = "Tax @ 20%";
cout << current;
cout << setw(width - current.length()) << tax << endl;
prsi = grosswage*0.025;
current = "PRSI @ 2.5%";
cout << current;
cout << setw(width - current.length()) << prsi << endl;
current = "Union dues";
cout << current;
cout << setw(width - current.length()) << 3.50 << endl;
cout << setfill('-') << setw(width) << "" << setfill(' ') << endl;
net_pay = grosswage - tax - prsi - 3.5;
current = "Net pay";
cout << current;
cout << setw(width - current.length()) << net_pay << endl;
return 0;
} | [
"honera@ee4mac11.pac.tcd.ie"
] | honera@ee4mac11.pac.tcd.ie |
70e2548085983bde7d114895604b32321ec88a43 | 7923d84edbd6956d8e3e501bd0f88669b15c61ce | /src/algorithms/warmup/compare_the_triplets/compare_the_triplets_test.cpp | f570b73bbbdf030f155dfecafc9cf0311204270e | [
"MIT"
] | permissive | bmgandre/hackerrank-cpp | bbce1b912ee78b413408118b24a7373aa072e2fc | f4af5777afba233c284790e02c0be7b82108c677 | refs/heads/master | 2023-01-18T19:18:21.630856 | 2020-12-01T00:49:20 | 2020-12-01T00:49:20 | 105,839,527 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 657 | cpp | #include <hackerrank_gtest.h>
#include "compare_the_triplets.h"
namespace hackerrank {
namespace bmgandre {
namespace algorithms {
namespace warmup {
using compare_the_triplets_test = hackerrank::bmgandre::tests::hackerrank_gtest;
TEST_F(compare_the_triplets_test, test_case_1) {
input_stream << "5 6 7\n3 6 10";
input_stream << std::endl;
compare_the_triplets::solve();
std::string output = output_stream.str();
ASSERT_EQ(output, "1 1");
}
} // namespace warmup
} // namespace algorithms
} // namespace bmgandre
} // namespace hackerrank
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| [
"bmg.andre@gmail.com"
] | bmg.andre@gmail.com |
e137f892232871601cdeafc0b7bd1a5b5783ff99 | 8cc355e8465211f4384655f55472d50d080ce1ac | /obj_conscell.h | 89f56cebb50933c628c2cdfea2a3eb3c8b93287c | [
"CC0-1.0"
] | permissive | pgrawehr/golgotha | 47fb1e47c9a2e7f24e0ce7dde188f884a5504438 | 94e0b448d7e7224e56c27b029dec80ca710ceb8b | refs/heads/master | 2023-06-29T12:04:11.302599 | 2022-03-19T08:09:59 | 2022-03-19T08:09:59 | 40,831,531 | 7 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,146 | h | /********************************************************************** <BR>
This file is part of Crack dot Com's free source code release of
Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
information about compiling & licensing issues visit this URL</a>
<PRE> If that doesn't help, contact Jonathan Clark at
golgotha_source@usa.net (Subject should have "GOLG" in it)
***********************************************************************/
#ifndef OBJ_CONSCELL_HH
#define OBJ_CONSCELL_HH
#include "arch.h"
#include "g1_limits.h"
#include "memory/lalloc.h"
class g1_object_class;
class g1_obj_conscell_class;
class g1_obj_conscell_class
{
public:
g1_object_class * data;
g1_obj_conscell_class * next;
};
class g1_obj_conscell_manager_class :
public i4_linear_allocator
{
enum {
MAXIMUM_OCCUPANCY=G1_MAX_OBJECTS*4 * 2/3
};
public:
g1_obj_conscell_manager_class()
: i4_linear_allocator(sizeof(g1_obj_conscell_class),
MAXIMUM_OCCUPANCY,0,"g1_conscells")
{
}
};
extern g1_obj_conscell_manager_class * g1_obj_conscell_manager;
#endif
| [
"pgrawehr@hotmail.com"
] | pgrawehr@hotmail.com |
1d025bdaad9cf9a8f99bcc7f63348fe29226e97c | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/sdktools/debuggers/oca/activex/appcompr/upload.cpp | 6a7fb07423f8ab6cac0946a2f1998f87a8fce0a6 | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 27,641 | cpp | /*******************************************************************
*
* DESCRIPTION: Upload.cpp : Generates and sends out AppCompat report
*
* DATE:6/13/2002
*
*******************************************************************/
#include <wtypes.h>
#include <malloc.h>
#include <strsafe.h>
#include <commdlg.h>
#include <shimdb.h>
#include <faultrep.h>
#include "upload.h"
#include <wchar.h>
// These values are directly fron the web page and it must be in
// sync with it in order for report to work properly
LPCWSTR g_ProblemTypeDescs[] = {
L"Uninitialized",
L"Install_Fail",
L"System_Slow",
L"App_Faulting",
L"App_ErrorOSVer",
L"App_HWDevice",
L"App_OSUpgrade",
L"Uninstall_Fail",
L"App_CDError",
L"App_UserError",
L"App_Internet",
L"App_Print",
L"App_PartlyWork",
NULL
};
ULONG
GetProblemTypeId(
LPWSTR wszProblemType
)
{
ULONG len;
len = wcslen(wszProblemType);
while (len && isdigit(wszProblemType[len-1]))
{
--len;
}
if (wszProblemType[len])
{
return _wtoi(wszProblemType+len);
}
return 0;
}
// ***************************************************************************
DWORD GetAppCompatFlag(LPCWSTR wszPath)
{
LPWSTR pwszFile, wszSysDirLocal = NULL, pwszDir = NULL;
DWORD dwOpt = 0;
DWORD cchPath, cch;
UINT uiDrive;
WCHAR wszSysDir[MAX_PATH+2];
LPWSTR wszBuffer = NULL;
DWORD BufferChCount;
if (wszPath == NULL)
{
goto exitGetACF;
}
// can't be a valid path if it's less than 3 characters long
cchPath = wcslen(wszPath);
if (cchPath < 3)
{
goto exitGetACF;
}
if (!GetSystemDirectoryW(wszSysDir, MAX_PATH+1))
{
goto exitGetACF;
}
// do we have a UNC path?
if (wszPath[0] == L'\\' && wszPath[1] == L'\\')
{
dwOpt = GRABMI_FILTER_THISFILEONLY;
goto exitGetACF;
}
BufferChCount = cchPath+1;
wszBuffer = (LPWSTR) malloc(BufferChCount * sizeof(WCHAR));
if (!wszBuffer)
{
goto exitGetACF;
}
// ok, maybe a remote mapped path or system32?
StringCchCopyW(wszBuffer, BufferChCount, wszPath);
for(pwszFile = wszBuffer + cchPath;
*pwszFile != L'\\' && pwszFile > wszBuffer;
pwszFile--);
if (*pwszFile == L'\\')
*pwszFile = L'\0';
else
goto exitGetACF;
cch = wcslen(wszSysDir) + 1;
// see if it's in system32 or in any parent folder of it.
pwszDir = wszSysDir + cch;
do
{
if (_wcsicmp(wszBuffer, wszSysDir) == 0)
{
dwOpt = GRABMI_FILTER_SYSTEM;
goto exitGetACF;
}
for(;
*pwszDir != L'\\' && pwszDir > wszSysDir;
pwszDir--);
if (*pwszDir == L'\\')
*pwszDir = L'\0';
}
while (pwszDir > wszSysDir);
// is the file sitting in the root of a drive?
if (pwszFile <= &wszBuffer[3])
{
dwOpt = GRABMI_FILTER_THISFILEONLY;
goto exitGetACF;
}
// well, if we've gotten this far, then the path is in the form of
// X:\<something>, so cut off the <something> and find out if we're on
// a mapped drive or not
*pwszFile = L'\\';
wszBuffer[3] = L'\0';
switch(GetDriveTypeW(wszBuffer))
{
case DRIVE_UNKNOWN:
case DRIVE_NO_ROOT_DIR:
goto exitGetACF;
case DRIVE_REMOTE:
dwOpt = GRABMI_FILTER_THISFILEONLY;
goto exitGetACF;
}
dwOpt = GRABMI_FILTER_PRIVACY;
exitGetACF:
if (wszBuffer)
{
free (wszBuffer);
}
return dwOpt;
}
//
// Check if the registry settings allow for user to send the error report
//
BOOL
RegSettingsAllowSend()
{
HKEY hkey, hkeyDoRpt;
BOOL fDoReport = FALSE;
DWORD dw, cb;
cb = sizeof(fDoReport);
if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, c_wszRegErrRpt, 0,
KEY_READ | KEY_WOW64_64KEY, &hkey) == ERROR_SUCCESS)
{
if (RegQueryValueEx(hkey, L"DoReport", NULL, NULL, (PBYTE)&fDoReport,
&cb) != ERROR_SUCCESS)
{
fDoReport = TRUE;
}
RegCloseKey(hkey);
if (!fDoReport)
{
return FALSE;
}
}
if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, c_wszRegDWPolicy, 0,
KEY_READ | KEY_WOW64_64KEY, &hkey) == ERROR_SUCCESS)
{
ULONG TreeRpt=0, NeverUpload=0;
if (RegQueryValueEx(hkey, L"DWFileTreeReport", NULL, NULL, (PBYTE)&TreeRpt,
&cb) != ERROR_SUCCESS)
{
TreeRpt = TRUE;
}
if (RegQueryValueEx(hkey, L"NeverUpload", NULL, NULL, (PBYTE)&NeverUpload,
&cb) != ERROR_SUCCESS)
{
NeverUpload = FALSE;
}
RegCloseKey(hkey);
if (NeverUpload || !TreeRpt)
{
return FALSE;
}
}
// If registry key did not exist we still want to report
return TRUE;
}
//
// Retrive filevesion
//
HRESULT
GetAppFileVersion(
LPWSTR wszAppName,
PULONG pVersion // Should be ULONG[4]
)
{
PVOID pVerBuf;
ULONG dwSize;
HRESULT Hr = S_OK;
dwSize = GetFileVersionInfoSizeW(wszAppName, 0);
pVerBuf = malloc(dwSize);
if (!pVerBuf)
{
return E_OUTOFMEMORY;
}
if (GetFileVersionInfoW(wszAppName, 0, dwSize, pVerBuf))
{
VS_FIXEDFILEINFO *verinfo;
UINT dwVerLen;
if (VerQueryValueW(pVerBuf, L"\\", (LPVOID *)&verinfo, &dwVerLen))
{
pVersion[0] = verinfo->dwFileVersionMS >> 16;
pVersion[1] = verinfo->dwFileVersionMS & 0xFFFF;
pVersion[2] = verinfo->dwFileVersionLS >> 16;
pVersion[3] = verinfo->dwFileVersionLS & 0xFFFF;
} else
{
Hr = E_FAIL;
}
} else
{
// Hr = E_FAIL;
}
free ( pVerBuf );
return Hr;
}
//
// Create a temp dir and return full path name of file
//
HRESULT
GetTempFileFullPath(
LPWSTR wszFileName,
LPWSTR *pwszFullPath
)
{
ULONG cch, cchFile, cchDir;
ULONG Suffix;
LPWSTR wszTempFile;
if (pwszFullPath == NULL || wszFileName == NULL)
{
return E_INVALIDARG;
}
cchFile = wcslen(wszFileName);
if (cchFile == 0)
{
return E_INVALIDARG;
}
cch = GetTempPathW(0, NULL);
if (cch == 0)
{
return E_FAIL;
}
cch += cchFile+2+10;
wszTempFile = (LPWSTR) malloc(cch * sizeof(WCHAR));
if (wszTempFile == NULL)
{
return E_OUTOFMEMORY;
}
if (GetTempPathW(cch, wszTempFile) == 0 ||
StringCchCatW(wszTempFile, cch, L"ACW.00") != S_OK)
{
free (wszTempFile);
return E_FAIL;
}
cchDir = wcslen(wszTempFile);
Suffix = 0;
// Create temp dir for our files
do
{
BOOL fRet;
fRet = CreateDirectoryW(wszTempFile, NULL);
if (fRet)
break;
wszTempFile[cchDir-2] = L'0' + (WCHAR)(Suffix / 10);
wszTempFile[cchDir-1] = L'0' + (WCHAR)(Suffix % 10);
Suffix++;
}
while (Suffix <= 100);
if (Suffix > 100 ||
StringCchCatW(wszTempFile, cch, L"\\") != S_OK ||
StringCchCatW(wszTempFile, cch, wszFileName) != S_OK)
{
free (wszTempFile);
return E_FAIL;
}
*pwszFullPath = wszTempFile;
return S_OK;
}
typedef BOOL (APIENTRY *pfn_SDBGRABMATCHINGINFOW)(LPCWSTR, DWORD, LPCWSTR);
//////////////////////////////////////////////////////////////////////////
// GenerateAppCompatText
// Generates application compatibility report in a temporary file
// File is created un user temp directory
//////////////////////////////////////////////////////////////////////////
HRESULT
GenerateAppCompatText(
LPWSTR wszAppName,
LPWSTR *pwszAppCompatReport
)
{
HRESULT Hr;
LPWSTR wszFile = NULL;
HMODULE hMod = NULL;
pfn_SDBGRABMATCHINGINFOW pSdbGrabMatchingInfo;
if (pwszAppCompatReport == NULL)
{
return E_INVALIDARG;
}
hMod = LoadLibraryW(L"apphelp.dll");
if (hMod == NULL)
{
return E_FAIL;
} else
{
pSdbGrabMatchingInfo = (pfn_SDBGRABMATCHINGINFOW) GetProcAddress(hMod, "SdbGrabMatchingInfo");
if (pSdbGrabMatchingInfo != NULL)
{
Hr = GetTempFileFullPath(L"appcompat.txt", &wszFile);
if (SUCCEEDED(Hr))
{
if ((*pSdbGrabMatchingInfo)(wszAppName,
GetAppCompatFlag(wszAppName),
wszFile))
{
*pwszAppCompatReport = wszFile;
FreeLibrary(hMod);
return S_OK;
} else
{
Hr = E_FAIL;
}
free (wszFile);
}
} else
{
Hr = E_FAIL;
}
FreeLibrary(hMod);
}
return E_FAIL;
}
//
// This allocates returns full file-path for wszFileName in same directory as wszDirFile
//
LPWSTR
GenerateFilePath(
LPCWSTR wszDirFile,
LPCWSTR wszFileName
)
{
ULONG cch;
LPWSTR wszFile;
if (!wszFileName || !wszDirFile)
{
return NULL;
}
// Build the filename
cch = wcslen(wszDirFile) + 1;
cch+= wcslen(wszFileName);
wszFile = (LPWSTR) malloc(cch * sizeof(WCHAR));
if (!wszFile)
{
return NULL;
}
StringCchCopyW(wszFile, cch, wszDirFile);
LPWSTR wszTemp = wcsrchr(wszFile, L'\\');
if (!wszTemp)
{
free (wszFile);
return NULL;
}
wszTemp++; *wszTemp = L'\0';
StringCchCatW(wszFile, cch, wszFileName);
return wszFile;
}
//
// Creates usrrpt.txt file and puts this data in it
//
HRESULT
BuildUserReport(
LPWSTR wszProblemType,
LPWSTR wszComment,
LPWSTR wszAppComWiz,
LPWSTR wszAppCompatFile,
LPWSTR *pwszUserReport
)
{
#define BYTE_ORDER_MARK 0xFEFF
enum REPORT_TYPE {
LT_ANSI,
LT_UNICODE
};
LPWSTR wszFile, wszTemp;
DWORD dwRptType = LT_UNICODE;
static WCHAR wchBOM = BYTE_ORDER_MARK;
ULONG cch;
if (wszProblemType == NULL || wszComment == NULL || wszAppComWiz == NULL ||
wszAppCompatFile == NULL || pwszUserReport == NULL)
{
return E_INVALIDARG;
}
// Build the filename
wszFile = GenerateFilePath(wszAppCompatFile, L"usrrpt.txt");
if (wszFile == NULL)
{
return E_OUTOFMEMORY;
}
//
// Now write data to the file
//
HANDLE hFile;
hFile = CreateFileW(wszFile, GENERIC_READ | GENERIC_WRITE,
0, NULL,
CREATE_ALWAYS, 0, NULL);
if (hFile == NULL ||
hFile == INVALID_HANDLE_VALUE)
{
free (wszFile);
return E_FAIL;
}
#define ByteCount(wsz) wcslen(wsz)*sizeof(WCHAR)
ULONG bw;
if (!WriteFile(hFile, &wchBOM, sizeof(WCHAR), &bw, NULL ) ||
!WriteFile(hFile, c_wszLblType, sizeof(c_wszLblType), &bw, NULL) ||
!WriteFile(hFile, wszProblemType, ByteCount(wszProblemType), &bw, NULL) ||
!WriteFile(hFile, c_wszLblACW, sizeof(c_wszLblACW), &bw, NULL) ||
!WriteFile(hFile, wszAppComWiz, ByteCount(wszAppComWiz), &bw, NULL) ||
!WriteFile(hFile, c_wszLblComment, sizeof(c_wszLblComment), &bw, NULL) ||
!WriteFile(hFile, wszComment, min(ByteCount(wszComment), 2000*sizeof(WCHAR)), &bw, NULL))
{
CloseHandle(hFile);
free (wszFile);
return E_FAIL;
}
CloseHandle(hFile);
*pwszUserReport = wszFile;
return S_OK;
}
HRESULT
MyReportEREventDW(
EEventType eet,
LPCWSTR wszDump,
SEventInfoW *pei
)
{
HMODULE hMod = NULL;
pfn_REPORTEREVENTDW pReportEREventDW;
HRESULT Hr = E_FAIL;
hMod = LoadLibraryW(L"faultrep.dll"); //"H:\\binaries.x86chk\\"
if (hMod == NULL)
{
return E_FAIL;
} else
{
pReportEREventDW = (pfn_REPORTEREVENTDW) GetProcAddress(hMod, "ReportEREventDW");
if (pReportEREventDW != NULL)
{
Hr = (HRESULT) (*pReportEREventDW)(eet, wszDump, pei);
}
FreeLibrary(hMod);
}
return Hr;
}
LPWSTR
GetDefaultServer( void )
{
return (LPWSTR) c_wszServer;
}
HRESULT
ReportDwManifest(
LPWSTR wszAppCompatFile,
SEventInfoW *pei
)
{
LPWSTR wszManifest;
WCHAR wszBuffer[500], wszBufferApp[MAX_PATH], wszDir[100];
HANDLE hManifest;
HRESULT Hr;
DWORD dw, dwFlags, cbToWrite;
LPWSTR pwszServer, pwszBrand, pwszUiLcid;
STARTUPINFOW si;
PROCESS_INFORMATION pi;
wszManifest = GenerateFilePath(wszAppCompatFile, L"manifest.txt");
if (!wszManifest)
{
return E_OUTOFMEMORY;
}
hManifest = CreateFileW(wszManifest, GENERIC_WRITE, FILE_SHARE_READ,
NULL, CREATE_ALWAYS, FILE_FLAG_SEQUENTIAL_SCAN,
NULL);
if (hManifest == INVALID_HANDLE_VALUE)
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
// write the leading 0xFFFE out to the file
wszBuffer[0] = 0xFEFF;
if (!WriteFile(hManifest, wszBuffer, sizeof(wszBuffer[0]), &dw,
NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
// write out the server, LCID, Brand, Flags, & title
// Server=<server>
// UI LCID=GetSystemDefaultLCID()
// Flags=fDWWhister + fDWUserHKLM + headless if necessary
// Brand=<Brand> ("WINDOWS" by default)
// TitleName=<title>
pwszBrand = (LPWSTR) c_wszBrand;
// determine what server we're going to send the data to.
pwszServer = GetDefaultServer();
dwFlags = fDwWhistler | fDwUseHKLM | fDwAllowSuspend | fDwMiniDumpWithUnloadedModules;
dwFlags |= fDwUseLitePlea ;
Hr = StringCbPrintfW(wszBuffer, sizeof(wszBuffer), c_wszManHdr,
pwszServer, GetUserDefaultUILanguage(), dwFlags, c_wszBrand);
if (FAILED(Hr))
goto exitReportDwManifest;
cbToWrite = wcslen(wszBuffer);
cbToWrite *= sizeof(WCHAR);
Hr = WriteFile(hManifest, wszBuffer, cbToWrite, &dw, NULL) ? S_OK : E_FAIL;
if (FAILED(Hr))
goto exitReportDwManifest;
// write out the title text
if (pei->wszTitle != NULL)
{
LPCWSTR wszOut;
wszOut = pei->wszTitle;
cbToWrite = wcslen(wszOut);
cbToWrite *= sizeof(WCHAR);
Hr = WriteFile(hManifest, wszOut, cbToWrite, &dw, NULL) ? S_OK : E_FAIL;
if (FAILED(Hr))
goto exitReportDwManifest;
}
// write out dig PID path
// DigPidRegPath=HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\DigitalProductId
if (!WriteFile(hManifest, c_wszManPID,
sizeof(c_wszManPID) - sizeof(WCHAR), &dw,
NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
// write out the registry subpath for policy info
// RegSubPath==Microsoft\\PCHealth\\ErrorReporting\\DW
if (!WriteFile(hManifest, c_wszManSubPath,
sizeof(c_wszManSubPath) - sizeof(WCHAR), &dw,
NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
// write out the error message if we have one
// ErrorText=<error text read from resource>
if (pei->wszErrMsg != NULL)
{
LPCWSTR wszOut;
if (!WriteFile(hManifest, c_wszManErrText,
sizeof(c_wszManErrText) - sizeof(WCHAR), &dw,
NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
wszOut = pei->wszErrMsg;
cbToWrite = wcslen(wszOut);
cbToWrite *= sizeof(WCHAR);
if (!WriteFile(hManifest, wszOut, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the header text if we have one
// HeaderText=<header text read from resource>
if (pei->wszHdr != NULL)
{
LPCWSTR wszOut;
wszOut = pei->wszHdr;
cbToWrite = wcslen(wszOut);
cbToWrite *= sizeof(WCHAR);
if (!WriteFile(hManifest, c_wszManHdrText,
sizeof(c_wszManHdrText) - sizeof(WCHAR), &dw,
NULL) ||
!WriteFile(hManifest, wszOut, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the plea text if we have one
// Plea=<plea text>
if (pei->wszPlea != NULL)
{
cbToWrite = wcslen(pei->wszPlea) * sizeof(WCHAR);
if (!WriteFile(hManifest, c_wszManPleaText,
sizeof(c_wszManPleaText) - sizeof(WCHAR), &dw,
NULL) ||
!WriteFile(hManifest, pei->wszPlea, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the ReportButton text if we have one
// ReportButton=<button text>
if (pei->wszSendBtn != NULL)
{
cbToWrite = wcslen(pei->wszSendBtn) * sizeof(WCHAR);
if (!WriteFile(hManifest, c_wszManSendText,
sizeof(c_wszManSendText) - sizeof(WCHAR), &dw,
NULL) ||
!WriteFile(hManifest, pei->wszSendBtn, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the NoReportButton text if we have one
// NoReportButton=<button text>
if (pei->wszNoSendBtn != NULL)
{
cbToWrite = wcslen(pei->wszNoSendBtn) * sizeof(WCHAR);
if (!WriteFile(hManifest, c_wszManNSendText,
sizeof(c_wszManNSendText) - sizeof(WCHAR), &dw,
NULL) ||
!WriteFile(hManifest, pei->wszNoSendBtn, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the EventLog text if we have one
// EventLogSource=<button text>
if (pei->wszEventSrc != NULL)
{
cbToWrite = wcslen(pei->wszEventSrc) * sizeof(WCHAR);
if (!WriteFile(hManifest, c_wszManEventSrc,
sizeof(c_wszManEventSrc) - sizeof(WCHAR), &dw,
NULL) ||
!WriteFile(hManifest, pei->wszEventSrc, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the stage 1 URL if there is one
// Stage1URL=<stage 1 URL>
if (pei->wszStage1 != NULL)
{
cbToWrite = wcslen(pei->wszStage1) * sizeof(WCHAR);
if (!WriteFile(hManifest, pei->wszStage1, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the stage 2 URL
// Stage2URL=<stage 2 URL>
if (pei->wszStage2 != NULL)
{
cbToWrite = wcslen(pei->wszStage2) * sizeof(WCHAR);
if (!WriteFile(hManifest, pei->wszStage2, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out files to collect if we have any
// DataFiles=<list of files to include in cab>
if (pei->wszFileList != NULL)
{
cbToWrite = wcslen(pei->wszFileList) * sizeof(WCHAR);
if (!WriteFile(hManifest, c_wszManFiles,
sizeof(c_wszManFiles) - sizeof(WCHAR), &dw,
NULL) ||
!WriteFile(hManifest, pei->wszFileList, cbToWrite, &dw, NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
}
// write out the final "\r\n"
wszBuffer[0] = L'\r';
wszBuffer[1] = L'\n';
if (!WriteFile(hManifest, wszBuffer, 2 * sizeof(wszBuffer[0]), &dw,
NULL))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
CloseHandle(hManifest);
hManifest = INVALID_HANDLE_VALUE;
// create the process
GetSystemDirectoryW(wszDir, sizeof(wszDir)/sizeof(WCHAR));
StringCbPrintfW(wszBufferApp, sizeof(wszBufferApp), c_wszDWExe, wszDir);
StringCbPrintfW(wszBuffer, sizeof(wszBuffer), c_wszDWCmdLine, wszManifest);
ZeroMemory(&si, sizeof(si));
ZeroMemory(&pi, sizeof(pi));
si.cb = sizeof(si);
// check and see if the system is shutting down. If so, CreateProcess is
// gonna pop up some annoying UI that we can't get rid of, so we don't
// want to call it if we know it's gonna happen.
if (GetSystemMetrics(SM_SHUTTINGDOWN))
{
Hr = E_FAIL;
goto exitReportDwManifest;
}
// we're creating the process in the same user context that we're in
si.lpDesktop = L"Winsta0\\Default";
if (!CreateProcessW(wszBufferApp, wszBuffer, NULL, NULL, TRUE,
CREATE_DEFAULT_ERROR_MODE |
NORMAL_PRIORITY_CLASS,
NULL, wszDir, &si, &pi))
{
Hr = ERROR_APPRPT_DW_LAUNCH;
goto exitReportDwManifest;
}
// don't need the thread handle & we gotta close it, so close it now
CloseHandle(pi.hThread);
pi.hThread = NULL;
// wait 5 minutes for DW to close. If it doesn't close by then, just
// return.
dw = WaitForSingleObject(pi.hProcess, 5*60*1000);
if (dw == WAIT_TIMEOUT)
{
CloseHandle(pi.hProcess);
Hr = ERROR_APPRPT_DW_TIMEOUT;
goto exitReportDwManifest;
}
else if (dw == WAIT_FAILED)
{
CloseHandle(pi.hProcess);
goto exitReportDwManifest;
}
CloseHandle(pi.hProcess);
GetExitCodeProcess(pi.hProcess, &dw);
if (dw == STILL_ACTIVE)
{
// "DW process still active!"
// Kill dw and let user know dw timed out
TerminateProcess(pi.hProcess, 1);
Hr = ERROR_APPRPT_DW_TIMEOUT;
} else if (dw == 0)
{
Hr = S_OK;
}
else
{
Hr = E_FAIL;
}
pi.hProcess = NULL;
exitReportDwManifest:
// Note again that we assume there was no previous impersonation token
// on the the thread before we did the impersonation above.
if (hManifest != INVALID_HANDLE_VALUE)
CloseHandle(hManifest);
if (FAILED(Hr) || wszManifest != NULL)
{
DeleteFileW(wszManifest);
free (wszManifest);
}
return Hr;
}
//
// Calls up faultrep.dll to launch DwWin for uploading the error report
//
HRESULT
UploadAppProblem(
LPWSTR wszAppName,
LPWSTR wszProblemType,
LPWSTR wszUserComment,
LPWSTR wszMiscData,
LPWSTR wszAppCompatText
)
{
EEventType eet;
SEventInfoW ei = {0};
LPWSTR wszUerRpt = NULL;
HRESULT Hr;
LPWSTR wszFileList = NULL;
LPWSTR wszStage1URL = NULL;
LPWSTR wszStage2URL = NULL;
LPWSTR wszBaseName;
ULONG cch;
ULONG VerInfo[4];
ULONG OffsetFromProbType;
if ((wszAppName == NULL) || (wszProblemType == NULL) ||
(wszMiscData == NULL) || (wszAppCompatText == NULL))
{
goto exitUpload;
}
if (wszUserComment == NULL)
{
wszUserComment = L"";
}
if (!RegSettingsAllowSend())
{
Hr = E_FAIL;
goto exitUpload;
}
if ((Hr = GetAppFileVersion(wszAppName, &VerInfo[0])) != S_OK)
{
goto exitUpload;
}
if ((Hr = BuildUserReport(wszProblemType, wszUserComment, wszMiscData,
wszAppCompatText, &wszUerRpt)) != S_OK)
{
goto exitUpload;
}
OffsetFromProbType = GetProblemTypeId(wszProblemType);
wszFileList = (LPWSTR) malloc((cch = (wcslen(wszAppCompatText) + wcslen(wszUerRpt) + 2)) * sizeof(WCHAR));
if (!wszFileList)
{
Hr = E_OUTOFMEMORY;
goto exitUpload;
}
StringCchPrintfW(wszFileList, cch, L"%ws|%ws", wszAppCompatText, wszUerRpt);
wszBaseName = wcsrchr(wszAppName, L'\\');
if (wszBaseName == NULL)
{
Hr = E_INVALIDARG;
goto exitUpload;
}
wszBaseName++;
cch = wcslen(wszBaseName) + sizeof(c_wszStage1)/sizeof(WCHAR) + 4*5 + 2;
wszStage1URL = (LPWSTR) malloc( cch * sizeof (WCHAR));
if (!wszStage1URL)
{
Hr = E_OUTOFMEMORY;
goto exitUpload;
}
Hr = StringCchPrintfW(wszStage1URL, cch, c_wszStage1, wszBaseName,
VerInfo[0], VerInfo[1], VerInfo[2], VerInfo[3],
OffsetFromProbType);
if (FAILED(Hr))
{
goto exitUpload;
}
cch = wcslen(wszBaseName) + sizeof(c_wszStage2)/sizeof(WCHAR) + 4*5 + 2;
wszStage2URL = (LPWSTR) malloc( cch * sizeof (WCHAR));
if (!wszStage2URL)
{
Hr = E_OUTOFMEMORY;
goto exitUpload;
}
Hr = StringCchPrintfW(wszStage2URL, cch, c_wszStage2, wszBaseName,
VerInfo[0], VerInfo[1], VerInfo[2], VerInfo[3],
OffsetFromProbType);
if (FAILED(Hr))
{
goto exitUpload;
}
eet = eetUseEventInfo;
ei.cbSEI = sizeof(ei);
ei.wszTitle = L"Microsoft Windows";
ei.wszErrMsg = L"Thank-you for creating an application compatibility report.";
ei.wszHdr = L"Report an Application Compatibility Issue";
ei.wszPlea = L"We have created an error report that you can send to help us improve "
L"Microsoft Windows. We will treat this report as confidential and anonymous.";
ei.wszEventName = L"User initiated report";
ei.fUseLitePlea = FALSE;
ei.wszStage1 = wszStage1URL;
ei.wszStage2 = wszStage2URL;
ei.wszCorpPath = NULL;
ei.wszSendBtn = L"&Send Error Report";
ei.wszNoSendBtn = L"&Don't Send";
ei.wszFileList = wszFileList;
if ((Hr = ReportDwManifest(wszAppCompatText, &ei)) != S_OK)
// if ((Hr = MyReportEREventDW(eet, NULL, &ei)) != S_OK)
{
// we failed
}
exitUpload:
if (wszFileList != NULL) free( wszFileList );
if (wszStage1URL != NULL) free( wszStage1URL );
if (wszStage2URL != NULL) free( wszStage2URL );
// Delete all temporary files
if (wszUerRpt != NULL)
{
DeleteFileW(wszUerRpt);
free (wszUerRpt );
}
if (wszAppCompatText != NULL)
{
DeleteFileW(wszAppCompatText);
wszBaseName = wcsrchr(wszAppCompatText, L'\\');
if (wszBaseName)
{
*wszBaseName = L'\0';
RemoveDirectoryW(wszAppCompatText);
*wszBaseName = L'\\';
}
}
return Hr;
}
| [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
da5e5a7acdd410436fdef489482318328fa908c4 | 75476586d8fb9ec8ae1aade5588b0b862d6cc47a | /include/mex/source/mex_compute_core_freespace_unexplained.cpp | 0a804dc006f7e6e76f1a540996ee8eb2da3acf2a | [] | no_license | 3000huyang/structured-indoor-modeling | 991d6b6086e3486f7d59bb3624d3810c02e808e4 | f071e370ad05547e231df27a5caabf6b414108bd | refs/heads/master | 2022-04-09T16:35:01.050594 | 2020-01-31T10:33:26 | 2020-01-31T10:33:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,281 | cpp | #include <mex.h>
#include <math.h>
int sign(double x)
{
if(x >= 0)
return 1;
else
return -1;
}
int min(int a, int b)
{
if(a >= b) return b;
else return a;
}
int max(int a, int b)
{
if(a >= b) return a;
else return b;
}
bool judge_unexplained(int index1, int index2, int index3, int index4)
{
if(index1 != index2 || index1 != index3 || index1 != index4) return true;
if(index2 != index3 || index2 != index4) return true;
if(index3 != index4) return true;
return false;
}
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
double *fs = mxGetPr(prhs[0]);
double *ifsmask = mxGetPr(prhs[1]);
double *mask = mxGetPr(prhs[2]);
int minx = (int)*mxGetPr(prhs[3]);
int maxx = (int)*mxGetPr(prhs[4]);
int miny = (int)*mxGetPr(prhs[5]);
int maxy = (int)*mxGetPr(prhs[6]);
int h = (int)mxGetDimensions(prhs[0])[0];
int w = (int)mxGetDimensions(prhs[0])[1];
nlhs = 1;
plhs[0] = mxCreateDoubleMatrix(4, 1, mxREAL);
double *X = mxGetPr(plhs[0]);
double maxcost = 0;
double maxi, maxj, maxii, maxjj;
int index1, index2, index3, index4;
// computing the core-freespace-evidence
for(int i=minx;i<maxx-1;i++)
{
for(int j=miny;j<maxy-1;j++)
{
if(fs[i*h+j]>0)
{
for(int ii=i+1;ii<maxx;++ii)
{
for(int jj=j+1;jj<maxy;++jj)
{
if(fs[ii*h+jj]>0 && fs[i*h+jj]>0 && fs[ii*h+j]>0)
{
index1 = mask[i*h+j];
index2 = mask[ii*h+jj];
index3 = mask[i*h+jj];
index4 = mask[ii*h+j];
int ii_ = ii+1;
int jj_ = jj+1;
int sum_fs = ifsmask[i*(h+1)+j] + ifsmask[ii_*(h+1)+jj_] - ifsmask[ii_*(h+1)+j] - ifsmask[i*(h+1)+jj_];
if(sum_fs == 0 && judge_unexplained(index1, index2, index3, index4))
{
double cost = min(ii-i, jj-j);
double cost2 = max(ii-i, jj-j);
cost = cost + 0.001*cost2;;
if(cost >= maxcost)
{
maxcost = cost;
maxi = i;
maxj = j;
maxii = ii;
maxjj = jj;
}
}
}
}
}
}
}
}
*(X+0) = maxi+1;
*(X+1) = maxj+1;
*(X+2) = maxii+1;
*(X+3) = maxjj+1;
}
| [
"root@LAPTOP-L86VOCT7.localdomain"
] | root@LAPTOP-L86VOCT7.localdomain |
d364162359659f26ae7d0853faeccad8e9ea3385 | 0b305fa8a938bad8ea5e1c2396fb60f2dd8c3245 | /Descriptor/DVB/MosaicDesc.h | 27b9ae2708d2cbee796de9e1b97f7af562cfe2c4 | [] | no_license | cameron0402/TS_Analysis | c52e8663a28b4530b96310c73c368f9d323db16c | a6082c830d167356f0882cbadc5589227756bb54 | refs/heads/master | 2021-01-25T04:59:06.062317 | 2015-09-21T09:20:52 | 2015-09-21T09:20:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,468 | h | #ifndef MOSAICDESC_H_HEADER_INCLUDED_AAA50E21
#define MOSAICDESC_H_HEADER_INCLUDED_AAA50E21
#include "../Descriptor.h"
//descriptor_tag = 0x51
//##ModelId=555AE40D03E6
class MosaicDesc : public Descriptor
{
public:
//##ModelId=555AE9890204
class MosaicInfo
{
public:
//##ModelId=555AE9970345
uint8_t logical_cell_id;
//##ModelId=555AE9CC01F3
uint8_t logical_cell_presentation_info;
uint8_t elementary_cell_field_length;
//##ModelId=555AE9F800C3
std::list<uint8_t> elem_id_list;
//##ModelId=555AEA21034C
uint8_t cell_linkage_info;
//##ModelId=555AEA3803AC
uint16_t bouquet_id;
//##ModelId=555AEA4E0255
uint16_t original_network_id;
//##ModelId=555AEA670084
uint16_t transport_stream_id;
//##ModelId=555AEA7F0114
uint16_t service_id;
//##ModelId=555AEA9902F6
uint16_t event_id;
};
//##ModelId=555AEAE300AB
MosaicDesc();
//##ModelId=555AEAF302B3
MosaicDesc(uint8_t* data);
//##ModelId=555AEB0C003B
virtual ~MosaicDesc();
//##ModelId=555AE423015A
uint8_t mosaic_entry_point;
//##ModelId=555AE8A20115
uint8_t number_of_horizontal_elementary_cells;
//##ModelId=555AE8C202BB
uint8_t number_of_vertical_elementary_cells;
//##ModelId=555AEAB70302
std::list<MosaicInfo> mosaic_list;
};
#endif /* MOSAICDESC_H_HEADER_INCLUDED_AAA50E21 */
| [
"lc19890709@126.com"
] | lc19890709@126.com |
3f0dc07ee135c1be1445496fd27a1d1287be2a87 | 58d88b398ad6fd25a7e9faf1ef9fc698c90767d3 | /Lab07/Lab07/person.h | 94bd0eb7470dfcb5c9344dd101fa4d6979872c7d | [] | no_license | deswea/CIS308 | 6030a18d6bd4d8eb1fe12043f69888043c9d228c | 5e0b00b1f59a90fa87eda445f5ebdc4aef0f2051 | refs/heads/master | 2021-01-23T08:33:49.552815 | 2017-12-05T22:10:26 | 2017-12-05T22:10:26 | 102,532,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 190 | h | #pragma once
#ifndef PERSON_H
#define PERSON_H
class Person {
private:
char name[20];
int age;
public:
void setVals(char[], int);
void print(void);
};
#endif //
| [
"noreply@github.com"
] | deswea.noreply@github.com |
fb5ed34619029066ba8c0031daa04b135e45a08c | a266eaa3b2f99bc315967c6d64fa77b5d9e5b3a6 | /Basic/InterviewBit/GRAPH/Level Order.cpp | 317cdd3b626cfa67c4bc339c3642b2e72c842e19 | [] | no_license | sahilskumar/Implementation | c0b66888ce9e90dd16f582652dc31bf69159494f | 6a4ac78d744b63568659a01b5db8b2c201ea3976 | refs/heads/master | 2021-06-28T21:56:20.413558 | 2020-09-03T10:06:50 | 2020-09-03T10:06:50 | 150,960,818 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,883 | cpp | /*
Given a binary tree, return the level order traversal of its nodes’ values. (ie, from left to right, level by level).
Example :
Given binary tree
3
/ \
9 20
/ \
15 7
return its level order traversal as:
[
[3],
[9,20],
[15,7]
]
Also think about a version of the question where you are asked to do a level order traversal of the tree when depth of the tree is
much greater than number of nodes on a level.
*/
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
vector<vector<int> > Solution::levelOrder(TreeNode* A) {
//associating level
pair<TreeNode*,int>p;
queue<pair<TreeNode*,int>>s;
s.push({A,0});
map<int,vector<int>>ans;
while(!s.empty())
{
pair<TreeNode*,int> top=s.front();
s.pop();
int level=top.second;
TreeNode* value=top.first;
//cout<<value->val<<" ";
ans[level].push_back(value->val);
if(value->left!=NULL)
s.push({value->left,level+1});
if(value->right!=NULL)
s.push({value->right,level+1});
}
vector<vector<int>>res;
for(auto x : ans)
res.push_back(x.second);
return res;
}
//------------2---------------------------
void buildVector(TreeNode *root, int depth, vector<vector<int> > &ret) {
if(root == NULL)
return;
if(ret.size() == depth)
ret.push_back(vector<int>());
ret[depth].push_back(root->val);
buildVector(root->left, depth + 1, ret);
buildVector(root->right, depth + 1, ret);
}
vector<vector<int> > Solution::levelOrder(TreeNode* root) {
vector<vector<int> > ret;
buildVector(root, 0, ret);
return ret;
}
| [
"noreply@github.com"
] | sahilskumar.noreply@github.com |
682ad31c3b9c599fdfad9d39868f8e38af3ba120 | 75349e38b5590fa172b6c78a935f7bce3d369665 | /LintCode/94二叉树中的最大路径和.cpp | e2ab475bda0d65ab833da3290adfcb7e944ff731 | [] | no_license | CmosZhang/Code_Practice | f5a329d5405987426a0094a7a252b11008752b87 | e901d82396a83d4b6e48cbc305551a346eb1073a | refs/heads/master | 2020-09-25T10:47:08.141466 | 2020-01-03T08:05:47 | 2020-01-03T08:05:47 | 225,989,438 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,669 | cpp | #include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<stack>
using namespace std;
//二叉树的储存结构
class TreeNode
{
public:
int val;
TreeNode *left, *right;
TreeNode(int val)
{
this->val = val;
this->left = this->right = NULL;
}
};
//94. 二叉树中的最大路径和
//您的提交打败了 100.00% 的提交!
//网上优秀代码
/*
int result;
int maxPathSum(TreeNode* root)
{
result = INT_MIN; // 考虑全部节点为负数的情况
getPath(root);
return result;
}
int getPath(TreeNode* node)
{
if(node == NULL)
{
return 0;
}
int left = getPath(node->left);
int right = getPath(node->right);
int tmp = max(max(left+node->val, right+node->val), node->val); // 这三种情况是经过节点node且可以向上组合的,需要返回给上层使用
result = max(result,max(tmp, left+right+node->val)); // 不能向上组合的情况只需要用于更新结果,无需向上返回
return tmp;
}
*/
//您的提交打败了 100.00% 的提交!
int helper(TreeNode*root, int &res)
{
if (root == NULL)
{
return 0;
}
int left = helper(root->left, res);
int right = helper(root->right, res);
res = max(res, max(0, left) + max(0, right) + root->val);
return max(left, right) + root->val;
}
int maxPathSum(TreeNode * root)
{
// write your code here
if (root == NULL)
{
return 0;
}
int res = INT_MIN;
helper(root, res);
return res;
}
void main() {
char str[] = "S\065AB";
printf("\n%d", sizeof(str));
system("pause");
} | [
"noreply@github.com"
] | CmosZhang.noreply@github.com |
47bc89fda085956f5614ad35e658a36a92327070 | e5ef3a75620a9abb270fc7602a17b0273d3c13ca | /HackerEarth/salluBhai.cpp | cfee1f85aa274f5abc712ffa1003119e2abf42e5 | [] | no_license | Zyloc/Algorithm-and-library | 19197fab8f5ddc35b11daba5f4a5776f2a2da62c | 213034bfd013cc3c03e8cc5c4fe07111ddbfb021 | refs/heads/master | 2020-04-12T06:25:45.782093 | 2018-02-15T22:38:00 | 2018-02-15T22:38:00 | 60,200,527 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,439 | cpp | /*
* Richie Rich
*/
#include <bits/stdc++.h>
#define lli long long int
using namespace std;
lli dp[13][2][9];
lli magicBox(lli index,bool flag,lli modSoFar,string number,string temp){
if(index == number.size()){
cout<<temp<<" "<<modSoFar<<endl;
return modSoFar == 0;
}
if(dp[index][flag][modSoFar]!=-1){
return dp[index][flag][modSoFar];
}
lli ans(0);
if(flag){
for(int i(0);i<number[index]-'0';i++){
if(i == 0){
ans+=magicBox(index+1,false,modSoFar,number,temp+"0");
}
else{
ans+=magicBox(index+1,false,(modSoFar+int(pow(i,i))%i)%i,number,temp+to_string(i));
}
}
if(number[index] == '0'){
ans+=magicBox(index+1,true,modSoFar,number,temp+"0");
}
else{
ans+=magicBox(index+1,true,(modSoFar+int(pow(number[index]-'0',number[index]-'0'))%(number[index]-'0'))%(number[index]-'0'),number,temp+number[index]);
}
}
else{
for(int i(0);i<=9;i++){
if(i == 0){
ans+=magicBox(index+1,false,modSoFar,number,temp+"0");
}
else{
ans+=magicBox(index+1,false,(modSoFar+int(pow(i,i))%i)%i,number,temp+to_string(i));
}
}
}
dp[index][flag][modSoFar] = ans;
return ans;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
lli t;
cin>>t;
while(t--){
lli l,r;
cin>>l>>r;
memset(dp,-1,sizeof dp);
lli a(magicBox(0,true,0,to_string(r),""));
memset(dp,-1,sizeof dp);
//lli b(magicBox(0,true,0,to_string(l-1),""));
//cout<<a-b<<endl;
}
return 0;
}
| [
"sswarnkar13@gmail.com"
] | sswarnkar13@gmail.com |
944a985da4381c2cf5fab1221fac09e25b69a475 | 3a6637d0a51b8ae3f75498de9182097e428f72a0 | /workspace_cdt/Test/src/rectangle.cpp | d6f8f67f814123d9e1e5ff14d5223c30fbfbc0f2 | [] | no_license | maizaAvaro/side_pieces | aa37e4213c6eddf3bed3fcc10905c2190abd9809 | 3df7bb99b59bd26f7661048611de13e8c8f4de24 | refs/heads/master | 2016-09-01T18:22:41.598019 | 2014-08-25T21:05:39 | 2014-08-25T21:05:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,467 | cpp | #include "shape.h"
#include "rectangle.h"
#include <iostream>
#include<string>
using namespace std;
// Constructor
Rectangle::Rectangle(){}
Rectangle::Rectangle(Point * newP1, int newwidth, int newheight, bool newFill)
{
setX(newP1->getX());
setY(newP1->getY());
setColor(newP1->getColor());
setWidth(newwidth);
setHeight(newheight);
setFill(newFill);
}
// Accessors for width, height and filled as well as the x and y components of the point passed
int Rectangle::getWidth()
{
return width;
}
int Rectangle::getHeight()
{
return height;
}
bool Rectangle::isFilled()
{
return filled;
}
void Rectangle::setWidth(int newwidth)
{
width = newwidth;
}
void Rectangle::setHeight(int newheight)
{
height = newheight;
}
void Rectangle::setFill(bool newFill)
{
filled = newFill;
}
// draw the rectangle
void Rectangle::draw()
{
cout << endl;
cout << "Drawing a Rectangle starting at the point (" << getX() << ", " << getY();
cout << ") with a width of " << getWidth() << " and a height of " << getHeight() << "." << endl;
if(isFilled() == true){
cout << "The rectangle is filled with the color " << getColor() << "." << endl;
}else{
cout << "The rectangle is not filled." << endl;
}
}
Rectangle::~Rectangle()
{
cout << endl;
cout << "Rectangle::~Rectangle()" << endl;
}
| [
"ntray1@gmail.com"
] | ntray1@gmail.com |
25fe4d4a25e39dcf74d7c6b5c97cca2558590952 | 36dcf3156e9afbf6cd1a8fc79a3700e2e74b1918 | /lib/ui/gfx/tests/pose_buffer_unit_test.cc | 1c1fd56082fd08fa9ce668e452f74aeaf1f7577b | [
"BSD-3-Clause"
] | permissive | lineCode/garnet | e00f41661c9ad933b559e3edf63a89d13d4e1dae | 60b6df95b24be20a1f9247a441de3293506832a6 | refs/heads/master | 2020-03-20T01:43:31.284515 | 2018-06-12T12:40:02 | 2018-06-12T12:40:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,369 | cc | // Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "garnet/lib/ui/gfx/tests/vk_session_test.h"
#include "lib/ui/scenic/fidl_helpers.h"
#include "public/lib/escher/test/gtest_vulkan.h"
#include "gtest/gtest.h"
namespace scenic {
namespace gfx {
namespace test {
using PoseBufferTest = VkSessionTest;
VK_TEST_F(PoseBufferTest, Validation) {
const scenic::ResourceId invalid_id = 0;
const scenic::ResourceId scene_id = 1;
const scenic::ResourceId camera_id = 2;
const scenic::ResourceId memory_id = 3;
const scenic::ResourceId buffer_id = 4;
ASSERT_TRUE(Apply(scenic_lib::NewCreateSceneCmd(scene_id)));
ASSERT_TRUE(Apply(scenic_lib::NewCreateCameraCmd(camera_id, scene_id)));
uint64_t vmo_size = PAGE_SIZE;
zx::vmo vmo;
zx_status_t status = zx::vmo::create(vmo_size, 0u, &vmo);
ASSERT_EQ(ZX_OK, status);
uint64_t base_time = zx::clock::get(ZX_CLOCK_MONOTONIC).get();
uint64_t time_interval = 1024 * 1024; // 1 ms
uint32_t num_entries = 1;
ASSERT_TRUE(Apply(scenic_lib::NewCreateMemoryCmd(
memory_id, std::move(vmo),
fuchsia::images::MemoryType::VK_DEVICE_MEMORY)));
ASSERT_TRUE(Apply(
scenic_lib::NewCreateBufferCmd(buffer_id, memory_id, 0, vmo_size)));
// Actual Tests
// Basic case: all arguments valid
EXPECT_TRUE(Apply(scenic_lib::NewSetCameraPoseBufferCmd(
camera_id, buffer_id, num_entries, base_time, time_interval)));
// Invalid base time in the future
EXPECT_FALSE(Apply(scenic_lib::NewSetCameraPoseBufferCmd(
camera_id, buffer_id, num_entries, UINT64_MAX, time_interval)));
// Invalid buffer id
EXPECT_FALSE(Apply(scenic_lib::NewSetCameraPoseBufferCmd(
camera_id, invalid_id, num_entries, base_time, time_interval)));
// Invalid camera id
EXPECT_FALSE(Apply(scenic_lib::NewSetCameraPoseBufferCmd(
invalid_id, buffer_id, num_entries, base_time, time_interval)));
// num_entries too small
EXPECT_FALSE(Apply(scenic_lib::NewSetCameraPoseBufferCmd(
camera_id, buffer_id, 0, base_time, time_interval)));
// num_entries too large
EXPECT_FALSE(Apply(scenic_lib::NewSetCameraPoseBufferCmd(
camera_id, buffer_id, UINT32_MAX, base_time, time_interval)));
}
} // namespace test
} // namespace gfx
} // namespace scenic | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
301225ff08b2944053e4b7acb4c3e33d3b389634 | 81b3f7ca646d12c28e43bee31c6948b8eaabeb79 | /stdafx.cpp | 4832759b14a11c64348d1266e84234d2b551a697 | [] | no_license | MohammadKarimi23/DSTerm | 36dd30882e4a138c1b3e13260b38df0901d5a93c | 00fbe6af867f0c084fd54f682be7862b5cd95ccb | refs/heads/master | 2021-05-29T11:47:02.129889 | 2014-12-29T19:00:11 | 2014-12-29T19:00:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 200 | cpp |
// stdafx.cpp : source file that includes just the standard includes
// DSTerm.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
| [
"eecs.mk74@gmail.com"
] | eecs.mk74@gmail.com |
98b11e74f436788e91860baf44a979b639727eaf | 8e7506a1476c78414f5d927300564ed2229f3a86 | /25PCL_VFH/src/PCL_VFH.cpp | 22883c7a679f1fe381738afe19bc4b89f9f465d9 | [] | no_license | Spoorthi-vaidya/PCL_DEMOS | 8139abd6cb4cfc96076cb843c03e2589adca2859 | 4013bcd2dc2149e1f73d427618f50e7679aace5b | refs/heads/master | 2021-09-03T09:40:54.039000 | 2018-01-08T03:47:25 | 2018-01-08T03:47:25 | 116,626,328 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,713 | cpp | #include <pcl/io/pcd_io.h>
#include <pcl/features/normal_3d.h>
#include <pcl/features/vfh.h>
int
main(int argc, char** argv)
{
// Cloud for storing the object.
pcl::PointCloud<pcl::PointXYZ>::Ptr object(new pcl::PointCloud<pcl::PointXYZ>);
// Object for storing the normals.
pcl::PointCloud<pcl::Normal>::Ptr normals(new pcl::PointCloud<pcl::Normal>);
// Object for storing the VFH descriptor.
pcl::PointCloud<pcl::VFHSignature308>::Ptr descriptor(new pcl::PointCloud<pcl::VFHSignature308>);
// Note: you should have performed preprocessing to cluster out the object
// from the cloud, and save it to this individual file.
// Read a PCD file from disk.
if (pcl::io::loadPCDFile<pcl::PointXYZ>(argv[1], *object) != 0)
{
return -1;
}
// Estimate the normals.
pcl::NormalEstimation<pcl::PointXYZ, pcl::Normal> normalEstimation;
normalEstimation.setInputCloud(object);
normalEstimation.setRadiusSearch(0.03);
pcl::search::KdTree<pcl::PointXYZ>::Ptr kdtree(new pcl::search::KdTree<pcl::PointXYZ>);
normalEstimation.setSearchMethod(kdtree);
normalEstimation.compute(*normals);
// VFH estimation object.
pcl::VFHEstimation<pcl::PointXYZ, pcl::Normal, pcl::VFHSignature308> vfh;
vfh.setInputCloud(object);
vfh.setInputNormals(normals);
vfh.setSearchMethod(kdtree);
// Optionally, we can normalize the bins of the resulting histogram,
// using the total number of points.
vfh.setNormalizeBins(true);
// Also, we can normalize the SDC with the maximum size found between
// the centroid and any of the cluster's points.
vfh.setNormalizeDistance(false);
vfh.compute(*descriptor);
pcl::PCDWriter writer;
writer.write<pcl::VFHSignature308> ("output_vfh.pcd", *descriptor, false);
}
| [
"spoorthivaidya@gmail.com"
] | spoorthivaidya@gmail.com |
c39c81a0d13a3af626e07c35dd6314c68c53ab20 | 2b0ff7f7529350a00a34de9050d3404be6d588a0 | /048_對話盒相關/23_對話盒切換/tes.h | e0bb46eed2491613f9b335a1021b7f158244285b | [] | no_license | isliulin/jashliao_VC | 6b234b427469fb191884df2def0b47c4948b3187 | 5310f52b1276379b267acab4b609a9467f43d8cb | refs/heads/master | 2023-05-13T09:28:49.756293 | 2021-06-08T13:40:23 | 2021-06-08T13:40:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,168 | h | #if !defined(AFX_TES_H__C8A477B8_CF51_4021_ABB3_7540FCEA469D__INCLUDED_)
#define AFX_TES_H__C8A477B8_CF51_4021_ABB3_7540FCEA469D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// tes.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// tes dialog
#include "testDlg.h"
class tes : public CDialog
{
// Construction
public:
tes(CWnd* pParent = NULL); // standard constructor
CTestDlg *pr;
void getdata(CTestDlg *k);
// Dialog Data
//{{AFX_DATA(tes)
enum { IDD = IDD_DIALOG1 };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(tes)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(tes)
afx_msg void OnButton1();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_TES_H__C8A477B8_CF51_4021_ABB3_7540FCEA469D__INCLUDED_)
| [
"jash.liao@gmail.com"
] | jash.liao@gmail.com |
9034b29e97e15ce2a4bdf7f91a3ca1a31212c55c | 7791e9212a0420dcb750b921016b39392ac6bdf0 | /module/loader/JOAsynchSoundLoader.cpp | 5d90a1b4ca9c7528979fe4b4273fa018c932a865 | [] | no_license | ouzhlin/src | 66a8ff1421960799aab5b54351827e40ee8d6a85 | 4a706cd5f019b3a785373ffad3deb6758305e6a6 | refs/heads/master | 2021-08-19T22:29:20.360460 | 2017-11-27T16:00:16 | 2017-11-27T16:00:16 | 107,829,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,977 | cpp | #include "module/loader/JOAsynchSoundLoader.h"
#include "module/loader/vo/JOAsynchSoundVO.h"
#include "manager/JOCachePoolMgr.h"
#include "audio/include/SimpleAudioEngine.h"
#include "cocos2d.h"
USING_NS_CC;
NS_JOFW_BEGIN
JOAsynchSoundLoader::JOAsynchSoundLoader() :asyncRefCount(0)
{
m_pthread = JOThread::createThread(this, true);
}
JOAsynchSoundLoader::~JOAsynchSoundLoader()
{
Director::getInstance()->getScheduler()->unscheduleUpdate(this);
mLock.lock();
while (!soundQueue.empty())
{
JOAsynchSoundVO *vo = soundQueue.front();
soundQueue.pop();
POOL_RECOVER(vo, JOAsynchSoundVO, "JOAsynchSoundLoader");
}
mLock.unlock();
JOThread::destroThread(m_pthread);
}
void JOAsynchSoundLoader::addSoundAsync(const std::string &filepath, bool isMusic, const std::function<void(void)>& callback)
{
JOAsynchSoundVO *vo = POOL_GET(JOAsynchSoundVO, "JOAsynchSoundLoader");
vo->filepath = filepath;
vo->isMusic = isMusic;
vo->callback = callback;
if (m_pthread->isSuspend())
{
m_pthread->work();
}
if (asyncRefCount==0)
Director::getInstance()->getScheduler()->scheduleUpdate(this, 0, false);
++asyncRefCount;
JOLockGuard tempLock(mLock);
soundQueue.push(vo);
}
void JOAsynchSoundLoader::onThreadProcess(JOThread *pThread)
{
mLock.lock();
if (soundQueue.empty())
{
pThread->suspend();
return;
}
JOAsynchSoundVO *vo = soundQueue.front();
mLock.unlock();
if (vo->isMusic)
{
CocosDenshion::SimpleAudioEngine::getInstance()->preloadBackgroundMusic(vo->filepath.c_str());
}
else
{
CocosDenshion::SimpleAudioEngine::getInstance()->preloadEffect(vo->filepath.c_str());
}
}
void JOAsynchSoundLoader::update(float dt)
{
mLock.lock();
if (soundQueue.empty())
{
Director::getInstance()->getScheduler()->unscheduleUpdate(this);
mLock.unlock();
return;
}
JOAsynchSoundVO *vo = soundQueue.front();
soundQueue.pop();
mLock.unlock();
vo->callback();
POOL_RECOVER(vo, JOAsynchSoundVO, "JOAsynchSoundLoader");
}
NS_JOFW_END | [
"james.ou.g@gmail.com"
] | james.ou.g@gmail.com |
d2f609dd087706fbf888529f3dec53fd83ead399 | d85b1f3ce9a3c24ba158ca4a51ea902d152ef7b9 | /testcases/CWE762_Mismatched_Memory_Management_Routines/s05/CWE762_Mismatched_Memory_Management_Routines__new_array_free_int_10.cpp | 01f3298770f0d06eac727bd59c35f8b7a98d9229 | [] | no_license | arichardson/juliet-test-suite-c | cb71a729716c6aa8f4b987752272b66b1916fdaa | e2e8cf80cd7d52f824e9a938bbb3aa658d23d6c9 | refs/heads/master | 2022-12-10T12:05:51.179384 | 2022-11-17T15:41:30 | 2022-12-01T15:25:16 | 179,281,349 | 34 | 34 | null | 2022-12-01T15:25:18 | 2019-04-03T12:03:21 | null | UTF-8 | C++ | false | false | 4,654 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE762_Mismatched_Memory_Management_Routines__new_array_free_int_10.cpp
Label Definition File: CWE762_Mismatched_Memory_Management_Routines__new_array_free.label.xml
Template File: sources-sinks-10.tmpl.cpp
*/
/*
* @description
* CWE: 762 Mismatched Memory Management Routines
* BadSource: Allocate data using new []
* GoodSource: Allocate data using malloc()
* Sinks:
* GoodSink: Deallocate data using delete []
* BadSink : Deallocate data using free()
* Flow Variant: 10 Control flow: if(globalTrue) and if(globalFalse)
*
* */
#include "std_testcase.h"
namespace CWE762_Mismatched_Memory_Management_Routines__new_array_free_int_10
{
#ifndef OMITBAD
void bad()
{
int * data;
/* Initialize data*/
data = NULL;
if(globalTrue)
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete [] to free the memory */
data = new int[100];
}
if(globalTrue)
{
/* POTENTIAL FLAW: Deallocate memory using free() - the source memory allocation function may
* require a call to delete [] to deallocate the memory */
free(data);
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodB2G1() - use badsource and goodsink by changing the second globalTrue to globalFalse */
static void goodB2G1()
{
int * data;
/* Initialize data*/
data = NULL;
if(globalTrue)
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete [] to free the memory */
data = new int[100];
}
if(globalFalse)
{
/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
printLine("Benign, fixed string");
}
else
{
/* FIX: Deallocate the memory using delete [] */
delete [] data;
}
}
/* goodB2G2() - use badsource and goodsink by reversing the blocks in the second if */
static void goodB2G2()
{
int * data;
/* Initialize data*/
data = NULL;
if(globalTrue)
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete [] to free the memory */
data = new int[100];
}
if(globalTrue)
{
/* FIX: Deallocate the memory using delete [] */
delete [] data;
}
}
/* goodG2B1() - use goodsource and badsink by changing the first globalTrue to globalFalse */
static void goodG2B1()
{
int * data;
/* Initialize data*/
data = NULL;
if(globalFalse)
{
/* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
printLine("Benign, fixed string");
}
else
{
/* FIX: Allocate memory from the heap using malloc() */
data = (int *)malloc(100*sizeof(int));
if (data == NULL) {exit(-1);}
}
if(globalTrue)
{
/* POTENTIAL FLAW: Deallocate memory using free() - the source memory allocation function may
* require a call to delete [] to deallocate the memory */
free(data);
}
}
/* goodG2B2() - use goodsource and badsink by reversing the blocks in the first if */
static void goodG2B2()
{
int * data;
/* Initialize data*/
data = NULL;
if(globalTrue)
{
/* FIX: Allocate memory from the heap using malloc() */
data = (int *)malloc(100*sizeof(int));
if (data == NULL) {exit(-1);}
}
if(globalTrue)
{
/* POTENTIAL FLAW: Deallocate memory using free() - the source memory allocation function may
* require a call to delete [] to deallocate the memory */
free(data);
}
}
void good()
{
goodB2G1();
goodB2G2();
goodG2B1();
goodG2B2();
}
#endif /* OMITGOOD */
} /* close namespace */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
using namespace CWE762_Mismatched_Memory_Management_Routines__new_array_free_int_10; /* so that we can use good and bad easily */
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
| [
"Alexander.Richardson@cl.cam.ac.uk"
] | Alexander.Richardson@cl.cam.ac.uk |
e9731a18589d1b9ebc8129ce648dced50d43a8b4 | 80025916e34e091a4d061c9c4675fa32925880f6 | /source/AvP_vc/3dc/avp/missions.cpp | afb8a69e785aac2560fc1c5b49b7736f1cfbe0cd | [] | no_license | MeinLeben/avp_gold_source_116_1_wits | fa50fd594052f3c22c9790373c4c00002cbb327e | 6fb90ec4fe340b4d5fc976cb51471ced90f91c73 | refs/heads/master | 2023-04-09T16:55:44.632884 | 2021-04-26T22:28:42 | 2021-04-26T22:28:42 | 361,910,239 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,952 | cpp | /*******************************************************************
*
* DESCRIPTION: missions.cpp
*
* AUTHOR: David Malcolm
*
* HISTORY: Created 5/1/98
*
*******************************************************************/
/* Includes ********************************************************/
#include "3dc.h"
#include "module.h"
#include "inline.h"
#include "stratdef.h"
#include "gamedef.h"
#include "missions.hpp"
#include "gadget.h"
#define UseLocalAssert Yes
#include "ourasert.h"
extern "C"
{
#include "paintball.h"
extern PAINTBALLMODE PaintBallMode;
extern void MessageHistory_Add(enum TEXTSTRING_ID stringID);
};
/* Version settings ************************************************/
/* Constants *******************************************************/
/* Macros **********************************************************/
/* Imported function prototypes ************************************/
/* Imported data ***************************************************/
#ifdef __cplusplus
extern "C"
{
#endif
#if 0
extern OurBool DaveDebugOn;
extern FDIEXTENSIONTAG FDIET_Dummy;
extern IFEXTENSIONTAG IFET_Dummy;
extern FDIQUAD FDIQuad_WholeScreen;
extern FDIPOS FDIPos_Origin;
extern FDIPOS FDIPos_ScreenCentre;
extern IFOBJECTLOCATION IFObjLoc_Origin;
extern UncompressedGlobalPlotAtomID UGPAID_StandardNull;
extern IFCOLOUR IFColour_Dummy;
extern IFVECTOR IFVec_Zero;
#endif
#ifdef __cplusplus
};
#endif
/* Exported globals ************************************************/
/*static*/ List<MissionHint*> MissionHint :: List_pMissionHint;
/*static*/ List<MissionObjective*> MissionObjective :: List_pMissionObjective;
/* Internal type definitions ***************************************/
/* Internal function prototypes ************************************/
/* Internal globals ************************************************/
/* Exported function definitions ***********************************/
// class MissionHint
// Friends
// Public methods:
MissionHint :: MissionHint
(
enum TEXTSTRING_ID I_TextString_Description,
OurBool bVisible_New
) : I_TextString_Description_Val
(
I_TextString_Description
),
bVisible_Val( bVisible_New )
{
List_pMissionHint . add_entry(this);
}
MissionHint :: ~MissionHint()
{
List_pMissionHint . delete_entry(this);
}
// Protected methods:
// Private methods:
#if 0
// class MissionEvent
// public:
// protected:
MissionEvent :: MissionEvent
(
enum TEXTSTRING_ID I_TextString_TriggeringFeedback,
enum MissionEffects MissionFX
) : I_TextString_TriggeringFeedback_Val
(
I_TextString_TriggeringFeedback
),
MissionFX_Val( MissionFX )
{
List_pMissionEvent . add_entry(this);
}
MissionEvent :: ~MissionEvent()
{
List_pMissionEvent . delete_entry(this);
}
// private:
#endif
// class MissionObjective
// public:
extern "C"
{
//function for triggering mission objective that can be called from a c file
void MissionObjectiveTriggered(void* mission_objective)
{
GLOBALASSERT(mission_objective);
((MissionObjective*)mission_objective)->OnTriggering();
}
void MakeMissionPossible(void* mission_objective)
{
GLOBALASSERT(mission_objective);
((MissionObjective*)mission_objective)->MakePossible();
}
void MakeMissionVisible(void* mission_objective)
{
GLOBALASSERT(mission_objective);
((MissionObjective*)mission_objective)->MakeVisible();
}
void ResetMission(void* mission_objective)
{
GLOBALASSERT(mission_objective);
((MissionObjective*)mission_objective)->ResetMission();
}
int GetMissionStateForSave(void* mission_objective)
{
GLOBALASSERT(mission_objective);
return (int) ((MissionObjective*)mission_objective)->GetMOS();
}
void SetMissionStateFromLoad(void* mission_objective,int state)
{
GLOBALASSERT(mission_objective);
((MissionObjective*)mission_objective)->SetMOS_Public((MissionObjectiveState)state);
}
void PrintStringTableEntryInConsole(enum TEXTSTRING_ID string_id)
{
#if UseGadgets
SCString* pSCString = &StringTable :: GetSCString
(
string_id
);
pSCString -> SendToScreen();
pSCString -> R_Release();
#endif // UseGadgets
/* KJL 99/2/5 - play 'incoming message' sound */
switch(AvP.PlayerType)
{
case I_Marine:
{
Sound_Play(SID_CONSOLE_MARINEMESSAGE,NULL);
break;
}
case I_Predator:
{
Sound_Play(SID_CONSOLE_PREDATORMESSAGE,NULL);
break;
}
case I_Alien:
{
Sound_Play(SID_CONSOLE_ALIENMESSAGE,NULL);
break;
}
default:
break;
}
// add to message history
MessageHistory_Add(string_id);
}
};
void MissionObjective :: OnTriggering(void)
{
textprint
(
"MissionObjective :: OnTriggering() called\n"
);
if(!bAchievable()) return;
if ( !bAchieved() )
{
// Update hint visibilities:
{
SetMOS( MOS_VisibleAndAchieved );
}
// Send triggering message to the screen:
if (I_TextString_TriggeringFeedback_Val)
{
#if UseGadgets
SCString* pSCString_Feedback = &StringTable :: GetSCString
(
I_TextString_TriggeringFeedback_Val
);
pSCString_Feedback -> SendToScreen();
pSCString_Feedback -> R_Release();
#endif // UseGadgets
}
// Any further effects? e.g. next objective appears?
{
switch ( MissionFX_Val )
{
case MissionFX_None:
// Do nothing
break;
case MissionFX_UncoversNext:
// Reveal next objective in list...
{
MissionObjective* pNext =
(
List_pMissionObjective . next_entry(this)
);
if ( pNext )
{
pNext->MakeVisible();
}
}
break;
case MissionFX_CompletesLevel:
{
//complete level unless we are in paintball mode
if(!PaintBallMode.IsOn)
{
AvP.LevelCompleted = 1;
// AvP.MainLoopRunning = 0;
}
break;
}
case MissionFX_FailsLevel:
{
// unwritten
}
break;
default:
GLOBALASSERT(0);
break;
}
}
//go through the list of mission alterations
for(LIF<MissionAlteration*> ma_lif(&List_pMissionAlteration);!ma_lif.done();ma_lif.next())
{
if(ma_lif()->alteration_to_mission & MissionAlteration_MakeVisible)
{
ma_lif()->mission_objective->MakeVisible();
}
if(ma_lif()->alteration_to_mission & MissionAlteration_MakePossible)
{
ma_lif()->mission_objective->MakePossible();
}
}
}
// otherwise already achieved; ignore
}
void MissionObjective :: MakeVisible()
{
BOOL has_become_visible=FALSE;
switch(MOS_Val)
{
default:
GLOBALASSERT(0);
break;
case MOS_JustAHint:
break;
case MOS_HiddenUnachieved:
SetMOS( MOS_VisibleUnachieved );
has_become_visible=TRUE;
break;
case MOS_HiddenUnachievedNotPossible:
SetMOS( MOS_VisibleUnachievedNotPossible );
has_become_visible=TRUE;
break;
case MOS_VisibleUnachieved:
break;
case MOS_VisibleUnachievedNotPossible:
break;
case MOS_VisibleAndAchieved:
break;
}
if(has_become_visible)//send objective text to console
{
{
#if UseGadgets
SCString* pSCString_Description = &StringTable :: GetSCString
(
I_TextString_Description_Val
);
pSCString_Description -> SendToScreen();
pSCString_Description -> R_Release();
#endif // UseGadgets
}
}
}
void MissionObjective :: MakePossible()
{
switch(MOS_Val)
{
default:
GLOBALASSERT(0);
break;
case MOS_JustAHint:
break;
case MOS_HiddenUnachieved:
break;
case MOS_HiddenUnachievedNotPossible:
SetMOS( MOS_HiddenUnachieved);
break;
case MOS_VisibleUnachieved:
break;
case MOS_VisibleUnachievedNotPossible:
SetMOS( MOS_VisibleUnachieved);
break;
case MOS_VisibleAndAchieved:
break;
}
}
MissionObjective :: MissionObjective
(
enum TEXTSTRING_ID I_TextString_Description,
enum MissionObjectiveState MOS_New,
enum TEXTSTRING_ID I_TextString_TriggeringFeedback,
enum MissionEffects MissionFX
) : aMissionHint_Incomplete
(
I_TextString_Description, // enum TEXTSTRING_ID I_TextString_Description,
(
bVisible( MOS_New )
&&
!bComplete( MOS_New )
) // OurBool bVisible_New
),
aMissionHint_Complete
(
I_TextString_TriggeringFeedback, // enum TEXTSTRING_ID I_TextString_Description,
(
bVisible( MOS_New )
&&
bComplete( MOS_New )
) // OurBool bVisible_New
),
I_TextString_Description_Val( I_TextString_Description ),
I_TextString_TriggeringFeedback_Val( I_TextString_TriggeringFeedback ),
MissionFX_Val( MissionFX ),
MOS_Val( MOS_New ),
initial_MOS_Val( MOS_New )
{
List_pMissionObjective . add_entry(this);
}
MissionObjective :: ~MissionObjective()
{
List_pMissionObjective . delete_entry(this);
while(List_pMissionAlteration.size())
{
delete List_pMissionAlteration.first_entry();
List_pMissionAlteration.delete_first_entry();
}
}
// private:
void MissionObjective :: SetMOS( MissionObjectiveState MOS_New )
{
if ( MOS_Val != MOS_New )
{
MOS_Val = MOS_New;
aMissionHint_Incomplete . SetVisibility
(
bVisible( MOS_New )
&&
!bComplete( MOS_New )
);
aMissionHint_Complete . SetVisibility
(
bVisible( MOS_New )
&&
bComplete( MOS_New )
);
}
}
void MissionObjective::AddMissionAlteration(MissionObjective* mission_objective,int alteration_to_mission)
{
GLOBALASSERT(mission_objective);
MissionAlteration* ma=new MissionAlteration;
ma->mission_objective=mission_objective;
ma->alteration_to_mission=alteration_to_mission;
List_pMissionAlteration.add_entry(ma);
}
void MissionObjective::ResetMission()
{
MOS_Val=initial_MOS_Val;
}
// Suggested mission objectives for GENSHD1:
void MissionHacks :: TestInit(void)
{
#if 0
#if 1
new MissionHint
(
TEXTSTRING_LEVELMSG_001, // ProjChar* pProjCh_Description,
Yes // OurBool bVisible
);
#endif
new MissionObjective
(
TEXTSTRING_LEVELMSG_002, // ProjChar* pProjCh_Description,
MOS_VisibleUnachieved, // enum MissionObjectiveState MOS_New,
TEXTSTRING_LEVELMSG_003, // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_UncoversNext // enum MissionEffects MissionFX,
);
new MissionObjective
(
TEXTSTRING_LEVELMSG_004, // ProjChar* pProjCh_Description,
MOS_HiddenUnachieved, // enum MissionObjectiveState MOS_New,
TEXTSTRING_LEVELMSG_005, // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_UncoversNext // enum MissionEffects MissionFX,
);
new MissionObjective
(
TEXTSTRING_LEVELMSG_006, // ProjChar* pProjCh_Description,
MOS_HiddenUnachieved, // enum MissionObjectiveState MOS_New,
TEXTSTRING_LEVELMSG_007, // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_UncoversNext // enum MissionEffects MissionFX,
);
new MissionObjective
(
TEXTSTRING_LEVELMSG_008, // ProjChar* pProjCh_Description,
MOS_HiddenUnachieved, // enum MissionObjectiveState MOS_New,
TEXTSTRING_LEVELMSG_009, // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_UncoversNext // enum MissionEffects MissionFX,
);
new MissionObjective
(
TEXTSTRING_LEVELMSG_010, // ProjChar* pProjCh_Description,
MOS_HiddenUnachieved, // enum MissionObjectiveState MOS_New,
TEXTSTRING_LEVELMSG_011, // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_CompletesLevel // enum MissionEffects MissionFX,
);
#endif
}
void MissionObjective :: TestCompleteNext(void)
{
// Do it:
{
MissionObjective* pMissionObjective = NULL;
for
(
LIF<MissionObjective*> oi(&List_pMissionObjective);
!oi.done();
oi.next()
)
{
if
(
!oi() -> bAchieved()
)
{
pMissionObjective = oi();
break;
}
}
if ( pMissionObjective )
{
GLOBALASSERT( pMissionObjective );
// Feedback:
{
#if UseGadgets
SCString* pSCString_Temp = new SCString("TESTING MISSION COMPLETION HOOK:");
pSCString_Temp -> SendToScreen();
pSCString_Temp -> R_Release();
#endif // UseGadgets
}
pMissionObjective -> OnTriggering();
}
else
{
// Feedback:
{
#if UseGadgets
SCString* pSCString_Temp = new SCString("NO INCOMPLETE OBJECTIVES");
pSCString_Temp -> SendToScreen();
pSCString_Temp -> R_Release();
#endif // UseGadgets
}
}
}
}
/* Internal function definitions ***********************************/
#if 0
"BACKUP POWER SYSTEM ACTIVATED", // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_None // enum MissionEffects MissionFX,
);
new MissionObjective
(
"SECURITY DOORS RESTRICT ACCESS WITHIN THE COLONY. FIND THE OPERATIONS ROOM IN THE MAIN BUILDING. "
"INSIDE ARE FIVE SWITCHES. TRIGGER ALL OF THEM TO OPEN THE SECURITY DOORS REMOTELY. "
, // ProjChar* pProjCh_Description,
Yes, // OurBool bHidden
"SECURITY DOOR EMERGENCY OVERRIDE TRIGGERED: DOORS HAVE BEEN OPENED. ", // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_None // enum MissionEffects MissionFX,
);
new MissionObjective
(
"MAKE YOUR WAY TO MEDLAB. COLLECT COMPUTER ARCHIVES "
"DOCUMENTING THE COLONISTS WORK ON THE FACEHUGGERS. "
, // ProjChar* pProjCh_Description,
Yes, // OurBool bHidden
"PARTIAL MEDLAB ARCHIVE COLLECTED", // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_None // enum MissionEffects MissionFX,
);
new MissionObjective
(
"THE MEDLAB ARCHIVE YOU HAVE COLLECTED IS ONLY ONE OF THREE FILES. "
"WE'VE GOT A PDT READING ON THE MEDLAB OFFICER WHO WAS RESEARCHING THE FACEHUGGERS. "
"IT'S COMING FROM THE BASEMENT OF THE PROCESSOR PLANT. "
"SHE MIGHT BE ALIVE, BUT IT'S PROBABLY JUST HER REMAINS. "
"MAKE YOUR WAY THERE AND TRY TO FIND MORE ARCHIVES. "
, // ProjChar* pProjCh_Description,
Yes, // OurBool bHidden
"MEDLAB ARCHIVE COLLECTED", // ProjChar* pProjCh_TriggeringFeedback,
MissionFX_None // enum MissionEffects MissionFX,
);
new MissionObjective
(
"THAT LOOKS LIKE ALL THE FILES. "
"GET BACK TO THE YARD. THE LANDING BEACON CONTROLS ARE IN A RECESS TO THE LEFT OF THE "
"ATMOSPHERE PROCESSOR. ACTIVATE THE BEACON AND PREPARE FOR EVAC."
, // ProjChar* pProjCh_Description,
Yes, // OurBool bHidden
"LANDING BEACON ACTIVATED. STAND CLEAR AND PREPARE FOR EVAC. ", // ProjChar* pProjCh_TriggeringFeedback,
#endif | [
"coen.frauenfelder@gmail.com"
] | coen.frauenfelder@gmail.com |
f17da132ae50ef7fb7a7e3a3734e05bd79712054 | f95f90b67990775c4e985398ef033a06157a8dc0 | /models/sprspectrumzonesmodel.h | 11627087e9fd8d19177545ced342d0dd027bfbc1 | [] | no_license | longway34/SeparatorQt2_Demo | f47dde468570d7f5977989681369f688696d53b9 | 05380fee5ddf33484f892854d2a3373553d66d80 | refs/heads/master | 2023-01-30T03:20:15.930640 | 2020-12-10T14:54:57 | 2020-12-10T14:54:57 | 319,998,795 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,611 | h | #ifndef SPRSPECTRUMZONESMODEL_H
#define SPRSPECTRUMZONESMODEL_H
#include <QObject>
#include <QDomDocument>
#include "models/isprmodeldata.h"
#include "variables/sprvariable.h"
#include "variables/sprqstringvariable.h"
#include "variables/sprqcolorvariable.h"
#include "models/sprelementsmodel.h"
#include "_types.h"
class SpectorRange :public QObject{
public:
SPRElementsProperty *element;
SPRVariable<uint> *min;
SPRVariable<uint> *max;
SpectorRange():element(nullptr), min(nullptr), max(nullptr){
element = new SPRElementsProperty(nullptr);
setProperty("delete_property", QVariant(true));
}
SpectorRange(SPRElementsProperty *prop): element(prop), min(nullptr), max(nullptr){
setProperty("delete_property", QVariant(false));
}
virtual ~SpectorRange(){
if(min) delete min;
if(max) delete max;
if(element && property("delete_property").value<bool>()){
delete element;
}
}
};
typedef QMap<EnumElements, SpectorRange*> QMapElementsRanges;
#define SPR_SETTINGS_SPECTRUM_RANGES_XPATH_PREFIX "SEPARATOR/SEPARATE_SETUP/OBL/CHANNEL"
#define SPR_SETTINGS_SPECTRUM_RANGES_XPATH_MIN_AGRUMENT "[Ls]"
#define SPR_SETTINGS_SPECTRUM_RANGES_XPATH_MAX_ARGUMENT "[Rs]"
typedef enum typeZones{
typeUsedZones, typeUnisedZones, typeAllZones
} TypeUsedZones;
class SPRSpectrumZonesModel : public ISPRModelData
{
QMapElementsRanges elements;
SPRElementsModel *elementsProperty;
uint8_t tIndex;
public:
QMapElementsRanges getZones(TypeUsedZones typeZones=typeUsedZones);
SPRSpectrumZonesModel(){}
SPRSpectrumZonesModel(QDomDocument *doc, uint8_t indexThread, SPRElementsModel *_elProperty, IModelVariable *parent);
virtual ~SPRSpectrumZonesModel();
void deleteElement(EnumElements el){
// if(elements.contains(el)){
// elements.remove(el);
// }
SPRElementsProperty *ep = elementsProperty->getElementProperty(el);
elementsProperty->deleteElement(ep);
// emit doStore();
}
bool setMinMax(EnumElements el, uint min, uint max){
if(elements.contains(el)){
if(min < 256 && max < 256 && min < max){
elements[el]->min->blockSignals(true);
elements[el]->min->setData(min); elements[el]->min->blockSignals(false);
elements[el]->max->blockSignals(true);
elements[el]->max->setData(max); elements[el]->max->blockSignals(false);
emit modelChanget(this);
return true;
} else {
emit modelChanget(this);
return false;
}
}
}
bool setMin(EnumElements el, uint min){
if(elements.contains(el)){
uint max = elements[el]->max->getData();
return setMinMax(el, min, max);
}
return false;
}
bool setMax(EnumElements el, uint max){
if(elements.contains(el)){
uint min = elements[el]->min->getData();
return setMinMax(el, min, max);
}
return false;
}
SPRElementsModel *getElementsProperty() const
{
return elementsProperty;
}
// IModelVariable interface
QMapElementsRanges getElements() const;
uint8_t getThreadNumber() const;
SpectorRange *getElementRange(int index, TypeUsedZones type =typeUsedZones);
EnumElements getElementKey(int index, bool *ok=nullptr, TypeUsedZones type =typeUsedZones);
public slots:
virtual void onModelChanget(IModelVariable *send);
};
#endif // SPRSPECTRUMZONESMODEL_H
| [
"33542510+longway34@users.noreply.github.com"
] | 33542510+longway34@users.noreply.github.com |
fa30c441b1440b8e290af0e4e3c2a0ef229f012e | 0128caf2f41cd7cdaa6308ddcd60b74f7977f2d2 | /63. DEFINICION FUNCIONES/63 Definicion funcion.cpp | 1bd751b8d3ac632114a9bb0f1733f5a88c937280 | [] | no_license | oscartosat/extra-dev | a7246c2af020a24c7808b5ee7ec1c02c5cc507fc | 4a91185cda3380b490448154999ef4e4eacfd88c | refs/heads/master | 2022-04-02T11:38:28.953122 | 2020-02-13T20:36:48 | 2020-02-13T20:36:48 | 235,750,262 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 616 | cpp | //Ejemplo encontrar el mayor de 2 numeros
#include<iostream>
#include<conio.h>
using namespace std;
//Prototipo de Funcion
int encontrarMax(int x, int y);
int main(){
int n1,n2;
/*int mayor;*/
cout<<"Introduzca 2 numeros: ";
cin>>n1>>n2;
/*mayor=encontrarMax(n1,n2);*/
cout<<"El mayor de los 2 numeros es: "<<encontrarMax(n1,n2)<<endl;
/*cout<<"El mayor de los 2 numeros es: "<<mayor<<endl;*/
getch();
return 0;
}
//Definicion de Funcion
int encontrarMax(int x, int y){
int numMax;
if(x>y){
numMax=x;
}
else{
numMax=y;
}
return numMax;
}
| [
"noreply@github.com"
] | oscartosat.noreply@github.com |
5dc3db7572696eb00b97a7401dff95f842920051 | f207164511f0dfe3f01f6e0c21fd7548e626397f | /dom/cache/TypeUtils.cpp | 7d0bc271cb8a09bb7739b42467a3ee11d00bde30 | [] | no_license | PortableApps/palemoon27 | 24dbac1a4b6fe620611f4fb6800a29ae6f008d37 | 3d7e107cc639bc714906baad262a3492372e05d7 | refs/heads/master | 2023-08-15T12:32:23.822300 | 2021-10-11T01:54:45 | 2021-10-11T01:54:45 | 416,058,642 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,651 | cpp | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/dom/cache/TypeUtils.h"
#include "mozilla/unused.h"
#include "mozilla/dom/CacheBinding.h"
#include "mozilla/dom/InternalRequest.h"
#include "mozilla/dom/Request.h"
#include "mozilla/dom/Response.h"
#include "mozilla/dom/cache/CachePushStreamChild.h"
#include "mozilla/dom/cache/CacheTypes.h"
#include "mozilla/dom/cache/ReadStream.h"
#include "mozilla/ipc/BackgroundChild.h"
#include "mozilla/ipc/PBackgroundChild.h"
#include "mozilla/ipc/PFileDescriptorSetChild.h"
#include "mozilla/ipc/InputStreamUtils.h"
#include "nsCOMPtr.h"
#include "nsIAsyncInputStream.h"
#include "nsIAsyncOutputStream.h"
#include "nsIIPCSerializableInputStream.h"
#include "nsQueryObject.h"
#include "nsStreamUtils.h"
#include "nsString.h"
#include "nsURLParsers.h"
#include "nsCRT.h"
#include "nsHttp.h"
namespace mozilla {
namespace dom {
namespace cache {
using mozilla::ipc::BackgroundChild;
using mozilla::ipc::FileDescriptor;
using mozilla::ipc::PBackgroundChild;
using mozilla::ipc::PFileDescriptorSetChild;
namespace {
static bool
HasVaryStar(mozilla::dom::InternalHeaders* aHeaders)
{
nsAutoTArray<nsCString, 16> varyHeaders;
ErrorResult rv;
aHeaders->GetAll(NS_LITERAL_CSTRING("vary"), varyHeaders, rv);
MOZ_ALWAYS_TRUE(!rv.Failed());
for (uint32_t i = 0; i < varyHeaders.Length(); ++i) {
nsAutoCString varyValue(varyHeaders[i]);
char* rawBuffer = varyValue.BeginWriting();
char* token = nsCRT::strtok(rawBuffer, NS_HTTP_HEADER_SEPS, &rawBuffer);
for (; token;
token = nsCRT::strtok(rawBuffer, NS_HTTP_HEADER_SEPS, &rawBuffer)) {
nsDependentCString header(token);
if (header.EqualsLiteral("*")) {
return true;
}
}
}
return false;
}
void
SerializeNormalStream(nsIInputStream* aStream, CacheReadStream& aReadStreamOut)
{
nsAutoTArray<FileDescriptor, 4> fds;
SerializeInputStream(aStream, aReadStreamOut.params(), fds);
PFileDescriptorSetChild* fdSet = nullptr;
if (!fds.IsEmpty()) {
// We should not be serializing until we have an actor ready
PBackgroundChild* manager = BackgroundChild::GetForCurrentThread();
MOZ_ASSERT(manager);
fdSet = manager->SendPFileDescriptorSetConstructor(fds[0]);
for (uint32_t i = 1; i < fds.Length(); ++i) {
unused << fdSet->SendAddFileDescriptor(fds[i]);
}
}
if (fdSet) {
aReadStreamOut.fds() = fdSet;
} else {
aReadStreamOut.fds() = void_t();
}
}
void
ToHeadersEntryList(nsTArray<HeadersEntry>& aOut, InternalHeaders* aHeaders)
{
MOZ_ASSERT(aHeaders);
nsAutoTArray<InternalHeaders::Entry, 16> entryList;
aHeaders->GetEntries(entryList);
for (uint32_t i = 0; i < entryList.Length(); ++i) {
InternalHeaders::Entry& entry = entryList[i];
aOut.AppendElement(HeadersEntry(entry.mName, entry.mValue));
}
}
} // namespace
already_AddRefed<InternalRequest>
TypeUtils::ToInternalRequest(const RequestOrUSVString& aIn,
BodyAction aBodyAction, ErrorResult& aRv)
{
if (aIn.IsRequest()) {
Request& request = aIn.GetAsRequest();
// Check and set bodyUsed flag immediately because its on Request
// instead of InternalRequest.
CheckAndSetBodyUsed(&request, aBodyAction, aRv);
if (aRv.Failed()) { return nullptr; }
return request.GetInternalRequest();
}
return ToInternalRequest(aIn.GetAsUSVString(), aRv);
}
already_AddRefed<InternalRequest>
TypeUtils::ToInternalRequest(const OwningRequestOrUSVString& aIn,
BodyAction aBodyAction, ErrorResult& aRv)
{
if (aIn.IsRequest()) {
nsRefPtr<Request> request = aIn.GetAsRequest().get();
// Check and set bodyUsed flag immediately because its on Request
// instead of InternalRequest.
CheckAndSetBodyUsed(request, aBodyAction, aRv);
if (aRv.Failed()) { return nullptr; }
return request->GetInternalRequest();
}
return ToInternalRequest(aIn.GetAsUSVString(), aRv);
}
void
TypeUtils::ToCacheRequest(CacheRequest& aOut, InternalRequest* aIn,
BodyAction aBodyAction, SchemeAction aSchemeAction,
ErrorResult& aRv)
{
MOZ_ASSERT(aIn);
aIn->GetMethod(aOut.method());
nsAutoCString url;
aIn->GetURL(url);
CopyUTF8toUTF16(url, aOut.url());
bool schemeValid;
ProcessURL(aOut.url(), &schemeValid, &aOut.urlWithoutQuery(), aRv);
if (aRv.Failed()) {
return;
}
if (!schemeValid) {
if (aSchemeAction == TypeErrorOnInvalidScheme) {
NS_NAMED_LITERAL_STRING(label, "Request");
aRv.ThrowTypeError(MSG_INVALID_URL_SCHEME, &label, &aOut.url());
return;
}
}
aIn->GetReferrer(aOut.referrer());
nsRefPtr<InternalHeaders> headers = aIn->Headers();
MOZ_ASSERT(headers);
ToHeadersEntryList(aOut.headers(), headers);
aOut.headersGuard() = headers->Guard();
aOut.mode() = aIn->Mode();
aOut.credentials() = aIn->GetCredentialsMode();
aOut.contentPolicyType() = aIn->ContentPolicyType();
aOut.requestCache() = aIn->GetCacheMode();
if (aBodyAction == IgnoreBody) {
aOut.body() = void_t();
return;
}
// BodyUsed flag is checked and set previously in ToInternalRequest()
nsCOMPtr<nsIInputStream> stream;
aIn->GetBody(getter_AddRefs(stream));
SerializeCacheStream(stream, &aOut.body(), aRv);
if (NS_WARN_IF(aRv.Failed())) {
return;
}
}
void
TypeUtils::ToCacheResponseWithoutBody(CacheResponse& aOut,
InternalResponse& aIn, ErrorResult& aRv)
{
aOut.type() = aIn.Type();
nsAutoCString url;
aIn.GetUrl(url);
CopyUTF8toUTF16(url, aOut.url());
if (aOut.url() != EmptyString()) {
// Pass all Response URL schemes through... The spec only requires we take
// action on invalid schemes for Request objects.
ProcessURL(aOut.url(), nullptr, nullptr, aRv);
if (aRv.Failed()) {
return;
}
}
aOut.status() = aIn.GetStatus();
aOut.statusText() = aIn.GetStatusText();
nsRefPtr<InternalHeaders> headers = aIn.UnfilteredHeaders();
MOZ_ASSERT(headers);
if (HasVaryStar(headers)) {
aRv.ThrowTypeError(MSG_RESPONSE_HAS_VARY_STAR);
return;
}
ToHeadersEntryList(aOut.headers(), headers);
aOut.headersGuard() = headers->Guard();
aOut.channelInfo() = aIn.GetChannelInfo().AsIPCChannelInfo();
if (aIn.GetPrincipalInfo()) {
aOut.principalInfo() = *aIn.GetPrincipalInfo();
} else {
aOut.principalInfo() = void_t();
}
}
void
TypeUtils::ToCacheResponse(CacheResponse& aOut, Response& aIn, ErrorResult& aRv)
{
if (aIn.BodyUsed()) {
aRv.ThrowTypeError(MSG_FETCH_BODY_CONSUMED_ERROR);
return;
}
nsRefPtr<InternalResponse> ir = aIn.GetInternalResponse();
ToCacheResponseWithoutBody(aOut, *ir, aRv);
if (NS_WARN_IF(aRv.Failed())) {
return;
}
nsCOMPtr<nsIInputStream> stream;
ir->GetInternalBody(getter_AddRefs(stream));
if (stream) {
aIn.SetBodyUsed();
}
SerializeCacheStream(stream, &aOut.body(), aRv);
if (NS_WARN_IF(aRv.Failed())) {
return;
}
}
// static
void
TypeUtils::ToCacheQueryParams(CacheQueryParams& aOut,
const CacheQueryOptions& aIn)
{
aOut.ignoreSearch() = aIn.mIgnoreSearch;
aOut.ignoreMethod() = aIn.mIgnoreMethod;
aOut.ignoreVary() = aIn.mIgnoreVary;
aOut.cacheNameSet() = aIn.mCacheName.WasPassed();
if (aOut.cacheNameSet()) {
aOut.cacheName() = aIn.mCacheName.Value();
} else {
aOut.cacheName() = NS_LITERAL_STRING("");
}
}
already_AddRefed<Response>
TypeUtils::ToResponse(const CacheResponse& aIn)
{
if (aIn.type() == ResponseType::Error) {
nsRefPtr<InternalResponse> error = InternalResponse::NetworkError();
nsRefPtr<Response> r = new Response(GetGlobalObject(), error);
return r.forget();
}
nsRefPtr<InternalResponse> ir = new InternalResponse(aIn.status(),
aIn.statusText());
ir->SetUrl(NS_ConvertUTF16toUTF8(aIn.url()));
nsRefPtr<InternalHeaders> internalHeaders =
ToInternalHeaders(aIn.headers(), aIn.headersGuard());
ErrorResult result;
ir->Headers()->SetGuard(aIn.headersGuard(), result);
MOZ_ASSERT(!result.Failed());
ir->Headers()->Fill(*internalHeaders, result);
MOZ_ASSERT(!result.Failed());
ir->InitChannelInfo(aIn.channelInfo());
if (aIn.principalInfo().type() == mozilla::ipc::OptionalPrincipalInfo::TPrincipalInfo) {
UniquePtr<mozilla::ipc::PrincipalInfo> info(new mozilla::ipc::PrincipalInfo(aIn.principalInfo().get_PrincipalInfo()));
ir->SetPrincipalInfo(Move(info));
}
nsCOMPtr<nsIInputStream> stream = ReadStream::Create(aIn.body());
ir->SetBody(stream);
switch (aIn.type())
{
case ResponseType::Default:
break;
case ResponseType::Opaque:
ir = ir->OpaqueResponse();
break;
case ResponseType::Basic:
ir = ir->BasicResponse();
break;
case ResponseType::Cors:
ir = ir->CORSResponse();
break;
default:
MOZ_CRASH("Unexpected ResponseType!");
}
MOZ_ASSERT(ir);
nsRefPtr<Response> ref = new Response(GetGlobalObject(), ir);
return ref.forget();
}
already_AddRefed<InternalRequest>
TypeUtils::ToInternalRequest(const CacheRequest& aIn)
{
nsRefPtr<InternalRequest> internalRequest = new InternalRequest();
internalRequest->SetMethod(aIn.method());
internalRequest->SetURL(NS_ConvertUTF16toUTF8(aIn.url()));
internalRequest->SetReferrer(aIn.referrer());
internalRequest->SetMode(aIn.mode());
internalRequest->SetCredentialsMode(aIn.credentials());
internalRequest->SetContentPolicyType(aIn.contentPolicyType());
internalRequest->SetCacheMode(aIn.requestCache());
nsRefPtr<InternalHeaders> internalHeaders =
ToInternalHeaders(aIn.headers(), aIn.headersGuard());
ErrorResult result;
internalRequest->Headers()->SetGuard(aIn.headersGuard(), result);
MOZ_ASSERT(!result.Failed());
internalRequest->Headers()->Fill(*internalHeaders, result);
MOZ_ASSERT(!result.Failed());
nsCOMPtr<nsIInputStream> stream = ReadStream::Create(aIn.body());
internalRequest->SetBody(stream);
return internalRequest.forget();
}
already_AddRefed<Request>
TypeUtils::ToRequest(const CacheRequest& aIn)
{
nsRefPtr<InternalRequest> internalRequest = ToInternalRequest(aIn);
nsRefPtr<Request> request = new Request(GetGlobalObject(), internalRequest);
return request.forget();
}
// static
already_AddRefed<InternalHeaders>
TypeUtils::ToInternalHeaders(const nsTArray<HeadersEntry>& aHeadersEntryList,
HeadersGuardEnum aGuard)
{
nsTArray<InternalHeaders::Entry> entryList(aHeadersEntryList.Length());
for (uint32_t i = 0; i < aHeadersEntryList.Length(); ++i) {
const HeadersEntry& headersEntry = aHeadersEntryList[i];
entryList.AppendElement(InternalHeaders::Entry(headersEntry.name(),
headersEntry.value()));
}
nsRefPtr<InternalHeaders> ref = new InternalHeaders(Move(entryList), aGuard);
return ref.forget();
}
// Utility function to remove the fragment from a URL, check its scheme, and optionally
// provide a URL without the query. We're not using nsIURL or URL to do this because
// they require going to the main thread.
// static
void
TypeUtils::ProcessURL(nsAString& aUrl, bool* aSchemeValidOut,
nsAString* aUrlWithoutQueryOut, ErrorResult& aRv)
{
NS_ConvertUTF16toUTF8 flatURL(aUrl);
const char* url = flatURL.get();
// off the main thread URL parsing using nsStdURLParser.
nsCOMPtr<nsIURLParser> urlParser = new nsStdURLParser();
uint32_t pathPos;
int32_t pathLen;
uint32_t schemePos;
int32_t schemeLen;
aRv = urlParser->ParseURL(url, flatURL.Length(), &schemePos, &schemeLen,
nullptr, nullptr, // ignore authority
&pathPos, &pathLen);
if (NS_WARN_IF(aRv.Failed())) { return; }
if (aSchemeValidOut) {
nsAutoCString scheme(Substring(flatURL, schemePos, schemeLen));
*aSchemeValidOut = scheme.LowerCaseEqualsLiteral("http") ||
scheme.LowerCaseEqualsLiteral("https");
}
uint32_t queryPos;
int32_t queryLen;
uint32_t refPos;
int32_t refLen;
aRv = urlParser->ParsePath(url + pathPos, flatURL.Length() - pathPos,
nullptr, nullptr, // ignore filepath
&queryPos, &queryLen,
&refPos, &refLen);
if (NS_WARN_IF(aRv.Failed())) {
return;
}
// TODO: Remove this once Request/Response properly strip the fragment (bug 1110476)
if (refLen >= 0) {
// ParsePath gives us ref position relative to the start of the path
refPos += pathPos;
aUrl = Substring(aUrl, 0, refPos - 1);
}
if (!aUrlWithoutQueryOut) {
return;
}
if (queryLen < 0) {
*aUrlWithoutQueryOut = aUrl;
return;
}
// ParsePath gives us query position relative to the start of the path
queryPos += pathPos;
// We want everything before the query sine we already removed the trailing
// fragment
*aUrlWithoutQueryOut = Substring(aUrl, 0, queryPos - 1);
}
void
TypeUtils::CheckAndSetBodyUsed(Request* aRequest, BodyAction aBodyAction,
ErrorResult& aRv)
{
MOZ_ASSERT(aRequest);
if (aBodyAction == IgnoreBody) {
return;
}
if (aRequest->BodyUsed()) {
aRv.ThrowTypeError(MSG_FETCH_BODY_CONSUMED_ERROR);
return;
}
nsCOMPtr<nsIInputStream> stream;
aRequest->GetBody(getter_AddRefs(stream));
if (stream) {
aRequest->SetBodyUsed();
}
}
already_AddRefed<InternalRequest>
TypeUtils::ToInternalRequest(const nsAString& aIn, ErrorResult& aRv)
{
RequestOrUSVString requestOrString;
requestOrString.SetAsUSVString().Rebind(aIn.Data(), aIn.Length());
// Re-create a GlobalObject stack object so we can use webidl Constructors.
AutoJSAPI jsapi;
if (NS_WARN_IF(!jsapi.Init(GetGlobalObject()))) {
aRv.Throw(NS_ERROR_UNEXPECTED);
return nullptr;
}
JSContext* cx = jsapi.cx();
GlobalObject global(cx, GetGlobalObject()->GetGlobalJSObject());
MOZ_ASSERT(!global.Failed());
nsRefPtr<Request> request = Request::Constructor(global, requestOrString,
RequestInit(), aRv);
if (NS_WARN_IF(aRv.Failed())) { return nullptr; }
return request->GetInternalRequest();
}
void
TypeUtils::SerializeCacheStream(nsIInputStream* aStream,
CacheReadStreamOrVoid* aStreamOut,
ErrorResult& aRv)
{
*aStreamOut = void_t();
if (!aStream) {
return;
}
// Option 1: Send a cache-specific ReadStream if we can.
nsRefPtr<ReadStream> controlled = do_QueryObject(aStream);
if (controlled) {
controlled->Serialize(aStreamOut);
return;
}
CacheReadStream readStream;
readStream.controlChild() = nullptr;
readStream.controlParent() = nullptr;
readStream.pushStreamChild() = nullptr;
readStream.pushStreamParent() = nullptr;
// Option 2: Do normal stream serialization if its supported.
nsCOMPtr<nsIIPCSerializableInputStream> serial = do_QueryInterface(aStream);
if (serial) {
SerializeNormalStream(aStream, readStream);
// Option 3: As a last resort push data across manually. Should only be
// needed for nsPipe input stream. Only works for async,
// non-blocking streams.
} else {
SerializePushStream(aStream, readStream, aRv);
if (NS_WARN_IF(aRv.Failed())) { return; }
}
*aStreamOut = readStream;
}
void
TypeUtils::SerializePushStream(nsIInputStream* aStream,
CacheReadStream& aReadStreamOut,
ErrorResult& aRv)
{
nsCOMPtr<nsIAsyncInputStream> asyncStream = do_QueryInterface(aStream);
if (NS_WARN_IF(!asyncStream)) {
aRv = NS_ERROR_FAILURE;
return;
}
bool nonBlocking = false;
aRv = asyncStream->IsNonBlocking(&nonBlocking);
if (NS_WARN_IF(aRv.Failed())) { return; }
if (NS_WARN_IF(!nonBlocking)) {
aRv = NS_ERROR_FAILURE;
return;
}
aReadStreamOut.pushStreamChild() = CreatePushStream(asyncStream);
MOZ_ASSERT(aReadStreamOut.pushStreamChild());
aReadStreamOut.params() = void_t();
aReadStreamOut.fds() = void_t();
// CachePushStreamChild::Start() must be called after sending the stream
// across to the parent side.
}
} // namespace cache
} // namespace dom
} // namespace mozilla
| [
"roytam@gmail.com"
] | roytam@gmail.com |
25ad8caa9e4da36843e918a8e85e1fddbd449df3 | 99e18bc6592d0937375fa8fd066c847c0b4da892 | /include/PixelObj.h | 63b1a113abd950ab915e7c5e815b4b35acf79f08 | [] | no_license | Zhaeong/QuietLife | 8f06c1e9705e659868cacca3b20987e65c2ad62e | a46f8a19c6b541704be2987175a7f184b9125083 | refs/heads/master | 2020-03-22T01:21:44.150225 | 2018-11-15T03:07:10 | 2018-11-15T03:07:10 | 139,300,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 308 | h | #ifndef PIXELOBJ_H
#define PIXELOBJ_H
//Standard Lib
//Project Lib
#include <SDL.h>
class PixelObj
{
public:
PixelObj(int X, int Y, Uint32 Color);
virtual ~PixelObj();
int m_X;
int m_Y;
Uint32 m_Color;
protected:
private:
};
#endif // PIXELOBJ_H
| [
"owen_zzz@hotmail.com"
] | owen_zzz@hotmail.com |
4dc401c9c39996430ed56ddca5df37ffb2de0b15 | 0942b2d69233a358409489a32ee9ff9e82b9d4bb | /objects/hittable_list.cpp | 459fde6b5bdc07e36a9e0b8b2fdd6dd3491781e9 | [] | no_license | mlewandowski0/raytracer | b08baaff340d7c119db0f7d9b3a9ca9f50111d2e | 0ab97bc797b40225f82cb2885d974d746535083e | refs/heads/master | 2022-12-12T23:46:45.047643 | 2020-09-21T19:34:32 | 2020-09-21T19:34:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 834 | cpp |
#include "hittable_list.h"
bool hittable_list::hit(ray &r, double tmin, double tmax, hit_record &rec) {
hit_record rec_;
bool hit_anything = false;
auto closest_so_far = tmax;
for (auto &obj : objects)
{
if (obj->hit(r, tmin, closest_so_far, rec_))
{
hit_anything = true;
closest_so_far = rec_.t;
rec = rec_;
}
}
return hit_anything;
}
bool hittable_list::bounding_box(double t0, double t1, aabb &output_box) {
if (objects.empty()) return false;
aabb temp_box;
bool first_box = true;
for (const auto & obj : objects)
{
if (!obj->bounding_box(t0, t1, temp_box)) return false;
output_box = first_box ? temp_box : surrounding_box(output_box, temp_box);
first_box = false;
}
return false;
}
| [
"noreply@github.com"
] | mlewandowski0.noreply@github.com |
a1292ffdf652c735e6828d30a85cefa7c471b23b | 795963c77fd920b5ba91e9045777c2137af37285 | /C++/32.cpp | 5284962269890008baa1c37884e2742bbde207c0 | [] | no_license | kedixa/LeetCode | dce74c9395d366db559302b48b0b21cd4f869119 | 08acab1cebfac2aed4816cf9d8186a22304488a9 | refs/heads/master | 2020-07-04T05:11:33.019564 | 2018-03-08T13:30:18 | 2018-03-08T13:30:18 | 66,902,234 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 926 | cpp | class Solution {
public:
int longestValidParentheses(string s) {
/*
定义数组v,若s[i]为'('则v[i]表示以s[i-1]结尾的最长的合法括号序列,
若s[i]为')',则v[i]表示以s[i]结尾的最长的合法括号序列;
数组v中最大的数字即为所求。
*/
s = "#" + s;
int len = s.length();
vector<int> v(len, 0);
for(int i = 2; i < len; i++)
{
if(s[i] == '(') v[i] = (s[i-1]==')')?v[i-1]:0;
else
{
int &k = v[i-1];
if(s[i-1] == '(') v[i] = k + 2;
else
{
int tmp = i - k - 1;
if(s[tmp] == '(') v[i] = v[tmp] + k + 2;
else v[i] = 0;
}
}
}
return *max_element(v.begin(), v.end());
}
}; | [
"1204837541@qq.com"
] | 1204837541@qq.com |
68ec5c76571c33b4ac96111f5c630978d3f4d6aa | 9a3fc0a5abe3bf504a63a643e6501a2f3452ba6d | /tc/testprograms/MonotoneSequence.cpp | 1a93c9847183417df409d13f88254bfb1938f437 | [] | no_license | rodolfo15625/algorithms | 7034f856487c69553205198700211d7afb885d4c | 9e198ff0c117512373ca2d9d706015009dac1d65 | refs/heads/master | 2021-01-18T08:30:19.777193 | 2014-10-20T13:15:09 | 2014-10-20T13:15:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,566 | cpp | #include <algorithm>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <functional>
#include <numeric>
using namespace std;
#define all(V) (V).begin(),(V).end()
#define sz size()
#define pb push_back
#define mp make_pair
#define mem(x,i) memset(x,i,sizeof(x))
#define cpresent(V,e) (find(all(V),(e))!=(V).end())
string tos(int n) { stringstream ss; ss<<n; return ss.str();}
long long toi(string s){ istringstream ss(s); long long n; ss>>n; return n;}
class MonotoneSequence {
public:
int longestMonotoneSequence(vector <int> seq) {
int dev=1,mas=1,mds=1;
for(int i=1;i<seq.sz;i++){
if(seq[i-1]>seq[i]){
mds++;
dev=max(mas,dev);
mas=1;
}else if(seq[i-1]<seq[i]){
mas++;
dev=max(mds,dev);
mds=1;
}else{
dev=max(max(mds,mas),dev);
mas=1;
mds=1;
}
}
dev=max(max(mds,mas),dev);
return dev;
}
//Powered by [Ziklon] 1.0!!
};
// BEGIN KAWIGIEDIT TESTING
// Generated by KawigiEdit 2.1.8 (beta) modified by pivanof
#include <iostream>
#include <string>
#include <vector>
using namespace std;
bool KawigiEdit_RunTest(int testNum, vector <int> p0, bool hasAnswer, int p1) {
cout << "Test " << testNum << ": [" << "{";
for (int i = 0; int(p0.size()) > i; ++i) {
if (i > 0) {
cout << ",";
}
cout << p0[i];
}
cout << "}";
cout << "]" << endl;
MonotoneSequence *obj;
int answer;
obj = new MonotoneSequence();
clock_t startTime = clock();
answer = obj->longestMonotoneSequence(p0);
clock_t endTime = clock();
delete obj;
bool res;
res = true;
cout << "Time: " << double(endTime - startTime) / CLOCKS_PER_SEC << " seconds" << endl;
if (hasAnswer) {
cout << "Desired answer:" << endl;
cout << "\t" << p1 << endl;
}
cout << "Your answer:" << endl;
cout << "\t" << answer << endl;
if (hasAnswer) {
res = answer == p1;
}
if (!res) {
cout << "DOESN'T MATCH!!!!" << endl;
} else if (double(endTime - startTime) / CLOCKS_PER_SEC >= 2) {
cout << "FAIL the timeout" << endl;
res = false;
} else if (hasAnswer) {
cout << "Match :-)" << endl;
} else {
cout << "OK, but is it right?" << endl;
}
cout << "" << endl;
return res;
}
int main() {
bool all_right;
all_right = true;
vector <int> p0;
int p1;
{
// ----- test 0 -----
int t0[] = {1,7,7,8,3,6,7,2};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = 3;
all_right = KawigiEdit_RunTest(0, p0, true, p1) && all_right;
// ------------------
}
{
// ----- test 1 -----
int t0[] = {1,1,1,1,1};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = 1;
all_right = KawigiEdit_RunTest(1, p0, true, p1) && all_right;
// ------------------
}
{
// ----- test 2 -----
int t0[] = {10,20,30,25,20,19,20,18,23};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = 4;
all_right = KawigiEdit_RunTest(2, p0, true, p1) && all_right;
// ------------------
}
{
// ----- test 3 -----
int t0[] = {3,2,1,4};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = 3;
all_right = KawigiEdit_RunTest(3, p0, true, p1) && all_right;
// ------------------
}
if (all_right) {
cout << "You're a stud (at least on the example cases)!" << endl;
} else {
cout << "Some of the test cases had errors." << endl;
}
return 0;
}
// END KAWIGIEDIT TESTING// Powered by FileEdit
// Powered by CodeProcessor
| [
"winftc@gmail.com"
] | winftc@gmail.com |
d2bfb5ef401d700c974d356371b710d972676a07 | 21f553e7941c9e2154ff82aaef5e960942f89387 | /include/data_management/data/numeric_table.h | bddb1583d063c1b326740f5d1f854addcb7c295c | [
"Apache-2.0",
"Intel"
] | permissive | tonythomascn/daal | 7e6fe4285c7bb640cc58deb3359d4758a9f5eaf5 | 3e5071f662b561f448e8b20e994b5cb53af8e914 | refs/heads/daal_2017_update2 | 2021-01-19T23:05:41.968161 | 2017-04-19T16:18:44 | 2017-04-19T16:18:44 | 88,920,723 | 1 | 0 | null | 2017-04-20T23:54:18 | 2017-04-20T23:54:18 | null | UTF-8 | C++ | false | false | 25,670 | h | /* file: numeric_table.h */
/*******************************************************************************
* Copyright 2014-2017 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
/*
//++
// Declaration and implementation of the base class for numeric tables.
//--
*/
#ifndef __NUMERIC_TABLE_H__
#define __NUMERIC_TABLE_H__
#include "services/base.h"
#include "services/daal_defines.h"
#include "services/daal_memory.h"
#include "services/error_handling.h"
#include "algorithms/algorithm_types.h"
#include "data_management/data/data_collection.h"
#include "data_management/data/data_dictionary.h"
#include "data_management/data/numeric_types.h"
namespace daal
{
/** \brief Contains classes that implement data management functionality, including NumericTables, DataSources, and Compression */
namespace data_management
{
namespace interface1
{
/**
* @ingroup numeric_tables
* @{
*/
class NumericTable;
/**
* <a name="DAAL-CLASS-DATA_MANAGEMENT__BLOCKDESCRIPTOR"></a>
* \brief %Base class that manages buffer memory for read/write operations required by numeric tables.
*/
template<typename DataType = double>
class DAAL_EXPORT BlockDescriptor
{
public:
/** \private */
BlockDescriptor() : _ptr(0), _buffer(0), _capacity(0), _ncols(0), _nrows(0), _colsOffset(0), _rowsOffset(0), _rwFlag(0), _aux_ptr(0) {}
/** \private */
~BlockDescriptor() { freeBuffer(); }
/**
* Gets a pointer to the buffer
* \return Pointer to the block
*/
inline DataType *getBlockPtr() const { return _ptr; }
/**
* Returns the number of columns in the block
* \return Number of columns
*/
inline size_t getNumberOfColumns() const { return _ncols; }
/**
* Returns the number of rows in the block
* \return Number of rows
*/
inline size_t getNumberOfRows() const { return _nrows; }
public:
/**
* \param[in] ptr Pointer to the buffer
* \param[in] nColumns Number of columns
* \param[in] nRows Number of rows
*/
inline void setPtr( DataType *ptr, size_t nColumns, size_t nRows )
{
_ptr = ptr;
_ncols = nColumns;
_nrows = nRows;
}
/**
* \param[in] nColumns Number of columns
* \param[in] nRows Number of rows
* \param[in] auxMemorySize Memory size
*/
inline bool resizeBuffer( size_t nColumns, size_t nRows, size_t auxMemorySize = 0 )
{
_ncols = nColumns;
_nrows = nRows;
size_t newSize = nColumns * nRows * sizeof(DataType) + auxMemorySize;
if ( newSize > _capacity )
{
freeBuffer();
_buffer = (DataType *)daal::services::daal_malloc(newSize);
if ( _buffer != 0 )
{
_capacity = newSize;
}
else
{
return false;
}
}
_ptr = _buffer;
if(!auxMemorySize)
{
_aux_ptr = 0;
}
else
{
_aux_ptr = _buffer + nColumns * nRows;
}
return true;
}
inline void setDetails( size_t columnIdx, size_t rowIdx, int rwFlag )
{
_colsOffset = columnIdx;
_rowsOffset = rowIdx;
_rwFlag = rwFlag;
}
inline size_t getColumnsOffset() const { return _colsOffset; }
inline size_t getRowsOffset() const { return _rowsOffset; }
inline size_t getRWFlag() const { return _rwFlag; }
inline void *getAdditionalBufferPtr() const { return _aux_ptr; }
protected:
/**
* Frees the buffer
*/
void freeBuffer()
{
if ( _capacity )
{
daal::services::daal_free( _buffer );
}
_buffer = 0;
_capacity = 0;
}
private:
DataType *_ptr; /*<! Pointer to the buffer */
size_t _nrows; /*<! Buffer size in bytes */
size_t _ncols; /*<! Buffer size in bytes */
size_t _colsOffset; /*<! Buffer size in bytes */
size_t _rowsOffset; /*<! Buffer size in bytes */
int _rwFlag; /*<! Buffer size in bytes */
void *_aux_ptr;
DataType *_buffer; /*<! Pointer to the buffer */
size_t _capacity; /*<! Buffer size in bytes */
};
/**
* <a name="DAAL-CLASS-DATA_MANAGEMENT__NUMERICTABLEIFACE"></a>
* \brief Abstract interface class for a data management component responsible for representation of data in the numeric format.
* This class declares the most general methods for data access.
*/
class NumericTableIface
{
public:
virtual ~NumericTableIface()
{}
/**
* <a name="DAAL-ENUM-DATA_MANAGEMENT__MEMORYSTATUS"></a>
* \brief Enumeration to specify the status of memory related to the Numeric Table
*/
enum MemoryStatus
{
notAllocated, /*!< No memory allocated */
userAllocated, /*!< Memory allocated on user side */
internallyAllocated /*!< Memory allocated and managed by NumericTable */
};
/**
* <a name="DAAL-ENUM-DATA_MANAGEMENT__ALLOCATIONFLAG"></a>
* \brief Enumeration to specify whether the Numeric Table must allocate memory
*/
enum AllocationFlag
{
notAllocate, /*!< Memory will not be allocated by NumericTable */
doAllocate /*!< Memory will be allocated by NumericTable when needed */
};
/**
* <a name="DAAL-ENUM-DATA_MANAGEMENT__BASICSTATISTICSID"></a>
* \brief Enumeration to specify estimates of basic statistics stored
*/
enum BasicStatisticsId
{
minimum = 0, /*!< Minimum estimate */
maximum = 1, /*!< Maximum estimate */
sum = 2, /*!< Sum estimate */
sumSquares = 3 /*!< Sum squares estimate */
};
/**
* <a name="DAAL-ENUM-DATA_MANAGEMENT__FEATUREBASICSTATISTICS"></a>
* \brief Enumeration to specify feature-specific estimates of basic statistics stored
*/
enum FeatureBasicStatistics
{
counters /*!< Counters estimate */
};
/**
* <a name="DAAL-ENUM-DATA_MANAGEMENT__NORMALIZATIONTYPE"></a>
* \brief Enumeration to specify types of normalization
*/
enum NormalizationType
{
nonNormalized = 0, /*!< Default: non-normalized */
standardScoreNormalized = 1 /*!< Standard score normalization (mean=0, variance=1) */
};
/**
* <a name="DAAL-ENUM-DATA_MANAGEMENT__STORAGELAYOUT"></a>
* \brief Storage layouts that may need to be supported
*/
enum StorageLayout
{
soa = 1, // 1
aos = 2, // 2
csrArray = 1 << 4,
upperPackedSymmetricMatrix = 1 << 8,
lowerPackedSymmetricMatrix = 2 << 8,
upperPackedTriangularMatrix = 1 << 7,
lowerPackedTriangularMatrix = 4 << 8,
layout_unknown = 0x80000000 // the last bit set
};
/**
* Sets a data dictionary in the Numeric Table
* \param[in] ddict Pointer to the data dictionary
*/
virtual void setDictionary( NumericTableDictionary *ddict ) = 0;
/**
* Returns a pointer to a data dictionary
* \return Pointer to the data dictionary
*/
virtual NumericTableDictionary *getDictionary() const = 0;
/**
* Returns a shared pointer to a data dictionary
* \return Shared pointer to the data dictionary
*/
virtual services::SharedPtr<NumericTableDictionary> getDictionarySharedPtr() const = 0;
/**
* Resets a data dictionary for the Numeric Table
*/
virtual void resetDictionary() = 0;
/**
* Returns the type of a given feature
* \param[in] feature_idx Feature index
* \return Feature type
*/
virtual data_feature_utils::FeatureType getFeatureType(size_t feature_idx) const = 0;
/**
* Returns the number of categories for a given feature
* \param[in] feature_idx Feature index
* \return Number of categories
*/
virtual size_t getNumberOfCategories(size_t feature_idx) const = 0;
/**
* Returns a data layout used in the Numeric Table
* \return Data layout
*/
virtual StorageLayout getDataLayout() const = 0;
/**
* Sets the number of columns in the Numeric Table
*
* \param[in] ncol Number of columns
*/
virtual void setNumberOfColumns(size_t ncol) = 0;
/**
* Sets the number of rows in the Numeric Table
*
* \param[in] nrow Number of rows
*/
virtual void setNumberOfRows(size_t nrow) = 0;
/**
* Allocates memory for a data set
*/
virtual void allocateDataMemory(daal::MemType type = daal::dram) = 0;
/**
* Deallocates the memory allocated for a data set
*/
virtual void freeDataMemory() = 0;
/**
* Allocates Numeric Tables for basic statistics
*/
virtual void allocateBasicStatistics() = 0;
/**
* Checks the correctness of this numeric table
* \param[in] errors Pointer to the collection of errors
* \param[in] description Additional information about error
* \return Check status: True if the table satisfies the requirements, false otherwise.
*/
virtual bool check(services::ErrorCollection *errors, const char *description) const = 0;
};
} // namespace interface1
using interface1::BlockDescriptor;
using interface1::NumericTableIface;
const int packed_mask = (int)NumericTableIface::csrArray |
(int)NumericTableIface::upperPackedSymmetricMatrix |
(int)NumericTableIface::lowerPackedSymmetricMatrix |
(int)NumericTableIface::upperPackedTriangularMatrix |
(int)NumericTableIface::lowerPackedTriangularMatrix;
namespace interface1
{
/**
* <a name="DAAL-CLASS-DATA_MANAGEMENT__DENSENUMERICTABLEIFACE"></a>
* \brief Abstract interface class for a data management component responsible for accessing data in the numeric format.
* This class declares specific methods to access data in a dense homogeneous form.
*/
class DenseNumericTableIface
{
public:
virtual ~DenseNumericTableIface()
{}
/**
* Gets a block of rows from a table.
*
* \param[in] vector_idx Index of the first row to include into the block.
* \param[in] vector_num Number of rows in the block.
* \param[in] rwflag Flag specifying read/write access to the block of feature vectors.
* \param[out] block The block of feature vectors.
*
* \return Actual number of feature vectors returned by the method.
*/
virtual void getBlockOfRows(size_t vector_idx, size_t vector_num, ReadWriteMode rwflag, BlockDescriptor<double> &block) = 0;
/**
* Gets a block of rows from a table.
*
* \param[in] vector_idx Index of the first row to include into the block.
* \param[in] vector_num Number of rows in the block.
* \param[in] rwflag Flag specifying read/write access to the block of feature vectors.
* \param[out] block The block of feature vectors.
*
* \return Actual number of feature vectors returned by the method.
*/
virtual void getBlockOfRows(size_t vector_idx, size_t vector_num, ReadWriteMode rwflag, BlockDescriptor<float> &block) = 0;
/**
* Gets a block of rows from a table.
*
* \param[in] vector_idx Index of the first row to include into the block.
* \param[in] vector_num Number of rows in the block.
* \param[in] rwflag Flag specifying read/write access to the block of feature vectors.
* \param[out] block The block of feature vectors.
*
* \return Actual number of feature vectors returned by the method.
*/
virtual void getBlockOfRows(size_t vector_idx, size_t vector_num, ReadWriteMode rwflag, BlockDescriptor<int> &block) = 0;
/**
* Releases a block of rows.
* \param[in] block The block of rows.
*/
virtual void releaseBlockOfRows(BlockDescriptor<double> &block) = 0;
/**
* Releases a block of rows.
* \param[in] block The block of rows.
*/
virtual void releaseBlockOfRows(BlockDescriptor<float> &block) = 0;
/**
* Releases a block of rows.
* \param[in] block The block of rows.
*/
virtual void releaseBlockOfRows(BlockDescriptor<int> &block) = 0;
/**
* Gets a block of values for a given feature.
*
* \param[in] feature_idx Feature index.
* \param[in] vector_idx Index of the first feature vector to include into the block.
* \param[in] value_num Number of feature values in the block.
* \param[in] rwflag Flag specifying read/write access to the block of feature values.
* \param[out] block The block of feature values.
*
* \return Actual number of feature values returned by the method.
*/
virtual void getBlockOfColumnValues(size_t feature_idx, size_t vector_idx, size_t value_num,
ReadWriteMode rwflag, BlockDescriptor<double> &block) = 0;
/**
* Gets a block of values for a given feature.
*
* \param[in] feature_idx Feature index.
* \param[in] vector_idx Index of the first feature vector to include into the block.
* \param[in] value_num Number of feature values in the block.
* \param[in] rwflag Flag specifying read/write access to the block of feature values.
* \param[out] block The block of feature values.
*
* \return Actual number of feature values returned by the method.
*/
virtual void getBlockOfColumnValues(size_t feature_idx, size_t vector_idx, size_t value_num,
ReadWriteMode rwflag, BlockDescriptor<float> &block) = 0;
/**
* Gets a block of values for a given feature.
*
* \param[in] feature_idx Feature index.
* \param[in] vector_idx Index of the first feature vector to include into the block.
* \param[in] value_num Number of feature values in the block.
* \param[in] rwflag Flag specifying read/write access to the block of feature values.
* \param[out] block The block of feature values.
*
* \return Actual number of feature values returned by the method.
*/
virtual void getBlockOfColumnValues(size_t feature_idx, size_t vector_idx, size_t value_num,
ReadWriteMode rwflag, BlockDescriptor<int> &block) = 0;
/**
* Releases a block of values for a given feature.
* \param[in] block The block of feature values.
*/
virtual void releaseBlockOfColumnValues(BlockDescriptor<double> &block) = 0;
/**
* Releases a block of values for a given feature.
* \param[in] block The block of feature values.
*/
virtual void releaseBlockOfColumnValues(BlockDescriptor<float> &block) = 0;
/**
* Releases a block of values for a given feature.
* \param[in] block The block of feature values.
*/
virtual void releaseBlockOfColumnValues(BlockDescriptor<int> &block) = 0;
};
/**
* <a name="DAAL-CLASS-DATA_MANAGEMENT__NUMERICTABLE"></a>
* \brief Class for a data management component responsible for representation of data in the numeric format.
* This class implements the most general methods for data access.
*/
class DAAL_EXPORT NumericTable : public SerializationIface, public NumericTableIface, public DenseNumericTableIface
{
public:
DAAL_CAST_OPERATOR(NumericTable);
/** \private */
NumericTable( NumericTableDictionary *ddict ) : _errors(new services::KernelErrorCollection())
{
_obsnum = 0;
_ddict = services::SharedPtr<NumericTableDictionary>(ddict, services::EmptyDeleter<NumericTableDictionary>());
_layout = layout_unknown;
_memStatus = notAllocated;
_normalizationFlag = NumericTable::nonNormalized;
}
/** \private */
NumericTable( services::SharedPtr<NumericTableDictionary> ddict ) : _errors(new services::KernelErrorCollection())
{
_obsnum = 0;
_ddict = ddict;
_layout = layout_unknown;
_memStatus = notAllocated;
_normalizationFlag = NumericTable::nonNormalized;
}
/** \private */
NumericTable( size_t featnum, size_t obsnum, DictionaryIface::FeaturesEqual featuresEqual = DictionaryIface::notEqual ) : _errors(new services::KernelErrorCollection())
{
_obsnum = obsnum;
_ddict = services::SharedPtr<NumericTableDictionary>(new NumericTableDictionary(featnum, featuresEqual));
_layout = layout_unknown;
_memStatus = notAllocated;
_normalizationFlag = NumericTable::nonNormalized;
}
/** \private */
virtual ~NumericTable() {}
virtual void setDictionary( NumericTableDictionary *ddict ) DAAL_C11_OVERRIDE
{
_ddict = services::SharedPtr<NumericTableDictionary>(ddict, services::EmptyDeleter<NumericTableDictionary>());
}
virtual NumericTableDictionary *getDictionary() const DAAL_C11_OVERRIDE { return _ddict.get(); }
virtual services::SharedPtr<NumericTableDictionary> getDictionarySharedPtr() const DAAL_C11_OVERRIDE { return _ddict; }
virtual void resetDictionary() DAAL_C11_OVERRIDE {}
/**
* Returns the number of columns in the Numeric Table
* \return Number of columns
*/
size_t getNumberOfColumns() const
{
return _ddict->getNumberOfFeatures();
}
/**
* Returns the number of rows in the Numeric Table
* \return Number of rows
*/
size_t getNumberOfRows() const { return _obsnum; }
virtual void setNumberOfColumns(size_t ncol) DAAL_C11_OVERRIDE
{
_ddict->setNumberOfFeatures(ncol);
}
virtual void setNumberOfRows(size_t nrow) DAAL_C11_OVERRIDE
{
_obsnum = nrow;
}
StorageLayout getDataLayout() const DAAL_C11_OVERRIDE
{
return _layout;
}
data_feature_utils::FeatureType getFeatureType(size_t feature_idx) const DAAL_C11_OVERRIDE
{
if ( _ddict.get() != NULL && _ddict->getNumberOfFeatures() > feature_idx )
{
const NumericTableFeature &f = (*_ddict)[feature_idx];
return f.featureType;
}
else
{
/* If no dictionary was set, all features are considered numeric */
return data_feature_utils::DAAL_CONTINUOUS;
}
}
size_t getNumberOfCategories(size_t feature_idx) const DAAL_C11_OVERRIDE
{
if ( _ddict.get() != NULL && _ddict->getNumberOfFeatures() > feature_idx &&
getFeatureType(feature_idx) != data_feature_utils::DAAL_CONTINUOUS )
{
return 2; /* Support binary */
}
else
{
/* If no dictionary was set, all features are considered numeric */
return -1;
}
}
/**
* Gets the status of the memory used by a data set connected with a Numeric Table
*/
virtual MemoryStatus getDataMemoryStatus() const { return _memStatus; }
/** \private */
template<typename Archive, bool onDeserialize>
void serialImpl( Archive *arch )
{
arch->setSharedPtrObj( _ddict );
arch->set( _obsnum );
if( onDeserialize )
{
_memStatus = notAllocated;
}
arch->set( _layout );
}
/**
* Checks if dataset stored in the numeric table is normalized, according to the given normalization flag
* \param[in] flag Normalization flag to check
* \return Check result
*/
bool isNormalized(NormalizationType flag)
{
return (_normalizationFlag == flag);
}
/**
* Sets the normalization flag for dataset stored in the numeric table
* \param[in] flag Normalization flag
* \return Previous value of the normalization flag
*/
NormalizationType setNormalizationFlag(NormalizationType flag)
{
NormalizationType oldValue = _normalizationFlag;
_normalizationFlag = flag;
return oldValue;
}
/**
* Returns errors during the computation
* \return Errors during the computation
*/
services::SharedPtr<services::KernelErrorCollection> getErrors()
{
return _errors;
}
/**
* Allocates Numeric Tables for basic statistics
*/
virtual void allocateBasicStatistics() DAAL_C11_OVERRIDE;
/**
* Checks the correctness of this numeric table
* \param[in] errors Pointer to the collection of errors
* \param[in] description Additional information about error
* \return Check status: True if the table satisfies the requirements, false otherwise.
*/
virtual bool check(services::ErrorCollection *errors, const char *description) const DAAL_C11_OVERRIDE
{
if (getDataMemoryStatus() == notAllocated)
{
services::SharedPtr<services::Error> error = services::SharedPtr<services::Error>(new services::Error(services::ErrorNullNumericTable));
error->addStringDetail(services::ArgumentName, description);
errors->add(error);
return false;
}
if (getNumberOfColumns() == 0)
{
services::SharedPtr<services::Error> error = services::SharedPtr<services::Error>(new services::Error(services::ErrorIncorrectNumberOfColumns));
error->addStringDetail(services::ArgumentName, description);
errors->add(error);
return false;
}
if (getNumberOfRows() == 0)
{
services::SharedPtr<services::Error> error = services::SharedPtr<services::Error>(new services::Error(services::ErrorIncorrectNumberOfRows));
error->addStringDetail(services::ArgumentName, description);
errors->add(error);
return false;
}
return true;
}
public:
/**
* <a name="DAAL-CLASS-DATA_MANAGEMENT__BASICSTATISTICSDATACOLLECTION"></a>
* \brief Basic statistics for each column of original Numeric Table
*/
class BasicStatisticsDataCollection : public algorithms::Argument
{
public:
BasicStatisticsDataCollection() : algorithms::Argument(4) {}
services::SharedPtr<NumericTable> get(BasicStatisticsId id)
{
return services::staticPointerCast<NumericTable, SerializationIface>(Argument::get(id));
}
void set(BasicStatisticsId id, const services::SharedPtr<NumericTable> &value)
{
Argument::set(id, value);
}
};
BasicStatisticsDataCollection basicStatistics; /** Basic statistics container */
protected:
services::SharedPtr<NumericTableDictionary> _ddict;
size_t _obsnum;
MemoryStatus _memStatus;
StorageLayout _layout;
NormalizationType _normalizationFlag;
services::SharedPtr<services::KernelErrorCollection> _errors;
};
typedef services::SharedPtr<NumericTable> NumericTablePtr;
typedef services::SharedPtr<const NumericTable> NumericTableConstPtr;
/** @} */
} // namespace interface1
using interface1::DenseNumericTableIface;
using interface1::NumericTable;
using interface1::NumericTablePtr;
using interface1::NumericTableConstPtr;
/**
* Checks the correctness of this numeric table
* \param[in] nt The numeric table to check
* \param[out] errors The collection of errors
* \param[in] description Additional information about error
* \param[in] unexpectedLayouts The bit mask of invalid layouts for this numeric table.
* \param[in] expectedLayouts The bit mask of valid layouts for this numeric table.
* \param[in] nColumns Required number of columns.
* nColumns = 0 means that required number of columns is not specified.
* \param[in] nRows Required number of rows.
* nRows = 0 means that required number of rows is not specified.
* \return Check status: True if the table satisfies the requirements, false otherwise.
*/
DAAL_EXPORT bool checkNumericTable(const NumericTable *nt, services::ErrorCollection *errors, const char *description,
const int unexpectedLayouts = 0, const int expectedLayouts = 0, size_t nColumns = 0, size_t nRows = 0);
/**
* Converts numeric table with arbitrary storage layout to homogen numeric table of the given type
* \param[in] src Pointer to numeric table
* \param[in] type Type of result numeric table memory
* \return Pointer to homogen numeric table
*/
template<typename DataType>
DAAL_EXPORT daal::services::SharedPtr<daal::data_management::NumericTable> convertToHomogen(NumericTable& src, daal::MemType type = daal::dram);
}
} // namespace daal
#endif
| [
"vasily.rubtsov@intel.com"
] | vasily.rubtsov@intel.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.