AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
SharingClientPINVOKE.cs
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 // <auto-generated />
3 //
4 // This file was automatically generated by SWIG (http://www.swig.org).
5 // Version 3.0.10
6 //
7 // Do not make changes to this file unless you know what you are doing--modify
8 // the SWIG interface file instead.
9 //------------------------------------------------------------------------------
10 
11 namespace HoloToolkit.Sharing {
12 
14 
15  protected class SWIGExceptionHelper {
16 
17  public delegate void ExceptionDelegate(string message);
18  public delegate void ExceptionArgumentDelegate(string message, string paramName);
19 
20  static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
21  static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
22  static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
23  static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
24  static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
25  static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
26  static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
27  static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
28  static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
29  static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
30  static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
31 
32  static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
33  static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
34  static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
35 
36  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="SWIGRegisterExceptionCallbacks_SharingClient")]
37  public static extern void SWIGRegisterExceptionCallbacks_SharingClient(
38  ExceptionDelegate applicationDelegate,
39  ExceptionDelegate arithmeticDelegate,
40  ExceptionDelegate divideByZeroDelegate,
41  ExceptionDelegate indexOutOfRangeDelegate,
42  ExceptionDelegate invalidCastDelegate,
43  ExceptionDelegate invalidOperationDelegate,
44  ExceptionDelegate ioDelegate,
45  ExceptionDelegate nullReferenceDelegate,
46  ExceptionDelegate outOfMemoryDelegate,
47  ExceptionDelegate overflowDelegate,
48  ExceptionDelegate systemExceptionDelegate);
49 
50  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_SharingClient")]
51  public static extern void SWIGRegisterExceptionCallbacksArgument_SharingClient(
52  ExceptionArgumentDelegate argumentDelegate,
53  ExceptionArgumentDelegate argumentNullDelegate,
54  ExceptionArgumentDelegate argumentOutOfRangeDelegate);
55 
56  static void SetPendingApplicationException(string message) {
57  SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
58  }
59  static void SetPendingArithmeticException(string message) {
60  SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
61  }
62  static void SetPendingDivideByZeroException(string message) {
63  SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
64  }
65  static void SetPendingIndexOutOfRangeException(string message) {
66  SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
67  }
68  static void SetPendingInvalidCastException(string message) {
69  SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
70  }
71  static void SetPendingInvalidOperationException(string message) {
72  SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
73  }
74  static void SetPendingIOException(string message) {
75  SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
76  }
77  static void SetPendingNullReferenceException(string message) {
78  SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
79  }
80  static void SetPendingOutOfMemoryException(string message) {
81  SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
82  }
83  static void SetPendingOverflowException(string message) {
84  SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
85  }
86  static void SetPendingSystemException(string message) {
87  SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
88  }
89 
90  static void SetPendingArgumentException(string message, string paramName) {
91  SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
92  }
93  static void SetPendingArgumentNullException(string message, string paramName) {
94  global::System.Exception e = SWIGPendingException.Retrieve();
95  if (e != null) message = message + " Inner Exception: " + e.Message;
96  SWIGPendingException.Set(new global::System.ArgumentNullException(paramName, message));
97  }
98  static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
99  global::System.Exception e = SWIGPendingException.Retrieve();
100  if (e != null) message = message + " Inner Exception: " + e.Message;
101  SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
102  }
103 
104  static SWIGExceptionHelper() {
105  SWIGRegisterExceptionCallbacks_SharingClient(
106  applicationDelegate,
107  arithmeticDelegate,
108  divideByZeroDelegate,
109  indexOutOfRangeDelegate,
110  invalidCastDelegate,
111  invalidOperationDelegate,
112  ioDelegate,
113  nullReferenceDelegate,
114  outOfMemoryDelegate,
115  overflowDelegate,
116  systemDelegate);
117 
118  SWIGRegisterExceptionCallbacksArgument_SharingClient(
119  argumentDelegate,
120  argumentNullDelegate,
121  argumentOutOfRangeDelegate);
122  }
123  }
124 
125  protected static SWIGExceptionHelper swigExceptionHelper = new SWIGExceptionHelper();
126 
127  public class SWIGPendingException {
128  [global::System.ThreadStatic]
129  private static global::System.Exception pendingException = null;
130  private static int numExceptionsPending = 0;
131 
132  public static bool Pending {
133  get {
134  bool pending = false;
135  if (numExceptionsPending > 0)
136  if (pendingException != null)
137  pending = true;
138  return pending;
139  }
140  }
141 
142  public static void Set(global::System.Exception e) {
143  if (pendingException != null)
144  throw new global::System.ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
145  pendingException = e;
146  lock(typeof(SharingClientPINVOKE)) {
147  numExceptionsPending++;
148  }
149  }
150 
151  public static global::System.Exception Retrieve() {
152  global::System.Exception e = null;
153  if (numExceptionsPending > 0) {
154  if (pendingException != null) {
155  e = pendingException;
156  pendingException = null;
157  lock(typeof(SharingClientPINVOKE)) {
158  numExceptionsPending--;
159  }
160  }
161  }
162  return e;
163  }
164  }
165 
166 
167  protected class SWIGStringHelper {
168 
169  public delegate string SWIGStringDelegate(string message);
170  static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
171 
172  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="SWIGRegisterStringCallback_SharingClient")]
173  public static extern void SWIGRegisterStringCallback_SharingClient(SWIGStringDelegate stringDelegate);
174 
175  static string CreateString(string cString) {
176  return cString;
177  }
178 
179  static SWIGStringHelper() {
180  SWIGRegisterStringCallback_SharingClient(stringDelegate);
181  }
182  }
183 
184  static protected SWIGStringHelper swigStringHelper = new SWIGStringHelper();
185 
186 
187  static SharingClientPINVOKE() {
188  }
189 
190 
191  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_kInvalidSocketID_get___")]
192  public static extern ulong kInvalidSocketID_get();
193 
194  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_kInvalidConnectionGUID_get___")]
195  public static extern ulong kInvalidConnectionGUID_get();
196 
197  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Receipt___")]
198  public static extern void delete_Receipt(global::System.Runtime.InteropServices.HandleRef jarg1);
199 
200  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Receipt_Clear___")]
201  public static extern void Receipt_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
202 
203  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_Receipt___")]
204  public static extern global::System.IntPtr new_Receipt();
205 
206  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_LogManager___")]
207  public static extern void delete_LogManager(global::System.Runtime.InteropServices.HandleRef jarg1);
208 
209  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LogManager_Log___")]
210  public static extern void LogManager_Log(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPStr)]string jarg3);
211 
212  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_LogWriter___")]
213  public static extern void delete_LogWriter(global::System.Runtime.InteropServices.HandleRef jarg1);
214 
215  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LogWriter_WriteLogEntry___")]
216  public static extern void LogWriter_WriteLogEntry(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
217 
218  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LogWriter_WriteLogEntrySwigExplicitLogWriter___")]
219  public static extern void LogWriter_WriteLogEntrySwigExplicitLogWriter(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
220 
221  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_LogWriter___")]
222  public static extern global::System.IntPtr new_LogWriter();
223 
224  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LogWriter_director_connect___")]
225  public static extern void LogWriter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, LogWriter.SwigDelegateLogWriter_0 delegate0);
226 
227  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Log_Info___")]
228  public static extern void Log_Info([global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPStr)]string jarg1);
229 
230  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Log_Warning___")]
231  public static extern void Log_Warning([global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPStr)]string jarg1);
232 
233  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Log_Error___")]
234  public static extern void Log_Error([global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPStr)]string jarg1);
235 
236  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_Log___")]
237  public static extern global::System.IntPtr new_Log();
238 
239  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Log___")]
240  public static extern void delete_Log(global::System.Runtime.InteropServices.HandleRef jarg1);
241 
242  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Listener___")]
243  public static extern void delete_Listener(global::System.Runtime.InteropServices.HandleRef jarg1);
244 
245  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Listener_UnregisterAll___")]
246  public static extern void Listener_UnregisterAll(global::System.Runtime.InteropServices.HandleRef jarg1);
247 
248  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Listener_IsRegistered___")]
249  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
250  public static extern bool Listener_IsRegistered(global::System.Runtime.InteropServices.HandleRef jarg1);
251 
252  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_Listener___")]
253  public static extern global::System.IntPtr new_Listener();
254 
255  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_kInvalidXGuid_get___")]
256  public static extern long kInvalidXGuid_get();
257 
258  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_XString__SWIG_0___")]
259  public static extern global::System.IntPtr new_XString__SWIG_0();
260 
261  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_XString__SWIG_1___")]
262  public static extern global::System.IntPtr new_XString__SWIG_1(string jarg1);
263 
264  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_XString___")]
265  public static extern void delete_XString(global::System.Runtime.InteropServices.HandleRef jarg1);
266 
267  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_XString_GetLength___")]
268  public static extern uint XString_GetLength(global::System.Runtime.InteropServices.HandleRef jarg1);
269 
270  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_XString_IsEqual___")]
271  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
272  public static extern bool XString_IsEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
273 
274  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_XString_GetString___")]
275  public static extern string XString_GetString(global::System.Runtime.InteropServices.HandleRef jarg1);
276 
277  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Write__SWIG_0___")]
278  public static extern void NetworkOutMessage_Write__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2);
279 
280  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Write__SWIG_1___")]
281  public static extern void NetworkOutMessage_Write__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
282 
283  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Write__SWIG_2___")]
284  public static extern void NetworkOutMessage_Write__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
285 
286  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Write__SWIG_3___")]
287  public static extern void NetworkOutMessage_Write__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
288 
289  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Write__SWIG_4___")]
290  public static extern void NetworkOutMessage_Write__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2);
291 
292  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Write__SWIG_5___")]
293  public static extern void NetworkOutMessage_Write__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
294 
295  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Write__SWIG_6___")]
296  public static extern void NetworkOutMessage_Write__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
297 
298  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_WriteArray___")]
299  public static extern void NetworkOutMessage_WriteArray(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2, uint jarg3);
300 
301  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkOutMessage_Reset___")]
302  public static extern void NetworkOutMessage_Reset(global::System.Runtime.InteropServices.HandleRef jarg1);
303 
304  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_NetworkOutMessage___")]
305  public static extern void delete_NetworkOutMessage(global::System.Runtime.InteropServices.HandleRef jarg1);
306 
307  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_NetworkInMessage___")]
308  public static extern void delete_NetworkInMessage(global::System.Runtime.InteropServices.HandleRef jarg1);
309 
310  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadByte___")]
311  public static extern byte NetworkInMessage_ReadByte(global::System.Runtime.InteropServices.HandleRef jarg1);
312 
313  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadInt16___")]
314  public static extern short NetworkInMessage_ReadInt16(global::System.Runtime.InteropServices.HandleRef jarg1);
315 
316  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadInt32___")]
317  public static extern int NetworkInMessage_ReadInt32(global::System.Runtime.InteropServices.HandleRef jarg1);
318 
319  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadInt64___")]
320  public static extern long NetworkInMessage_ReadInt64(global::System.Runtime.InteropServices.HandleRef jarg1);
321 
322  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadFloat___")]
323  public static extern float NetworkInMessage_ReadFloat(global::System.Runtime.InteropServices.HandleRef jarg1);
324 
325  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadDouble___")]
326  public static extern double NetworkInMessage_ReadDouble(global::System.Runtime.InteropServices.HandleRef jarg1);
327 
328  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadString___")]
329  public static extern global::System.IntPtr NetworkInMessage_ReadString(global::System.Runtime.InteropServices.HandleRef jarg1);
330 
331  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_ReadArray___")]
332  public static extern void NetworkInMessage_ReadArray(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2, uint jarg3);
333 
334  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_GetUnreadBitsCount___")]
335  public static extern int NetworkInMessage_GetUnreadBitsCount(global::System.Runtime.InteropServices.HandleRef jarg1);
336 
337  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkInMessage_GetSize___")]
338  public static extern int NetworkInMessage_GetSize(global::System.Runtime.InteropServices.HandleRef jarg1);
339 
340  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_NetworkConnectionListener___")]
341  public static extern void delete_NetworkConnectionListener(global::System.Runtime.InteropServices.HandleRef jarg1);
342 
343  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnConnected___")]
344  public static extern void NetworkConnectionListener_OnConnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
345 
346  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnConnectedSwigExplicitNetworkConnectionListener___")]
347  public static extern void NetworkConnectionListener_OnConnectedSwigExplicitNetworkConnectionListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
348 
349  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnConnectFailed___")]
350  public static extern void NetworkConnectionListener_OnConnectFailed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
351 
352  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnConnectFailedSwigExplicitNetworkConnectionListener___")]
353  public static extern void NetworkConnectionListener_OnConnectFailedSwigExplicitNetworkConnectionListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
354 
355  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnDisconnected___")]
356  public static extern void NetworkConnectionListener_OnDisconnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
357 
358  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnDisconnectedSwigExplicitNetworkConnectionListener___")]
359  public static extern void NetworkConnectionListener_OnDisconnectedSwigExplicitNetworkConnectionListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
360 
361  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnMessageReceived___")]
362  public static extern void NetworkConnectionListener_OnMessageReceived(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
363 
364  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_OnMessageReceivedSwigExplicitNetworkConnectionListener___")]
365  public static extern void NetworkConnectionListener_OnMessageReceivedSwigExplicitNetworkConnectionListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
366 
367  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_NetworkConnectionListener___")]
368  public static extern global::System.IntPtr new_NetworkConnectionListener();
369 
370  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_director_connect___")]
371  public static extern void NetworkConnectionListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, NetworkConnectionListener.SwigDelegateNetworkConnectionListener_0 delegate0, NetworkConnectionListener.SwigDelegateNetworkConnectionListener_1 delegate1, NetworkConnectionListener.SwigDelegateNetworkConnectionListener_2 delegate2, NetworkConnectionListener.SwigDelegateNetworkConnectionListener_3 delegate3);
372 
373  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_User_GetName___")]
374  public static extern global::System.IntPtr User_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
375 
376  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_User_GetID___")]
377  public static extern int User_GetID(global::System.Runtime.InteropServices.HandleRef jarg1);
378 
379  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_User_IsValid___")]
380  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
381  public static extern bool User_IsValid(global::System.Runtime.InteropServices.HandleRef jarg1);
382 
383  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_User_GetMuteState___")]
384  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
385  public static extern bool User_GetMuteState(global::System.Runtime.InteropServices.HandleRef jarg1);
386 
387  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_User___")]
388  public static extern void delete_User(global::System.Runtime.InteropServices.HandleRef jarg1);
389 
390  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_IsConnected___")]
391  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
392  public static extern bool NetworkConnection_IsConnected(global::System.Runtime.InteropServices.HandleRef jarg1);
393 
394  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_GetConnectionGUID___")]
395  public static extern ulong NetworkConnection_GetConnectionGUID(global::System.Runtime.InteropServices.HandleRef jarg1);
396 
397  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Send__SWIG_0___")]
398  public static extern void NetworkConnection_Send__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg6);
399 
400  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Send__SWIG_1___")]
401  public static extern void NetworkConnection_Send__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5);
402 
403  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Send__SWIG_2___")]
404  public static extern void NetworkConnection_Send__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4);
405 
406  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Send__SWIG_3___")]
407  public static extern void NetworkConnection_Send__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
408 
409  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Send__SWIG_4___")]
410  public static extern void NetworkConnection_Send__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
411 
412  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_SendTo__SWIG_0___")]
413  public static extern void NetworkConnection_SendTo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, int jarg7, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg8);
414 
415  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_SendTo__SWIG_1___")]
416  public static extern void NetworkConnection_SendTo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, int jarg7);
417 
418  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_SendTo__SWIG_2___")]
419  public static extern void NetworkConnection_SendTo__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6);
420 
421  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_SendTo__SWIG_3___")]
422  public static extern void NetworkConnection_SendTo__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5);
423 
424  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_SendTo__SWIG_4___")]
425  public static extern void NetworkConnection_SendTo__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
426 
427  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Broadcast__SWIG_0___")]
428  public static extern void NetworkConnection_Broadcast__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg6);
429 
430  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Broadcast__SWIG_1___")]
431  public static extern void NetworkConnection_Broadcast__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5);
432 
433  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Broadcast__SWIG_2___")]
434  public static extern void NetworkConnection_Broadcast__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4);
435 
436  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Broadcast__SWIG_3___")]
437  public static extern void NetworkConnection_Broadcast__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
438 
439  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Broadcast__SWIG_4___")]
440  public static extern void NetworkConnection_Broadcast__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
441 
442  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_AddListener___")]
443  public static extern void NetworkConnection_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
444 
445  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_RemoveListener___")]
446  public static extern void NetworkConnection_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
447 
448  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_AddListenerAsync___")]
449  public static extern void NetworkConnection_AddListenerAsync(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
450 
451  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_RemoveListenerAsync___")]
452  public static extern void NetworkConnection_RemoveListenerAsync(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
453 
454  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_CreateMessage___")]
455  public static extern global::System.IntPtr NetworkConnection_CreateMessage(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2);
456 
457  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_ReturnMessage___")]
458  public static extern void NetworkConnection_ReturnMessage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
459 
460  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_Disconnect___")]
461  public static extern void NetworkConnection_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1);
462 
463  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnection_GetRemoteAddress___")]
464  public static extern global::System.IntPtr NetworkConnection_GetRemoteAddress(global::System.Runtime.InteropServices.HandleRef jarg1);
465 
466  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_NetworkConnection___")]
467  public static extern void delete_NetworkConnection(global::System.Runtime.InteropServices.HandleRef jarg1);
468 
469  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Element_GetElementType___")]
470  public static extern int Element_GetElementType(global::System.Runtime.InteropServices.HandleRef jarg1);
471 
472  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Element_GetGUID___")]
473  public static extern long Element_GetGUID(global::System.Runtime.InteropServices.HandleRef jarg1);
474 
475  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Element_GetName___")]
476  public static extern global::System.IntPtr Element_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
477 
478  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Element_GetParent___")]
479  public static extern global::System.IntPtr Element_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1);
480 
481  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Element_IsValid___")]
482  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
483  public static extern bool Element_IsValid(global::System.Runtime.InteropServices.HandleRef jarg1);
484 
485  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Element___")]
486  public static extern void delete_Element(global::System.Runtime.InteropServices.HandleRef jarg1);
487 
488  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_BoolElement_Cast___")]
489  public static extern global::System.IntPtr BoolElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
490 
491  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_BoolElement_GetValue___")]
492  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
493  public static extern bool BoolElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
494 
495  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_BoolElement_SetValue___")]
496  public static extern void BoolElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2);
497 
498  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_BoolElement___")]
499  public static extern void delete_BoolElement(global::System.Runtime.InteropServices.HandleRef jarg1);
500 
501  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntElement_Cast___")]
502  public static extern global::System.IntPtr IntElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
503 
504  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntElement_GetValue___")]
505  public static extern int IntElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
506 
507  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntElement_SetValue___")]
508  public static extern void IntElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
509 
510  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_IntElement___")]
511  public static extern void delete_IntElement(global::System.Runtime.InteropServices.HandleRef jarg1);
512 
513  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LongElement_Cast___")]
514  public static extern global::System.IntPtr LongElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
515 
516  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LongElement_GetValue___")]
517  public static extern long LongElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
518 
519  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LongElement_SetValue___")]
520  public static extern void LongElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
521 
522  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_LongElement___")]
523  public static extern void delete_LongElement(global::System.Runtime.InteropServices.HandleRef jarg1);
524 
525  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatElement_Cast___")]
526  public static extern global::System.IntPtr FloatElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
527 
528  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatElement_GetValue___")]
529  public static extern float FloatElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
530 
531  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatElement_SetValue___")]
532  public static extern void FloatElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2);
533 
534  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_FloatElement___")]
535  public static extern void delete_FloatElement(global::System.Runtime.InteropServices.HandleRef jarg1);
536 
537  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DoubleElement_Cast___")]
538  public static extern global::System.IntPtr DoubleElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
539 
540  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DoubleElement_GetValue___")]
541  public static extern double DoubleElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
542 
543  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DoubleElement_SetValue___")]
544  public static extern void DoubleElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
545 
546  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_DoubleElement___")]
547  public static extern void delete_DoubleElement(global::System.Runtime.InteropServices.HandleRef jarg1);
548 
549  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringElement_Cast___")]
550  public static extern global::System.IntPtr StringElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
551 
552  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringElement_GetValue___")]
553  public static extern global::System.IntPtr StringElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
554 
555  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringElement_SetValue___")]
556  public static extern void StringElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
557 
558  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_StringElement___")]
559  public static extern void delete_StringElement(global::System.Runtime.InteropServices.HandleRef jarg1);
560 
561  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_IntArrayListener___")]
562  public static extern void delete_IntArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1);
563 
564  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_OnValueChanged___")]
565  public static extern void IntArrayListener_OnValueChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
566 
567  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_OnValueChangedSwigExplicitIntArrayListener___")]
568  public static extern void IntArrayListener_OnValueChangedSwigExplicitIntArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
569 
570  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_OnValueInserted___")]
571  public static extern void IntArrayListener_OnValueInserted(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
572 
573  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_OnValueInsertedSwigExplicitIntArrayListener___")]
574  public static extern void IntArrayListener_OnValueInsertedSwigExplicitIntArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
575 
576  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_OnValueRemoved___")]
577  public static extern void IntArrayListener_OnValueRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
578 
579  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_OnValueRemovedSwigExplicitIntArrayListener___")]
580  public static extern void IntArrayListener_OnValueRemovedSwigExplicitIntArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
581 
582  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_IntArrayListener___")]
583  public static extern global::System.IntPtr new_IntArrayListener();
584 
585  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_director_connect___")]
586  public static extern void IntArrayListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, IntArrayListener.SwigDelegateIntArrayListener_0 delegate0, IntArrayListener.SwigDelegateIntArrayListener_1 delegate1, IntArrayListener.SwigDelegateIntArrayListener_2 delegate2);
587 
588  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_Cast___")]
589  public static extern global::System.IntPtr IntArrayElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
590 
591  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_GetCount___")]
592  public static extern int IntArrayElement_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
593 
594  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_GetValue___")]
595  public static extern int IntArrayElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
596 
597  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_SetValue___")]
598  public static extern void IntArrayElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
599 
600  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_InsertValue___")]
601  public static extern void IntArrayElement_InsertValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
602 
603  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_RemoveValue___")]
604  public static extern void IntArrayElement_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
605 
606  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_AddListener___")]
607  public static extern void IntArrayElement_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
608 
609  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_RemoveListener___")]
610  public static extern void IntArrayElement_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
611 
612  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_IntArrayElement___")]
613  public static extern void delete_IntArrayElement(global::System.Runtime.InteropServices.HandleRef jarg1);
614 
615  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_FloatArrayListener___")]
616  public static extern void delete_FloatArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1);
617 
618  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_OnValueChanged___")]
619  public static extern void FloatArrayListener_OnValueChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
620 
621  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_OnValueChangedSwigExplicitFloatArrayListener___")]
622  public static extern void FloatArrayListener_OnValueChangedSwigExplicitFloatArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
623 
624  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_OnValueInserted___")]
625  public static extern void FloatArrayListener_OnValueInserted(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
626 
627  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_OnValueInsertedSwigExplicitFloatArrayListener___")]
628  public static extern void FloatArrayListener_OnValueInsertedSwigExplicitFloatArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
629 
630  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_OnValueRemoved___")]
631  public static extern void FloatArrayListener_OnValueRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
632 
633  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_OnValueRemovedSwigExplicitFloatArrayListener___")]
634  public static extern void FloatArrayListener_OnValueRemovedSwigExplicitFloatArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
635 
636  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_FloatArrayListener___")]
637  public static extern global::System.IntPtr new_FloatArrayListener();
638 
639  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_director_connect___")]
640  public static extern void FloatArrayListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, FloatArrayListener.SwigDelegateFloatArrayListener_0 delegate0, FloatArrayListener.SwigDelegateFloatArrayListener_1 delegate1, FloatArrayListener.SwigDelegateFloatArrayListener_2 delegate2);
641 
642  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_Cast___")]
643  public static extern global::System.IntPtr FloatArrayElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
644 
645  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_GetCount___")]
646  public static extern int FloatArrayElement_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
647 
648  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_GetValue___")]
649  public static extern float FloatArrayElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
650 
651  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_SetValue___")]
652  public static extern void FloatArrayElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
653 
654  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_InsertValue___")]
655  public static extern void FloatArrayElement_InsertValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3);
656 
657  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_RemoveValue___")]
658  public static extern void FloatArrayElement_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
659 
660  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_AddListener___")]
661  public static extern void FloatArrayElement_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
662 
663  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_RemoveListener___")]
664  public static extern void FloatArrayElement_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
665 
666  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_FloatArrayElement___")]
667  public static extern void delete_FloatArrayElement(global::System.Runtime.InteropServices.HandleRef jarg1);
668 
669  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_StringArrayListener___")]
670  public static extern void delete_StringArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1);
671 
672  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_OnValueChanged___")]
673  public static extern void StringArrayListener_OnValueChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
674 
675  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_OnValueChangedSwigExplicitStringArrayListener___")]
676  public static extern void StringArrayListener_OnValueChangedSwigExplicitStringArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
677 
678  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_OnValueInserted___")]
679  public static extern void StringArrayListener_OnValueInserted(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
680 
681  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_OnValueInsertedSwigExplicitStringArrayListener___")]
682  public static extern void StringArrayListener_OnValueInsertedSwigExplicitStringArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
683 
684  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_OnValueRemoved___")]
685  public static extern void StringArrayListener_OnValueRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
686 
687  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_OnValueRemovedSwigExplicitStringArrayListener___")]
688  public static extern void StringArrayListener_OnValueRemovedSwigExplicitStringArrayListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
689 
690  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_StringArrayListener___")]
691  public static extern global::System.IntPtr new_StringArrayListener();
692 
693  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_director_connect___")]
694  public static extern void StringArrayListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, StringArrayListener.SwigDelegateStringArrayListener_0 delegate0, StringArrayListener.SwigDelegateStringArrayListener_1 delegate1, StringArrayListener.SwigDelegateStringArrayListener_2 delegate2);
695 
696  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_Cast___")]
697  public static extern global::System.IntPtr StringArrayElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
698 
699  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_GetCount___")]
700  public static extern int StringArrayElement_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
701 
702  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_GetValue___")]
703  public static extern global::System.IntPtr StringArrayElement_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
704 
705  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_SetValue___")]
706  public static extern void StringArrayElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
707 
708  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_InsertValue___")]
709  public static extern void StringArrayElement_InsertValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
710 
711  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_RemoveValue___")]
712  public static extern void StringArrayElement_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
713 
714  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_AddListener___")]
715  public static extern void StringArrayElement_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
716 
717  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_RemoveListener___")]
718  public static extern void StringArrayElement_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
719 
720  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_StringArrayElement___")]
721  public static extern void delete_StringArrayElement(global::System.Runtime.InteropServices.HandleRef jarg1);
722 
723  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_ObjectElementListener___")]
724  public static extern void delete_ObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1);
725 
726  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnBoolElementChanged___")]
727  public static extern void ObjectElementListener_OnBoolElementChanged(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg3);
728 
729  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnBoolElementChangedSwigExplicitObjectElementListener___")]
730  public static extern void ObjectElementListener_OnBoolElementChangedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg3);
731 
732  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnIntElementChanged___")]
733  public static extern void ObjectElementListener_OnIntElementChanged(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3);
734 
735  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnIntElementChangedSwigExplicitObjectElementListener___")]
736  public static extern void ObjectElementListener_OnIntElementChangedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3);
737 
738  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnLongElementChanged___")]
739  public static extern void ObjectElementListener_OnLongElementChanged(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
740 
741  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnLongElementChangedSwigExplicitObjectElementListener___")]
742  public static extern void ObjectElementListener_OnLongElementChangedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
743 
744  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnFloatElementChanged___")]
745  public static extern void ObjectElementListener_OnFloatElementChanged(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, float jarg3);
746 
747  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnFloatElementChangedSwigExplicitObjectElementListener___")]
748  public static extern void ObjectElementListener_OnFloatElementChangedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, float jarg3);
749 
750  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnDoubleElementChanged___")]
751  public static extern void ObjectElementListener_OnDoubleElementChanged(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, double jarg3);
752 
753  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnDoubleElementChangedSwigExplicitObjectElementListener___")]
754  public static extern void ObjectElementListener_OnDoubleElementChangedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, double jarg3);
755 
756  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnStringElementChanged___")]
757  public static extern void ObjectElementListener_OnStringElementChanged(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
758 
759  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnStringElementChangedSwigExplicitObjectElementListener___")]
760  public static extern void ObjectElementListener_OnStringElementChangedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
761 
762  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnElementAdded___")]
763  public static extern void ObjectElementListener_OnElementAdded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
764 
765  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnElementAddedSwigExplicitObjectElementListener___")]
766  public static extern void ObjectElementListener_OnElementAddedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
767 
768  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnElementDeleted___")]
769  public static extern void ObjectElementListener_OnElementDeleted(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
770 
771  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_OnElementDeletedSwigExplicitObjectElementListener___")]
772  public static extern void ObjectElementListener_OnElementDeletedSwigExplicitObjectElementListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
773 
774  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_ObjectElementListener___")]
775  public static extern global::System.IntPtr new_ObjectElementListener();
776 
777  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_director_connect___")]
779 
780  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_Cast___")]
781  public static extern global::System.IntPtr ObjectElement_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
782 
783  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateBoolElement___")]
784  public static extern global::System.IntPtr ObjectElement_CreateBoolElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg3);
785 
786  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateIntElement___")]
787  public static extern global::System.IntPtr ObjectElement_CreateIntElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
788 
789  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateLongElement___")]
790  public static extern global::System.IntPtr ObjectElement_CreateLongElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
791 
792  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateFloatElement___")]
793  public static extern global::System.IntPtr ObjectElement_CreateFloatElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3);
794 
795  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateDoubleElement___")]
796  public static extern global::System.IntPtr ObjectElement_CreateDoubleElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
797 
798  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateStringElement___")]
799  public static extern global::System.IntPtr ObjectElement_CreateStringElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
800 
801  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateObjectElement__SWIG_0___")]
802  public static extern global::System.IntPtr ObjectElement_CreateObjectElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
803 
804  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateObjectElement__SWIG_1___")]
805  public static extern global::System.IntPtr ObjectElement_CreateObjectElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
806 
807  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateIntArrayElement___")]
808  public static extern global::System.IntPtr ObjectElement_CreateIntArrayElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
809 
810  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateFloatArrayElement___")]
811  public static extern global::System.IntPtr ObjectElement_CreateFloatArrayElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
812 
813  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_CreateStringArrayElement___")]
814  public static extern global::System.IntPtr ObjectElement_CreateStringArrayElement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
815 
816  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_GetElementCount___")]
817  public static extern int ObjectElement_GetElementCount(global::System.Runtime.InteropServices.HandleRef jarg1);
818 
819  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_GetElement__SWIG_0___")]
820  public static extern global::System.IntPtr ObjectElement_GetElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
821 
822  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_GetElement__SWIG_1___")]
823  public static extern global::System.IntPtr ObjectElement_GetElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
824 
825  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_GetElementAt___")]
826  public static extern global::System.IntPtr ObjectElement_GetElementAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
827 
828  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_RemoveElement__SWIG_0___")]
829  public static extern void ObjectElement_RemoveElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
830 
831  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_RemoveElement__SWIG_1___")]
832  public static extern void ObjectElement_RemoveElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
833 
834  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_RemoveElementAt___")]
835  public static extern void ObjectElement_RemoveElementAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
836 
837  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_AddListener___")]
838  public static extern void ObjectElement_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
839 
840  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_RemoveListener___")]
841  public static extern void ObjectElement_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
842 
843  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_GetOwnerID___")]
844  public static extern int ObjectElement_GetOwnerID(global::System.Runtime.InteropServices.HandleRef jarg1);
845 
846  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_GetObjectType___")]
847  public static extern global::System.IntPtr ObjectElement_GetObjectType(global::System.Runtime.InteropServices.HandleRef jarg1);
848 
849  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_ObjectElement___")]
850  public static extern void delete_ObjectElement(global::System.Runtime.InteropServices.HandleRef jarg1);
851 
852  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SyncListener_OnSyncChangesBegin___")]
853  public static extern void SyncListener_OnSyncChangesBegin(global::System.Runtime.InteropServices.HandleRef jarg1);
854 
855  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SyncListener_OnSyncChangesBeginSwigExplicitSyncListener___")]
856  public static extern void SyncListener_OnSyncChangesBeginSwigExplicitSyncListener(global::System.Runtime.InteropServices.HandleRef jarg1);
857 
858  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SyncListener_OnSyncChangesEnd___")]
859  public static extern void SyncListener_OnSyncChangesEnd(global::System.Runtime.InteropServices.HandleRef jarg1);
860 
861  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SyncListener_OnSyncChangesEndSwigExplicitSyncListener___")]
862  public static extern void SyncListener_OnSyncChangesEndSwigExplicitSyncListener(global::System.Runtime.InteropServices.HandleRef jarg1);
863 
864  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_SyncListener___")]
865  public static extern global::System.IntPtr new_SyncListener();
866 
867  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_SyncListener___")]
868  public static extern void delete_SyncListener(global::System.Runtime.InteropServices.HandleRef jarg1);
869 
870  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SyncListener_director_connect___")]
871  public static extern void SyncListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SyncListener.SwigDelegateSyncListener_0 delegate0, SyncListener.SwigDelegateSyncListener_1 delegate1);
872 
873  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_SessionListener___")]
874  public static extern void delete_SessionListener(global::System.Runtime.InteropServices.HandleRef jarg1);
875 
876  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnJoiningSession___")]
877  public static extern void SessionListener_OnJoiningSession(global::System.Runtime.InteropServices.HandleRef jarg1);
878 
879  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnJoiningSessionSwigExplicitSessionListener___")]
880  public static extern void SessionListener_OnJoiningSessionSwigExplicitSessionListener(global::System.Runtime.InteropServices.HandleRef jarg1);
881 
882  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnJoinSucceeded___")]
883  public static extern void SessionListener_OnJoinSucceeded(global::System.Runtime.InteropServices.HandleRef jarg1);
884 
885  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnJoinSucceededSwigExplicitSessionListener___")]
886  public static extern void SessionListener_OnJoinSucceededSwigExplicitSessionListener(global::System.Runtime.InteropServices.HandleRef jarg1);
887 
888  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnJoinFailed___")]
889  public static extern void SessionListener_OnJoinFailed(global::System.Runtime.InteropServices.HandleRef jarg1);
890 
891  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnJoinFailedSwigExplicitSessionListener___")]
892  public static extern void SessionListener_OnJoinFailedSwigExplicitSessionListener(global::System.Runtime.InteropServices.HandleRef jarg1);
893 
894  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnSessionDisconnected___")]
895  public static extern void SessionListener_OnSessionDisconnected(global::System.Runtime.InteropServices.HandleRef jarg1);
896 
897  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_OnSessionDisconnectedSwigExplicitSessionListener___")]
898  public static extern void SessionListener_OnSessionDisconnectedSwigExplicitSessionListener(global::System.Runtime.InteropServices.HandleRef jarg1);
899 
900  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_SessionListener___")]
901  public static extern global::System.IntPtr new_SessionListener();
902 
903  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_director_connect___")]
904  public static extern void SessionListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SessionListener.SwigDelegateSessionListener_0 delegate0, SessionListener.SwigDelegateSessionListener_1 delegate1, SessionListener.SwigDelegateSessionListener_2 delegate2, SessionListener.SwigDelegateSessionListener_3 delegate3);
905 
906  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_GetMachineSessionState___")]
907  public static extern int Session_GetMachineSessionState(global::System.Runtime.InteropServices.HandleRef jarg1);
908 
909  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_AddListener___")]
910  public static extern void Session_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
911 
912  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_RemoveListener___")]
913  public static extern void Session_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
914 
915  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_IsJoined___")]
916  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
917  public static extern bool Session_IsJoined(global::System.Runtime.InteropServices.HandleRef jarg1);
918 
919  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_Join___")]
920  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
921  public static extern bool Session_Join(global::System.Runtime.InteropServices.HandleRef jarg1);
922 
923  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_Leave___")]
924  public static extern void Session_Leave(global::System.Runtime.InteropServices.HandleRef jarg1);
925 
926  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_GetUserCount___")]
927  public static extern int Session_GetUserCount(global::System.Runtime.InteropServices.HandleRef jarg1);
928 
929  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_GetUser___")]
930  public static extern global::System.IntPtr Session_GetUser(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
931 
932  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_GetSessionType___")]
933  public static extern int Session_GetSessionType(global::System.Runtime.InteropServices.HandleRef jarg1);
934 
935  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_GetName___")]
936  public static extern global::System.IntPtr Session_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
937 
938  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Session_GetSessionNetworkConnection___")]
939  public static extern global::System.IntPtr Session_GetSessionNetworkConnection(global::System.Runtime.InteropServices.HandleRef jarg1);
940 
941  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Session___")]
942  public static extern void delete_Session(global::System.Runtime.InteropServices.HandleRef jarg1);
943 
944  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_SessionManagerListener___")]
945  public static extern void delete_SessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1);
946 
947  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnCreateSucceeded___")]
948  public static extern void SessionManagerListener_OnCreateSucceeded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
949 
950  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnCreateSucceededSwigExplicitSessionManagerListener___")]
951  public static extern void SessionManagerListener_OnCreateSucceededSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
952 
953  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnCreateFailed___")]
954  public static extern void SessionManagerListener_OnCreateFailed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
955 
956  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnCreateFailedSwigExplicitSessionManagerListener___")]
957  public static extern void SessionManagerListener_OnCreateFailedSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
958 
959  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnSessionAdded___")]
960  public static extern void SessionManagerListener_OnSessionAdded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
961 
962  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnSessionAddedSwigExplicitSessionManagerListener___")]
963  public static extern void SessionManagerListener_OnSessionAddedSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
964 
965  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnSessionClosed___")]
966  public static extern void SessionManagerListener_OnSessionClosed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
967 
968  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnSessionClosedSwigExplicitSessionManagerListener___")]
969  public static extern void SessionManagerListener_OnSessionClosedSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
970 
971  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnUserJoinedSession___")]
972  public static extern void SessionManagerListener_OnUserJoinedSession(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
973 
974  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnUserJoinedSessionSwigExplicitSessionManagerListener___")]
975  public static extern void SessionManagerListener_OnUserJoinedSessionSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
976 
977  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnUserLeftSession___")]
978  public static extern void SessionManagerListener_OnUserLeftSession(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
979 
980  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnUserLeftSessionSwigExplicitSessionManagerListener___")]
981  public static extern void SessionManagerListener_OnUserLeftSessionSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
982 
983  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnUserChanged___")]
984  public static extern void SessionManagerListener_OnUserChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
985 
986  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnUserChangedSwigExplicitSessionManagerListener___")]
987  public static extern void SessionManagerListener_OnUserChangedSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
988 
989  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnServerConnected___")]
990  public static extern void SessionManagerListener_OnServerConnected(global::System.Runtime.InteropServices.HandleRef jarg1);
991 
992  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnServerConnectedSwigExplicitSessionManagerListener___")]
993  public static extern void SessionManagerListener_OnServerConnectedSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1);
994 
995  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnServerDisconnected___")]
996  public static extern void SessionManagerListener_OnServerDisconnected(global::System.Runtime.InteropServices.HandleRef jarg1);
997 
998  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_OnServerDisconnectedSwigExplicitSessionManagerListener___")]
999  public static extern void SessionManagerListener_OnServerDisconnectedSwigExplicitSessionManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1);
1000 
1001  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_SessionManagerListener___")]
1002  public static extern global::System.IntPtr new_SessionManagerListener();
1003 
1004  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_director_connect___")]
1006 
1007  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_AddListener___")]
1008  public static extern void SessionManager_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1009 
1010  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_RemoveListener___")]
1011  public static extern void SessionManager_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1012 
1013  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_CreateSession__SWIG_0___")]
1014  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1015  public static extern bool SessionManager_CreateSession__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1016 
1017  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_CreateSession__SWIG_1___")]
1018  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1019  public static extern bool SessionManager_CreateSession__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
1020 
1021  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_GetSessionCount___")]
1022  public static extern int SessionManager_GetSessionCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1023 
1024  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_GetSession___")]
1025  public static extern global::System.IntPtr SessionManager_GetSession(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1026 
1027  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_GetCurrentSession___")]
1028  public static extern global::System.IntPtr SessionManager_GetCurrentSession(global::System.Runtime.InteropServices.HandleRef jarg1);
1029 
1030  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_GetCurrentUser___")]
1031  public static extern global::System.IntPtr SessionManager_GetCurrentUser(global::System.Runtime.InteropServices.HandleRef jarg1);
1032 
1033  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManager_IsServerConnected___")]
1034  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1035  public static extern bool SessionManager_IsServerConnected(global::System.Runtime.InteropServices.HandleRef jarg1);
1036 
1037  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_SessionManager___")]
1038  public static extern void delete_SessionManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1039 
1040  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_UserPresenceManagerListener___")]
1041  public static extern void delete_UserPresenceManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1);
1042 
1043  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManagerListener_OnUserPresenceChanged___")]
1044  public static extern void UserPresenceManagerListener_OnUserPresenceChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1045 
1046  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManagerListener_OnUserPresenceChangedSwigExplicitUserPresenceManagerListener___")]
1047  public static extern void UserPresenceManagerListener_OnUserPresenceChangedSwigExplicitUserPresenceManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1048 
1049  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_UserPresenceManagerListener___")]
1050  public static extern global::System.IntPtr new_UserPresenceManagerListener();
1051 
1052  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManagerListener_director_connect___")]
1053  public static extern void UserPresenceManagerListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, UserPresenceManagerListener.SwigDelegateUserPresenceManagerListener_0 delegate0);
1054 
1055  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManager_AddListener___")]
1056  public static extern void UserPresenceManager_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1057 
1058  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManager_RemoveListener___")]
1059  public static extern void UserPresenceManager_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1060 
1061  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManager_GetMuteState___")]
1062  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1063  public static extern bool UserPresenceManager_GetMuteState(global::System.Runtime.InteropServices.HandleRef jarg1);
1064 
1065  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManager_SetMuteState___")]
1066  public static extern void UserPresenceManager_SetMuteState(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2);
1067 
1068  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManager_SetName___")]
1069  public static extern void UserPresenceManager_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1070 
1071  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManager_GetName___")]
1072  public static extern global::System.IntPtr UserPresenceManager_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
1073 
1074  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManager_SetUser___")]
1075  public static extern void UserPresenceManager_SetUser(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1076 
1077  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_UserPresenceManager___")]
1078  public static extern void delete_UserPresenceManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1079 
1080  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_ClientConfig___")]
1081  public static extern global::System.IntPtr new_ClientConfig(int jarg1);
1082 
1083  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_GetRole___")]
1084  public static extern int ClientConfig_GetRole(global::System.Runtime.InteropServices.HandleRef jarg1);
1085 
1086  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_GetServerAddress___")]
1087  public static extern string ClientConfig_GetServerAddress(global::System.Runtime.InteropServices.HandleRef jarg1);
1088 
1089  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_SetServerAddress___")]
1090  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1091  public static extern bool ClientConfig_SetServerAddress(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1092 
1093  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_GetServerPort___")]
1094  public static extern int ClientConfig_GetServerPort(global::System.Runtime.InteropServices.HandleRef jarg1);
1095 
1096  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_SetServerPort___")]
1097  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1098  public static extern bool ClientConfig_SetServerPort(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1099 
1100  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_GetLogWriter___")]
1101  public static extern global::System.IntPtr ClientConfig_GetLogWriter(global::System.Runtime.InteropServices.HandleRef jarg1);
1102 
1103  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_SetLogWriter___")]
1104  public static extern void ClientConfig_SetLogWriter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1105 
1106  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_GetIsAudioEndpoint___")]
1107  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1108  public static extern bool ClientConfig_GetIsAudioEndpoint(global::System.Runtime.InteropServices.HandleRef jarg1);
1109 
1110  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_SetIsAudioEndpoint___")]
1111  public static extern void ClientConfig_SetIsAudioEndpoint(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2);
1112 
1113  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_GetProfilerEnabled___")]
1114  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1115  public static extern bool ClientConfig_GetProfilerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
1116 
1117  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ClientConfig_SetProfilerEnabled___")]
1118  public static extern void ClientConfig_SetProfilerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2);
1119 
1120  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_ClientConfig___")]
1121  public static extern void delete_ClientConfig(global::System.Runtime.InteropServices.HandleRef jarg1);
1122 
1123  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_AudioManager_SetMicrophoneEnabled___")]
1124  public static extern void AudioManager_SetMicrophoneEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2);
1125 
1126  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_AudioManager___")]
1127  public static extern void delete_AudioManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1128 
1129  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_ProfileManager___")]
1130  public static extern void delete_ProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1131 
1132  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ProfileManager_BeginRange___")]
1133  public static extern void ProfileManager_BeginRange(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1134 
1135  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ProfileManager_EndRange___")]
1136  public static extern void ProfileManager_EndRange(global::System.Runtime.InteropServices.HandleRef jarg1);
1137 
1138  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ProfileManager_Log___")]
1139  public static extern void ProfileManager_Log(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
1140 
1141  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Profile_BeginRange___")]
1142  public static extern void Profile_BeginRange(string jarg1);
1143 
1144  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Profile_EndRange___")]
1145  public static extern void Profile_EndRange();
1146 
1147  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_Profile___")]
1148  public static extern global::System.IntPtr new_Profile();
1149 
1150  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Profile___")]
1151  public static extern void delete_Profile(global::System.Runtime.InteropServices.HandleRef jarg1);
1152 
1153  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_GetName___")]
1154  public static extern global::System.IntPtr Room_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
1155 
1156  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_GetID___")]
1157  public static extern long Room_GetID(global::System.Runtime.InteropServices.HandleRef jarg1);
1158 
1159  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_GetUserCount___")]
1160  public static extern int Room_GetUserCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1161 
1162  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_GetUserID___")]
1163  public static extern int Room_GetUserID(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1164 
1165  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_GetKeepOpen___")]
1166  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1167  public static extern bool Room_GetKeepOpen(global::System.Runtime.InteropServices.HandleRef jarg1);
1168 
1169  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_SetKeepOpen___")]
1170  public static extern void Room_SetKeepOpen(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2);
1171 
1172  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_GetAnchorCount___")]
1173  public static extern int Room_GetAnchorCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1174 
1175  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Room_GetAnchorName___")]
1176  public static extern global::System.IntPtr Room_GetAnchorName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1177 
1178  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Room___")]
1179  public static extern void delete_Room(global::System.Runtime.InteropServices.HandleRef jarg1);
1180 
1181  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_AnchorDownloadRequest_GetAnchorName___")]
1182  public static extern global::System.IntPtr AnchorDownloadRequest_GetAnchorName(global::System.Runtime.InteropServices.HandleRef jarg1);
1183 
1184  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_AnchorDownloadRequest_GetRoom___")]
1185  public static extern global::System.IntPtr AnchorDownloadRequest_GetRoom(global::System.Runtime.InteropServices.HandleRef jarg1);
1186 
1187  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_AnchorDownloadRequest_GetDataSize___")]
1188  public static extern int AnchorDownloadRequest_GetDataSize(global::System.Runtime.InteropServices.HandleRef jarg1);
1189 
1190  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_AnchorDownloadRequest_GetData___")]
1191  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1192  public static extern bool AnchorDownloadRequest_GetData(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2, int jarg3);
1193 
1194  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_AnchorDownloadRequest___")]
1195  public static extern void delete_AnchorDownloadRequest(global::System.Runtime.InteropServices.HandleRef jarg1);
1196 
1197  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_RoomManagerListener___")]
1198  public static extern void delete_RoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1);
1199 
1200  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnRoomAdded___")]
1201  public static extern void RoomManagerListener_OnRoomAdded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1202 
1203  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnRoomAddedSwigExplicitRoomManagerListener___")]
1204  public static extern void RoomManagerListener_OnRoomAddedSwigExplicitRoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1205 
1206  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnRoomClosed___")]
1207  public static extern void RoomManagerListener_OnRoomClosed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1208 
1209  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnRoomClosedSwigExplicitRoomManagerListener___")]
1210  public static extern void RoomManagerListener_OnRoomClosedSwigExplicitRoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1211 
1212  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnUserJoinedRoom___")]
1213  public static extern void RoomManagerListener_OnUserJoinedRoom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
1214 
1215  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnUserJoinedRoomSwigExplicitRoomManagerListener___")]
1216  public static extern void RoomManagerListener_OnUserJoinedRoomSwigExplicitRoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
1217 
1218  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnUserLeftRoom___")]
1219  public static extern void RoomManagerListener_OnUserLeftRoom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
1220 
1221  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnUserLeftRoomSwigExplicitRoomManagerListener___")]
1222  public static extern void RoomManagerListener_OnUserLeftRoomSwigExplicitRoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
1223 
1224  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnAnchorsChanged___")]
1225  public static extern void RoomManagerListener_OnAnchorsChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1226 
1227  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnAnchorsChangedSwigExplicitRoomManagerListener___")]
1228  public static extern void RoomManagerListener_OnAnchorsChangedSwigExplicitRoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1229 
1230  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnAnchorsDownloaded___")]
1231  public static extern void RoomManagerListener_OnAnchorsDownloaded(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1232 
1233  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnAnchorsDownloadedSwigExplicitRoomManagerListener___")]
1234  public static extern void RoomManagerListener_OnAnchorsDownloadedSwigExplicitRoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1235 
1236  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnAnchorUploadComplete___")]
1237  public static extern void RoomManagerListener_OnAnchorUploadComplete(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1238 
1239  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_OnAnchorUploadCompleteSwigExplicitRoomManagerListener___")]
1240  public static extern void RoomManagerListener_OnAnchorUploadCompleteSwigExplicitRoomManagerListener(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1241 
1242  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_RoomManagerListener___")]
1243  public static extern global::System.IntPtr new_RoomManagerListener();
1244 
1245  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_director_connect___")]
1247 
1248  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_AddListener___")]
1249  public static extern void RoomManager_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1250 
1251  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_RemoveListener___")]
1252  public static extern void RoomManager_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1253 
1254  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_GetRoomCount___")]
1255  public static extern int RoomManager_GetRoomCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1256 
1257  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_GetRoom___")]
1258  public static extern global::System.IntPtr RoomManager_GetRoom(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1259 
1260  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_GetCurrentRoom___")]
1261  public static extern global::System.IntPtr RoomManager_GetCurrentRoom(global::System.Runtime.InteropServices.HandleRef jarg1);
1262 
1263  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_CreateRoom___")]
1264  public static extern global::System.IntPtr RoomManager_CreateRoom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, [global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]bool jarg4);
1265 
1266  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_JoinRoom___")]
1267  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1268  public static extern bool RoomManager_JoinRoom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1269 
1270  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_LeaveRoom___")]
1271  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1272  public static extern bool RoomManager_LeaveRoom(global::System.Runtime.InteropServices.HandleRef jarg1);
1273 
1274  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_DownloadAnchor___")]
1275  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1276  public static extern bool RoomManager_DownloadAnchor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1277 
1278  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManager_UploadAnchor___")]
1279  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1280  public static extern bool RoomManager_UploadAnchor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.IntPtr jarg4, int jarg5);
1281 
1282  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_RoomManager___")]
1283  public static extern void delete_RoomManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1284 
1285  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_Settings___")]
1286  public static extern global::System.IntPtr new_Settings();
1287 
1288  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Settings_GetServerAddress___")]
1289  public static extern global::System.IntPtr Settings_GetServerAddress(global::System.Runtime.InteropServices.HandleRef jarg1);
1290 
1291  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Settings_GetServerPort___")]
1292  public static extern int Settings_GetServerPort(global::System.Runtime.InteropServices.HandleRef jarg1);
1293 
1294  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Settings_GetViewerAddress___")]
1295  public static extern global::System.IntPtr Settings_GetViewerAddress(global::System.Runtime.InteropServices.HandleRef jarg1);
1296 
1297  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Settings_GetViewerPort___")]
1298  public static extern int Settings_GetViewerPort(global::System.Runtime.InteropServices.HandleRef jarg1);
1299 
1300  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_Settings_GetLocalUserName___")]
1301  public static extern global::System.IntPtr Settings_GetLocalUserName(global::System.Runtime.InteropServices.HandleRef jarg1);
1302 
1303  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_Settings___")]
1304  public static extern void delete_Settings(global::System.Runtime.InteropServices.HandleRef jarg1);
1305 
1306  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_IsReceiver___")]
1307  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1308  public static extern bool PairMaker_IsReceiver(global::System.Runtime.InteropServices.HandleRef jarg1);
1309 
1310  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_IsReceiverSwigExplicitPairMaker___")]
1311  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1312  public static extern bool PairMaker_IsReceiverSwigExplicitPairMaker(global::System.Runtime.InteropServices.HandleRef jarg1);
1313 
1314  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetAddressCount___")]
1315  public static extern int PairMaker_GetAddressCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1316 
1317  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetAddress___")]
1318  public static extern global::System.IntPtr PairMaker_GetAddress(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1319 
1320  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetAddressSwigExplicitPairMaker___")]
1321  public static extern global::System.IntPtr PairMaker_GetAddressSwigExplicitPairMaker(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1322 
1323  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetPort___")]
1324  public static extern ushort PairMaker_GetPort(global::System.Runtime.InteropServices.HandleRef jarg1);
1325 
1326  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetPortSwigExplicitPairMaker___")]
1327  public static extern ushort PairMaker_GetPortSwigExplicitPairMaker(global::System.Runtime.InteropServices.HandleRef jarg1);
1328 
1329  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_Update___")]
1330  public static extern void PairMaker_Update(global::System.Runtime.InteropServices.HandleRef jarg1);
1331 
1332  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_UpdateSwigExplicitPairMaker___")]
1333  public static extern void PairMaker_UpdateSwigExplicitPairMaker(global::System.Runtime.InteropServices.HandleRef jarg1);
1334 
1335  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_IsReadyToConnect___")]
1336  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1337  public static extern bool PairMaker_IsReadyToConnect(global::System.Runtime.InteropServices.HandleRef jarg1);
1338 
1339  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_IsReadyToConnectSwigExplicitPairMaker___")]
1340  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1341  public static extern bool PairMaker_IsReadyToConnectSwigExplicitPairMaker(global::System.Runtime.InteropServices.HandleRef jarg1);
1342 
1343  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetLocalKey___")]
1344  public static extern int PairMaker_GetLocalKey(global::System.Runtime.InteropServices.HandleRef jarg1);
1345 
1346  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetLocalKeySwigExplicitPairMaker___")]
1347  public static extern int PairMaker_GetLocalKeySwigExplicitPairMaker(global::System.Runtime.InteropServices.HandleRef jarg1);
1348 
1349  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetRemoteKey___")]
1350  public static extern int PairMaker_GetRemoteKey(global::System.Runtime.InteropServices.HandleRef jarg1);
1351 
1352  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_GetRemoteKeySwigExplicitPairMaker___")]
1353  public static extern int PairMaker_GetRemoteKeySwigExplicitPairMaker(global::System.Runtime.InteropServices.HandleRef jarg1);
1354 
1355  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_PairMaker___")]
1356  public static extern global::System.IntPtr new_PairMaker();
1357 
1358  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_PairMaker___")]
1359  public static extern void delete_PairMaker(global::System.Runtime.InteropServices.HandleRef jarg1);
1360 
1361  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairMaker_director_connect___")]
1362  public static extern void PairMaker_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, PairMaker.SwigDelegatePairMaker_0 delegate0, PairMaker.SwigDelegatePairMaker_1 delegate1, PairMaker.SwigDelegatePairMaker_2 delegate2, PairMaker.SwigDelegatePairMaker_3 delegate3, PairMaker.SwigDelegatePairMaker_4 delegate4, PairMaker.SwigDelegatePairMaker_5 delegate5, PairMaker.SwigDelegatePairMaker_6 delegate6, PairMaker.SwigDelegatePairMaker_7 delegate7);
1363 
1364  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingListener_PairingConnectionSucceeded___")]
1365  public static extern void PairingListener_PairingConnectionSucceeded(global::System.Runtime.InteropServices.HandleRef jarg1);
1366 
1367  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingListener_PairingConnectionSucceededSwigExplicitPairingListener___")]
1368  public static extern void PairingListener_PairingConnectionSucceededSwigExplicitPairingListener(global::System.Runtime.InteropServices.HandleRef jarg1);
1369 
1370  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingListener_PairingConnectionFailed___")]
1371  public static extern void PairingListener_PairingConnectionFailed(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1372 
1373  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingListener_PairingConnectionFailedSwigExplicitPairingListener___")]
1374  public static extern void PairingListener_PairingConnectionFailedSwigExplicitPairingListener(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1375 
1376  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_PairingListener___")]
1377  public static extern global::System.IntPtr new_PairingListener();
1378 
1379  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_PairingListener___")]
1380  public static extern void delete_PairingListener(global::System.Runtime.InteropServices.HandleRef jarg1);
1381 
1382  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingListener_director_connect___")]
1383  public static extern void PairingListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, PairingListener.SwigDelegatePairingListener_0 delegate0, PairingListener.SwigDelegatePairingListener_1 delegate1);
1384 
1385  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_HasPairingInfo___")]
1386  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1387  public static extern bool PairingManager_HasPairingInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
1388 
1389  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_ClearPairingInfo___")]
1390  public static extern void PairingManager_ClearPairingInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
1391 
1392  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_BeginConnecting___")]
1393  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1394  public static extern bool PairingManager_BeginConnecting(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1395 
1396  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_CancelConnecting___")]
1397  public static extern void PairingManager_CancelConnecting(global::System.Runtime.InteropServices.HandleRef jarg1);
1398 
1399  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_BeginPairing___")]
1400  public static extern int PairingManager_BeginPairing(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1401 
1402  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_CancelPairing___")]
1403  public static extern void PairingManager_CancelPairing(global::System.Runtime.InteropServices.HandleRef jarg1);
1404 
1405  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_IsPairing___")]
1406  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1407  public static extern bool PairingManager_IsPairing(global::System.Runtime.InteropServices.HandleRef jarg1);
1408 
1409  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingManager_IsConnected___")]
1410  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1411  public static extern bool PairingManager_IsConnected(global::System.Runtime.InteropServices.HandleRef jarg1);
1412 
1413  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_PairingManager___")]
1414  public static extern void delete_PairingManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1415 
1416  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_Create___")]
1417  public static extern global::System.IntPtr SharingManager_Create(global::System.Runtime.InteropServices.HandleRef jarg1);
1418 
1419  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetSessionManager___")]
1420  public static extern global::System.IntPtr SharingManager_GetSessionManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1421 
1422  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetUserPresenceManager___")]
1423  public static extern global::System.IntPtr SharingManager_GetUserPresenceManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1424 
1425  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetAudioManager___")]
1426  public static extern global::System.IntPtr SharingManager_GetAudioManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1427 
1428  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetPairingManager___")]
1429  public static extern global::System.IntPtr SharingManager_GetPairingManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1430 
1431  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetRoomManager___")]
1432  public static extern global::System.IntPtr SharingManager_GetRoomManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1433 
1434  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetRootSyncObject___")]
1435  public static extern global::System.IntPtr SharingManager_GetRootSyncObject(global::System.Runtime.InteropServices.HandleRef jarg1);
1436 
1437  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_RegisterSyncListener___")]
1438  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1439  public static extern bool SharingManager_RegisterSyncListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1440 
1441  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_Update___")]
1442  public static extern void SharingManager_Update(global::System.Runtime.InteropServices.HandleRef jarg1);
1443 
1444  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetPairedConnection___")]
1445  public static extern global::System.IntPtr SharingManager_GetPairedConnection(global::System.Runtime.InteropServices.HandleRef jarg1);
1446 
1447  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetServerConnection___")]
1448  public static extern global::System.IntPtr SharingManager_GetServerConnection(global::System.Runtime.InteropServices.HandleRef jarg1);
1449 
1450  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetSettings___")]
1451  public static extern global::System.IntPtr SharingManager_GetSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
1452 
1453  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_SetServerConnectionInfo___")]
1454  public static extern void SharingManager_SetServerConnectionInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, uint jarg3);
1455 
1456  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_GetLocalUser___")]
1457  public static extern global::System.IntPtr SharingManager_GetLocalUser(global::System.Runtime.InteropServices.HandleRef jarg1);
1458 
1459  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SharingManager_SetUserName___")]
1460  public static extern void SharingManager_SetUserName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1461 
1462  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_SharingManager___")]
1463  public static extern void delete_SharingManager(global::System.Runtime.InteropServices.HandleRef jarg1);
1464 
1465  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_DirectPairConnector__SWIG_0___")]
1466  public static extern global::System.IntPtr new_DirectPairConnector__SWIG_0();
1467 
1468  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_DirectPairConnector__SWIG_1___")]
1469  public static extern global::System.IntPtr new_DirectPairConnector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1470 
1471  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_DirectPairConnector__SWIG_2___")]
1472  public static extern global::System.IntPtr new_DirectPairConnector__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2);
1473 
1474  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_IsReceiver___")]
1475  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1476  public static extern bool DirectPairConnector_IsReceiver(global::System.Runtime.InteropServices.HandleRef jarg1);
1477 
1478  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_GetAddressCount___")]
1479  public static extern int DirectPairConnector_GetAddressCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1480 
1481  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_GetAddress___")]
1482  public static extern global::System.IntPtr DirectPairConnector_GetAddress(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1483 
1484  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_GetPort___")]
1485  public static extern ushort DirectPairConnector_GetPort(global::System.Runtime.InteropServices.HandleRef jarg1);
1486 
1487  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_Update___")]
1488  public static extern void DirectPairConnector_Update(global::System.Runtime.InteropServices.HandleRef jarg1);
1489 
1490  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_IsReadyToConnect___")]
1491  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1492  public static extern bool DirectPairConnector_IsReadyToConnect(global::System.Runtime.InteropServices.HandleRef jarg1);
1493 
1494  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_SetRemoteAddress___")]
1495  public static extern void DirectPairConnector_SetRemoteAddress(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1496 
1497  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_SetRemotePort___")]
1498  public static extern void DirectPairConnector_SetRemotePort(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2);
1499 
1500  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_DirectPairConnector___")]
1501  public static extern void delete_DirectPairConnector(global::System.Runtime.InteropServices.HandleRef jarg1);
1502 
1503  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_DirectPairReceiver__SWIG_0___")]
1504  public static extern global::System.IntPtr new_DirectPairReceiver__SWIG_0();
1505 
1506  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_DirectPairReceiver__SWIG_1___")]
1507  public static extern global::System.IntPtr new_DirectPairReceiver__SWIG_1(ushort jarg1);
1508 
1509  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_IsReceiver___")]
1510  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1511  public static extern bool DirectPairReceiver_IsReceiver(global::System.Runtime.InteropServices.HandleRef jarg1);
1512 
1513  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_GetAddressCount___")]
1514  public static extern int DirectPairReceiver_GetAddressCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1515 
1516  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_GetAddress___")]
1517  public static extern global::System.IntPtr DirectPairReceiver_GetAddress(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1518 
1519  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_GetPort___")]
1520  public static extern ushort DirectPairReceiver_GetPort(global::System.Runtime.InteropServices.HandleRef jarg1);
1521 
1522  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_Update___")]
1523  public static extern void DirectPairReceiver_Update(global::System.Runtime.InteropServices.HandleRef jarg1);
1524 
1525  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_IsReadyToConnect___")]
1526  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1527  public static extern bool DirectPairReceiver_IsReadyToConnect(global::System.Runtime.InteropServices.HandleRef jarg1);
1528 
1529  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_SetIncomingPort___")]
1530  public static extern void DirectPairReceiver_SetIncomingPort(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2);
1531 
1532  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_DirectPairReceiver___")]
1533  public static extern void delete_DirectPairReceiver(global::System.Runtime.InteropServices.HandleRef jarg1);
1534 
1535  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_TagImage_GetWidth___")]
1536  public static extern int TagImage_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
1537 
1538  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_TagImage_GetHeight___")]
1539  public static extern int TagImage_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
1540 
1541  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_TagImage_CopyImageData___")]
1542  public static extern void TagImage_CopyImageData(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2, int jarg3, int jarg4);
1543 
1544  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_TagImage___")]
1545  public static extern void delete_TagImage(global::System.Runtime.InteropServices.HandleRef jarg1);
1546 
1547  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_VisualPairReceiver_Create___")]
1548  public static extern global::System.IntPtr VisualPairReceiver_Create();
1549 
1550  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_VisualPairReceiver_CreateTagImage___")]
1551  public static extern global::System.IntPtr VisualPairReceiver_CreateTagImage(global::System.Runtime.InteropServices.HandleRef jarg1);
1552 
1553  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_VisualPairReceiver___")]
1554  public static extern void delete_VisualPairReceiver(global::System.Runtime.InteropServices.HandleRef jarg1);
1555 
1556  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_VisualPairConnector_Create___")]
1557  public static extern global::System.IntPtr VisualPairConnector_Create();
1558 
1559  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_VisualPairConnector_ProcessImage___")]
1560  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1561  public static extern bool VisualPairConnector_ProcessImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2, int jarg3, int jarg4, int jarg5);
1562 
1563  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_VisualPairConnector_IsProcessingImage___")]
1564  [return: global::System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I1)]
1565  public static extern bool VisualPairConnector_IsProcessingImage(global::System.Runtime.InteropServices.HandleRef jarg1);
1566 
1567  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_VisualPairConnector___")]
1568  public static extern void delete_VisualPairConnector(global::System.Runtime.InteropServices.HandleRef jarg1);
1569 
1570  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_DiscoveredSystem___")]
1571  public static extern global::System.IntPtr new_DiscoveredSystem(string jarg1, string jarg2, int jarg3);
1572 
1573  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveredSystem_GetName___")]
1574  public static extern string DiscoveredSystem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
1575 
1576  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveredSystem_GetAddress___")]
1577  public static extern string DiscoveredSystem_GetAddress(global::System.Runtime.InteropServices.HandleRef jarg1);
1578 
1579  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveredSystem_GetRole___")]
1580  public static extern int DiscoveredSystem_GetRole(global::System.Runtime.InteropServices.HandleRef jarg1);
1581 
1582  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_DiscoveredSystem___")]
1583  public static extern void delete_DiscoveredSystem(global::System.Runtime.InteropServices.HandleRef jarg1);
1584 
1585  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_DiscoveryClientListener___")]
1586  public static extern void delete_DiscoveryClientListener(global::System.Runtime.InteropServices.HandleRef jarg1);
1587 
1588  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClientListener_OnRemoteSystemDiscovered___")]
1589  public static extern void DiscoveryClientListener_OnRemoteSystemDiscovered(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1590 
1591  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClientListener_OnRemoteSystemDiscoveredSwigExplicitDiscoveryClientListener___")]
1592  public static extern void DiscoveryClientListener_OnRemoteSystemDiscoveredSwigExplicitDiscoveryClientListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1593 
1594  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClientListener_OnRemoteSystemLost___")]
1595  public static extern void DiscoveryClientListener_OnRemoteSystemLost(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1596 
1597  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClientListener_OnRemoteSystemLostSwigExplicitDiscoveryClientListener___")]
1598  public static extern void DiscoveryClientListener_OnRemoteSystemLostSwigExplicitDiscoveryClientListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1599 
1600  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_new_DiscoveryClientListener___")]
1601  public static extern global::System.IntPtr new_DiscoveryClientListener();
1602 
1603  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClientListener_director_connect___")]
1604  public static extern void DiscoveryClientListener_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, DiscoveryClientListener.SwigDelegateDiscoveryClientListener_0 delegate0, DiscoveryClientListener.SwigDelegateDiscoveryClientListener_1 delegate1);
1605 
1606  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClient_Create___")]
1607  public static extern global::System.IntPtr DiscoveryClient_Create();
1608 
1609  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClient_Ping___")]
1610  public static extern void DiscoveryClient_Ping(global::System.Runtime.InteropServices.HandleRef jarg1);
1611 
1612  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClient_GetDiscoveredCount___")]
1613  public static extern uint DiscoveryClient_GetDiscoveredCount(global::System.Runtime.InteropServices.HandleRef jarg1);
1614 
1615  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClient_GetDiscoveredSystem___")]
1616  public static extern global::System.IntPtr DiscoveryClient_GetDiscoveredSystem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1617 
1618  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClient_Update___")]
1619  public static extern void DiscoveryClient_Update(global::System.Runtime.InteropServices.HandleRef jarg1);
1620 
1621  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClient_AddListener___")]
1622  public static extern void DiscoveryClient_AddListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1623 
1624  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClient_RemoveListener___")]
1625  public static extern void DiscoveryClient_RemoveListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1626 
1627  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_delete_DiscoveryClient___")]
1628  public static extern void delete_DiscoveryClient(global::System.Runtime.InteropServices.HandleRef jarg1);
1629 
1630  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_NetworkConnectionListener_SWIGUpcast___")]
1631  public static extern global::System.IntPtr NetworkConnectionListener_SWIGUpcast(global::System.IntPtr jarg1);
1632 
1633  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_BoolElement_SWIGUpcast___")]
1634  public static extern global::System.IntPtr BoolElement_SWIGUpcast(global::System.IntPtr jarg1);
1635 
1636  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntElement_SWIGUpcast___")]
1637  public static extern global::System.IntPtr IntElement_SWIGUpcast(global::System.IntPtr jarg1);
1638 
1639  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_LongElement_SWIGUpcast___")]
1640  public static extern global::System.IntPtr LongElement_SWIGUpcast(global::System.IntPtr jarg1);
1641 
1642  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatElement_SWIGUpcast___")]
1643  public static extern global::System.IntPtr FloatElement_SWIGUpcast(global::System.IntPtr jarg1);
1644 
1645  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DoubleElement_SWIGUpcast___")]
1646  public static extern global::System.IntPtr DoubleElement_SWIGUpcast(global::System.IntPtr jarg1);
1647 
1648  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringElement_SWIGUpcast___")]
1649  public static extern global::System.IntPtr StringElement_SWIGUpcast(global::System.IntPtr jarg1);
1650 
1651  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayListener_SWIGUpcast___")]
1652  public static extern global::System.IntPtr IntArrayListener_SWIGUpcast(global::System.IntPtr jarg1);
1653 
1654  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_IntArrayElement_SWIGUpcast___")]
1655  public static extern global::System.IntPtr IntArrayElement_SWIGUpcast(global::System.IntPtr jarg1);
1656 
1657  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayListener_SWIGUpcast___")]
1658  public static extern global::System.IntPtr FloatArrayListener_SWIGUpcast(global::System.IntPtr jarg1);
1659 
1660  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_FloatArrayElement_SWIGUpcast___")]
1661  public static extern global::System.IntPtr FloatArrayElement_SWIGUpcast(global::System.IntPtr jarg1);
1662 
1663  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayListener_SWIGUpcast___")]
1664  public static extern global::System.IntPtr StringArrayListener_SWIGUpcast(global::System.IntPtr jarg1);
1665 
1666  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_StringArrayElement_SWIGUpcast___")]
1667  public static extern global::System.IntPtr StringArrayElement_SWIGUpcast(global::System.IntPtr jarg1);
1668 
1669  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElementListener_SWIGUpcast___")]
1670  public static extern global::System.IntPtr ObjectElementListener_SWIGUpcast(global::System.IntPtr jarg1);
1671 
1672  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_ObjectElement_SWIGUpcast___")]
1673  public static extern global::System.IntPtr ObjectElement_SWIGUpcast(global::System.IntPtr jarg1);
1674 
1675  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SyncListener_SWIGUpcast___")]
1676  public static extern global::System.IntPtr SyncListener_SWIGUpcast(global::System.IntPtr jarg1);
1677 
1678  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionListener_SWIGUpcast___")]
1679  public static extern global::System.IntPtr SessionListener_SWIGUpcast(global::System.IntPtr jarg1);
1680 
1681  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_SessionManagerListener_SWIGUpcast___")]
1682  public static extern global::System.IntPtr SessionManagerListener_SWIGUpcast(global::System.IntPtr jarg1);
1683 
1684  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_UserPresenceManagerListener_SWIGUpcast___")]
1685  public static extern global::System.IntPtr UserPresenceManagerListener_SWIGUpcast(global::System.IntPtr jarg1);
1686 
1687  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_RoomManagerListener_SWIGUpcast___")]
1688  public static extern global::System.IntPtr RoomManagerListener_SWIGUpcast(global::System.IntPtr jarg1);
1689 
1690  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_PairingListener_SWIGUpcast___")]
1691  public static extern global::System.IntPtr PairingListener_SWIGUpcast(global::System.IntPtr jarg1);
1692 
1693  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairConnector_SWIGUpcast___")]
1694  public static extern global::System.IntPtr DirectPairConnector_SWIGUpcast(global::System.IntPtr jarg1);
1695 
1696  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DirectPairReceiver_SWIGUpcast___")]
1697  public static extern global::System.IntPtr DirectPairReceiver_SWIGUpcast(global::System.IntPtr jarg1);
1698 
1699  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_VisualPairReceiver_SWIGUpcast___")]
1700  public static extern global::System.IntPtr VisualPairReceiver_SWIGUpcast(global::System.IntPtr jarg1);
1701 
1702  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_VisualPairConnector_SWIGUpcast___")]
1703  public static extern global::System.IntPtr VisualPairConnector_SWIGUpcast(global::System.IntPtr jarg1);
1704 
1705  [global::System.Runtime.InteropServices.DllImport("SharingClient", EntryPoint="CSharp_HoloToolkitfSharing_DiscoveryClientListener_SWIGUpcast___")]
1706  public static extern global::System.IntPtr DiscoveryClientListener_SWIGUpcast(global::System.IntPtr jarg1);
1707 }
1708 
1709 }
delegate void SwigDelegateObjectElementListener_1(long elementID, int newValue)
delegate bool SwigDelegatePairMaker_0()
delegate void SwigDelegateRoomManagerListener_5(bool successful, global::System.IntPtr request, global::System.IntPtr failureReason)
delegate void SwigDelegateNetworkConnectionListener_3(global::System.IntPtr connection, global::System.IntPtr message)
delegate void SwigDelegateFloatArrayListener_0(int index, float newValue)
delegate void SwigDelegateRoomManagerListener_2(global::System.IntPtr room, int user)
delegate int SwigDelegatePairMaker_1()
delegate void SwigDelegateStringArrayListener_2(int index, global::System.IntPtr value)
delegate void SwigDelegateSessionManagerListener_1(global::System.IntPtr reason)
delegate void SwigDelegateSessionManagerListener_4(global::System.IntPtr session, global::System.IntPtr newUser)
delegate void SwigDelegateSessionListener_3()
delegate void SwigDelegateStringArrayListener_1(int index, global::System.IntPtr value)
delegate void SwigDelegateRoomManagerListener_3(global::System.IntPtr room, int user)
delegate void SwigDelegateLogWriter_0(int severity, string message)
delegate void SwigDelegateObjectElementListener_4(long elementID, double newValue)
delegate void SwigDelegatePairMaker_4()
delegate global::System.IntPtr SwigDelegatePairMaker_2(int index)
delegate ushort SwigDelegatePairMaker_3()
delegate void SwigDelegateDiscoveryClientListener_1(global::System.IntPtr remoteSystem)
delegate void SwigDelegateObjectElementListener_3(long elementID, float newValue)
delegate int SwigDelegatePairMaker_6()
delegate void SwigDelegateSessionManagerListener_6(global::System.IntPtr session, global::System.IntPtr user)
delegate void SwigDelegateSessionManagerListener_0(global::System.IntPtr newSession)
delegate void SwigDelegateObjectElementListener_6(global::System.IntPtr element)
delegate void SwigDelegateNetworkConnectionListener_1(global::System.IntPtr connection)
delegate void SwigDelegateObjectElementListener_7(global::System.IntPtr element)
delegate void SwigDelegateDiscoveryClientListener_0(global::System.IntPtr remoteSystem)
delegate void SwigDelegateRoomManagerListener_6(bool successful, global::System.IntPtr failureReason)
delegate void SwigDelegateSessionManagerListener_2(global::System.IntPtr newSession)
delegate void SwigDelegateSessionListener_2()
delegate void SwigDelegatePairingListener_1(int reason)
delegate void SwigDelegateSessionManagerListener_5(global::System.IntPtr session, global::System.IntPtr user)
delegate void SwigDelegateFloatArrayListener_2(int index, float value)
delegate void SwigDelegateSessionManagerListener_3(global::System.IntPtr session)
delegate void SwigDelegateNetworkConnectionListener_0(global::System.IntPtr connection)
delegate void SwigDelegateStringArrayListener_0(int index, global::System.IntPtr newValue)
delegate void SwigDelegateSyncListener_0()
delegate void SwigDelegateRoomManagerListener_0(global::System.IntPtr newRoom)
delegate int SwigDelegatePairMaker_7()
delegate void SwigDelegateSessionListener_0()
delegate void SwigDelegateObjectElementListener_0(long elementID, bool newValue)
delegate void SwigDelegateSessionListener_1()
delegate void SwigDelegateUserPresenceManagerListener_0(global::System.IntPtr user)
delegate void SwigDelegateNetworkConnectionListener_2(global::System.IntPtr connection)
delegate void SwigDelegateRoomManagerListener_1(global::System.IntPtr room)
delegate void SwigDelegateRoomManagerListener_4(global::System.IntPtr room)
delegate void SwigDelegatePairingListener_0()
delegate void SwigDelegateObjectElementListener_2(long elementID, long newValue)
delegate bool SwigDelegatePairMaker_5()
delegate void SwigDelegateIntArrayListener_1(int index, int value)
delegate void SwigDelegateObjectElementListener_5(long elementID, global::System.IntPtr newValue)
delegate void SwigDelegateIntArrayListener_2(int index, int value)
delegate void SwigDelegateFloatArrayListener_1(int index, float value)
delegate void SwigDelegateSyncListener_1()
delegate void SwigDelegateIntArrayListener_0(int index, int newValue)