Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
PCADGlobalsPINVOKE.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 4.0.2
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
11namespace PCAD_DOT_NET {
12
13 using System;
14 using System.Runtime.InteropServices;
15 using Teigha.Core;
16 using Teigha.TD;
17
19
20 protected class SWIGExceptionHelper {
21
22 public delegate void ExceptionDelegate(string message);
23 public delegate void ExceptionArgumentDelegate(string message, string paramName);
24
25 static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
26 static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
27 static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
28 static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
29 static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
30 static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
31 static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
32 static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
33 static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
34 static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
35 static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
36
37 static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
38 static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
39 static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
40
41 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="SWIGRegisterExceptionCallbacks_PCADGlobals")]
43 ExceptionDelegate applicationDelegate,
44 ExceptionDelegate arithmeticDelegate,
45 ExceptionDelegate divideByZeroDelegate,
46 ExceptionDelegate indexOutOfRangeDelegate,
47 ExceptionDelegate invalidCastDelegate,
48 ExceptionDelegate invalidOperationDelegate,
49 ExceptionDelegate ioDelegate,
50 ExceptionDelegate nullReferenceDelegate,
51 ExceptionDelegate outOfMemoryDelegate,
52 ExceptionDelegate overflowDelegate,
53 ExceptionDelegate systemExceptionDelegate);
54
55 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_PCADGlobals")]
57 ExceptionArgumentDelegate argumentDelegate,
58 ExceptionArgumentDelegate argumentNullDelegate,
59 ExceptionArgumentDelegate argumentOutOfRangeDelegate);
60
61 static void SetPendingApplicationException(string message) {
62 SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
63 }
64 static void SetPendingArithmeticException(string message) {
65 SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
66 }
67 static void SetPendingDivideByZeroException(string message) {
68 SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
69 }
70 static void SetPendingIndexOutOfRangeException(string message) {
71 SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
72 }
73 static void SetPendingInvalidCastException(string message) {
74 SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
75 }
76 static void SetPendingInvalidOperationException(string message) {
77 SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
78 }
79 static void SetPendingIOException(string message) {
80 SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
81 }
82 static void SetPendingNullReferenceException(string message) {
83 SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
84 }
85 static void SetPendingOutOfMemoryException(string message) {
86 SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
87 }
88 static void SetPendingOverflowException(string message) {
89 SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
90 }
91 static void SetPendingSystemException(string message) {
92 SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
93 }
94
95 static void SetPendingArgumentException(string message, string paramName) {
96 SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
97 }
98 static void SetPendingArgumentNullException(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.ArgumentNullException(paramName, message));
102 }
103 static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
104 global::System.Exception e = SWIGPendingException.Retrieve();
105 if (e != null) message = message + " Inner Exception: " + e.Message;
106 SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
107 }
108
109 static SWIGExceptionHelper() {
111 applicationDelegate,
112 arithmeticDelegate,
113 divideByZeroDelegate,
114 indexOutOfRangeDelegate,
115 invalidCastDelegate,
116 invalidOperationDelegate,
117 ioDelegate,
118 nullReferenceDelegate,
119 outOfMemoryDelegate,
120 overflowDelegate,
121 systemDelegate);
122
124 argumentDelegate,
125 argumentNullDelegate,
126 argumentOutOfRangeDelegate);
127 }
128 }
129
131
132 public class SWIGPendingException {
133 [global::System.ThreadStatic]
134 private static global::System.Exception pendingException = null;
135 private static int numExceptionsPending = 0;
136 private static global::System.Object exceptionsLock = null;
137
138 public static bool Pending {
139 get {
140 bool pending = false;
141 if (numExceptionsPending > 0)
142 if (pendingException != null)
143 pending = true;
144 return pending;
145 }
146 }
147
148 public static void Set(global::System.Exception e) {
149 if (pendingException != null)
150 throw new global::System.ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
151 pendingException = e;
152 lock(exceptionsLock) {
153 numExceptionsPending++;
154 }
155 }
156
157 public static global::System.Exception Retrieve() {
158 global::System.Exception e = null;
159 if (numExceptionsPending > 0) {
160 if (pendingException != null) {
161 e = pendingException;
162 pendingException = null;
163 lock(exceptionsLock) {
164 numExceptionsPending--;
165 }
166 }
167 }
168 return e;
169 }
170
171 static SWIGPendingException() {
172 exceptionsLock = new global::System.Object();
173 }
174 }
175
176
177 protected class SWIGStringHelper {
178
179 public delegate string SWIGStringDelegate(string message);
180 static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
181
182 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="SWIGRegisterStringCallback_PCADGlobals")]
183 public static extern void SWIGRegisterStringCallback_PCADGlobals(SWIGStringDelegate stringDelegate);
184
185 static string CreateString(string cString) {
186 return cString;
187 }
188
189 static SWIGStringHelper() {
191 }
192 }
193
195
196
197 static PCADGlobalsPINVOKE() {
198 }
199
200
201 class CustomExceptionHelper
202 {
203 // C# delegate for the C/C++ customExceptionCallback
204 public delegate void CustomExceptionDelegate(IntPtr NewContext);
205 static CustomExceptionDelegate customDelegate = new CustomExceptionDelegate(SetPendingCustomException);
206 [DllImport("FxManaged.dll", EntryPoint="CustomExceptionRegisterCallback")]
207 public static extern
208 void CustomExceptionRegisterCallback(CustomExceptionDelegate customCallback);
209 static void SetPendingCustomException(IntPtr NewContext)
210 {
211 SWIGPendingException.Set(new Teigha.Core.OdError(new Teigha.Core.OdErrorContext(NewContext, true)));
212 }
213 static CustomExceptionHelper()
214 {
215 CustomExceptionRegisterCallback(customDelegate);
216 }
217 }
218 static CustomExceptionHelper exceptionHelper = new CustomExceptionHelper();
219
220
221 protected class SWIGWStringHelper {
222
223 [return: global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPWStr)]
224 public delegate string SWIGWStringDelegate(global::System.IntPtr message);
225 static SWIGWStringDelegate wstringDelegate = new SWIGWStringDelegate(CreateWString);
226
227 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="SWIGRegisterWStringCallback_PCADGlobals")]
228 public static extern void SWIGRegisterWStringCallback_PCADGlobals(SWIGWStringDelegate wstringDelegate);
229
230 static string CreateWString([global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPWStr)]global::System.IntPtr cString) {
231 return global::System.Runtime.InteropServices.Marshal.PtrToStringUni(cString);
232 }
233
234 static SWIGWStringHelper() {
236 }
237 }
238
240
241
242 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_cursordef_cursorstyle_set")]
243 public static extern void cursordef_cursorstyle_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
244
245 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_cursordef_cursorstyle_get")]
246 public static extern short cursordef_cursorstyle_get(global::System.Runtime.InteropServices.HandleRef jarg1);
247
248 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_cursordef_cursorpnt1_set")]
249 public static extern void cursordef_cursorpnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
250
251 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_cursordef_cursorpnt1_get")]
252 public static extern IntPtr cursordef_cursorpnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
253
254 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_cursordef_cursorpnt2_set")]
255 public static extern void cursordef_cursorpnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
256
257 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_cursordef_cursorpnt2_get")]
258 public static extern IntPtr cursordef_cursorpnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
259
260 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_cursordef")]
261 public static extern global::System.IntPtr new_cursordef();
262
263 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_cursordef")]
264 public static extern void delete_cursordef(global::System.Runtime.InteropServices.HandleRef jarg1);
265
266 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryA_clen_set")]
267 public static extern void fdt_binaryA_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
268
269 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryA_clen_get")]
270 public static extern short fdt_binaryA_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1);
271
272 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryA_buf_set")]
273 public static extern void fdt_binaryA_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
274
275 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryA_buf_get")]
276 public static extern string fdt_binaryA_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1);
277
278 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_binaryA")]
279 public static extern global::System.IntPtr new_fdt_binaryA();
280
281 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_binaryA")]
282 public static extern void delete_fdt_binaryA(global::System.Runtime.InteropServices.HandleRef jarg1);
283
284 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rreal_set")]
285 public static extern void fdt_u_valA_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
286
287 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rreal_get")]
288 public static extern double fdt_u_valA_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1);
289
290 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rpoint_set")]
291 public static extern void fdt_u_valA_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
292
293 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rpoint_get")]
294 public static extern IntPtr fdt_u_valA_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
295
296 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rint_set")]
297 public static extern void fdt_u_valA_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
298
299 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rint_get")]
300 public static extern short fdt_u_valA_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
301
302 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rlong_set")]
303 public static extern void fdt_u_valA_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
304
305 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rlong_get")]
306 public static extern int fdt_u_valA_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1);
307
308 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rstring_set")]
309 public static extern void fdt_u_valA_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
310
311 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rstring_get")]
312 public static extern string fdt_u_valA_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1);
313
314 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rlname_set")]
315 public static extern void fdt_u_valA_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
316
317 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rlname_get")]
318 public static extern global::System.IntPtr fdt_u_valA_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1);
319
320 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rbinary_set")]
321 public static extern void fdt_u_valA_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
322
323 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valA_rbinary_get")]
324 public static extern global::System.IntPtr fdt_u_valA_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1);
325
326 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_u_valA")]
327 public static extern global::System.IntPtr new_fdt_u_valA();
328
329 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_u_valA")]
330 public static extern void delete_fdt_u_valA(global::System.Runtime.InteropServices.HandleRef jarg1);
331
332 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufA_rbnext_set")]
333 public static extern void fdt_resbufA_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
334
335 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufA_rbnext_get")]
336 public static extern global::System.IntPtr fdt_resbufA_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1);
337
338 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufA_restype_set")]
339 public static extern void fdt_resbufA_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
340
341 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufA_restype_get")]
342 public static extern short fdt_resbufA_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1);
343
344 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufA_resval_set")]
345 public static extern void fdt_resbufA_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
346
347 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufA_resval_get")]
348 public static extern global::System.IntPtr fdt_resbufA_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1);
349
350 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_resbufA")]
351 public static extern global::System.IntPtr new_fdt_resbufA();
352
353 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_resbufA")]
354 public static extern void delete_fdt_resbufA(global::System.Runtime.InteropServices.HandleRef jarg1);
355
356 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryW_clen_set")]
357 public static extern void fdt_binaryW_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
358
359 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryW_clen_get")]
360 public static extern short fdt_binaryW_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1);
361
362 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryW_buf_set")]
363 public static extern void fdt_binaryW_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
364
365 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_binaryW_buf_get")]
366 public static extern string fdt_binaryW_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1);
367
368 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_binaryW")]
369 public static extern global::System.IntPtr new_fdt_binaryW();
370
371 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_binaryW")]
372 public static extern void delete_fdt_binaryW(global::System.Runtime.InteropServices.HandleRef jarg1);
373
374 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rreal_set")]
375 public static extern void fdt_u_valW_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
376
377 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rreal_get")]
378 public static extern double fdt_u_valW_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1);
379
380 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rpoint_set")]
381 public static extern void fdt_u_valW_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
382
383 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rpoint_get")]
384 public static extern IntPtr fdt_u_valW_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
385
386 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rint_set")]
387 public static extern void fdt_u_valW_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
388
389 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rint_get")]
390 public static extern short fdt_u_valW_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
391
392 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rlong_set")]
393 public static extern void fdt_u_valW_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
394
395 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rlong_get")]
396 public static extern int fdt_u_valW_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1);
397
398 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rstring_set")]
399 public static extern void fdt_u_valW_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
400
401 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rstring_get")]
402 [return: MarshalAs(UnmanagedType.LPWStr)]
403 public static extern string fdt_u_valW_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1);
404
405 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rlname_set")]
406 public static extern void fdt_u_valW_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
407
408 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rlname_get")]
409 public static extern global::System.IntPtr fdt_u_valW_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1);
410
411 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rbinary_set")]
412 public static extern void fdt_u_valW_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
413
414 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_rbinary_get")]
415 public static extern global::System.IntPtr fdt_u_valW_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1);
416
417 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_mnInt64_set")]
418 public static extern void fdt_u_valW_mnInt64_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
419
420 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_u_valW_mnInt64_get")]
421 public static extern long fdt_u_valW_mnInt64_get(global::System.Runtime.InteropServices.HandleRef jarg1);
422
423 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_u_valW")]
424 public static extern global::System.IntPtr new_fdt_u_valW();
425
426 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_u_valW")]
427 public static extern void delete_fdt_u_valW(global::System.Runtime.InteropServices.HandleRef jarg1);
428
429 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufW_rbnext_set")]
430 public static extern void fdt_resbufW_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
431
432 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufW_rbnext_get")]
433 public static extern global::System.IntPtr fdt_resbufW_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1);
434
435 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufW_restype_set")]
436 public static extern void fdt_resbufW_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
437
438 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufW_restype_get")]
439 public static extern short fdt_resbufW_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1);
440
441 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufW_resval_set")]
442 public static extern void fdt_resbufW_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
443
444 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_resbufW_resval_get")]
445 public static extern global::System.IntPtr fdt_resbufW_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1);
446
447 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_resbufW")]
448 public static extern global::System.IntPtr new_fdt_resbufW();
449
450 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_resbufW")]
451 public static extern void delete_fdt_resbufW(global::System.Runtime.InteropServices.HandleRef jarg1);
452
453 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_szMacro_set")]
454 public static extern void fdt_tablet_recA_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
455
456 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_szMacro_get")]
457 public static extern string fdt_tablet_recA_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1);
458
459 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabSectionID_set")]
460 public static extern void fdt_tablet_recA_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
461
462 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabSectionID_get")]
463 public static extern string fdt_tablet_recA_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1);
464
465 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabMenuID_set")]
466 public static extern void fdt_tablet_recA_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
467
468 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_szTabMenuID_get")]
469 public static extern string fdt_tablet_recA_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1);
470
471 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabRow_set")]
472 public static extern void fdt_tablet_recA_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
473
474 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabRow_get")]
475 public static extern short fdt_tablet_recA_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1);
476
477 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabColumn_set")]
478 public static extern void fdt_tablet_recA_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
479
480 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recA_TabColumn_get")]
481 public static extern short fdt_tablet_recA_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1);
482
483 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_tablet_recA")]
484 public static extern global::System.IntPtr new_fdt_tablet_recA();
485
486 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_tablet_recA")]
487 public static extern void delete_fdt_tablet_recA(global::System.Runtime.InteropServices.HandleRef jarg1);
488
489 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_szMacro_set")]
490 public static extern void fdt_tablet_recW_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
491
492 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_szMacro_get")]
493 public static extern global::System.IntPtr fdt_tablet_recW_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1);
494
495 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabSectionID_set")]
496 public static extern void fdt_tablet_recW_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
497
498 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabSectionID_get")]
499 public static extern global::System.IntPtr fdt_tablet_recW_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1);
500
501 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabMenuID_set")]
502 public static extern void fdt_tablet_recW_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
503
504 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_szTabMenuID_get")]
505 public static extern global::System.IntPtr fdt_tablet_recW_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1);
506
507 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabRow_set")]
508 public static extern void fdt_tablet_recW_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
509
510 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabRow_get")]
511 public static extern short fdt_tablet_recW_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1);
512
513 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabColumn_set")]
514 public static extern void fdt_tablet_recW_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
515
516 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_recW_TabColumn_get")]
517 public static extern short fdt_tablet_recW_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1);
518
519 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_tablet_recW")]
520 public static extern global::System.IntPtr new_fdt_tablet_recW();
521
522 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_tablet_recW")]
523 public static extern void delete_fdt_tablet_recW(global::System.Runtime.InteropServices.HandleRef jarg1);
524
525 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_First_Date_set")]
526 public static extern void FDT_FLX_INFOA_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
527
528 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_First_Date_get")]
529 public static extern global::System.IntPtr FDT_FLX_INFOA_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1);
530
531 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_Save_Date_set")]
532 public static extern void FDT_FLX_INFOA_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
533
534 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_Save_Date_get")]
535 public static extern global::System.IntPtr FDT_FLX_INFOA_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1);
536
537 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szProjName_set")]
538 public static extern void FDT_FLX_INFOA_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
539
540 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szProjName_get")]
541 public static extern string FDT_FLX_INFOA_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1);
542
543 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrNumber_set")]
544 public static extern void FDT_FLX_INFOA_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
545
546 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrNumber_get")]
547 public static extern string FDT_FLX_INFOA_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1);
548
549 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrName_set")]
550 public static extern void FDT_FLX_INFOA_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
551
552 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDrName_get")]
553 public static extern string FDT_FLX_INFOA_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1);
554
555 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDraftsman_set")]
556 public static extern void FDT_FLX_INFOA_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
557
558 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szDraftsman_get")]
559 public static extern string FDT_FLX_INFOA_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1);
560
561 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem1_set")]
562 public static extern void FDT_FLX_INFOA_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
563
564 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem1_get")]
565 public static extern string FDT_FLX_INFOA_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
566
567 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem2_set")]
568 public static extern void FDT_FLX_INFOA_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
569
570 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem2_get")]
571 public static extern string FDT_FLX_INFOA_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
572
573 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem3_set")]
574 public static extern void FDT_FLX_INFOA_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
575
576 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOA_szBem3_get")]
577 public static extern string FDT_FLX_INFOA_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1);
578
579 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FDT_FLX_INFOA")]
580 public static extern global::System.IntPtr new_FDT_FLX_INFOA();
581
582 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_FDT_FLX_INFOA")]
583 public static extern void delete_FDT_FLX_INFOA(global::System.Runtime.InteropServices.HandleRef jarg1);
584
585 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_First_Date_set")]
586 public static extern void FDT_FLX_INFOW_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
587
588 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_First_Date_get")]
589 public static extern global::System.IntPtr FDT_FLX_INFOW_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1);
590
591 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_Save_Date_set")]
592 public static extern void FDT_FLX_INFOW_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
593
594 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_Save_Date_get")]
595 public static extern global::System.IntPtr FDT_FLX_INFOW_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1);
596
597 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szProjName_set")]
598 public static extern void FDT_FLX_INFOW_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
599
600 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szProjName_get")]
601 public static extern global::System.IntPtr FDT_FLX_INFOW_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1);
602
603 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrNumber_set")]
604 public static extern void FDT_FLX_INFOW_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
605
606 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrNumber_get")]
607 public static extern global::System.IntPtr FDT_FLX_INFOW_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1);
608
609 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrName_set")]
610 public static extern void FDT_FLX_INFOW_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
611
612 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDrName_get")]
613 public static extern global::System.IntPtr FDT_FLX_INFOW_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1);
614
615 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDraftsman_set")]
616 public static extern void FDT_FLX_INFOW_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
617
618 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szDraftsman_get")]
619 public static extern global::System.IntPtr FDT_FLX_INFOW_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1);
620
621 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem1_set")]
622 public static extern void FDT_FLX_INFOW_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
623
624 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem1_get")]
625 public static extern global::System.IntPtr FDT_FLX_INFOW_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
626
627 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem2_set")]
628 public static extern void FDT_FLX_INFOW_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
629
630 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem2_get")]
631 public static extern global::System.IntPtr FDT_FLX_INFOW_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
632
633 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem3_set")]
634 public static extern void FDT_FLX_INFOW_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
635
636 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFOW_szBem3_get")]
637 public static extern global::System.IntPtr FDT_FLX_INFOW_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1);
638
639 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FDT_FLX_INFOW")]
640 public static extern global::System.IntPtr new_FDT_FLX_INFOW();
641
642 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_FDT_FLX_INFOW")]
643 public static extern void delete_FDT_FLX_INFOW(global::System.Runtime.InteropServices.HandleRef jarg1);
644
645 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_nColor_set")]
646 public static extern void FDT_GENOUT_POINT_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
647
648 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_nColor_get")]
649 public static extern short FDT_GENOUT_POINT_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1);
650
651 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_Pnt_set")]
652 public static extern void FDT_GENOUT_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
653
654 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_POINT_Pnt_get")]
655 public static extern IntPtr FDT_GENOUT_POINT_Pnt_get(global::System.Runtime.InteropServices.HandleRef jarg1);
656
657 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FDT_GENOUT_POINT")]
658 public static extern global::System.IntPtr new_FDT_GENOUT_POINT();
659
660 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_FDT_GENOUT_POINT")]
661 public static extern void delete_FDT_GENOUT_POINT(global::System.Runtime.InteropServices.HandleRef jarg1);
662
663 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nColor_set")]
664 public static extern void FDT_GENOUT_LINE_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
665
666 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nColor_get")]
667 public static extern short FDT_GENOUT_LINE_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1);
668
669 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nLineType_set")]
670 public static extern void FDT_GENOUT_LINE_nLineType_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
671
672 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_nLineType_get")]
673 public static extern short FDT_GENOUT_LINE_nLineType_get(global::System.Runtime.InteropServices.HandleRef jarg1);
674
675 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt1_set")]
676 public static extern void FDT_GENOUT_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
677
678 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt1_get")]
679 public static extern IntPtr FDT_GENOUT_LINE_Pnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
680
681 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt2_set")]
682 public static extern void FDT_GENOUT_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
683
684 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_LINE_Pnt2_get")]
685 public static extern IntPtr FDT_GENOUT_LINE_Pnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
686
687 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FDT_GENOUT_LINE")]
688 public static extern global::System.IntPtr new_FDT_GENOUT_LINE();
689
690 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_FDT_GENOUT_LINE")]
691 public static extern void delete_FDT_GENOUT_LINE(global::System.Runtime.InteropServices.HandleRef jarg1);
692
693 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nColor_set")]
694 public static extern void FDT_GENOUT_AREA_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
695
696 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nColor_get")]
697 public static extern short FDT_GENOUT_AREA_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1);
698
699 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nLineType_set")]
700 public static extern void FDT_GENOUT_AREA_nLineType_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
701
702 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nLineType_get")]
703 public static extern short FDT_GENOUT_AREA_nLineType_get(global::System.Runtime.InteropServices.HandleRef jarg1);
704
705 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nFlags_set")]
706 public static extern void FDT_GENOUT_AREA_nFlags_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
707
708 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nFlags_get")]
709 public static extern short FDT_GENOUT_AREA_nFlags_get(global::System.Runtime.InteropServices.HandleRef jarg1);
710
711 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nPnts_set")]
712 public static extern void FDT_GENOUT_AREA_nPnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
713
714 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_nPnts_get")]
715 public static extern short FDT_GENOUT_AREA_nPnts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
716
717 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_Pnts_set")]
718 public static extern void FDT_GENOUT_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
719
720 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_GENOUT_AREA_Pnts_get")]
721 public static extern global::System.IntPtr FDT_GENOUT_AREA_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
722
723 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FDT_GENOUT_AREA")]
724 public static extern global::System.IntPtr new_FDT_GENOUT_AREA();
725
726 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_FDT_GENOUT_AREA")]
727 public static extern void delete_FDT_GENOUT_AREA(global::System.Runtime.InteropServices.HandleRef jarg1);
728
729 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_szMacro_set")]
730 public static extern void fdt_tablet_rec_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
731
732 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_szMacro_get")]
733 public static extern string fdt_tablet_rec_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1);
734
735 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabSectionID_set")]
736 public static extern void fdt_tablet_rec_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
737
738 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabSectionID_get")]
739 public static extern string fdt_tablet_rec_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1);
740
741 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabMenuID_set")]
742 public static extern void fdt_tablet_rec_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
743
744 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_szTabMenuID_get")]
745 public static extern string fdt_tablet_rec_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1);
746
747 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabRow_set")]
748 public static extern void fdt_tablet_rec_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
749
750 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabRow_get")]
751 public static extern short fdt_tablet_rec_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1);
752
753 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabColumn_set")]
754 public static extern void fdt_tablet_rec_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
755
756 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_tablet_rec_TabColumn_get")]
757 public static extern short fdt_tablet_rec_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1);
758
759 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_tablet_rec")]
760 public static extern global::System.IntPtr new_fdt_tablet_rec();
761
762 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_tablet_rec")]
763 public static extern void delete_fdt_tablet_rec(global::System.Runtime.InteropServices.HandleRef jarg1);
764
765 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_First_Date_set")]
766 public static extern void FDT_FLX_INFO_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
767
768 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_First_Date_get")]
769 public static extern global::System.IntPtr FDT_FLX_INFO_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1);
770
771 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_Save_Date_set")]
772 public static extern void FDT_FLX_INFO_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
773
774 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_Save_Date_get")]
775 public static extern global::System.IntPtr FDT_FLX_INFO_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1);
776
777 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szProjName_set")]
778 public static extern void FDT_FLX_INFO_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
779
780 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szProjName_get")]
781 public static extern string FDT_FLX_INFO_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1);
782
783 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrNumber_set")]
784 public static extern void FDT_FLX_INFO_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
785
786 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrNumber_get")]
787 public static extern string FDT_FLX_INFO_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1);
788
789 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrName_set")]
790 public static extern void FDT_FLX_INFO_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
791
792 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDrName_get")]
793 public static extern string FDT_FLX_INFO_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1);
794
795 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDraftsman_set")]
796 public static extern void FDT_FLX_INFO_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
797
798 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szDraftsman_get")]
799 public static extern string FDT_FLX_INFO_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1);
800
801 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem1_set")]
802 public static extern void FDT_FLX_INFO_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
803
804 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem1_get")]
805 public static extern string FDT_FLX_INFO_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
806
807 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem2_set")]
808 public static extern void FDT_FLX_INFO_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
809
810 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem2_get")]
811 public static extern string FDT_FLX_INFO_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
812
813 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem3_set")]
814 public static extern void FDT_FLX_INFO_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
815
816 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FDT_FLX_INFO_szBem3_get")]
817 public static extern string FDT_FLX_INFO_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1);
818
819 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FDT_FLX_INFO")]
820 public static extern global::System.IntPtr new_FDT_FLX_INFO();
821
822 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_FDT_FLX_INFO")]
823 public static extern void delete_FDT_FLX_INFO(global::System.Runtime.InteropServices.HandleRef jarg1);
824
825 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hWnd_set")]
826 public static extern void fdt_VPORT_EXT_INFO_hWnd_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
827
828 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hWnd_get")]
829 public static extern global::System.IntPtr fdt_VPORT_EXT_INFO_hWnd_get(global::System.Runtime.InteropServices.HandleRef jarg1);
830
831 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hDc_set")]
832 public static extern void fdt_VPORT_EXT_INFO_hDc_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
833
834 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hDc_get")]
835 public static extern global::System.IntPtr fdt_VPORT_EXT_INFO_hDc_get(global::System.Runtime.InteropServices.HandleRef jarg1);
836
837 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatWcsToVcs_set")]
838 public static extern void fdt_VPORT_EXT_INFO_MatWcsToVcs_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
839
840 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatWcsToVcs_get")]
841 public static extern global::System.IntPtr fdt_VPORT_EXT_INFO_MatWcsToVcs_get(global::System.Runtime.InteropServices.HandleRef jarg1);
842
843 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatVcsToWcs_set")]
844 public static extern void fdt_VPORT_EXT_INFO_MatVcsToWcs_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
845
846 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_MatVcsToWcs_get")]
847 public static extern global::System.IntPtr fdt_VPORT_EXT_INFO_MatVcsToWcs_get(global::System.Runtime.InteropServices.HandleRef jarg1);
848
849 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMin_set")]
850 public static extern void fdt_VPORT_EXT_INFO_VportMin_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
851
852 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMin_get")]
853 public static extern IntPtr fdt_VPORT_EXT_INFO_VportMin_get(global::System.Runtime.InteropServices.HandleRef jarg1);
854
855 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMax_set")]
856 public static extern void fdt_VPORT_EXT_INFO_VportMax_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
857
858 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_VportMax_get")]
859 public static extern IntPtr fdt_VPORT_EXT_INFO_VportMax_get(global::System.Runtime.InteropServices.HandleRef jarg1);
860
861 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinWidth_set")]
862 public static extern void fdt_VPORT_EXT_INFO_WinWidth_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
863
864 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinWidth_get")]
865 public static extern int fdt_VPORT_EXT_INFO_WinWidth_get(global::System.Runtime.InteropServices.HandleRef jarg1);
866
867 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinHeight_set")]
868 public static extern void fdt_VPORT_EXT_INFO_WinHeight_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
869
870 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_WinHeight_get")]
871 public static extern int fdt_VPORT_EXT_INFO_WinHeight_get(global::System.Runtime.InteropServices.HandleRef jarg1);
872
873 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hPalette_set")]
874 public static extern void fdt_VPORT_EXT_INFO_hPalette_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
875
876 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fdt_VPORT_EXT_INFO_hPalette_get")]
877 public static extern global::System.IntPtr fdt_VPORT_EXT_INFO_hPalette_get(global::System.Runtime.InteropServices.HandleRef jarg1);
878
879 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_fdt_VPORT_EXT_INFO")]
880 public static extern global::System.IntPtr new_fdt_VPORT_EXT_INFO();
881
882 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_fdt_VPORT_EXT_INFO")]
883 public static extern void delete_fdt_VPORT_EXT_INFO(global::System.Runtime.InteropServices.HandleRef jarg1);
884
885 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_DEVPOINT_x_set")]
886 public static extern void DEVPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
887
888 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_DEVPOINT_x_get")]
889 public static extern int DEVPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
890
891 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_DEVPOINT_y_set")]
892 public static extern void DEVPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
893
894 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_DEVPOINT_y_get")]
895 public static extern int DEVPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
896
897 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_DEVPOINT")]
898 public static extern global::System.IntPtr new_DEVPOINT();
899
900 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_DEVPOINT")]
901 public static extern void delete_DEVPOINT(global::System.Runtime.InteropServices.HandleRef jarg1);
902
903 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_WORLDPOINT_x_set")]
904 public static extern void WORLDPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
905
906 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_WORLDPOINT_x_get")]
907 public static extern double WORLDPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
908
909 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_WORLDPOINT_y_set")]
910 public static extern void WORLDPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
911
912 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_WORLDPOINT_y_get")]
913 public static extern double WORLDPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
914
915 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_WORLDPOINT")]
916 public static extern global::System.IntPtr new_WORLDPOINT();
917
918 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_WORLDPOINT")]
919 public static extern void delete_WORLDPOINT(global::System.Runtime.InteropServices.HandleRef jarg1);
920
921 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_x_set")]
922 public static extern void IMAGE_PNT_3D_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
923
924 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_x_get")]
925 public static extern double IMAGE_PNT_3D_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
926
927 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_y_set")]
928 public static extern void IMAGE_PNT_3D_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
929
930 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_y_get")]
931 public static extern double IMAGE_PNT_3D_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
932
933 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_z_set")]
934 public static extern void IMAGE_PNT_3D_z_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
935
936 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IMAGE_PNT_3D_z_get")]
937 public static extern double IMAGE_PNT_3D_z_get(global::System.Runtime.InteropServices.HandleRef jarg1);
938
939 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_IMAGE_PNT_3D")]
940 public static extern global::System.IntPtr new_IMAGE_PNT_3D();
941
942 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_IMAGE_PNT_3D")]
943 public static extern void delete_IMAGE_PNT_3D(global::System.Runtime.InteropServices.HandleRef jarg1);
944
945 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_POINT_Pnt_set")]
946 public static extern void P_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
947
948 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_POINT_Pnt_get")]
949 public static extern global::System.IntPtr P_POINT_Pnt_get(global::System.Runtime.InteropServices.HandleRef jarg1);
950
951 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_P_POINT")]
952 public static extern global::System.IntPtr new_P_POINT();
953
954 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_P_POINT")]
955 public static extern void delete_P_POINT(global::System.Runtime.InteropServices.HandleRef jarg1);
956
957 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_LINE_Pnt1_set")]
958 public static extern void P_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
959
960 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_LINE_Pnt1_get")]
961 public static extern global::System.IntPtr P_LINE_Pnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
962
963 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_LINE_Pnt2_set")]
964 public static extern void P_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
965
966 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_LINE_Pnt2_get")]
967 public static extern global::System.IntPtr P_LINE_Pnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
968
969 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_P_LINE")]
970 public static extern global::System.IntPtr new_P_LINE();
971
972 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_P_LINE")]
973 public static extern void delete_P_LINE(global::System.Runtime.InteropServices.HandleRef jarg1);
974
975 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_AREA_nPnts_set")]
976 public static extern void P_FILL_AREA_nPnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
977
978 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_AREA_nPnts_get")]
979 public static extern short P_FILL_AREA_nPnts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
980
981 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_AREA_Pnts_set")]
982 public static extern void P_FILL_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
983
984 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_AREA_Pnts_get")]
985 public static extern global::System.IntPtr P_FILL_AREA_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
986
987 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_P_FILL_AREA")]
988 public static extern global::System.IntPtr new_P_FILL_AREA();
989
990 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_P_FILL_AREA")]
991 public static extern void delete_P_FILL_AREA(global::System.Runtime.InteropServices.HandleRef jarg1);
992
993 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_POLY_Pnts_set")]
994 public static extern void P_FILL_POLY_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
995
996 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_POLY_Pnts_get")]
997 public static extern global::System.IntPtr P_FILL_POLY_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
998
999 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_POLY_PolyCounts_set")]
1000 public static extern void P_FILL_POLY_PolyCounts_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLE_ARRAY*/ jarg2);
1001
1002 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_POLY_PolyCounts_get")]
1003 public static extern IntPtr /*SIMPLE_ARRAY*/ P_FILL_POLY_PolyCounts_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1004
1005 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_POLY_nCount_set")]
1006 public static extern void P_FILL_POLY_nCount_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1007
1008 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_FILL_POLY_nCount_get")]
1009 public static extern uint P_FILL_POLY_nCount_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1010
1011 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_P_FILL_POLY")]
1012 public static extern global::System.IntPtr new_P_FILL_POLY();
1013
1014 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_P_FILL_POLY")]
1015 public static extern void delete_P_FILL_POLY(global::System.Runtime.InteropServices.HandleRef jarg1);
1016
1017 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_hImage_set")]
1018 public static extern void P_IMAGE_hImage_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1019
1020 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_hImage_get")]
1021 public static extern IntPtr /*SIMPLETYPE*/ P_IMAGE_hImage_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1022
1023 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_LlDevicePoint_set")]
1024 public static extern void P_IMAGE_LlDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1025
1026 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_LlDevicePoint_get")]
1027 public static extern global::System.IntPtr P_IMAGE_LlDevicePoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1028
1029 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_UrDevicePoint_set")]
1030 public static extern void P_IMAGE_UrDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1031
1032 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_UrDevicePoint_get")]
1033 public static extern global::System.IntPtr P_IMAGE_UrDevicePoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1034
1035 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_LlWorldPoint_set")]
1036 public static extern void P_IMAGE_LlWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1037
1038 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_LlWorldPoint_get")]
1039 public static extern global::System.IntPtr P_IMAGE_LlWorldPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1040
1041 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_UrWorldPoint_set")]
1042 public static extern void P_IMAGE_UrWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1043
1044 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_IMAGE_UrWorldPoint_get")]
1045 public static extern global::System.IntPtr P_IMAGE_UrWorldPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1046
1047 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_P_IMAGE")]
1048 public static extern global::System.IntPtr new_P_IMAGE();
1049
1050 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_P_IMAGE")]
1051 public static extern void delete_P_IMAGE(global::System.Runtime.InteropServices.HandleRef jarg1);
1052
1053 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved1_set")]
1054 public static extern void P_OLEOBJ_pReserved1_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1055
1056 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved1_get")]
1057 public static extern IntPtr /*SIMPLETYPE*/ P_OLEOBJ_pReserved1_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1058
1059 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved2_set")]
1060 public static extern void P_OLEOBJ_pReserved2_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1061
1062 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_pReserved2_get")]
1063 public static extern IntPtr /*SIMPLETYPE*/ P_OLEOBJ_pReserved2_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1064
1065 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_LlObjPoint_set")]
1066 public static extern void P_OLEOBJ_LlObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1067
1068 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_LlObjPoint_get")]
1069 public static extern global::System.IntPtr P_OLEOBJ_LlObjPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1070
1071 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_UrObjPoint_set")]
1072 public static extern void P_OLEOBJ_UrObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1073
1074 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_UrObjPoint_get")]
1075 public static extern global::System.IntPtr P_OLEOBJ_UrObjPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1076
1077 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_LlClipPoint_set")]
1078 public static extern void P_OLEOBJ_LlClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1079
1080 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_LlClipPoint_get")]
1081 public static extern global::System.IntPtr P_OLEOBJ_LlClipPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1082
1083 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_UrClipPoint_set")]
1084 public static extern void P_OLEOBJ_UrClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1085
1086 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_P_OLEOBJ_UrClipPoint_get")]
1087 public static extern global::System.IntPtr P_OLEOBJ_UrClipPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1088
1089 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_P_OLEOBJ")]
1090 public static extern global::System.IntPtr new_P_OLEOBJ();
1091
1092 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_P_OLEOBJ")]
1093 public static extern void delete_P_OLEOBJ(global::System.Runtime.InteropServices.HandleRef jarg1);
1094
1095 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINTREC_Type_set")]
1096 public static extern void PRINTREC_Type_set(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
1097
1098 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINTREC_Type_get")]
1099 public static extern char PRINTREC_Type_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1100
1101 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINTREC_nColor_set")]
1102 public static extern void PRINTREC_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
1103
1104 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINTREC_nColor_get")]
1105 public static extern short PRINTREC_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1106
1107 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_PRINTREC")]
1108 public static extern global::System.IntPtr new_PRINTREC();
1109
1110 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_PRINTREC")]
1111 public static extern void delete_PRINTREC(global::System.Runtime.InteropServices.HandleRef jarg1);
1112
1113 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_LowLeCorn_set")]
1114 public static extern void PRINT_EXT_INFO_LowLeCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 2)]double[] jarg2);
1115
1116 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_LowLeCorn_get")]
1117 public static extern IntPtr PRINT_EXT_INFO_LowLeCorn_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1118
1119 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_UppRiCorn_set")]
1120 public static extern void PRINT_EXT_INFO_UppRiCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 2)]double[] jarg2);
1121
1122 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_UppRiCorn_get")]
1123 public static extern IntPtr PRINT_EXT_INFO_UppRiCorn_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1124
1125 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevWidth_set")]
1126 public static extern void PRINT_EXT_INFO_DevWidth_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
1127
1128 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevWidth_get")]
1129 public static extern short PRINT_EXT_INFO_DevWidth_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1130
1131 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevHeight_set")]
1132 public static extern void PRINT_EXT_INFO_DevHeight_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
1133
1134 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_PRINT_EXT_INFO_DevHeight_get")]
1135 public static extern short PRINT_EXT_INFO_DevHeight_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1136
1137 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_PRINT_EXT_INFO")]
1138 public static extern global::System.IntPtr new_PRINT_EXT_INFO();
1139
1140 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_PRINT_EXT_INFO")]
1141 public static extern void delete_PRINT_EXT_INFO(global::System.Runtime.InteropServices.HandleRef jarg1);
1142
1143 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_dialog_set")]
1144 public static extern void dcl_callback_packetA_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1145
1146 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_dialog_get")]
1147 public static extern global::System.IntPtr dcl_callback_packetA_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1148
1149 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_tile_set")]
1150 public static extern void dcl_callback_packetA_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1151
1152 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_tile_get")]
1153 public static extern global::System.IntPtr dcl_callback_packetA_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1154
1155 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_value_set")]
1156 public static extern void dcl_callback_packetA_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1157
1158 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_value_get")]
1159 public static extern string dcl_callback_packetA_value_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1160
1161 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_client_data_set")]
1162 public static extern void dcl_callback_packetA_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1163
1164 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_client_data_get")]
1165 public static extern IntPtr /*SIMPLETYPE*/ dcl_callback_packetA_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1166
1167 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_reason_set")]
1168 public static extern void dcl_callback_packetA_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
1169
1170 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_reason_get")]
1171 public static extern Int32 /*SIMPLETYPE*/ dcl_callback_packetA_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1172
1173 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_x_set")]
1174 public static extern void dcl_callback_packetA_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
1175
1176 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_x_get")]
1177 public static extern Int32 /*SIMPLETYPE*/ dcl_callback_packetA_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1178
1179 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_y_set")]
1180 public static extern void dcl_callback_packetA_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
1181
1182 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetA_y_get")]
1183 public static extern Int32 /*SIMPLETYPE*/ dcl_callback_packetA_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1184
1185 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_dcl_callback_packetA")]
1186 public static extern global::System.IntPtr new_dcl_callback_packetA();
1187
1188 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_dcl_callback_packetA")]
1189 public static extern void delete_dcl_callback_packetA(global::System.Runtime.InteropServices.HandleRef jarg1);
1190
1191 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_dialog_set")]
1192 public static extern void dcl_callback_packetW_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1193
1194 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_dialog_get")]
1195 public static extern global::System.IntPtr dcl_callback_packetW_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1196
1197 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_tile_set")]
1198 public static extern void dcl_callback_packetW_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1199
1200 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_tile_get")]
1201 public static extern global::System.IntPtr dcl_callback_packetW_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1202
1203 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_value_set")]
1204 public static extern void dcl_callback_packetW_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1205
1206 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_value_get")]
1207 [return: MarshalAs(UnmanagedType.LPWStr)]
1208 public static extern string dcl_callback_packetW_value_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1209
1210 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_client_data_set")]
1211 public static extern void dcl_callback_packetW_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1212
1213 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_client_data_get")]
1214 public static extern IntPtr /*SIMPLETYPE*/ dcl_callback_packetW_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1215
1216 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_reason_set")]
1217 public static extern void dcl_callback_packetW_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
1218
1219 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_reason_get")]
1220 public static extern Int32 /*SIMPLETYPE*/ dcl_callback_packetW_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1221
1222 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_x_set")]
1223 public static extern void dcl_callback_packetW_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
1224
1225 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_x_get")]
1226 public static extern Int32 /*SIMPLETYPE*/ dcl_callback_packetW_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1227
1228 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_y_set")]
1229 public static extern void dcl_callback_packetW_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
1230
1231 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_callback_packetW_y_get")]
1232 public static extern Int32 /*SIMPLETYPE*/ dcl_callback_packetW_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1233
1234 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_dcl_callback_packetW")]
1235 public static extern global::System.IntPtr new_dcl_callback_packetW();
1236
1237 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_dcl_callback_packetW")]
1238 public static extern void delete_dcl_callback_packetW(global::System.Runtime.InteropServices.HandleRef jarg1);
1239
1240 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_binary_clen_set")]
1241 public static extern void dcl_binary_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
1242
1243 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_binary_clen_get")]
1244 public static extern short dcl_binary_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1245
1246 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_binary_buf_set")]
1247 public static extern void dcl_binary_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1248
1249 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_binary_buf_get")]
1250 public static extern string dcl_binary_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1251
1252 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_dcl_binary")]
1253 public static extern global::System.IntPtr new_dcl_binary();
1254
1255 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_dcl_binary")]
1256 public static extern void delete_dcl_binary(global::System.Runtime.InteropServices.HandleRef jarg1);
1257
1258 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rreal_set")]
1259 public static extern void dcl_u_val_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
1260
1261 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rreal_get")]
1262 public static extern double dcl_u_val_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1263
1264 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rpoint_set")]
1265 public static extern void dcl_u_val_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
1266
1267 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rpoint_get")]
1268 public static extern IntPtr dcl_u_val_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1269
1270 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rint_set")]
1271 public static extern void dcl_u_val_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
1272
1273 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rint_get")]
1274 public static extern Int16 /*SIMPLETYPE*/ dcl_u_val_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1275
1276 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rstring_set")]
1277 public static extern void dcl_u_val_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1278
1279 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rstring_get")]
1280 [return: MarshalAs(UnmanagedType.LPWStr)]
1281 public static extern string dcl_u_val_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1282
1283 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rlname_set")]
1284 public static extern void dcl_u_val_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1285
1286 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rlname_get")]
1287 public static extern global::System.IntPtr dcl_u_val_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1288
1289 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rlong_set")]
1290 public static extern void dcl_u_val_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
1291
1292 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rlong_get")]
1293 public static extern Int32 /*SIMPLETYPE*/ dcl_u_val_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1294
1295 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rbinary_set")]
1296 public static extern void dcl_u_val_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1297
1298 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_u_val_rbinary_get")]
1299 public static extern global::System.IntPtr dcl_u_val_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1300
1301 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_dcl_u_val")]
1302 public static extern global::System.IntPtr new_dcl_u_val();
1303
1304 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_dcl_u_val")]
1305 public static extern void delete_dcl_u_val(global::System.Runtime.InteropServices.HandleRef jarg1);
1306
1307 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_resbuf_rbnext_set")]
1308 public static extern void dcl_resbuf_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1309
1310 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_resbuf_rbnext_get")]
1311 public static extern global::System.IntPtr dcl_resbuf_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1312
1313 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_resbuf_restype_set")]
1314 public static extern void dcl_resbuf_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
1315
1316 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_resbuf_restype_get")]
1317 public static extern Int16 /*SIMPLETYPE*/ dcl_resbuf_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1318
1319 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_resbuf_resval_set")]
1320 public static extern void dcl_resbuf_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1321
1322 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dcl_resbuf_resval_get")]
1323 public static extern global::System.IntPtr dcl_resbuf_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1324
1325 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_dcl_resbuf")]
1326 public static extern global::System.IntPtr new_dcl_resbuf();
1327
1328 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_dcl_resbuf")]
1329 public static extern void delete_dcl_resbuf(global::System.Runtime.InteropServices.HandleRef jarg1);
1330
1331 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_dialog_set")]
1332 public static extern void dlg_callback_packetA_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1333
1334 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_dialog_get")]
1335 public static extern IntPtr /*SIMPLETYPE*/ dlg_callback_packetA_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1336
1337 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_tile_set")]
1338 public static extern void dlg_callback_packetA_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1339
1340 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_tile_get")]
1341 public static extern IntPtr /*SIMPLETYPE*/ dlg_callback_packetA_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1342
1343 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_key_set")]
1344 public static extern void dlg_callback_packetA_key_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1345
1346 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_key_get")]
1347 public static extern string dlg_callback_packetA_key_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1348
1349 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_value_set")]
1350 public static extern void dlg_callback_packetA_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1351
1352 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_value_get")]
1353 public static extern string dlg_callback_packetA_value_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1354
1355 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_client_data_set")]
1356 public static extern void dlg_callback_packetA_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1357
1358 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_client_data_get")]
1359 public static extern IntPtr /*SIMPLETYPE*/ dlg_callback_packetA_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1360
1361 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_reason_set")]
1362 public static extern void dlg_callback_packetA_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1363
1364 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_reason_get")]
1365 public static extern int dlg_callback_packetA_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1366
1367 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_x_set")]
1368 public static extern void dlg_callback_packetA_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1369
1370 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_x_get")]
1371 public static extern int dlg_callback_packetA_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1372
1373 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_y_set")]
1374 public static extern void dlg_callback_packetA_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1375
1376 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetA_y_get")]
1377 public static extern int dlg_callback_packetA_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1378
1379 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_dlg_callback_packetA")]
1380 public static extern global::System.IntPtr new_dlg_callback_packetA();
1381
1382 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_dlg_callback_packetA")]
1383 public static extern void delete_dlg_callback_packetA(global::System.Runtime.InteropServices.HandleRef jarg1);
1384
1385 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_dialog_set")]
1386 public static extern void dlg_callback_packetW_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1387
1388 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_dialog_get")]
1389 public static extern IntPtr /*SIMPLETYPE*/ dlg_callback_packetW_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1390
1391 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_tile_set")]
1392 public static extern void dlg_callback_packetW_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1393
1394 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_tile_get")]
1395 public static extern IntPtr /*SIMPLETYPE*/ dlg_callback_packetW_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1396
1397 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_key_set")]
1398 public static extern void dlg_callback_packetW_key_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1399
1400 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_key_get")]
1401 public static extern global::System.IntPtr dlg_callback_packetW_key_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1402
1403 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_value_set")]
1404 public static extern void dlg_callback_packetW_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1405
1406 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_value_get")]
1407 [return: MarshalAs(UnmanagedType.LPWStr)]
1408 public static extern string dlg_callback_packetW_value_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1409
1410 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_client_data_set")]
1411 public static extern void dlg_callback_packetW_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
1412
1413 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_client_data_get")]
1414 public static extern IntPtr /*SIMPLETYPE*/ dlg_callback_packetW_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1415
1416 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_reason_set")]
1417 public static extern void dlg_callback_packetW_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1418
1419 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_reason_get")]
1420 public static extern int dlg_callback_packetW_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1421
1422 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_x_set")]
1423 public static extern void dlg_callback_packetW_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1424
1425 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_x_get")]
1426 public static extern int dlg_callback_packetW_x_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1427
1428 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_y_set")]
1429 public static extern void dlg_callback_packetW_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1430
1431 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_dlg_callback_packetW_y_get")]
1432 public static extern int dlg_callback_packetW_y_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1433
1434 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_dlg_callback_packetW")]
1435 public static extern global::System.IntPtr new_dlg_callback_packetW();
1436
1437 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_dlg_callback_packetW")]
1438 public static extern void delete_dlg_callback_packetW(global::System.Runtime.InteropServices.HandleRef jarg1);
1439
1440 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxAPI")]
1441 public static extern void delete_CFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1);
1442
1443 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_regappA")]
1444 public static extern int CFxAPI_fdt_regappA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1445
1446 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_regappW")]
1447 public static extern int CFxAPI_fdt_regappW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1448
1449 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registerA")]
1450 public static extern int CFxAPI_fdt_registerA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
1451
1452 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registerW")]
1453 public static extern int CFxAPI_fdt_registerW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
1454
1455 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_paramA")]
1456 public static extern int CFxAPI_fdt_register_paramA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1457
1458 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_paramW")]
1459 public static extern int CFxAPI_fdt_register_paramW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1460
1461 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_funcA")]
1462 public static extern int CFxAPI_fdt_register_funcA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1463
1464 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_register_funcW")]
1465 public static extern int CFxAPI_fdt_register_funcW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1466
1467 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_unregisterA")]
1468 public static extern int CFxAPI_fdt_unregisterA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1469
1470 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_unregisterW")]
1471 public static extern int CFxAPI_fdt_unregisterW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1472
1473 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcfgA")]
1474 public static extern int CFxAPI_fdt_getcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
1475
1476 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcfgW")]
1477 public static extern int CFxAPI_fdt_getcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
1478
1479 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcfgA")]
1480 public static extern int CFxAPI_fdt_setcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
1481
1482 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcfgW")]
1483 public static extern int CFxAPI_fdt_setcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
1484
1485 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadA")]
1486 public static extern int CFxAPI_fdt_loadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1487
1488 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadW")]
1489 public static extern int CFxAPI_fdt_loadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1490
1491 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_xloadA")]
1492 public static extern int CFxAPI_fdt_xloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1493
1494 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_xloadW")]
1495 public static extern int CFxAPI_fdt_xloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1496
1497 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_xunloadA")]
1498 public static extern int CFxAPI_fdt_xunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1499
1500 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_xunloadW")]
1501 public static extern int CFxAPI_fdt_xunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1502
1503 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getargsA")]
1504 public static extern global::System.IntPtr CFxAPI_fdt_getargsA(global::System.Runtime.InteropServices.HandleRef jarg1);
1505
1506 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getargsW")]
1507 public static extern global::System.IntPtr CFxAPI_fdt_getargsW(global::System.Runtime.InteropServices.HandleRef jarg1);
1508
1509 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retint")]
1510 public static extern int CFxAPI_fdt_retint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1511
1512 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retreal")]
1513 public static extern int CFxAPI_fdt_retreal(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
1514
1515 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retpoint")]
1516 public static extern int CFxAPI_fdt_retpoint(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
1517
1518 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retnil")]
1519 public static extern int CFxAPI_fdt_retnil(global::System.Runtime.InteropServices.HandleRef jarg1);
1520
1521 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_rett")]
1522 public static extern int CFxAPI_fdt_rett(global::System.Runtime.InteropServices.HandleRef jarg1);
1523
1524 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retvoid")]
1525 public static extern int CFxAPI_fdt_retvoid(global::System.Runtime.InteropServices.HandleRef jarg1);
1526
1527 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retstrA")]
1528 public static extern int CFxAPI_fdt_retstrA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1529
1530 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retstrW")]
1531 public static extern int CFxAPI_fdt_retstrW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1532
1533 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retname")]
1534 public static extern int CFxAPI_fdt_retname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
1535
1536 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retlistA")]
1537 public static extern int CFxAPI_fdt_retlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1538
1539 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retlistW")]
1540 public static extern int CFxAPI_fdt_retlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1541
1542 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retvalA")]
1543 public static extern int CFxAPI_fdt_retvalA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1544
1545 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_retvalW")]
1546 public static extern int CFxAPI_fdt_retvalW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1547
1548 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_invokeA")]
1549 public static extern int CFxAPI_fdt_invokeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1550
1551 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_invokeW")]
1552 public static extern int CFxAPI_fdt_invokeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1553
1554 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_invoke_lispA")]
1555 public static extern int CFxAPI_fdt_invoke_lispA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1556
1557 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_invoke_lispW")]
1558 public static extern int CFxAPI_fdt_invoke_lispW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1559
1560 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadedA")]
1561 public static extern global::System.IntPtr CFxAPI_fdt_loadedA(global::System.Runtime.InteropServices.HandleRef jarg1);
1562
1563 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_loadedW")]
1564 public static extern global::System.IntPtr CFxAPI_fdt_loadedW(global::System.Runtime.InteropServices.HandleRef jarg1);
1565
1566 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxloadA")]
1567 public static extern int CFxAPI_fdt_drxloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1568
1569 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxloadW")]
1570 public static extern int CFxAPI_fdt_drxloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1571
1572 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxunloadA")]
1573 public static extern int CFxAPI_fdt_drxunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1574
1575 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_drxunloadW")]
1576 public static extern int CFxAPI_fdt_drxunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1577
1578 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsymA")]
1579 public static extern int CFxAPI_fdt_getsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1580
1581 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsymW")]
1582 public static extern int CFxAPI_fdt_getsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1583
1584 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_putsymA")]
1585 public static extern int CFxAPI_fdt_putsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1586
1587 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_putsymW")]
1588 public static extern int CFxAPI_fdt_putsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1589
1590 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getininameA")]
1591 public static extern int CFxAPI_fdt_getininameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
1592
1593 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getininameW")]
1594 public static extern int CFxAPI_fdt_getininameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
1595
1596 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palgetnameslistA")]
1597 public static extern int CFxAPI_fdt_palgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1598
1599 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palgetnameslistW")]
1600 public static extern int CFxAPI_fdt_palgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1601
1602 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palloadA")]
1603 public static extern int CFxAPI_fdt_palloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1604
1605 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palloadW")]
1606 public static extern int CFxAPI_fdt_palloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1607
1608 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palunloadA")]
1609 public static extern int CFxAPI_fdt_palunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1610
1611 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palunloadW")]
1612 public static extern int CFxAPI_fdt_palunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1613
1614 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palshowA")]
1615 public static extern int CFxAPI_fdt_palshowA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1616
1617 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palshowW")]
1618 public static extern int CFxAPI_fdt_palshowW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1619
1620 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palhideA")]
1621 public static extern int CFxAPI_fdt_palhideA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1622
1623 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palhideW")]
1624 public static extern int CFxAPI_fdt_palhideW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1625
1626 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_palopendlg")]
1627 public static extern int CFxAPI_fdt_palopendlg(global::System.Runtime.InteropServices.HandleRef jarg1);
1628
1629 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixgetnameslistA")]
1630 public static extern int CFxAPI_fdt_toolbarmatrixgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1631
1632 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixgetnameslistW")]
1633 public static extern int CFxAPI_fdt_toolbarmatrixgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1634
1635 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_0")]
1636 public static extern int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
1637
1638 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_1")]
1639 public static extern int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1640
1641 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_0")]
1642 public static extern int CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
1643
1644 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_1")]
1645 public static extern int CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1646
1647 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarremoveA")]
1648 public static extern int CFxAPI_fdt_toolbarmatrixtoolbarremoveA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1649
1650 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarremoveW")]
1651 public static extern int CFxAPI_fdt_toolbarmatrixtoolbarremoveW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1652
1653 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstategetA")]
1654 public static extern int CFxAPI_fdt_toolbarmatrixtoolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3);
1655
1656 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstategetW")]
1657 public static extern int CFxAPI_fdt_toolbarmatrixtoolbarstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3);
1658
1659 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstatesetA")]
1660 public static extern int CFxAPI_fdt_toolbarmatrixtoolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
1661
1662 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixtoolbarstatesetW")]
1663 public static extern int CFxAPI_fdt_toolbarmatrixtoolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
1664
1665 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstategetA")]
1666 public static extern int CFxAPI_fdt_toolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3);
1667
1668 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstategetW")]
1669 public static extern int CFxAPI_fdt_toolbarstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3);
1670
1671 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstatesetA")]
1672 public static extern int CFxAPI_fdt_toolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
1673
1674 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstatesetW")]
1675 public static extern int CFxAPI_fdt_toolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
1676
1677 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstategetA")]
1678 public static extern int CFxAPI_fdt_toolbarmatrixstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2);
1679
1680 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstategetW")]
1681 public static extern int CFxAPI_fdt_toolbarmatrixstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2);
1682
1683 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstatesetA")]
1684 public static extern int CFxAPI_fdt_toolbarmatrixstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1685
1686 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarmatrixstatesetW")]
1687 public static extern int CFxAPI_fdt_toolbarmatrixstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1688
1689 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_all_toolbars_visibleA")]
1690 public static extern int CFxAPI_fdt_all_toolbars_visibleA(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1691
1692 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_all_toolbars_visibleW")]
1693 public static extern int CFxAPI_fdt_all_toolbars_visibleW(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1694
1695 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbar_existsA")]
1696 public static extern int CFxAPI_fdt_toolbar_existsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool /*SIMPLETYPE*/ jarg3);
1697
1698 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbar_existsW")]
1699 public static extern int CFxAPI_fdt_toolbar_existsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, bool /*SIMPLETYPE*/ jarg3);
1700
1701 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstateA")]
1702 public static extern int CFxAPI_fdt_toolbarstateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, int jarg6, int jarg7);
1703
1704 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toolbarstateW")]
1705 public static extern int CFxAPI_fdt_toolbarstateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, int jarg4, int jarg5, int jarg6, int jarg7);
1706
1707 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetfirstA")]
1708 public static extern int CFxAPI_fdt_ssgetfirstA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1709
1710 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetfirstW")]
1711 public static extern int CFxAPI_fdt_ssgetfirstW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1712
1713 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_sssetfirst")]
1714 public static extern int CFxAPI_fdt_sssetfirst(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
1715
1716 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_alertA")]
1717 public static extern int CFxAPI_fdt_alertA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1718
1719 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_alertW")]
1720 public static extern int CFxAPI_fdt_alertW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1721
1722 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_failA")]
1723 public static extern void CFxAPI_fdt_failA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1724
1725 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_failW")]
1726 public static extern void CFxAPI_fdt_failW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1727
1728 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_newrbA")]
1729 public static extern global::System.IntPtr CFxAPI_fdt_newrbA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1730
1731 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_newrbW")]
1732 public static extern global::System.IntPtr CFxAPI_fdt_newrbW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1733
1734 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_copyresbufA")]
1735 public static extern int CFxAPI_fdt_copyresbufA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1736
1737 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_copyresbufW")]
1738 public static extern int CFxAPI_fdt_copyresbufW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1739
1740 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_relrbA")]
1741 public static extern int CFxAPI_fdt_relrbA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1742
1743 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_relrbW")]
1744 public static extern int CFxAPI_fdt_relrbW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1745
1746 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_cmdA")]
1747 public static extern int CFxAPI_fdt_cmdA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1748
1749 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_cmdW")]
1750 public static extern int CFxAPI_fdt_cmdW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1751
1752 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_initdialog")]
1753 public static extern int CFxAPI_fdt_initdialog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1754
1755 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_actcmdA")]
1756 public static extern int CFxAPI_fdt_actcmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1757
1758 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_actcmdW")]
1759 public static extern int CFxAPI_fdt_actcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1760
1761 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_delcmdA")]
1762 public static extern int CFxAPI_fdt_delcmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1763
1764 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_delcmdW")]
1765 public static extern int CFxAPI_fdt_delcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1766
1767 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcnameA")]
1768 public static extern int CFxAPI_fdt_getcnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, [In, MarshalAs(UnmanagedType.LPArray)]char[] jarg3);
1769
1770 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcnameW")]
1771 public static extern int CFxAPI_fdt_getcnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1772
1773 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_snvalidA")]
1774 public static extern int CFxAPI_fdt_snvalidA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
1775
1776 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_snvalidW")]
1777 public static extern int CFxAPI_fdt_snvalidW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
1778
1779 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_fgetenvA")]
1780 public static extern int CFxAPI_fdt_fgetenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
1781
1782 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_fgetenvW")]
1783 public static extern int CFxAPI_fdt_fgetenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
1784
1785 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getenvA")]
1786 public static extern int CFxAPI_fdt_getenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, int jarg5, string jarg6);
1787
1788 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getenvW")]
1789 public static extern int CFxAPI_fdt_getenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6);
1790
1791 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setenvA")]
1792 public static extern int CFxAPI_fdt_setenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
1793
1794 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setenvW")]
1795 public static extern int CFxAPI_fdt_setenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
1796
1797 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_strmallocA")]
1798 public static extern string CFxAPI_fdt_strmallocA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1799
1800 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_strfreeA")]
1801 public static extern void CFxAPI_fdt_strfreeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1802
1803 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_strfreeW")]
1804 public static extern void CFxAPI_fdt_strfreeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1805
1806 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_malloc")]
1807 public static extern IntPtr /*SIMPLETYPE*/ CFxAPI_fdt_malloc(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1808
1809 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_free")]
1810 public static extern void CFxAPI_fdt_free(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
1811
1812 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isalpha")]
1813 public static extern int CFxAPI_fdt_isalpha(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1814
1815 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isupper")]
1816 public static extern int CFxAPI_fdt_isupper(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1817
1818 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_islower")]
1819 public static extern int CFxAPI_fdt_islower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1820
1821 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isdigit")]
1822 public static extern int CFxAPI_fdt_isdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1823
1824 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isxdigit")]
1825 public static extern int CFxAPI_fdt_isxdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1826
1827 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isspace")]
1828 public static extern int CFxAPI_fdt_isspace(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1829
1830 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ispunct")]
1831 public static extern int CFxAPI_fdt_ispunct(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1832
1833 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isalnum")]
1834 public static extern int CFxAPI_fdt_isalnum(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1835
1836 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isprint")]
1837 public static extern int CFxAPI_fdt_isprint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1838
1839 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isgraph")]
1840 public static extern int CFxAPI_fdt_isgraph(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1841
1842 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_iscntrl")]
1843 public static extern int CFxAPI_fdt_iscntrl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1844
1845 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_toupper")]
1846 public static extern int CFxAPI_fdt_toupper(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1847
1848 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tolower")]
1849 public static extern int CFxAPI_fdt_tolower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1850
1851 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdti_notify")]
1852 public static extern int CFxAPI_fdti_notify(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
1853
1854 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdti_notify_short")]
1855 public static extern int CFxAPI_fdti_notify_short(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1856
1857 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setvarA")]
1858 public static extern int CFxAPI_fdt_setvarA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1859
1860 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setvarW")]
1861 public static extern int CFxAPI_fdt_setvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1862
1863 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getvarA")]
1864 public static extern int CFxAPI_fdt_getvarA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1865
1866 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getvarW")]
1867 public static extern int CFxAPI_fdt_getvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1868
1869 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_cvunitA")]
1870 public static extern int CFxAPI_fdt_cvunitA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, string jarg3, string jarg4, out double jarg5);
1871
1872 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_cvunitW")]
1873 public static extern int CFxAPI_fdt_cvunitW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, out double jarg5);
1874
1875 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtosA")]
1876 public static extern int CFxAPI_fdt_angtosA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, string jarg5, uint jarg6);
1877
1878 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtosW")]
1879 public static extern int CFxAPI_fdt_angtosW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6);
1880
1881 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_rtosA")]
1882 public static extern int CFxAPI_fdt_rtosA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, string jarg5, uint jarg6);
1883
1884 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_rtosW")]
1885 public static extern int CFxAPI_fdt_rtosW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6);
1886
1887 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtofA")]
1888 public static extern int CFxAPI_fdt_angtofA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, out double jarg4);
1889
1890 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_angtofW")]
1891 public static extern int CFxAPI_fdt_angtofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, out double jarg4);
1892
1893 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_distofA")]
1894 public static extern int CFxAPI_fdt_distofA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, out double jarg4);
1895
1896 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_distofW")]
1897 public static extern int CFxAPI_fdt_distofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, out double jarg4);
1898
1899 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_atofA")]
1900 public static extern int CFxAPI_fdt_atofA(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3);
1901
1902 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_atofW")]
1903 public static extern int CFxAPI_fdt_atofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3);
1904
1905 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_wcmatchA")]
1906 public static extern int CFxAPI_fdt_wcmatchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
1907
1908 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_wcmatchW")]
1909 public static extern int CFxAPI_fdt_wcmatchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
1910
1911 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_promptA")]
1912 public static extern int CFxAPI_fdt_promptA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1913
1914 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_promptW")]
1915 public static extern int CFxAPI_fdt_promptW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1916
1917 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_graphscr")]
1918 public static extern int CFxAPI_fdt_graphscr(global::System.Runtime.InteropServices.HandleRef jarg1);
1919
1920 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_textscr")]
1921 public static extern int CFxAPI_fdt_textscr(global::System.Runtime.InteropServices.HandleRef jarg1);
1922
1923 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_textpage")]
1924 public static extern int CFxAPI_fdt_textpage(global::System.Runtime.InteropServices.HandleRef jarg1);
1925
1926 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_cleartextscr")]
1927 public static extern int CFxAPI_fdt_cleartextscr(global::System.Runtime.InteropServices.HandleRef jarg1);
1928
1929 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_activate_progress_barA")]
1930 public static extern int CFxAPI_fdt_activate_progress_barA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1931
1932 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_activate_progress_barW")]
1933 public static extern int CFxAPI_fdt_activate_progress_barW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
1934
1935 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_hide_progress_bar")]
1936 public static extern int CFxAPI_fdt_hide_progress_bar(global::System.Runtime.InteropServices.HandleRef jarg1);
1937
1938 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_set_progress_state")]
1939 public static extern int CFxAPI_fdt_set_progress_state(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1940
1941 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_selcheck")]
1942 public static extern int CFxAPI_fdt_selcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
1943
1944 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetA")]
1945 public static extern int CFxAPI_fdt_ssgetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr /*SIMPLETYPE*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr /*OUT_ARRAY*/ jarg6);
1946
1947 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssgetW")]
1948 public static extern int CFxAPI_fdt_ssgetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr /*SIMPLETYPE*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr /*OUT_ARRAY*/ jarg6);
1949
1950 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssfree")]
1951 public static extern int CFxAPI_fdt_ssfree(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
1952
1953 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_sslength")]
1954 public static extern int CFxAPI_fdt_sslength(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out int jarg3);
1955
1956 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssadd__SWIG_0")]
1957 public static extern int CFxAPI_fdt_ssadd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3, IntPtr /*OUT_ARRAY*/ jarg4, bool jarg5);
1958
1959 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssadd__SWIG_1")]
1960 public static extern int CFxAPI_fdt_ssadd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
1961
1962 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssname")]
1963 public static extern int CFxAPI_fdt_ssname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, int jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
1964
1965 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexA__SWIG_0")]
1966 public static extern int CFxAPI_fdt_ssnamexA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*OUT_ARRAY*/ jarg3, int jarg4, uint jarg5);
1967
1968 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexA__SWIG_1")]
1969 public static extern int CFxAPI_fdt_ssnamexA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*OUT_ARRAY*/ jarg3, int jarg4);
1970
1971 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexW__SWIG_0")]
1972 public static extern int CFxAPI_fdt_ssnamexW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*OUT_ARRAY*/ jarg3, int jarg4, uint jarg5);
1973
1974 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssnamexW__SWIG_1")]
1975 public static extern int CFxAPI_fdt_ssnamexW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*OUT_ARRAY*/ jarg3, int jarg4);
1976
1977 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssdbnr")]
1978 public static extern int CFxAPI_fdt_ssdbnr(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out int jarg3);
1979
1980 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssmemb")]
1981 public static extern int CFxAPI_fdt_ssmemb(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
1982
1983 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssdel")]
1984 public static extern int CFxAPI_fdt_ssdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
1985
1986 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ssdel_all")]
1987 public static extern int CFxAPI_fdt_ssdel_all(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
1988
1989 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_xformss")]
1990 public static extern int CFxAPI_fdt_xformss(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1991
1992 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_norm_dxfcode")]
1993 public static extern int CFxAPI_fdt_norm_dxfcode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1994
1995 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdti_ssinc")]
1996 public static extern int CFxAPI_fdti_ssinc(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
1997
1998 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entnext")]
1999 public static extern int CFxAPI_fdt_entnext(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2000
2001 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entpos")]
2002 public static extern int CFxAPI_fdt_entpos(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2003
2004 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entlast")]
2005 public static extern int CFxAPI_fdt_entlast(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2006
2007 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entdel")]
2008 public static extern int CFxAPI_fdt_entdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2009
2010 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetA__SWIG_0")]
2011 public static extern global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, bool jarg3);
2012
2013 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetA__SWIG_1")]
2014 public static extern global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2015
2016 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetW__SWIG_0")]
2017 public static extern global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, bool jarg3);
2018
2019 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetW__SWIG_1")]
2020 public static extern global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2021
2022 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxA__SWIG_0")]
2023 public static extern global::System.IntPtr CFxAPI_fdt_entgetxA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
2024
2025 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxA__SWIG_1")]
2026 public static extern global::System.IntPtr CFxAPI_fdt_entgetxA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2027
2028 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxW__SWIG_0")]
2029 public static extern global::System.IntPtr CFxAPI_fdt_entgetxW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
2030
2031 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entgetxW__SWIG_1")]
2032 public static extern global::System.IntPtr CFxAPI_fdt_entgetxW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2033
2034 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmodA")]
2035 public static extern int CFxAPI_fdt_entmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2036
2037 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmodW")]
2038 public static extern int CFxAPI_fdt_entmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2039
2040 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakeA")]
2041 public static extern int CFxAPI_fdt_entmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2042
2043 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakeW")]
2044 public static extern int CFxAPI_fdt_entmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2045
2046 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakexA")]
2047 public static extern int CFxAPI_fdt_entmakexA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2048
2049 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmakexW")]
2050 public static extern int CFxAPI_fdt_entmakexW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2051
2052 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entupd")]
2053 public static extern int CFxAPI_fdt_entupd(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2054
2055 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entcheck")]
2056 public static extern int CFxAPI_fdt_entcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2057
2058 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entselA")]
2059 public static extern int CFxAPI_fdt_entselA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2060
2061 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entselW")]
2062 public static extern int CFxAPI_fdt_entselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2063
2064 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselA")]
2065 public static extern int CFxAPI_fdt_nentselA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2066
2067 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselW")]
2068 public static extern int CFxAPI_fdt_nentselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2069
2070 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpA")]
2071 public static extern int CFxAPI_fdt_nentselpA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2072
2073 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpW")]
2074 public static extern int CFxAPI_fdt_nentselpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2075
2076 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpexA")]
2077 public static extern int CFxAPI_fdt_nentselpexA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out int jarg9);
2078
2079 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_nentselpexW")]
2080 public static extern int CFxAPI_fdt_nentselpexW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr /*OUT_ARRAY*/ jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out int jarg9);
2081
2082 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_hatch")]
2083 public static extern int CFxAPI_fdt_hatch(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2084
2085 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblnextA")]
2086 public static extern global::System.IntPtr CFxAPI_fdt_tblnextA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
2087
2088 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblnextW")]
2089 public static extern global::System.IntPtr CFxAPI_fdt_tblnextW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
2090
2091 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsearchA")]
2092 public static extern global::System.IntPtr CFxAPI_fdt_tblsearchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
2093
2094 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsearchW")]
2095 public static extern global::System.IntPtr CFxAPI_fdt_tblsearchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2096
2097 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblobjnameA")]
2098 public static extern int CFxAPI_fdt_tblobjnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
2099
2100 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblobjnameW")]
2101 public static extern int CFxAPI_fdt_tblobjnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
2102
2103 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmodA")]
2104 public static extern int CFxAPI_fdt_tblmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2105
2106 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmodW")]
2107 public static extern int CFxAPI_fdt_tblmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2108
2109 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmakeA")]
2110 public static extern int CFxAPI_fdt_tblmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2111
2112 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblmakeW")]
2113 public static extern int CFxAPI_fdt_tblmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2114
2115 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsetA")]
2116 public static extern int CFxAPI_fdt_tblsetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2117
2118 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblsetW")]
2119 public static extern int CFxAPI_fdt_tblsetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2120
2121 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblrenA")]
2122 public static extern int CFxAPI_fdt_tblrenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
2123
2124 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblrenW")]
2125 public static extern int CFxAPI_fdt_tblrenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2126
2127 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tbldelA")]
2128 public static extern int CFxAPI_fdt_tbldelA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2129
2130 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tbldelW")]
2131 public static extern int CFxAPI_fdt_tbldelW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2132
2133 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblpurgeA")]
2134 public static extern int CFxAPI_fdt_tblpurgeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
2135
2136 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblpurgeW")]
2137 public static extern int CFxAPI_fdt_tblpurgeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
2138
2139 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblcheckrefA")]
2140 public static extern int CFxAPI_fdt_tblcheckrefA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2141
2142 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tblcheckrefW")]
2143 public static extern int CFxAPI_fdt_tblcheckrefW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2144
2145 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_inters")]
2146 public static extern int CFxAPI_fdt_inters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg5, int jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg7);
2147
2148 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_angle")]
2149 public static extern double CFxAPI_fdt_angle(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3);
2150
2151 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_distance")]
2152 public static extern double CFxAPI_fdt_distance(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3);
2153
2154 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_polar")]
2155 public static extern void CFxAPI_fdt_polar(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, double jarg3, double jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg5);
2156
2157 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_initgetA")]
2158 public static extern int CFxAPI_fdt_initgetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
2159
2160 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_initgetW")]
2161 public static extern int CFxAPI_fdt_initgetW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2162
2163 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getangleA")]
2164 public static extern int CFxAPI_fdt_getangleA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, string jarg3, out double jarg4);
2165
2166 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getangleW")]
2167 public static extern int CFxAPI_fdt_getangleW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4);
2168
2169 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcornerA")]
2170 public static extern int CFxAPI_fdt_getcornerA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2171
2172 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcornerW")]
2173 public static extern int CFxAPI_fdt_getcornerW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2174
2175 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getdistA")]
2176 public static extern int CFxAPI_fdt_getdistA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, string jarg3, out double jarg4);
2177
2178 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getdistW")]
2179 public static extern int CFxAPI_fdt_getdistW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4);
2180
2181 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getorientA")]
2182 public static extern int CFxAPI_fdt_getorientA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, string jarg3, out double jarg4);
2183
2184 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getorientW")]
2185 public static extern int CFxAPI_fdt_getorientW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4);
2186
2187 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpointA")]
2188 public static extern int CFxAPI_fdt_getpointA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2189
2190 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpointW")]
2191 public static extern int CFxAPI_fdt_getpointW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2192
2193 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getintA")]
2194 public static extern int CFxAPI_fdt_getintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3);
2195
2196 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getintW")]
2197 public static extern int CFxAPI_fdt_getintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3);
2198
2199 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getkwordA")]
2200 public static extern int CFxAPI_fdt_getkwordA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, uint jarg4);
2201
2202 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getkwordW")]
2203 public static extern int CFxAPI_fdt_getkwordW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, uint jarg4);
2204
2205 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getrealA")]
2206 public static extern int CFxAPI_fdt_getrealA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out double jarg3);
2207
2208 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getrealW")]
2209 public static extern int CFxAPI_fdt_getrealW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3);
2210
2211 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getinputA")]
2212 public static extern int CFxAPI_fdt_getinputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, uint jarg3);
2213
2214 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getinputW")]
2215 public static extern int CFxAPI_fdt_getinputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, uint jarg3);
2216
2217 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getstringA")]
2218 public static extern int CFxAPI_fdt_getstringA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3, string jarg4, uint jarg5);
2219
2220 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getstringW")]
2221 public static extern int CFxAPI_fdt_getstringW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, uint jarg5);
2222
2223 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setosnapinactive")]
2224 public static extern void CFxAPI_fdt_setosnapinactive(global::System.Runtime.InteropServices.HandleRef jarg1);
2225
2226 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_usrbrk")]
2227 public static extern int CFxAPI_fdt_usrbrk(global::System.Runtime.InteropServices.HandleRef jarg1);
2228
2229 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_menucmdA")]
2230 public static extern int CFxAPI_fdt_menucmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2231
2232 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_menucmdW")]
2233 public static extern int CFxAPI_fdt_menucmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
2234
2235 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_findfileA")]
2236 public static extern int CFxAPI_fdt_findfileA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2237
2238 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_findfileW")]
2239 public static extern int CFxAPI_fdt_findfileW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2240
2241 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getfiledA")]
2242 public static extern int CFxAPI_fdt_getfiledA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2243
2244 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getfiledW")]
2245 public static extern int CFxAPI_fdt_getfiledW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2246
2247 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_handentA")]
2248 public static extern int CFxAPI_fdt_handentA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2249
2250 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_handentW")]
2251 public static extern int CFxAPI_fdt_handentW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2252
2253 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_transA")]
2254 public static extern int CFxAPI_fdt_transA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6);
2255
2256 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_transW")]
2257 public static extern int CFxAPI_fdt_transW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6);
2258
2259 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_redraw")]
2260 public static extern int CFxAPI_fdt_redraw(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, int jarg3);
2261
2262 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_regen")]
2263 public static extern int CFxAPI_fdt_regen(global::System.Runtime.InteropServices.HandleRef jarg1);
2264
2265 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadA__SWIG_0")]
2266 public static extern int CFxAPI_fdt_grreadA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
2267
2268 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadA__SWIG_1")]
2269 public static extern int CFxAPI_fdt_grreadA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2270
2271 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadW__SWIG_0")]
2272 public static extern int CFxAPI_fdt_grreadW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
2273
2274 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grreadW__SWIG_1")]
2275 public static extern int CFxAPI_fdt_grreadW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2276
2277 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_capture_grread")]
2278 public static extern int CFxAPI_fdt_capture_grread(global::System.Runtime.InteropServices.HandleRef jarg1);
2279
2280 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_release_grread")]
2281 public static extern int CFxAPI_fdt_release_grread(global::System.Runtime.InteropServices.HandleRef jarg1);
2282
2283 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grdraw")]
2284 public static extern int CFxAPI_fdt_grdraw(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, int jarg4, int jarg5);
2285
2286 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grvecsA")]
2287 public static extern int CFxAPI_fdt_grvecsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2288
2289 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grvecsW")]
2290 public static extern int CFxAPI_fdt_grvecsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2291
2292 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextA__SWIG_0")]
2293 public static extern int CFxAPI_fdt_grtextA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3, out int jarg4);
2294
2295 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextA__SWIG_1")]
2296 public static extern int CFxAPI_fdt_grtextA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3);
2297
2298 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextA__SWIG_2")]
2299 public static extern int CFxAPI_fdt_grtextA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2300
2301 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextW__SWIG_0")]
2302 public static extern int CFxAPI_fdt_grtextW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3, out int jarg4);
2303
2304 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextW__SWIG_1")]
2305 public static extern int CFxAPI_fdt_grtextW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3);
2306
2307 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grtextW__SWIG_2")]
2308 public static extern int CFxAPI_fdt_grtextW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
2309
2310 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_grclear")]
2311 public static extern int CFxAPI_fdt_grclear(global::System.Runtime.InteropServices.HandleRef jarg1);
2312
2313 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_osnapA")]
2314 public static extern int CFxAPI_fdt_osnapA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2315
2316 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_osnapW")]
2317 public static extern int CFxAPI_fdt_osnapW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2318
2319 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_osnap_mode")]
2320 public static extern int CFxAPI_fdt_osnap_mode(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2321
2322 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsnapmodeA")]
2323 public static extern int CFxAPI_fdt_getsnapmodeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out short jarg3);
2324
2325 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getsnapmodeW")]
2326 public static extern int CFxAPI_fdt_getsnapmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out short jarg3);
2327
2328 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_appinters")]
2329 public static extern int CFxAPI_fdt_appinters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2330
2331 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_textboxA")]
2332 public static extern int CFxAPI_fdt_textboxA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2333
2334 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_textboxW")]
2335 public static extern int CFxAPI_fdt_textboxW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2336
2337 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcurr_mousepos")]
2338 public static extern int CFxAPI_fdt_getcurr_mousepos(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
2339
2340 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_draggenA")]
2341 public static extern int CFxAPI_fdt_draggenA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6);
2342
2343 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_draggenW")]
2344 public static extern int CFxAPI_fdt_draggenW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6);
2345
2346 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_init_dragmodeA")]
2347 public static extern int CFxAPI_fdt_init_dragmodeA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2348
2349 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_init_dragmodeW")]
2350 public static extern int CFxAPI_fdt_init_dragmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2351
2352 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_exit_dragmode")]
2353 public static extern int CFxAPI_fdt_exit_dragmode(global::System.Runtime.InteropServices.HandleRef jarg1);
2354
2355 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_vportsA")]
2356 public static extern int CFxAPI_fdt_vportsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2357
2358 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_vportsW")]
2359 public static extern int CFxAPI_fdt_vportsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2360
2361 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tabletinfoA")]
2362 public static extern int CFxAPI_fdt_tabletinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2363
2364 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_tabletinfoW")]
2365 public static extern int CFxAPI_fdt_tabletinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2366
2367 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnewA")]
2368 public static extern int CFxAPI_fdt_flxnewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2369
2370 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnewW")]
2371 public static extern int CFxAPI_fdt_flxnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2372
2373 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxrnewA")]
2374 public static extern int CFxAPI_fdt_flxrnewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2375
2376 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxrnewW")]
2377 public static extern int CFxAPI_fdt_flxrnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2378
2379 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxopenA")]
2380 public static extern int CFxAPI_fdt_flxopenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
2381
2382 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxopenW")]
2383 public static extern int CFxAPI_fdt_flxopenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
2384
2385 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxropenA")]
2386 public static extern int CFxAPI_fdt_flxropenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
2387
2388 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxropenW")]
2389 public static extern int CFxAPI_fdt_flxropenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
2390
2391 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxsave")]
2392 public static extern int CFxAPI_fdt_flxsave(global::System.Runtime.InteropServices.HandleRef jarg1);
2393
2394 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxsaveasA")]
2395 public static extern int CFxAPI_fdt_flxsaveasA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2396
2397 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxsaveasW")]
2398 public static extern int CFxAPI_fdt_flxsaveasW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
2399
2400 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxclose")]
2401 public static extern int CFxAPI_fdt_flxclose(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2402
2403 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxclosevport")]
2404 public static extern int CFxAPI_fdt_flxclosevport(global::System.Runtime.InteropServices.HandleRef jarg1);
2405
2406 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnamesA")]
2407 public static extern int CFxAPI_fdt_flxnamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2408
2409 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_flxnamesW")]
2410 public static extern int CFxAPI_fdt_flxnamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2411
2412 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getflxinfoA")]
2413 public static extern int CFxAPI_fdt_getflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 /*SIMPLETYPE*/ jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2414
2415 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getflxinfoW")]
2416 public static extern int CFxAPI_fdt_getflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 /*SIMPLETYPE*/ jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2417
2418 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setflxinfoA")]
2419 public static extern int CFxAPI_fdt_setflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2420
2421 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setflxinfoW")]
2422 public static extern int CFxAPI_fdt_setflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2423
2424 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreviewbitmapA")]
2425 public static extern int CFxAPI_fdt_getpreviewbitmapA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2426
2427 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreviewbitmapW")]
2428 public static extern int CFxAPI_fdt_getpreviewbitmapW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2429
2430 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcolorindex")]
2431 public static extern int CFxAPI_fdt_getcolorindex(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, int jarg3, int jarg4, out int jarg5);
2432
2433 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getbackgroundcolorref")]
2434 public static extern int CFxAPI_fdt_getbackgroundcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2435
2436 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcolorref")]
2437 public static extern int CFxAPI_fdt_getcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2438
2439 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcolorref")]
2440 public static extern int CFxAPI_fdt_setcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2441
2442 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getdesktopcolor")]
2443 public static extern int CFxAPI_fdt_getdesktopcolor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, out short jarg3);
2444
2445 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setdesktopcolor")]
2446 public static extern int CFxAPI_fdt_setdesktopcolor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3);
2447
2448 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getrgb")]
2449 public static extern uint CFxAPI_fdt_getrgb(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2450
2451 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getactivedocumentA")]
2452 public static extern int CFxAPI_fdt_getactivedocumentA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2453
2454 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getactivedocumentW")]
2455 public static extern int CFxAPI_fdt_getactivedocumentW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2456
2457 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_set3dview")]
2458 public static extern int CFxAPI_fdt_set3dview(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6, double jarg7);
2459
2460 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setviewA")]
2461 public static extern int CFxAPI_fdt_setviewA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2462
2463 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setviewW")]
2464 public static extern int CFxAPI_fdt_setviewW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2465
2466 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getactvport")]
2467 public static extern int CFxAPI_fdt_getactvport(global::System.Runtime.InteropServices.HandleRef jarg1, out short jarg2, out short jarg3);
2468
2469 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setactvport")]
2470 public static extern int CFxAPI_fdt_setactvport(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3);
2471
2472 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_zoomext")]
2473 public static extern int CFxAPI_fdt_zoomext(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3);
2474
2475 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_gethandle")]
2476 public static extern int CFxAPI_fdt_gethandle(global::System.Runtime.InteropServices.HandleRef jarg1, out IntPtr /*SIMPLETYPE*/ jarg2, out IntPtr /*SIMPLETYPE*/ jarg3);
2477
2478 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_compfontA")]
2479 public static extern int CFxAPI_fdt_compfontA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2480
2481 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_compfontW")]
2482 public static extern int CFxAPI_fdt_compfontW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2483
2484 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setcursor")]
2485 public static extern int CFxAPI_fdt_setcursor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2486
2487 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getcursor")]
2488 public static extern int CFxAPI_fdt_getcursor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2489
2490 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_poly2bspline")]
2491 public static extern int CFxAPI_fdt_poly2bspline(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, int jarg3);
2492
2493 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_bspline2poly")]
2494 public static extern int CFxAPI_fdt_bspline2poly(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2495
2496 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_poly2catrom_2d")]
2497 public static extern int CFxAPI_fdt_poly2catrom_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, int jarg3, double jarg4);
2498
2499 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_catrom2poly_2d")]
2500 public static extern int CFxAPI_fdt_catrom2poly_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2501
2502 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_inputA")]
2503 public static extern global::System.IntPtr CFxAPI_fdt_inputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
2504
2505 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_inputW")]
2506 public static extern global::System.IntPtr CFxAPI_fdt_inputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3);
2507
2508 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_boundingbox")]
2509 public static extern int CFxAPI_fdt_boundingbox(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2510
2511 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_pcontour")]
2512 public static extern int CFxAPI_fdt_pcontour(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, IntPtr /*OUT_ARRAY*/ jarg5);
2513
2514 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_wmfoutA")]
2515 public static extern int CFxAPI_fdt_wmfoutA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg7, int jarg8, int jarg9);
2516
2517 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_wmfoutW")]
2518 public static extern int CFxAPI_fdt_wmfoutW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, int jarg4, char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg7, int jarg8, int jarg9);
2519
2520 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setselecthookA")]
2521 public static extern int CFxAPI_fdt_setselecthookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
2522
2523 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setselecthookW")]
2524 public static extern int CFxAPI_fdt_setselecthookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2525
2526 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setselecthookex")]
2527 public static extern int CFxAPI_fdt_setselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2528
2529 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_delselecthook")]
2530 public static extern int CFxAPI_fdt_delselecthook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2531
2532 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_delselecthookex")]
2533 public static extern int CFxAPI_fdt_delselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1);
2534
2535 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_purgeselecthooklist")]
2536 public static extern int CFxAPI_fdt_purgeselecthooklist(global::System.Runtime.InteropServices.HandleRef jarg1);
2537
2538 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setmousehook")]
2539 public static extern int CFxAPI_fdt_setmousehook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3);
2540
2541 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_delmousehook")]
2542 public static extern int CFxAPI_fdt_delmousehook(global::System.Runtime.InteropServices.HandleRef jarg1);
2543
2544 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setdbmodhookA")]
2545 public static extern int CFxAPI_fdt_setdbmodhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
2546
2547 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setdbmodhookW")]
2548 public static extern int CFxAPI_fdt_setdbmodhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2549
2550 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_deldbmodhook")]
2551 public static extern int CFxAPI_fdt_deldbmodhook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2552
2553 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_purgedbmodhooklist")]
2554 public static extern int CFxAPI_fdt_purgedbmodhooklist(global::System.Runtime.InteropServices.HandleRef jarg1);
2555
2556 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entnext_dbhook")]
2557 public static extern int CFxAPI_fdt_entnext_dbhook(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, IntPtr /*OUT_ARRAY*/ jarg3);
2558
2559 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookA__SWIG_0")]
2560 public static extern global::System.IntPtr CFxAPI_fdt_entget_dbhookA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, bool jarg3);
2561
2562 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookA__SWIG_1")]
2563 public static extern global::System.IntPtr CFxAPI_fdt_entget_dbhookA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2564
2565 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookW__SWIG_0")]
2566 public static extern global::System.IntPtr CFxAPI_fdt_entget_dbhookW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, bool jarg3);
2567
2568 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entget_dbhookW__SWIG_1")]
2569 public static extern global::System.IntPtr CFxAPI_fdt_entget_dbhookW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2570
2571 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmod_dbhookA")]
2572 public static extern int CFxAPI_fdt_entmod_dbhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2573
2574 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmod_dbhookW")]
2575 public static extern int CFxAPI_fdt_entmod_dbhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2576
2577 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_entmod_type")]
2578 public static extern int CFxAPI_fdt_entmod_type(global::System.Runtime.InteropServices.HandleRef jarg1);
2579
2580 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isselecthook")]
2581 public static extern int CFxAPI_fdt_isselecthook(global::System.Runtime.InteropServices.HandleRef jarg1);
2582
2583 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_isdbmodhook")]
2584 public static extern int CFxAPI_fdt_isdbmodhook(global::System.Runtime.InteropServices.HandleRef jarg1);
2585
2586 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_ismousehook")]
2587 public static extern int CFxAPI_fdt_ismousehook(global::System.Runtime.InteropServices.HandleRef jarg1);
2588
2589 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setfunhelpA")]
2590 public static extern int CFxAPI_fdt_setfunhelpA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
2591
2592 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setfunhelpW")]
2593 public static extern int CFxAPI_fdt_setfunhelpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2594
2595 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_addimage2libA")]
2596 public static extern int CFxAPI_fdt_addimage2libA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, ushort jarg5);
2597
2598 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_addimage2libW")]
2599 public static extern int CFxAPI_fdt_addimage2libW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, ushort jarg5);
2600
2601 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getimagetypeA")]
2602 public static extern ushort CFxAPI_fdt_getimagetypeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2603
2604 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getimagetypeW")]
2605 public static extern ushort CFxAPI_fdt_getimagetypeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2606
2607 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_delimagefromlibA")]
2608 public static extern int CFxAPI_fdt_delimagefromlibA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2609
2610 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_delimagefromlibW")]
2611 public static extern int CFxAPI_fdt_delimagefromlibW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2612
2613 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_remove")]
2614 public static extern int CFxAPI_fdt_remove(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2615
2616 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_removeall")]
2617 public static extern int CFxAPI_fdt_removeall(global::System.Runtime.InteropServices.HandleRef jarg1);
2618
2619 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_remdelall")]
2620 public static extern int CFxAPI_fdt_remdelall(global::System.Runtime.InteropServices.HandleRef jarg1);
2621
2622 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setpreselect")]
2623 public static extern int CFxAPI_fdt_setpreselect(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2624
2625 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprofileslistA")]
2626 public static extern int CFxAPI_fdt_getprofileslistA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4);
2627
2628 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprofileslistW")]
2629 public static extern int CFxAPI_fdt_getprofileslistW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4);
2630
2631 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_genout")]
2632 public static extern int CFxAPI_fdt_genout(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, short jarg3, IntPtr /*SIMPLETYPE*/ jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2633
2634 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_genout_enamesA")]
2635 public static extern int CFxAPI_fdt_genout_enamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2636
2637 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_genout_enamesW")]
2638 public static extern int CFxAPI_fdt_genout_enamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2639
2640 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_AddUserImage")]
2641 public static extern IntPtr /*SIMPLETYPE*/ CFxAPI_fdt_AddUserImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr /*SIMPLETYPE*/ jarg6);
2642
2643 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_DeleteUserImage")]
2644 public static extern int CFxAPI_fdt_DeleteUserImage(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2);
2645
2646 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_SetRedrawHook")]
2647 public static extern int CFxAPI_fdt_SetRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3);
2648
2649 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_DelRedrawHook")]
2650 public static extern void CFxAPI_fdt_DelRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
2651
2652 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_GetVportExtInfo")]
2653 public static extern int CFxAPI_fdt_GetVportExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2654
2655 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_SetPrintHook")]
2656 public static extern int CFxAPI_fdt_SetPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2657
2658 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_DelPrintHook")]
2659 public static extern void CFxAPI_fdt_DelPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1);
2660
2661 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_GetPrintExtInfo")]
2662 public static extern int CFxAPI_fdt_GetPrintExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2663
2664 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_Vcs2PrinterPnt")]
2665 public static extern int CFxAPI_fdt_Vcs2PrinterPnt(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, out int jarg4, out int jarg5);
2666
2667 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_GetLastViewportEntId")]
2668 public static extern int CFxAPI_fdt_GetLastViewportEntId(global::System.Runtime.InteropServices.HandleRef jarg1);
2669
2670 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfstringA")]
2671 public static extern int CFxAPI_fdt_getconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, uint jarg6);
2672
2673 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfstringW")]
2674 public static extern int CFxAPI_fdt_getconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6);
2675
2676 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfintA")]
2677 public static extern int CFxAPI_fdt_getconfintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
2678
2679 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getconfintW")]
2680 public static extern int CFxAPI_fdt_getconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2681
2682 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfstringA")]
2683 public static extern int CFxAPI_fdt_setconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
2684
2685 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfstringW")]
2686 public static extern int CFxAPI_fdt_setconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2687
2688 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfintA")]
2689 public static extern int CFxAPI_fdt_setconfintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
2690
2691 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setconfintW")]
2692 public static extern int CFxAPI_fdt_setconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2693
2694 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_deleteA")]
2695 public static extern int CFxAPI_fdt_registry_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2696
2697 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_deleteW")]
2698 public static extern int CFxAPI_fdt_registry_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2699
2700 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_descendentsA")]
2701 public static extern global::System.IntPtr CFxAPI_fdt_registry_descendentsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, short jarg3);
2702
2703 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_descendentsW")]
2704 public static extern global::System.IntPtr CFxAPI_fdt_registry_descendentsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, short jarg3);
2705
2706 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_readA")]
2707 public static extern global::System.IntPtr CFxAPI_fdt_registry_readA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2708
2709 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_readW")]
2710 public static extern global::System.IntPtr CFxAPI_fdt_registry_readW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2711
2712 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_writeA")]
2713 public static extern int CFxAPI_fdt_registry_writeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
2714
2715 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_registry_writeW")]
2716 public static extern int CFxAPI_fdt_registry_writeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2717
2718 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_deleteA")]
2719 public static extern int CFxAPI_fdt_file_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2720
2721 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_deleteW")]
2722 public static extern int CFxAPI_fdt_file_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
2723
2724 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_copyA")]
2725 public static extern int CFxAPI_fdt_file_copyA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, out int jarg5);
2726
2727 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_copyW")]
2728 public static extern int CFxAPI_fdt_file_copyW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, out int jarg5);
2729
2730 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_renameA")]
2731 public static extern int CFxAPI_fdt_file_renameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2732
2733 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_renameW")]
2734 public static extern int CFxAPI_fdt_file_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
2735
2736 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_sizeA")]
2737 public static extern int CFxAPI_fdt_file_sizeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] jarg3);
2738
2739 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_sizeW")]
2740 public static extern int CFxAPI_fdt_file_sizeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] jarg3);
2741
2742 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_systimeA")]
2743 public static extern int CFxAPI_fdt_file_systimeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8, out int jarg9, out int jarg10);
2744
2745 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_systimeW")]
2746 public static extern int CFxAPI_fdt_file_systimeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8, out int jarg9, out int jarg10);
2747
2748 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_directory_pA")]
2749 public static extern int CFxAPI_fdt_file_directory_pA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2750
2751 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_file_directory_pW")]
2752 public static extern int CFxAPI_fdt_file_directory_pW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
2753
2754 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_directory_filesA")]
2755 public static extern int CFxAPI_fdt_directory_filesA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2756
2757 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_directory_filesW")]
2758 public static extern int CFxAPI_fdt_directory_filesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2759
2760 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_directoryA")]
2761 public static extern int CFxAPI_fdt_filename_directoryA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
2762
2763 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_directoryW")]
2764 public static extern int CFxAPI_fdt_filename_directoryW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2765
2766 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_baseA")]
2767 public static extern int CFxAPI_fdt_filename_baseA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
2768
2769 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_baseW")]
2770 public static extern int CFxAPI_fdt_filename_baseW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2771
2772 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_extensionA")]
2773 public static extern int CFxAPI_fdt_filename_extensionA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
2774
2775 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_extensionW")]
2776 public static extern int CFxAPI_fdt_filename_extensionW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2777
2778 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_mktempA")]
2779 public static extern int CFxAPI_fdt_filename_mktempA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, int jarg6);
2780
2781 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_filename_mktempW")]
2782 public static extern int CFxAPI_fdt_filename_mktempW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, int jarg6);
2783
2784 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_addA")]
2785 public static extern int CFxAPI_fdt_dictionary_addA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, string jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
2786
2787 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_addW")]
2788 public static extern int CFxAPI_fdt_dictionary_addW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
2789
2790 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_deleteA")]
2791 public static extern int CFxAPI_fdt_dictionary_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, string jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
2792
2793 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_deleteW")]
2794 public static extern int CFxAPI_fdt_dictionary_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr /*OUT_ARRAY*/ jarg4);
2795
2796 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_nextA")]
2797 public static extern global::System.IntPtr CFxAPI_fdt_dictionary_nextA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, int jarg3);
2798
2799 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_nextW")]
2800 public static extern global::System.IntPtr CFxAPI_fdt_dictionary_nextW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, int jarg3);
2801
2802 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_searchA")]
2803 public static extern global::System.IntPtr CFxAPI_fdt_dictionary_searchA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, string jarg3, int jarg4);
2804
2805 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_searchW")]
2806 public static extern global::System.IntPtr CFxAPI_fdt_dictionary_searchW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2807
2808 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_renameA")]
2809 public static extern int CFxAPI_fdt_dictionary_renameA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, string jarg3, string jarg4);
2810
2811 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_dictionary_renameW")]
2812 public static extern int CFxAPI_fdt_dictionary_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2813
2814 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_namedobjdict")]
2815 public static extern int CFxAPI_fdt_namedobjdict(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
2816
2817 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getarea")]
2818 public static extern int CFxAPI_fdt_curve_getarea(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out double jarg3);
2819
2820 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getclosestpointto")]
2821 public static extern int CFxAPI_fdt_curve_getclosestpointto(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, int jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg5);
2822
2823 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getclosestpointtoprojection")]
2824 public static extern int CFxAPI_fdt_curve_getclosestpointtoprojection(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg6);
2825
2826 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getdistatparam")]
2827 public static extern int CFxAPI_fdt_curve_getdistatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, double jarg3, out double jarg4);
2828
2829 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getdistatpoint")]
2830 public static extern int CFxAPI_fdt_curve_getdistatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, out double jarg4);
2831
2832 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getendparam")]
2833 public static extern int CFxAPI_fdt_curve_getendparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out double jarg3);
2834
2835 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getendpoint")]
2836 public static extern int CFxAPI_fdt_curve_getendpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3);
2837
2838 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getstartparam")]
2839 public static extern int CFxAPI_fdt_curve_getstartparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out double jarg3);
2840
2841 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getstartpoint")]
2842 public static extern int CFxAPI_fdt_curve_getstartpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3);
2843
2844 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getparamatdist")]
2845 public static extern int CFxAPI_fdt_curve_getparamatdist(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, double jarg3, out double jarg4);
2846
2847 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getpointatdist")]
2848 public static extern int CFxAPI_fdt_curve_getpointatdist(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2849
2850 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getpointatparam")]
2851 public static extern int CFxAPI_fdt_curve_getpointatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2852
2853 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getparamatpoint")]
2854 public static extern int CFxAPI_fdt_curve_getparamatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg3, out double jarg4);
2855
2856 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getfirstderiv")]
2857 public static extern int CFxAPI_fdt_curve_getfirstderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2858
2859 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_getsecondderiv")]
2860 public static extern int CFxAPI_fdt_curve_getsecondderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg4);
2861
2862 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_isclosed")]
2863 public static extern int CFxAPI_fdt_curve_isclosed(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out int jarg3);
2864
2865 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_isperiodic")]
2866 public static extern int CFxAPI_fdt_curve_isperiodic(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out int jarg3);
2867
2868 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_curve_isplanar")]
2869 public static extern int CFxAPI_fdt_curve_isplanar(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, out int jarg3);
2870
2871 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_translateA")]
2872 public static extern int CFxAPI_fdt_translateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, uint jarg5);
2873
2874 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_translateW")]
2875 public static extern int CFxAPI_fdt_translateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, uint jarg5);
2876
2877 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_xdsizeW")]
2878 public static extern int CFxAPI_fdt_xdsizeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3);
2879
2880 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_xdsizeA")]
2881 public static extern int CFxAPI_fdt_xdsizeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3);
2882
2883 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogLoadA")]
2884 public static extern int CFxAPI_dlg_DialogLoadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3);
2885
2886 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogLoadW")]
2887 public static extern int CFxAPI_dlg_DialogLoadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3);
2888
2889 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogUnload")]
2890 public static extern int CFxAPI_dlg_DialogUnload(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2891
2892 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewA")]
2893 public static extern int CFxAPI_dlg_DialogNewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2894
2895 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewW")]
2896 public static extern int CFxAPI_dlg_DialogNewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2897
2898 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewPositionedA")]
2899 public static extern int CFxAPI_dlg_DialogNewPositionedA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2900
2901 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogNewPositionedW")]
2902 public static extern int CFxAPI_dlg_DialogNewPositionedW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2903
2904 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogStart")]
2905 public static extern int CFxAPI_dlg_DialogStart(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2906
2907 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogDone")]
2908 public static extern int CFxAPI_dlg_DialogDone(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, int jarg3);
2909
2910 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogDonePositioned")]
2911 public static extern int CFxAPI_dlg_DialogDonePositioned(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, int jarg3, out int jarg4, out int jarg5);
2912
2913 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_DialogTerm")]
2914 public static extern int CFxAPI_dlg_DialogTerm(global::System.Runtime.InteropServices.HandleRef jarg1);
2915
2916 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileActionA")]
2917 public static extern int CFxAPI_dlg_TileActionA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2918
2919 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileActionW")]
2920 public static extern int CFxAPI_dlg_TileActionW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2921
2922 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetA")]
2923 public static extern int CFxAPI_dlg_TileSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, string jarg4);
2924
2925 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetW")]
2926 public static extern int CFxAPI_dlg_TileSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2927
2928 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileGetA")]
2929 public static extern int CFxAPI_dlg_TileGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, string jarg4, int jarg5);
2930
2931 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileGetW")]
2932 public static extern int CFxAPI_dlg_TileGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5);
2933
2934 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileClientDataA")]
2935 public static extern int CFxAPI_dlg_TileClientDataA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, IntPtr /*SIMPLETYPE*/ jarg4);
2936
2937 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileClientDataW")]
2938 public static extern int CFxAPI_dlg_TileClientDataW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr /*SIMPLETYPE*/ jarg4);
2939
2940 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileModeA")]
2941 public static extern int CFxAPI_dlg_TileModeA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, short jarg4);
2942
2943 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileModeW")]
2944 public static extern int CFxAPI_dlg_TileModeW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4);
2945
2946 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileDimensionsA")]
2947 public static extern int CFxAPI_dlg_TileDimensionsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, out short jarg4, out short jarg5);
2948
2949 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileDimensionsW")]
2950 public static extern int CFxAPI_dlg_TileDimensionsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out short jarg4, out short jarg5);
2951
2952 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetFontA")]
2953 public static extern int CFxAPI_dlg_TileSetFontA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, short jarg4);
2954
2955 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_TileSetFontW")]
2956 public static extern int CFxAPI_dlg_TileSetFontW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4);
2957
2958 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListStartA")]
2959 public static extern int CFxAPI_dlg_ListStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, short jarg4, short jarg5);
2960
2961 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListStartW")]
2962 public static extern int CFxAPI_dlg_ListStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4, short jarg5);
2963
2964 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListAddA")]
2965 public static extern int CFxAPI_dlg_ListAddA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2966
2967 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListAddW")]
2968 public static extern int CFxAPI_dlg_ListAddW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
2969
2970 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListGetA")]
2971 public static extern int CFxAPI_dlg_ListGetA(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, string jarg3, int jarg4);
2972
2973 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListGetW")]
2974 public static extern int CFxAPI_dlg_ListGetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
2975
2976 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListEnd")]
2977 public static extern int CFxAPI_dlg_ListEnd(global::System.Runtime.InteropServices.HandleRef jarg1);
2978
2979 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetTabStopsA")]
2980 public static extern int CFxAPI_dlg_ListSetTabStopsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, string jarg4);
2981
2982 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetTabStopsW")]
2983 public static extern int CFxAPI_dlg_ListSetTabStopsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2984
2985 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetColumnWidthA")]
2986 public static extern int CFxAPI_dlg_ListSetColumnWidthA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, string jarg4);
2987
2988 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ListSetColumnWidthW")]
2989 public static extern int CFxAPI_dlg_ListSetColumnWidthW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
2990
2991 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderGetA")]
2992 public static extern int CFxAPI_dlg_SliderGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8);
2993
2994 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderGetW")]
2995 public static extern int CFxAPI_dlg_SliderGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8);
2996
2997 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderSetA")]
2998 public static extern int CFxAPI_dlg_SliderSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8);
2999
3000 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_SliderSetW")]
3001 public static extern int CFxAPI_dlg_SliderSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8);
3002
3003 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageStartA")]
3004 public static extern int CFxAPI_dlg_ImageStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, string jarg3);
3005
3006 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageStartW")]
3007 public static extern int CFxAPI_dlg_ImageStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*SIMPLETYPE*/ jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
3008
3009 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageEnd")]
3010 public static extern int CFxAPI_dlg_ImageEnd(global::System.Runtime.InteropServices.HandleRef jarg1);
3011
3012 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageVector")]
3013 public static extern int CFxAPI_dlg_ImageVector(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6);
3014
3015 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageFill")]
3016 public static extern int CFxAPI_dlg_ImageFill(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6);
3017
3018 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageBmpA")]
3019 public static extern int CFxAPI_dlg_ImageBmpA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6);
3020
3021 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageBmpW")]
3022 public static extern int CFxAPI_dlg_ImageBmpW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6);
3023
3024 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImagePreviewBmpA")]
3025 public static extern int CFxAPI_dlg_ImagePreviewBmpA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6);
3026
3027 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImagePreviewBmpW")]
3028 public static extern int CFxAPI_dlg_ImagePreviewBmpW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6);
3029
3030 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageWmfA")]
3031 public static extern int CFxAPI_dlg_ImageWmfA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6);
3032
3033 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageWmfW")]
3034 public static extern int CFxAPI_dlg_ImageWmfW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6);
3035
3036 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageSlideA")]
3037 public static extern int CFxAPI_dlg_ImageSlideA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6);
3038
3039 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageSlideW")]
3040 public static extern int CFxAPI_dlg_ImageSlideW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6);
3041
3042 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageLibraryA")]
3043 public static extern int CFxAPI_dlg_ImageLibraryA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6, string jarg7);
3044
3045 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dlg_ImageLibraryW")]
3046 public static extern int CFxAPI_dlg_ImageLibraryW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6, [MarshalAs(UnmanagedType.LPWStr)]string jarg7);
3047
3048 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_dialogA")]
3049 public static extern int CFxAPI_dcl_new_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, IntPtr /*SIMPLETYPE*/ jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
3050
3051 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_dialogW")]
3052 public static extern int CFxAPI_dcl_new_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, IntPtr /*SIMPLETYPE*/ jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
3053
3054 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_load_dialogA")]
3055 public static extern int CFxAPI_dcl_load_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3);
3056
3057 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_load_dialogW")]
3058 public static extern int CFxAPI_dcl_load_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3);
3059
3060 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_unload_dialog")]
3061 public static extern int CFxAPI_dcl_unload_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3062
3063 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_dialog")]
3064 public static extern int CFxAPI_dcl_start_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3);
3065
3066 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_done_dialog")]
3067 public static extern int CFxAPI_dcl_done_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
3068
3069 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_positioned_dialogA")]
3070 public static extern int CFxAPI_dcl_new_positioned_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
3071
3072 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_new_positioned_dialogW")]
3073 public static extern int CFxAPI_dcl_new_positioned_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
3074
3075 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_done_positioned_dialog")]
3076 public static extern int CFxAPI_dcl_done_positioned_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, out int jarg5);
3077
3078 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_term_dialog")]
3079 public static extern int CFxAPI_dcl_term_dialog(global::System.Runtime.InteropServices.HandleRef jarg1);
3080
3081 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_listA")]
3082 public static extern int CFxAPI_dcl_start_listA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4, int jarg5);
3083
3084 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_listW")]
3085 public static extern int CFxAPI_dcl_start_listW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, int jarg5);
3086
3087 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_add_listA")]
3088 public static extern int CFxAPI_dcl_add_listA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3089
3090 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_add_listW")]
3091 public static extern int CFxAPI_dcl_add_listW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
3092
3093 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_list_stringA")]
3094 public static extern int CFxAPI_dcl_get_list_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5, int jarg6);
3095
3096 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_list_stringW")]
3097 public static extern int CFxAPI_dcl_get_list_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, int jarg6);
3098
3099 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_end_list")]
3100 public static extern int CFxAPI_dcl_end_list(global::System.Runtime.InteropServices.HandleRef jarg1);
3101
3102 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attrA")]
3103 public static extern int CFxAPI_dcl_get_attrA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, string jarg5, int jarg6);
3104
3105 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attrW")]
3106 public static extern int CFxAPI_dcl_get_attrW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, int jarg6);
3107
3108 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attr_stringA")]
3109 public static extern int CFxAPI_dcl_get_attr_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5);
3110
3111 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_attr_stringW")]
3112 public static extern int CFxAPI_dcl_get_attr_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5);
3113
3114 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tileA")]
3115 public static extern int CFxAPI_dcl_get_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5);
3116
3117 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tileW")]
3118 public static extern int CFxAPI_dcl_get_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5);
3119
3120 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_set_tileA")]
3121 public static extern int CFxAPI_dcl_set_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4);
3122
3123 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_set_tileW")]
3124 public static extern int CFxAPI_dcl_set_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4);
3125
3126 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_action_tileA")]
3127 public static extern int CFxAPI_dcl_action_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, IntPtr /*SIMPLETYPE*/ jarg4);
3128
3129 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_action_tileW")]
3130 public static extern int CFxAPI_dcl_action_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr /*SIMPLETYPE*/ jarg4);
3131
3132 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_mode_tileA")]
3133 public static extern int CFxAPI_dcl_mode_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4);
3134
3135 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_mode_tileW")]
3136 public static extern int CFxAPI_dcl_mode_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
3137
3138 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_dimensions_tileA")]
3139 public static extern int CFxAPI_dcl_dimensions_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, out int jarg4, out int jarg5);
3140
3141 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_dimensions_tileW")]
3142 public static extern int CFxAPI_dcl_dimensions_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out int jarg4, out int jarg5);
3143
3144 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_imageA")]
3145 public static extern int CFxAPI_dcl_start_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
3146
3147 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_start_imageW")]
3148 public static extern int CFxAPI_dcl_start_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3);
3149
3150 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_fill_image")]
3151 public static extern int CFxAPI_dcl_fill_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6);
3152
3153 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_slide_imageA")]
3154 public static extern int CFxAPI_dcl_slide_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, string jarg6);
3155
3156 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_slide_imageW")]
3157 public static extern int CFxAPI_dcl_slide_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6);
3158
3159 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_vector_image")]
3160 public static extern int CFxAPI_dcl_vector_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6);
3161
3162 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_end_image")]
3163 public static extern int CFxAPI_dcl_end_image(global::System.Runtime.InteropServices.HandleRef jarg1);
3164
3165 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_client_data_tileA")]
3166 public static extern int CFxAPI_dcl_client_data_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, IntPtr /*SIMPLETYPE*/ jarg4);
3167
3168 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_client_data_tileW")]
3169 public static extern int CFxAPI_dcl_client_data_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr /*SIMPLETYPE*/ jarg4);
3170
3171 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tile_keyA")]
3172 public static extern int CFxAPI_dcl_get_tile_keyA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4);
3173
3174 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_dcl_get_tile_keyW")]
3175 public static extern int CFxAPI_dcl_get_tile_keyW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4);
3176
3177 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_push_resource_handle")]
3178 public static extern void CFxAPI_fdt_push_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3179
3180 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_pop_resource_handle")]
3181 public static extern void CFxAPI_fdt_pop_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1);
3182
3183 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_install_modeless_hook")]
3184 public static extern int CFxAPI_fdt_install_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3185
3186 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_uninstall_modeless_hook")]
3187 public static extern int CFxAPI_fdt_uninstall_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3188
3189 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_add_support_pathA")]
3190 public static extern int CFxAPI_fdt_add_support_pathA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3191
3192 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_add_support_pathW")]
3193 public static extern int CFxAPI_fdt_add_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
3194
3195 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_remove_support_pathA")]
3196 public static extern int CFxAPI_fdt_remove_support_pathA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3197
3198 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_remove_support_pathW")]
3199 public static extern int CFxAPI_fdt_remove_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2);
3200
3201 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_loaded_appsA")]
3202 public static extern int CFxAPI_fdt_loaded_appsA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3203
3204 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_loaded_appsW")]
3205 public static extern int CFxAPI_fdt_loaded_appsW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3206
3207 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterlistA")]
3208 public static extern int CFxAPI_fdt_getprinterlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3209
3210 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterlistW")]
3211 public static extern int CFxAPI_fdt_getprinterlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3212
3213 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterpapersizesA")]
3214 public static extern int CFxAPI_fdt_getprinterpapersizesA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3215
3216 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getprinterpapersizesW")]
3217 public static extern int CFxAPI_fdt_getprinterpapersizesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3218
3219 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getresourceimageA")]
3220 public static extern int CFxAPI_fdt_getresourceimageA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3221
3222 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getresourceimageW")]
3223 public static extern int CFxAPI_fdt_getresourceimageW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3224
3225 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreferenceA")]
3226 public static extern int CFxAPI_fdt_getpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3227
3228 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_getpreferenceW")]
3229 public static extern int CFxAPI_fdt_getpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3230
3231 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setpreferenceA")]
3232 public static extern int CFxAPI_fdt_setpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3233
3234 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_fdt_setpreferenceW")]
3235 public static extern int CFxAPI_fdt_setpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3236
3237 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetADSName")]
3238 public static extern int CFxAPI_GetADSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
3239
3240 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetObjectId")]
3241 public static extern int CFxAPI_GetObjectId(IntPtr /*OUT_ARRAY*/ jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3242
3243 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetSSName")]
3244 public static extern int CFxAPI_GetSSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
3245
3246 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetSSPtr")]
3247 public static extern global::System.IntPtr CFxAPI_GetSSPtr(IntPtr /*OUT_ARRAY*/ jarg1);
3248
3249 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetPoint3D__SWIG_0")]
3250 public static extern int CFxAPI_GetPoint3D__SWIG_0([In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3251
3252 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetPoint3D__SWIG_1")]
3253 public static extern int CFxAPI_GetPoint3D__SWIG_1([In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3254
3255 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetPointFDT__SWIG_0")]
3256 public static extern int CFxAPI_GetPointFDT__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
3257
3258 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetPointFDT__SWIG_1")]
3259 public static extern int CFxAPI_GetPointFDT__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
3260
3261 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetPointFDT__SWIG_2")]
3262 public static extern int CFxAPI_GetPointFDT__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst = 3)]double[] jarg2);
3263
3264 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetMatrix3D")]
3265 public static extern int CFxAPI_GetMatrix3D(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3266
3267 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetMatrixFDT")]
3268 public static extern int CFxAPI_GetMatrixFDT(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3269
3270 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetResBufFDTW")]
3271 public static extern int CFxAPI_GetResBufFDTW(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, bool jarg5);
3272
3273 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetResBufDDW__SWIG_0")]
3274 public static extern int CFxAPI_GetResBufDDW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg3, int jarg4);
3275
3276 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetResBufDDW__SWIG_1")]
3277 public static extern int CFxAPI_GetResBufDDW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg3);
3278
3279 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetResBuf")]
3280 public static extern int CFxAPI_GetResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3281
3282 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_AddResBuf")]
3283 public static extern int CFxAPI_AddResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3284
3285 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetFxDocument")]
3286 public static extern global::System.IntPtr CFxAPI_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
3287
3288 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetFxDatabase__SWIG_0")]
3289 public static extern global::System.IntPtr CFxAPI_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3290
3291 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetUserIO__SWIG_0")]
3292 public static extern global::System.IntPtr CFxAPI_GetUserIO__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3293
3294 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetActiveFxView")]
3295 public static extern global::System.IntPtr CFxAPI_GetActiveFxView(global::System.Runtime.InteropServices.HandleRef jarg1);
3296
3297 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_CheckFilter")]
3298 public static extern bool CFxAPI_CheckFilter(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3299
3300 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_GetFXImages")]
3301 public static extern global::System.IntPtr CFxAPI_GetFXImages(global::System.Runtime.InteropServices.HandleRef jarg1);
3302
3303 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_ConvertToW__SWIG_0")]
3304 public static extern global::System.IntPtr CFxAPI_ConvertToW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
3305
3306 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_ConvertToW__SWIG_1")]
3307 public static extern global::System.IntPtr CFxAPI_ConvertToW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3308
3309 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_ConvertToA__SWIG_0")]
3310 public static extern global::System.IntPtr CFxAPI_ConvertToA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
3311
3312 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_ConvertToA__SWIG_1")]
3313 public static extern global::System.IntPtr CFxAPI_ConvertToA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3314
3315 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_ConvertToW__SWIG_2")]
3316 public static extern void CFxAPI_ConvertToW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3317
3318 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAPI_ConvertToA__SWIG_2")]
3319 public static extern void CFxAPI_ConvertToA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3320
3321 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FXAPI")]
3322 public static extern global::System.IntPtr FXAPI();
3323
3324 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_cast")]
3325 public static extern IntPtr CFxBagFiler_cast(HandleRef jarg1);
3326
3327 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_desc")]
3328 public static extern IntPtr CFxBagFiler_desc();
3329
3330 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_isA")]
3331 public static extern IntPtr CFxBagFiler_isA(HandleRef jarg1);
3332
3333 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_queryX")]
3334 public static extern IntPtr CFxBagFiler_queryX(HandleRef jarg1, HandleRef jarg2);
3335
3336 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_createObject")]
3337 public static extern IntPtr CFxBagFiler_createObject();
3338
3339 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxBagFiler")]
3340 public static extern void delete_CFxBagFiler(HandleRef jarg1);
3341
3342 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_getResBuf")]
3343 public static extern global::System.IntPtr CFxBagFiler_getResBuf(HandleRef jarg1);
3344
3345 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_getRealClassName")]
3346 public static extern string CFxBagFiler_getRealClassName(IntPtr /*SIMPLETYPE*/ jarg1);
3347
3348 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_cast")]
3349 public static extern IntPtr CFxGeometryClipper_cast(HandleRef jarg1);
3350
3351 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_desc")]
3352 public static extern IntPtr CFxGeometryClipper_desc();
3353
3354 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_isA")]
3355 public static extern IntPtr CFxGeometryClipper_isA(HandleRef jarg1);
3356
3357 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_queryX")]
3358 public static extern IntPtr CFxGeometryClipper_queryX(HandleRef jarg1, HandleRef jarg2);
3359
3360 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_createObject")]
3361 public static extern IntPtr CFxGeometryClipper_createObject();
3362
3363 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_SetClipBoundary__SWIG_0")]
3364 public static extern void CFxGeometryClipper_SetClipBoundary__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3365
3366 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_SetClipBoundary__SWIG_1")]
3367 public static extern void CFxGeometryClipper_SetClipBoundary__SWIG_1(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3368
3369 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_SetTransform")]
3370 public static extern void CFxGeometryClipper_SetTransform(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3371
3372 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_GetClipper")]
3373 public static extern global::System.IntPtr CFxGeometryClipper_GetClipper(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3374
3375 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_getRealClassName")]
3376 public static extern string CFxGeometryClipper_getRealClassName(IntPtr /*SIMPLETYPE*/ jarg1);
3377
3378 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxGeometryClipper")]
3379 public static extern void delete_CFxGeometryClipper(HandleRef jarg1);
3380
3381 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSystemServices")]
3382 public static extern void delete_CFxSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1);
3383
3384 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetPassword")]
3385 public static extern bool CFxSystemServices_GetPassword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, ref IntPtr jarg4);
3386
3387 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_AuditPrintReport")]
3388 public static extern void CFxSystemServices_AuditPrintReport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3389
3390 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_0")]
3391 public static extern global::System.IntPtr CFxSystemServices_FindFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4, int jarg5);
3392
3393 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_1")]
3394 public static extern global::System.IntPtr CFxSystemServices_FindFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4);
3395
3396 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_2")]
3397 public static extern global::System.IntPtr CFxSystemServices_FindFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
3398
3399 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FindFile__SWIG_3")]
3400 public static extern global::System.IntPtr CFxSystemServices_FindFile__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3401
3402 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_IsValidFileName")]
3403 public static extern bool CFxSystemServices_IsValidFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3404
3405 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_Write__SWIG_0")]
3406 public static extern void CFxSystemServices_Write__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3407
3408 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_Write__SWIG_1")]
3409 public static extern void CFxSystemServices_Write__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3410
3411 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_WriteLine__SWIG_0")]
3412 public static extern void CFxSystemServices_WriteLine__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
3413
3414 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_WriteLine__SWIG_1")]
3415 public static extern void CFxSystemServices_WriteLine__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3416
3417 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_WriteLine__SWIG_2")]
3418 public static extern void CFxSystemServices_WriteLine__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3419
3420 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetMainFrame")]
3421 public static extern global::System.IntPtr CFxSystemServices_GetMainFrame(global::System.Runtime.InteropServices.HandleRef jarg1);
3422
3423 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_MessageBox")]
3424 public static extern int CFxSystemServices_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4);
3425
3426 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxDocumentManager")]
3427 public static extern global::System.IntPtr CFxSystemServices_GetFxDocumentManager(global::System.Runtime.InteropServices.HandleRef jarg1);
3428
3429 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetHostAppServices")]
3430 public static extern global::System.IntPtr CFxSystemServices_GetHostAppServices(global::System.Runtime.InteropServices.HandleRef jarg1);
3431
3432 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetSystemServices")]
3433 public static extern IntPtr CFxSystemServices_GetSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1);
3434
3435 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxEvalModeHandler")]
3436 public static extern global::System.IntPtr CFxSystemServices_GetFxEvalModeHandler(global::System.Runtime.InteropServices.HandleRef jarg1);
3437
3438 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxSystemServices_CFxExpressionParserData")]
3439 public static extern global::System.IntPtr new_CFxSystemServices_CFxExpressionParserData();
3440
3441 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSystemServices_CFxExpressionParserData")]
3442 public static extern void delete_CFxSystemServices_CFxExpressionParserData(global::System.Runtime.InteropServices.HandleRef jarg1);
3443
3444 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_set")]
3445 public static extern void CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3446
3447 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_get")]
3448 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3449
3450 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_set")]
3451 public static extern void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3452
3453 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_get")]
3454 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3455
3456 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_set")]
3457 public static extern void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3458
3459 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_get")]
3460 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3461
3462 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_set")]
3463 public static extern void CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3464
3465 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_get")]
3466 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3467
3468 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_set")]
3469 public static extern void CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3470
3471 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_get")]
3472 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3473
3474 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_set")]
3475 public static extern void CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3476
3477 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_get")]
3478 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3479
3480 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_set")]
3481 public static extern void CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3482
3483 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_get")]
3484 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3485
3486 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_set")]
3487 public static extern void CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3488
3489 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_get")]
3490 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3491
3492 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_set")]
3493 public static extern void CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3494
3495 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_get")]
3496 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3497
3498 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUCS_set")]
3499 public static extern void CFxSystemServices_CFxExpressionParserData_m_bUCS_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3500
3501 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUCS_get")]
3502 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bUCS_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3503
3504 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_set")]
3505 public static extern void CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3506
3507 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_get")]
3508 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3509
3510 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_set")]
3511 public static extern void CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3512
3513 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_get")]
3514 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3515
3516 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_set")]
3517 public static extern void CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3518
3519 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_get")]
3520 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3521
3522 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_set")]
3523 public static extern void CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3524
3525 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_get")]
3526 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3527
3528 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_set")]
3529 public static extern void CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3530
3531 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_get")]
3532 public static extern bool CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_get(global::System.Runtime.InteropServices.HandleRef jarg1);
3533
3534 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_0")]
3535 public static extern IntPtr CFxSystemServices_SendStringToExecute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3536
3537 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_1")]
3538 public static extern IntPtr CFxSystemServices_SendStringToExecute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3539
3540 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_2")]
3541 public static extern IntPtr CFxSystemServices_SendStringToExecute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
3542
3543 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_3")]
3544 public static extern IntPtr CFxSystemServices_SendStringToExecute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3545
3546 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_4")]
3547 public static extern IntPtr CFxSystemServices_SendStringToExecute__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3);
3548
3549 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SendStringToExecute__SWIG_5")]
3550 public static extern IntPtr CFxSystemServices_SendStringToExecute__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4);
3551
3552 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_QueueExpr__SWIG_0")]
3553 public static extern void CFxSystemServices_QueueExpr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3);
3554
3555 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_QueueExpr__SWIG_1")]
3556 public static extern void CFxSystemServices_QueueExpr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
3557
3558 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxGDIDevice")]
3559 public static extern global::System.IntPtr CFxSystemServices_GetFxGDIDevice(global::System.Runtime.InteropServices.HandleRef jarg1);
3560
3561 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CreateRasterImage")]
3562 public static extern IntPtr CFxSystemServices_CreateRasterImage(global::System.Runtime.InteropServices.HandleRef jarg1);
3563
3564 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetAvailableFonts")]
3565 public static extern global::System.IntPtr CFxSystemServices_GetAvailableFonts(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3566
3567 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxProfileManager")]
3568 public static extern global::System.IntPtr CFxSystemServices_GetFxProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1);
3569
3570 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxIO")]
3571 public static extern global::System.IntPtr CFxSystemServices_GetFxIO(global::System.Runtime.InteropServices.HandleRef jarg1);
3572
3573 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxApplications")]
3574 public static extern global::System.IntPtr CFxSystemServices_GetFxApplications(global::System.Runtime.InteropServices.HandleRef jarg1);
3575
3576 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetVSTA")]
3577 public static extern global::System.IntPtr CFxSystemServices_GetVSTA(global::System.Runtime.InteropServices.HandleRef jarg1);
3578
3579 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_ActivateRibbon")]
3580 public static extern void CFxSystemServices_ActivateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3581
3582 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetIApplication")]
3583 public static extern global::System.IntPtr CFxSystemServices_GetIApplication(global::System.Runtime.InteropServices.HandleRef jarg1);
3584
3585 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_0")]
3586 public static extern int CFxSystemServices_FileDialog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13);
3587
3588 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_1")]
3589 public static extern int CFxSystemServices_FileDialog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12);
3590
3591 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_2")]
3592 public static extern int CFxSystemServices_FileDialog__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
3593
3594 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_3")]
3595 public static extern int CFxSystemServices_FileDialog__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10);
3596
3597 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_4")]
3598 public static extern int CFxSystemServices_FileDialog__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
3599
3600 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_5")]
3601 public static extern int CFxSystemServices_FileDialog__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13);
3602
3603 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_6")]
3604 public static extern int CFxSystemServices_FileDialog__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12);
3605
3606 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_7")]
3607 public static extern int CFxSystemServices_FileDialog__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
3608
3609 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_8")]
3610 public static extern int CFxSystemServices_FileDialog__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10);
3611
3612 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_FileDialog__SWIG_9")]
3613 public static extern int CFxSystemServices_FileDialog__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr /*SIMPLETYPE*/ jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
3614
3615 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxUI")]
3616 public static extern global::System.IntPtr CFxSystemServices_GetFxUI(global::System.Runtime.InteropServices.HandleRef jarg1);
3617
3618 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_Help")]
3619 public static extern void CFxSystemServices_Help(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3620
3621 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_ExitApplication__SWIG_0")]
3622 public static extern void CFxSystemServices_ExitApplication__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3623
3624 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_ExitApplication__SWIG_1")]
3625 public static extern void CFxSystemServices_ExitApplication__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3626
3627 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_IsApplicationExiting")]
3628 public static extern bool CFxSystemServices_IsApplicationExiting(global::System.Runtime.InteropServices.HandleRef jarg1);
3629
3630 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxNetworkAccessManager")]
3631 public static extern global::System.IntPtr CFxSystemServices_GetFxNetworkAccessManager(global::System.Runtime.InteropServices.HandleRef jarg1);
3632
3633 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CreateGeometryClipper")]
3634 public static extern IntPtr CFxSystemServices_CreateGeometryClipper(global::System.Runtime.InteropServices.HandleRef jarg1);
3635
3636 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetInitialDirPath__SWIG_0")]
3637 public static extern void CFxSystemServices_GetInitialDirPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3638
3639 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetInitialDirPath__SWIG_1")]
3640 public static extern void CFxSystemServices_GetInitialDirPath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3641
3642 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SetInitialDirPath")]
3643 public static extern void CFxSystemServices_SetInitialDirPath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3644
3645 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetObjectManager")]
3646 public static extern global::System.IntPtr CFxSystemServices_GetObjectManager(global::System.Runtime.InteropServices.HandleRef jarg1);
3647
3648 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_0")]
3649 public static extern IntPtr CFxSystemServices_CreateBagFiler__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
3650
3651 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_1")]
3652 public static extern IntPtr CFxSystemServices_CreateBagFiler__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3653
3654 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_2")]
3655 public static extern IntPtr CFxSystemServices_CreateBagFiler__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3);
3656
3657 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CreateBagFiler__SWIG_3")]
3658 public static extern IntPtr CFxSystemServices_CreateBagFiler__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
3659
3660 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_userBreak")]
3661 public static extern bool CFxSystemServices_userBreak(global::System.Runtime.InteropServices.HandleRef jarg1);
3662
3663 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SetUserBreak__SWIG_0")]
3664 public static extern void CFxSystemServices_SetUserBreak__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3665
3666 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SetUserBreak__SWIG_1")]
3667 public static extern void CFxSystemServices_SetUserBreak__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3668
3669 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetSystemCodepage")]
3670 public static extern int CFxSystemServices_GetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1);
3671
3672 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SetSystemCodepage")]
3673 public static extern void CFxSystemServices_SetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3674
3675 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_DoVerb")]
3676 public static extern bool CFxSystemServices_DoVerb(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3677
3678 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_AddOleDataToClipboard")]
3679 public static extern bool CFxSystemServices_AddOleDataToClipboard(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5);
3680
3681 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetGeomUtils")]
3682 public static extern global::System.IntPtr CFxSystemServices_GetGeomUtils(global::System.Runtime.InteropServices.HandleRef jarg1);
3683
3684 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetModelerManufacture")]
3685 public static extern int CFxSystemServices_GetModelerManufacture(global::System.Runtime.InteropServices.HandleRef jarg1);
3686
3687 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetVersion__SWIG_0")]
3688 public static extern bool CFxSystemServices_GetVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, out int jarg3, out int jarg4, out int jarg5);
3689
3690 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetVersion__SWIG_1")]
3691 public static extern global::System.IntPtr CFxSystemServices_GetVersion__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3692
3693 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SetOEMVersion")]
3694 public static extern void CFxSystemServices_SetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3695
3696 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetOEMVersion")]
3697 public static extern global::System.IntPtr CFxSystemServices_GetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
3698
3699 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetAppDataVersion")]
3700 public static extern global::System.IntPtr CFxSystemServices_GetAppDataVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
3701
3702 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetOpenDefaultExtension")]
3703 public static extern global::System.IntPtr CFxSystemServices_GetOpenDefaultExtension(global::System.Runtime.InteropServices.HandleRef jarg1);
3704
3705 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_0")]
3706 public static extern void CFxSystemServices_DisableUI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5);
3707
3708 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_1")]
3709 public static extern void CFxSystemServices_DisableUI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4);
3710
3711 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_2")]
3712 public static extern void CFxSystemServices_DisableUI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3);
3713
3714 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_DisableUI__SWIG_3")]
3715 public static extern void CFxSystemServices_DisableUI__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3716
3717 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_AuthoriseOEMModule")]
3718 public static extern void CFxSystemServices_AuthoriseOEMModule(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3719
3720 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_IsOEMModuleAuthorised")]
3721 public static extern bool CFxSystemServices_IsOEMModuleAuthorised(global::System.Runtime.InteropServices.HandleRef jarg1);
3722
3723 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_CreateDrawablePreview")]
3724 public static extern global::System.IntPtr CFxSystemServices_CreateDrawablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE*/ jarg2, UInt32 /*SIMPLETYPE*/ jarg3, HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
3725
3726 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetFxAPI")]
3727 public static extern global::System.IntPtr CFxSystemServices_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3728
3729 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_StopATFBomb")]
3730 public static extern void CFxSystemServices_StopATFBomb(global::System.Runtime.InteropServices.HandleRef jarg1);
3731
3732 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_GetRibbonTheme")]
3733 public static extern int CFxSystemServices_GetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1);
3734
3735 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_SetRibbonTheme")]
3736 public static extern void CFxSystemServices_SetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3737
3738 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_AddOutputDevice")]
3739 public static extern void CFxSystemServices_AddOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3740
3741 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_RemoveOutputDevice")]
3742 public static extern void CFxSystemServices_RemoveOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3743
3744 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_ExecuteStringOnPause__SWIG_0")]
3745 public static extern IntPtr CFxSystemServices_ExecuteStringOnPause__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);
3746
3747 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemServices_ExecuteStringOnPause__SWIG_1")]
3748 public static extern IntPtr CFxSystemServices_ExecuteStringOnPause__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3749
3750 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetFxSystemServices")]
3751 public static extern global::System.IntPtr GetFxSystemServices();
3752
3753 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_cast")]
3754 public static extern IntPtr CFxDatabase_cast(HandleRef jarg1);
3755
3756 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_desc")]
3757 public static extern IntPtr CFxDatabase_desc();
3758
3759 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_isA")]
3760 public static extern IntPtr CFxDatabase_isA(HandleRef jarg1);
3761
3762 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_queryX")]
3763 public static extern IntPtr CFxDatabase_queryX(HandleRef jarg1, HandleRef jarg2);
3764
3765 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_createObject")]
3766 public static extern IntPtr CFxDatabase_createObject();
3767
3768 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDatabase")]
3769 public static extern void delete_CFxDatabase(HandleRef jarg1);
3770
3771 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_LoadFile__SWIG_0")]
3772 public static extern IntPtr CFxDatabase_LoadFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3);
3773
3774 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_LoadFile__SWIG_1")]
3775 public static extern IntPtr CFxDatabase_LoadFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3776
3777 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_LoadFile__SWIG_2")]
3778 public static extern IntPtr CFxDatabase_LoadFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3779
3780 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_SaveFile__SWIG_0")]
3781 public static extern bool CFxDatabase_SaveFile__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
3782
3783 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_SaveFile__SWIG_1")]
3784 public static extern bool CFxDatabase_SaveFile__SWIG_1(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3785
3786 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_SaveFile__SWIG_2")]
3787 public static extern bool CFxDatabase_SaveFile__SWIG_2(HandleRef jarg1);
3788
3789 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_RecoverFile__SWIG_0")]
3790 public static extern IntPtr CFxDatabase_RecoverFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3);
3791
3792 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_RecoverFile__SWIG_1")]
3793 public static extern IntPtr CFxDatabase_RecoverFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3794
3795 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_RecoverFile__SWIG_2")]
3796 public static extern IntPtr CFxDatabase_RecoverFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3797
3798 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_LockFile")]
3799 public static extern void CFxDatabase_LockFile(HandleRef jarg1, bool jarg2);
3800
3801 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetActiveViewportId__SWIG_0")]
3802 public static extern global::System.IntPtr CFxDatabase_GetActiveViewportId__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3803
3804 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetActiveViewportId__SWIG_1")]
3805 public static extern global::System.IntPtr CFxDatabase_GetActiveViewportId__SWIG_1(HandleRef jarg1);
3806
3807 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_IsModelLayoutActive")]
3808 public static extern bool CFxDatabase_IsModelLayoutActive(HandleRef jarg1);
3809
3810 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetActiveBlockId")]
3811 public static extern global::System.IntPtr CFxDatabase_GetActiveBlockId(HandleRef jarg1);
3812
3813 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetUnitsFormatter")]
3814 public static extern global::System.IntPtr CFxDatabase_GetUnitsFormatter(HandleRef jarg1);
3815
3816 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetFileData")]
3817 public static extern global::System.IntPtr CFxDatabase_GetFileData(HandleRef jarg1);
3818
3819 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_SetFileData")]
3820 public static extern void CFxDatabase_SetFileData(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3821
3822 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetRecentlyErased")]
3823 public static extern global::System.IntPtr CFxDatabase_GetRecentlyErased(HandleRef jarg1);
3824
3825 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_StartUndoRecord")]
3826 public static extern void CFxDatabase_StartUndoRecord(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3827
3828 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_ResetTime")]
3829 public static extern void CFxDatabase_ResetTime(HandleRef jarg1);
3830
3831 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetDatabaseHistory")]
3832 public static extern global::System.IntPtr CFxDatabase_GetDatabaseHistory(HandleRef jarg1);
3833
3834 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_BlockPurge")]
3835 public static extern int CFxDatabase_BlockPurge(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
3836
3837 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetBlockedPurge")]
3838 public static extern global::System.IntPtr CFxDatabase_GetBlockedPurge(HandleRef jarg1);
3839
3840 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getElapsedTime")]
3841 public static extern global::System.IntPtr CFxDatabase_getElapsedTime(HandleRef jarg1);
3842
3843 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDWGCODEPAGE")]
3844 public static extern int CFxDatabase_getDWGCODEPAGE(HandleRef jarg1);
3845
3846 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getPLIMMIN")]
3847 public static extern global::System.IntPtr CFxDatabase_getPLIMMIN(HandleRef jarg1);
3848
3849 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getPLIMMAX")]
3850 public static extern global::System.IntPtr CFxDatabase_getPLIMMAX(HandleRef jarg1);
3851
3852 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDWGCODEPAGE")]
3853 public static extern bool CFxDatabase_setDWGCODEPAGE(HandleRef jarg1, int jarg2);
3854
3855 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setTDUCREATE")]
3856 public static extern bool CFxDatabase_setTDUCREATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3857
3858 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setTDUUPDATE")]
3859 public static extern bool CFxDatabase_setTDUUPDATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3860
3861 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setTDINDWG")]
3862 public static extern bool CFxDatabase_setTDINDWG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3863
3864 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setTDUSRTIMER")]
3865 public static extern bool CFxDatabase_setTDUSRTIMER(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3866
3867 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPSTYLEMODE")]
3868 public static extern bool CFxDatabase_setPSTYLEMODE(HandleRef jarg1, bool jarg2);
3869
3870 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSORG")]
3871 public static extern bool CFxDatabase_setPUCSORG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3872
3873 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSXDIR")]
3874 public static extern bool CFxDatabase_setPUCSXDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3875
3876 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSYDIR")]
3877 public static extern bool CFxDatabase_setPUCSYDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3878
3879 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSORG")]
3880 public static extern bool CFxDatabase_setUCSORG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3881
3882 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSXDIR")]
3883 public static extern bool CFxDatabase_setUCSXDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3884
3885 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSYDIR")]
3886 public static extern bool CFxDatabase_setUCSYDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3887
3888 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPUCSAll")]
3889 public static extern bool CFxDatabase_setPUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3890
3891 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSAll")]
3892 public static extern bool CFxDatabase_setUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
3893
3894 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS1")]
3895 [return: MarshalAs(UnmanagedType.LPWStr)]
3896 public static extern String CFxDatabase_getUSERS1(HandleRef jarg1);
3897
3898 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS1")]
3899 public static extern bool CFxDatabase_setUSERS1(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3900
3901 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS2")]
3902 [return: MarshalAs(UnmanagedType.LPWStr)]
3903 public static extern String CFxDatabase_getUSERS2(HandleRef jarg1);
3904
3905 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS2")]
3906 public static extern bool CFxDatabase_setUSERS2(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3907
3908 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS3")]
3909 [return: MarshalAs(UnmanagedType.LPWStr)]
3910 public static extern String CFxDatabase_getUSERS3(HandleRef jarg1);
3911
3912 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS3")]
3913 public static extern bool CFxDatabase_setUSERS3(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3914
3915 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS4")]
3916 [return: MarshalAs(UnmanagedType.LPWStr)]
3917 public static extern String CFxDatabase_getUSERS4(HandleRef jarg1);
3918
3919 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS4")]
3920 public static extern bool CFxDatabase_setUSERS4(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3921
3922 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUSERS5")]
3923 [return: MarshalAs(UnmanagedType.LPWStr)]
3924 public static extern String CFxDatabase_getUSERS5(HandleRef jarg1);
3925
3926 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUSERS5")]
3927 public static extern bool CFxDatabase_setUSERS5(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3928
3929 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getBINDTYPE")]
3930 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getBINDTYPE(HandleRef jarg1);
3931
3932 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setBINDTYPE")]
3933 public static extern bool CFxDatabase_setBINDTYPE(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
3934
3935 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_GetGsView")]
3936 public static extern global::System.IntPtr CFxDatabase_GetGsView(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3937
3938 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getRealClassName")]
3939 public static extern string CFxDatabase_getRealClassName(IntPtr /*SIMPLETYPE*/ jarg1);
3940
3941 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getBACKZ")]
3942 public static extern double CFxDatabase_getBACKZ(HandleRef jarg1);
3943
3944 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setBACKZ")]
3945 public static extern void CFxDatabase_setBACKZ(HandleRef jarg1, double jarg2);
3946
3947 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCTAB")]
3948 public static extern global::System.IntPtr CFxDatabase_getCTAB(HandleRef jarg1);
3949
3950 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCTAB")]
3951 public static extern void CFxDatabase_setCTAB(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3952
3953 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCPLOTSTYLE")]
3954 [return: MarshalAs(UnmanagedType.LPWStr)]
3955 public static extern String CFxDatabase_getCPLOTSTYLE(HandleRef jarg1);
3956
3957 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCPLOTSTYLE")]
3958 public static extern void CFxDatabase_setCPLOTSTYLE(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3959
3960 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCVPORT")]
3961 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getCVPORT(HandleRef jarg1);
3962
3963 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCVPORT")]
3964 public static extern void CFxDatabase_setCVPORT(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
3965
3966 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDWGNAME")]
3967 [return: MarshalAs(UnmanagedType.LPWStr)]
3968 public static extern String CFxDatabase_getDWGNAME(HandleRef jarg1);
3969
3970 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDWGNAME")]
3971 public static extern void CFxDatabase_setDWGNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3972
3973 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDWGPREFIX")]
3974 [return: MarshalAs(UnmanagedType.LPWStr)]
3975 public static extern String CFxDatabase_getDWGPREFIX(HandleRef jarg1);
3976
3977 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDWGPREFIX")]
3978 public static extern void CFxDatabase_setDWGPREFIX(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
3979
3980 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDWGTITLED")]
3981 public static extern bool CFxDatabase_getDWGTITLED(HandleRef jarg1);
3982
3983 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDWGTITLED")]
3984 public static extern void CFxDatabase_setDWGTITLED(HandleRef jarg1, bool jarg2);
3985
3986 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getELEVATION")]
3987 public static extern double CFxDatabase_getELEVATION(HandleRef jarg1);
3988
3989 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setELEVATION")]
3990 public static extern void CFxDatabase_setELEVATION(HandleRef jarg1, double jarg2);
3991
3992 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getEXTMAX")]
3993 public static extern global::System.IntPtr CFxDatabase_getEXTMAX(HandleRef jarg1);
3994
3995 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setEXTMAX")]
3996 public static extern void CFxDatabase_setEXTMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3997
3998 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getEXTMIN")]
3999 public static extern global::System.IntPtr CFxDatabase_getEXTMIN(HandleRef jarg1);
4000
4001 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setEXTMIN")]
4002 public static extern void CFxDatabase_setEXTMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4003
4004 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getFRONTZ")]
4005 public static extern double CFxDatabase_getFRONTZ(HandleRef jarg1);
4006
4007 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setFRONTZ")]
4008 public static extern void CFxDatabase_setFRONTZ(HandleRef jarg1, double jarg2);
4009
4010 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getGRIDMODE")]
4011 public static extern bool CFxDatabase_getGRIDMODE(HandleRef jarg1);
4012
4013 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setGRIDMODE")]
4014 public static extern void CFxDatabase_setGRIDMODE(HandleRef jarg1, bool jarg2);
4015
4016 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getGRIDUNIT")]
4017 public static extern global::System.IntPtr CFxDatabase_getGRIDUNIT(HandleRef jarg1);
4018
4019 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setGRIDUNIT")]
4020 public static extern void CFxDatabase_setGRIDUNIT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4021
4022 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getINSBASE")]
4023 public static extern global::System.IntPtr CFxDatabase_getINSBASE(HandleRef jarg1);
4024
4025 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setINSBASE")]
4026 public static extern void CFxDatabase_setINSBASE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4027
4028 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLENSLENGTH")]
4029 public static extern double CFxDatabase_getLENSLENGTH(HandleRef jarg1);
4030
4031 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLENSLENGTH")]
4032 public static extern void CFxDatabase_setLENSLENGTH(HandleRef jarg1, double jarg2);
4033
4034 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLIMCHECK")]
4035 public static extern bool CFxDatabase_getLIMCHECK(HandleRef jarg1);
4036
4037 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLIMCHECK")]
4038 public static extern void CFxDatabase_setLIMCHECK(HandleRef jarg1, bool jarg2);
4039
4040 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLIMMAX")]
4041 public static extern global::System.IntPtr CFxDatabase_getLIMMAX(HandleRef jarg1);
4042
4043 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLIMMAX")]
4044 public static extern void CFxDatabase_setLIMMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4045
4046 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLIMMIN")]
4047 public static extern global::System.IntPtr CFxDatabase_getLIMMIN(HandleRef jarg1);
4048
4049 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLIMMIN")]
4050 public static extern void CFxDatabase_setLIMMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4051
4052 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPANG")]
4053 public static extern double CFxDatabase_getSNAPANG(HandleRef jarg1);
4054
4055 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPANG")]
4056 public static extern void CFxDatabase_setSNAPANG(HandleRef jarg1, double jarg2);
4057
4058 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPBASE")]
4059 public static extern global::System.IntPtr CFxDatabase_getSNAPBASE(HandleRef jarg1);
4060
4061 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPBASE")]
4062 public static extern void CFxDatabase_setSNAPBASE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4063
4064 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPISOPAIR")]
4065 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getSNAPISOPAIR(HandleRef jarg1);
4066
4067 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPISOPAIR")]
4068 public static extern void CFxDatabase_setSNAPISOPAIR(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4069
4070 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPMODE")]
4071 public static extern bool CFxDatabase_getSNAPMODE(HandleRef jarg1);
4072
4073 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPMODE")]
4074 public static extern void CFxDatabase_setSNAPMODE(HandleRef jarg1, bool jarg2);
4075
4076 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPSTYL")]
4077 public static extern bool CFxDatabase_getSNAPSTYL(HandleRef jarg1);
4078
4079 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPSTYL")]
4080 public static extern void CFxDatabase_setSNAPSTYL(HandleRef jarg1, bool jarg2);
4081
4082 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getSNAPUNIT")]
4083 public static extern global::System.IntPtr CFxDatabase_getSNAPUNIT(HandleRef jarg1);
4084
4085 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setSNAPUNIT")]
4086 public static extern void CFxDatabase_setSNAPUNIT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4087
4088 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getSYSCODEPAGE")]
4089 public static extern int CFxDatabase_getSYSCODEPAGE(HandleRef jarg1);
4090
4091 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setSYSCODEPAGE")]
4092 public static extern void CFxDatabase_setSYSCODEPAGE(HandleRef jarg1, int jarg2);
4093
4094 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getTARGET")]
4095 public static extern global::System.IntPtr CFxDatabase_getTARGET(HandleRef jarg1);
4096
4097 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setTARGET")]
4098 public static extern void CFxDatabase_setTARGET(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4099
4100 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUCSFOLLOW")]
4101 public static extern bool CFxDatabase_getUCSFOLLOW(HandleRef jarg1);
4102
4103 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSFOLLOW")]
4104 public static extern void CFxDatabase_setUCSFOLLOW(HandleRef jarg1, bool jarg2);
4105
4106 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUCSICON")]
4107 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getUCSICON(HandleRef jarg1);
4108
4109 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSICON")]
4110 public static extern void CFxDatabase_setUCSICON(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4111
4112 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUCSVP")]
4113 public static extern bool CFxDatabase_getUCSVP(HandleRef jarg1);
4114
4115 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSVP")]
4116 public static extern void CFxDatabase_setUCSVP(HandleRef jarg1, bool jarg2);
4117
4118 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUCSNAME")]
4119 public static extern global::System.IntPtr CFxDatabase_getUCSNAME(HandleRef jarg1);
4120
4121 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUCSNAME")]
4122 public static extern void CFxDatabase_setUCSNAME(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4123
4124 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUCSORG")]
4125 public static extern global::System.IntPtr CFxDatabase_getUCSORG(HandleRef jarg1);
4126
4127 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUCSXDIR")]
4128 public static extern global::System.IntPtr CFxDatabase_getUCSXDIR(HandleRef jarg1);
4129
4130 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUCSYDIR")]
4131 public static extern global::System.IntPtr CFxDatabase_getUCSYDIR(HandleRef jarg1);
4132
4133 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWCTR")]
4134 public static extern global::System.IntPtr CFxDatabase_getVIEWCTR(HandleRef jarg1);
4135
4136 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWCTR")]
4137 public static extern void CFxDatabase_setVIEWCTR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4138
4139 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWDIR")]
4140 public static extern global::System.IntPtr CFxDatabase_getVIEWDIR(HandleRef jarg1);
4141
4142 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWDIR")]
4143 public static extern void CFxDatabase_setVIEWDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4144
4145 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWMODE")]
4146 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getVIEWMODE(HandleRef jarg1);
4147
4148 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWMODE")]
4149 public static extern void CFxDatabase_setVIEWMODE(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4150
4151 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWSIZE")]
4152 public static extern double CFxDatabase_getVIEWSIZE(HandleRef jarg1);
4153
4154 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWSIZE")]
4155 public static extern void CFxDatabase_setVIEWSIZE(HandleRef jarg1, double jarg2);
4156
4157 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getVIEWTWIST")]
4158 public static extern double CFxDatabase_getVIEWTWIST(HandleRef jarg1);
4159
4160 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setVIEWTWIST")]
4161 public static extern void CFxDatabase_setVIEWTWIST(HandleRef jarg1, double jarg2);
4162
4163 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getWORLDUCS")]
4164 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getWORLDUCS(HandleRef jarg1);
4165
4166 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setWORLDUCS")]
4167 public static extern void CFxDatabase_setWORLDUCS(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4168
4169 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLOGINNAME")]
4170 [return: MarshalAs(UnmanagedType.LPWStr)]
4171 public static extern String CFxDatabase_getLOGINNAME(HandleRef jarg1);
4172
4173 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLOGINNAME")]
4174 public static extern void CFxDatabase_setLOGINNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
4175
4176 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDATE")]
4177 public static extern global::System.IntPtr CFxDatabase_getDATE(HandleRef jarg1);
4178
4179 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDATE")]
4180 public static extern void CFxDatabase_setDATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4181
4182 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCDATE")]
4183 public static extern double CFxDatabase_getCDATE(HandleRef jarg1);
4184
4185 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCDATE")]
4186 public static extern void CFxDatabase_setCDATE(HandleRef jarg1, double jarg2);
4187
4188 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getPERSPECTIVE")]
4189 public static extern bool CFxDatabase_getPERSPECTIVE(HandleRef jarg1);
4190
4191 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPERSPECTIVE")]
4192 public static extern void CFxDatabase_setPERSPECTIVE(HandleRef jarg1, bool jarg2);
4193
4194 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getIMAGEFRAME")]
4195 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getIMAGEFRAME(HandleRef jarg1);
4196
4197 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setIMAGEFRAME")]
4198 public static extern void CFxDatabase_setIMAGEFRAME(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4199
4200 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getFRAME")]
4201 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getFRAME(HandleRef jarg1);
4202
4203 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setFRAME")]
4204 public static extern void CFxDatabase_setFRAME(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4205
4206 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getPDFFRAME")]
4207 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getPDFFRAME(HandleRef jarg1);
4208
4209 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPDFFRAME")]
4210 public static extern void CFxDatabase_setPDFFRAME(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4211
4212 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getXCLIPFRAME")]
4213 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getXCLIPFRAME(HandleRef jarg1);
4214
4215 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setXCLIPFRAME")]
4216 public static extern void CFxDatabase_setXCLIPFRAME(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4217
4218 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDWFFRAME")]
4219 public static extern sbyte /*SIMPLETYPE*/ CFxDatabase_getDWFFRAME(HandleRef jarg1);
4220
4221 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDWFFRAME")]
4222 public static extern void CFxDatabase_setDWFFRAME(HandleRef jarg1, sbyte /*SIMPLETYPE*/ jarg2);
4223
4224 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDGNFRAME")]
4225 public static extern sbyte /*SIMPLETYPE*/ CFxDatabase_getDGNFRAME(HandleRef jarg1);
4226
4227 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDGNFRAME")]
4228 public static extern void CFxDatabase_setDGNFRAME(HandleRef jarg1, sbyte /*SIMPLETYPE*/ jarg2);
4229
4230 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getOLEFRAME")]
4231 public static extern sbyte /*SIMPLETYPE*/ CFxDatabase_getOLEFRAME(HandleRef jarg1);
4232
4233 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setOLEFRAME")]
4234 public static extern void CFxDatabase_setOLEFRAME(HandleRef jarg1, sbyte /*SIMPLETYPE*/ jarg2);
4235
4236 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getTEXTSTYLE")]
4237 public static extern global::System.IntPtr CFxDatabase_getTEXTSTYLE(HandleRef jarg1);
4238
4239 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setTEXTSTYLE")]
4240 public static extern void CFxDatabase_setTEXTSTYLE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4241
4242 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getTEXTSIZE")]
4243 public static extern double CFxDatabase_getTEXTSIZE(HandleRef jarg1);
4244
4245 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setTEXTSIZE")]
4246 public static extern void CFxDatabase_setTEXTSIZE(HandleRef jarg1, double jarg2);
4247
4248 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getERRNO")]
4249 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getERRNO(HandleRef jarg1);
4250
4251 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setERRNO")]
4252 public static extern void CFxDatabase_setERRNO(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4253
4254 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCIRCLERAD")]
4255 public static extern double CFxDatabase_getCIRCLERAD(HandleRef jarg1);
4256
4257 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCIRCLERAD")]
4258 public static extern void CFxDatabase_setCIRCLERAD(HandleRef jarg1, double jarg2);
4259
4260 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCMDECHO")]
4261 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getCMDECHO(HandleRef jarg1);
4262
4263 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCMDECHO")]
4264 public static extern void CFxDatabase_setCMDECHO(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4265
4266 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHPANG")]
4267 public static extern double CFxDatabase_getHPANG(HandleRef jarg1);
4268
4269 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHPANG")]
4270 public static extern void CFxDatabase_setHPANG(HandleRef jarg1, double jarg2);
4271
4272 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHPBOUND")]
4273 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getHPBOUND(HandleRef jarg1);
4274
4275 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHPBOUND")]
4276 public static extern void CFxDatabase_setHPBOUND(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4277
4278 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHPDOUBLE")]
4279 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getHPDOUBLE(HandleRef jarg1);
4280
4281 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHPDOUBLE")]
4282 public static extern void CFxDatabase_setHPDOUBLE(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4283
4284 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHPDRAWORDER")]
4285 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getHPDRAWORDER(HandleRef jarg1);
4286
4287 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHPDRAWORDER")]
4288 public static extern void CFxDatabase_setHPDRAWORDER(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4289
4290 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHPNAME")]
4291 [return: MarshalAs(UnmanagedType.LPWStr)]
4292 public static extern String CFxDatabase_getHPNAME(HandleRef jarg1);
4293
4294 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHPNAME")]
4295 public static extern void CFxDatabase_setHPNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
4296
4297 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHPSCALE")]
4298 public static extern double CFxDatabase_getHPSCALE(HandleRef jarg1);
4299
4300 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHPSCALE")]
4301 public static extern void CFxDatabase_setHPSCALE(HandleRef jarg1, double jarg2);
4302
4303 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHPSPACE")]
4304 public static extern double CFxDatabase_getHPSPACE(HandleRef jarg1);
4305
4306 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHPSPACE")]
4307 public static extern void CFxDatabase_setHPSPACE(HandleRef jarg1, double jarg2);
4308
4309 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getINSNAME")]
4310 [return: MarshalAs(UnmanagedType.LPWStr)]
4311 public static extern String CFxDatabase_getINSNAME(HandleRef jarg1);
4312
4313 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setINSNAME")]
4314 public static extern void CFxDatabase_setINSNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
4315
4316 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLSPALOAD")]
4317 [return: MarshalAs(UnmanagedType.LPWStr)]
4318 public static extern String CFxDatabase_getLSPALOAD(HandleRef jarg1);
4319
4320 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLSPALOAD")]
4321 public static extern void CFxDatabase_setLSPALOAD(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
4322
4323 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLASTPOINT")]
4324 public static extern global::System.IntPtr CFxDatabase_getLASTPOINT(HandleRef jarg1);
4325
4326 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLASTPOINT")]
4327 public static extern void CFxDatabase_setLASTPOINT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4328
4329 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getOFFSETDIST")]
4330 public static extern double CFxDatabase_getOFFSETDIST(HandleRef jarg1);
4331
4332 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setOFFSETDIST")]
4333 public static extern void CFxDatabase_setOFFSETDIST(HandleRef jarg1, double jarg2);
4334
4335 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDONUTID")]
4336 public static extern double CFxDatabase_getDONUTID(HandleRef jarg1);
4337
4338 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDONUTID")]
4339 public static extern void CFxDatabase_setDONUTID(HandleRef jarg1, double jarg2);
4340
4341 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDONUTOD")]
4342 public static extern double CFxDatabase_getDONUTOD(HandleRef jarg1);
4343
4344 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDONUTOD")]
4345 public static extern void CFxDatabase_setDONUTOD(HandleRef jarg1, double jarg2);
4346
4347 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getFILLETRAD3D")]
4348 public static extern double CFxDatabase_getFILLETRAD3D(HandleRef jarg1);
4349
4350 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setFILLETRAD3D")]
4351 public static extern void CFxDatabase_setFILLETRAD3D(HandleRef jarg1, double jarg2);
4352
4353 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getUNDOCTL")]
4354 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getUNDOCTL(HandleRef jarg1);
4355
4356 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setUNDOCTL")]
4357 public static extern void CFxDatabase_setUNDOCTL(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4358
4359 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getAREA")]
4360 public static extern double CFxDatabase_getAREA(HandleRef jarg1);
4361
4362 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setAREA")]
4363 public static extern void CFxDatabase_setAREA(HandleRef jarg1, double jarg2);
4364
4365 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCMDACTIVE")]
4366 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getCMDACTIVE(HandleRef jarg1);
4367
4368 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCMDACTIVE")]
4369 public static extern void CFxDatabase_setCMDACTIVE(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4370
4371 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getCMDNAMES")]
4372 [return: MarshalAs(UnmanagedType.LPWStr)]
4373 public static extern String CFxDatabase_getCMDNAMES(HandleRef jarg1);
4374
4375 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setCMDNAMES")]
4376 public static extern void CFxDatabase_setCMDNAMES(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
4377
4378 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDIASTAT")]
4379 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getDIASTAT(HandleRef jarg1);
4380
4381 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDIASTAT")]
4382 public static extern void CFxDatabase_setDIASTAT(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4383
4384 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDISTANCE")]
4385 public static extern double CFxDatabase_getDISTANCE(HandleRef jarg1);
4386
4387 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDISTANCE")]
4388 public static extern void CFxDatabase_setDISTANCE(HandleRef jarg1, double jarg2);
4389
4390 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getHANDLES")]
4391 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getHANDLES(HandleRef jarg1);
4392
4393 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setHANDLES")]
4394 public static extern void CFxDatabase_setHANDLES(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4395
4396 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLASTANGLE")]
4397 public static extern double CFxDatabase_getLASTANGLE(HandleRef jarg1);
4398
4399 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLASTANGLE")]
4400 public static extern void CFxDatabase_setLASTANGLE(HandleRef jarg1, double jarg2);
4401
4402 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getLOGFILENAME")]
4403 [return: MarshalAs(UnmanagedType.LPWStr)]
4404 public static extern String CFxDatabase_getLOGFILENAME(HandleRef jarg1);
4405
4406 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setLOGFILENAME")]
4407 public static extern void CFxDatabase_setLOGFILENAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
4408
4409 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getOPENFORMATVERSION")]
4410 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getOPENFORMATVERSION(HandleRef jarg1);
4411
4412 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setOPENFORMATVERSION")]
4413 public static extern void CFxDatabase_setOPENFORMATVERSION(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4414
4415 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getPERIMETER")]
4416 public static extern double CFxDatabase_getPERIMETER(HandleRef jarg1);
4417
4418 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPERIMETER")]
4419 public static extern void CFxDatabase_setPERIMETER(HandleRef jarg1, double jarg2);
4420
4421 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getPREVCMD")]
4422 [return: MarshalAs(UnmanagedType.LPWStr)]
4423 public static extern String CFxDatabase_getPREVCMD(HandleRef jarg1);
4424
4425 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setPREVCMD")]
4426 public static extern void CFxDatabase_setPREVCMD(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
4427
4428 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getVSMAX")]
4429 public static extern global::System.IntPtr CFxDatabase_getVSMAX(HandleRef jarg1);
4430
4431 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setVSMAX")]
4432 public static extern void CFxDatabase_setVSMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4433
4434 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getVSMIN")]
4435 public static extern global::System.IntPtr CFxDatabase_getVSMIN(HandleRef jarg1);
4436
4437 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setVSMIN")]
4438 public static extern void CFxDatabase_setVSMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4439
4440 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getWRITESTAT")]
4441 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getWRITESTAT(HandleRef jarg1);
4442
4443 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setWRITESTAT")]
4444 public static extern void CFxDatabase_setWRITESTAT(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4445
4446 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_getDBMOD")]
4447 public static extern Int16 /*SIMPLETYPE*/ CFxDatabase_getDBMOD(HandleRef jarg1);
4448
4449 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_setDBMOD")]
4450 public static extern void CFxDatabase_setDBMOD(HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
4451
4452 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEvalModeHandler_DoEvalMode")]
4453 public static extern bool CFxEvalModeHandler_DoEvalMode(global::System.Runtime.InteropServices.HandleRef jarg1);
4454
4455 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEvalModeHandler_UndoEvalMode")]
4456 public static extern bool CFxEvalModeHandler_UndoEvalMode(global::System.Runtime.InteropServices.HandleRef jarg1);
4457
4458 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxEvalModeHandler")]
4459 public static extern void delete_CFxEvalModeHandler(global::System.Runtime.InteropServices.HandleRef jarg1);
4460
4461 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxTracker")]
4462 public static extern global::System.IntPtr new_CFxTracker();
4463
4464 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxTracker")]
4465 public static extern void delete_CFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
4466
4467 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_Update")]
4468 public static extern void CFxTracker_Update(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4469
4470 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_DrawTracker")]
4471 public static extern void CFxTracker_DrawTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4472
4473 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_DrawDDTracker")]
4474 public static extern void CFxTracker_DrawDDTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4475
4476 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_DrawDDTrackerSwigExplicitCFxTracker")]
4477 public static extern void CFxTracker_DrawDDTrackerSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4478
4479 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_CheckRegenAbort")]
4480 public static extern bool CFxTracker_CheckRegenAbort(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4481
4482 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_CheckRegenAbortSwigExplicitCFxTracker")]
4483 public static extern bool CFxTracker_CheckRegenAbortSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4484
4485 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_GetName")]
4486 public static extern global::System.IntPtr CFxTracker_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
4487
4488 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_GetNameSwigExplicitCFxTracker")]
4489 public static extern global::System.IntPtr CFxTracker_GetNameSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
4490
4491 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_IsEager")]
4492 public static extern bool CFxTracker_IsEager(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4493
4494 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_IsEagerSwigExplicitCFxTracker")]
4495 public static extern bool CFxTracker_IsEagerSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4496
4497 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_DoAction")]
4498 public static extern bool CFxTracker_DoAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4499
4500 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_DoActionSwigExplicitCFxTracker")]
4501 public static extern bool CFxTracker_DoActionSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4502
4503 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_OnMainSelectionSetChanged")]
4504 public static extern void CFxTracker_OnMainSelectionSetChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4505
4506 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_OnMainSelectionSetChangedSwigExplicitCFxTracker")]
4507 public static extern void CFxTracker_OnMainSelectionSetChangedSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4508
4509 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_m_bAdded_set")]
4510 public static extern void CFxTracker_m_bAdded_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4511
4512 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_m_bAdded_get")]
4513 public static extern bool CFxTracker_m_bAdded_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4514
4515 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTracker_director_connect")]
4517
4518 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxTrackerContext")]
4519 public static extern void delete_CFxTrackerContext(global::System.Runtime.InteropServices.HandleRef jarg1);
4520
4521 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetWidth")]
4522 public static extern double CFxTrackerContext_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
4523
4524 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetHeight")]
4525 public static extern double CFxTrackerContext_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
4526
4527 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetFxView__SWIG_0")]
4528 public static extern global::System.IntPtr CFxTrackerContext_GetFxView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4529
4530 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_IsForActiveView")]
4531 public static extern bool CFxTrackerContext_IsForActiveView(global::System.Runtime.InteropServices.HandleRef jarg1);
4532
4533 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_0")]
4534 public static extern void CFxTrackerContext_DrawDrawable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3, int jarg4, int jarg5);
4535
4536 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_1")]
4537 public static extern void CFxTrackerContext_DrawDrawable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3, int jarg4);
4538
4539 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_2")]
4540 public static extern void CFxTrackerContext_DrawDrawable__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3);
4541
4542 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_3")]
4543 public static extern void CFxTrackerContext_DrawDrawable__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4, int jarg5);
4544
4545 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_4")]
4546 public static extern void CFxTrackerContext_DrawDrawable__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4);
4547
4548 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_DrawDrawable__SWIG_5")]
4549 public static extern void CFxTrackerContext_DrawDrawable__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
4550
4551 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetFxInputPointManager")]
4552 public static extern global::System.IntPtr CFxTrackerContext_GetFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1);
4553
4554 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetFxDocument")]
4555 public static extern global::System.IntPtr CFxTrackerContext_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
4556
4557 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetBackground")]
4558 public static extern UInt32 /*SIMPLETYPE*/ CFxTrackerContext_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1);
4559
4560 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetForeground")]
4561 public static extern UInt32 /*SIMPLETYPE*/ CFxTrackerContext_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1);
4562
4563 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_AllowRegenAbort")]
4564 public static extern void CFxTrackerContext_AllowRegenAbort(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4565
4566 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_CacheMe")]
4567 public static extern void CFxTrackerContext_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4);
4568
4569 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxTrackerContext_GetGiGeometry")]
4570 public static extern IntPtr CFxTrackerContext_GetGiGeometry(global::System.Runtime.InteropServices.HandleRef jarg1);
4571
4572 [DllImport("FxManaged.dll", EntryPoint=/*@SWIG:E:\j\Build_release\2024.0.1\ODA_Rev2372d7a_Sln\Swig\SwigODABaseRules\OdSwigPlatformSettings.i,125,STRINGIZE@*/
4573"CSharp_new_ClassPtrArray__SWIG_0"
4574/*@SWIG@*/)]
4575 public static extern IntPtr new_ClassPtrArray__SWIG_0();
4576
4577 [DllImport("FxManaged.dll", EntryPoint=/*@SWIG:E:\j\Build_release\2024.0.1\ODA_Rev2372d7a_Sln\Swig\SwigODABaseRules\OdSwigPlatformSettings.i,125,STRINGIZE@*/
4578"CSharp_new_ClassPtrArray__SWIG_1"
4579/*@SWIG@*/)]
4580 public static extern IntPtr new_ClassPtrArray__SWIG_1(HandleRef jarg1);
4581
4582 [DllImport("FxManaged.dll", EntryPoint=/*@SWIG:E:\j\Build_release\2024.0.1\ODA_Rev2372d7a_Sln\Swig\SwigODABaseRules\OdSwigPlatformSettings.i,125,STRINGIZE@*/
4583"CSharp_new_ClassPtrArray__SWIG_2"
4584/*@SWIG@*/)]
4585 public static extern IntPtr new_ClassPtrArray__SWIG_2(int jarg1);
4586
4587
4588 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Clear")]
4589 public static extern void ClassPtrArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
4590
4591 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Add")]
4592 public static extern void ClassPtrArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4593
4594 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_size")]
4595 public static extern uint ClassPtrArray_size(global::System.Runtime.InteropServices.HandleRef jarg1);
4596
4597 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_capacity")]
4598 public static extern uint ClassPtrArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
4599
4600 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_reserve")]
4601 public static extern void ClassPtrArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4602
4603 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_resize")]
4604 public static extern void ClassPtrArray_resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4605
4606 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_getitemcopy")]
4607 public static extern IntPtr ClassPtrArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4608
4609 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_getitem")]
4610 public static extern global::System.IntPtr ClassPtrArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4611
4612 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_setitem")]
4613 public static extern void ClassPtrArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4614
4615 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_AddRange")]
4616 public static extern void ClassPtrArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4617
4618 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_GetRange")]
4619 public static extern global::System.IntPtr ClassPtrArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4620
4621 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Insert")]
4622 public static extern void ClassPtrArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4623
4624 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_InsertRange")]
4625 public static extern void ClassPtrArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4626
4627 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_RemoveAt")]
4628 public static extern void ClassPtrArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4629
4630 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_RemoveRange")]
4631 public static extern void ClassPtrArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4632
4633 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Repeat")]
4634 public static extern global::System.IntPtr ClassPtrArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4635
4636 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Reverse__SWIG_0")]
4637 public static extern void ClassPtrArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4638
4639 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Reverse__SWIG_1")]
4640 public static extern void ClassPtrArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4641
4642 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_SetRange")]
4643 public static extern void ClassPtrArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4644
4645 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Contains")]
4646 public static extern bool ClassPtrArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4647
4648 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_IndexOf")]
4649 public static extern int ClassPtrArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4650
4651 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_LastIndexOf")]
4652 public static extern int ClassPtrArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4653
4654 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ClassPtrArray_Remove")]
4655 public static extern bool ClassPtrArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4656
4657 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_ClassPtrArray")]
4658 public static extern void delete_ClassPtrArray(global::System.Runtime.InteropServices.HandleRef jarg1);
4659
4660 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Clear")]
4661 public static extern void CLASS_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
4662
4663 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Add")]
4664 public static extern void CLASS_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4665
4666 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_size")]
4667 public static extern uint CLASS_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1);
4668
4669 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_capacity")]
4670 public static extern uint CLASS_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
4671
4672 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_reserve")]
4673 public static extern void CLASS_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4674
4675 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CLASS_VECTOR__SWIG_0")]
4676 public static extern global::System.IntPtr new_CLASS_VECTOR__SWIG_0();
4677
4678 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CLASS_VECTOR__SWIG_1")]
4679 public static extern global::System.IntPtr new_CLASS_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4680
4681 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CLASS_VECTOR__SWIG_2")]
4682 public static extern global::System.IntPtr new_CLASS_VECTOR__SWIG_2(int jarg1);
4683
4684 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_getitemcopy")]
4685 public static extern IntPtr CLASS_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4686
4687 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_getitem")]
4688 public static extern global::System.IntPtr CLASS_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4689
4690 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_setitem")]
4691 public static extern void CLASS_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4692
4693 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_AddRange")]
4694 public static extern void CLASS_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4695
4696 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_GetRange")]
4697 public static extern global::System.IntPtr CLASS_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4698
4699 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Insert")]
4700 public static extern void CLASS_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4701
4702 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_InsertRange")]
4703 public static extern void CLASS_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4704
4705 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_RemoveAt")]
4706 public static extern void CLASS_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4707
4708 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_RemoveRange")]
4709 public static extern void CLASS_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4710
4711 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Repeat")]
4712 public static extern global::System.IntPtr CLASS_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4713
4714 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Reverse__SWIG_0")]
4715 public static extern void CLASS_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4716
4717 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Reverse__SWIG_1")]
4718 public static extern void CLASS_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4719
4720 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_SetRange")]
4721 public static extern void CLASS_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4722
4723 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Contains")]
4724 public static extern bool CLASS_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4725
4726 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_IndexOf")]
4727 public static extern int CLASS_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4728
4729 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_LastIndexOf")]
4730 public static extern int CLASS_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4731
4732 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CLASS_VECTOR_Remove")]
4733 public static extern bool CLASS_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4734
4735 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CLASS_VECTOR")]
4736 public static extern void delete_CLASS_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1);
4737
4738 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Clear")]
4739 public static extern void SIZE_T_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
4740
4741 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Add")]
4742 public static extern void SIZE_T_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4743
4744 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_size")]
4745 public static extern uint SIZE_T_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1);
4746
4747 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_capacity")]
4748 public static extern uint SIZE_T_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
4749
4750 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_reserve")]
4751 public static extern void SIZE_T_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4752
4753 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_SIZE_T_VECTOR__SWIG_0")]
4754 public static extern global::System.IntPtr new_SIZE_T_VECTOR__SWIG_0();
4755
4756 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_SIZE_T_VECTOR__SWIG_1")]
4757 public static extern global::System.IntPtr new_SIZE_T_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4758
4759 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_SIZE_T_VECTOR__SWIG_2")]
4760 public static extern global::System.IntPtr new_SIZE_T_VECTOR__SWIG_2(int jarg1);
4761
4762 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_getitemcopy")]
4763 public static extern uint SIZE_T_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4764
4765 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_getitem")]
4766 public static extern uint SIZE_T_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4767
4768 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_setitem")]
4769 public static extern void SIZE_T_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3);
4770
4771 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_AddRange")]
4772 public static extern void SIZE_T_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4773
4774 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_GetRange")]
4775 public static extern global::System.IntPtr SIZE_T_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4776
4777 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Insert")]
4778 public static extern void SIZE_T_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3);
4779
4780 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_InsertRange")]
4781 public static extern void SIZE_T_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4782
4783 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_RemoveAt")]
4784 public static extern void SIZE_T_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4785
4786 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_RemoveRange")]
4787 public static extern void SIZE_T_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4788
4789 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Repeat")]
4790 public static extern global::System.IntPtr SIZE_T_VECTOR_Repeat(uint jarg1, int jarg2);
4791
4792 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Reverse__SWIG_0")]
4793 public static extern void SIZE_T_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4794
4795 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_Reverse__SWIG_1")]
4796 public static extern void SIZE_T_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4797
4798 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SIZE_T_VECTOR_SetRange")]
4799 public static extern void SIZE_T_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4800
4801 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_SIZE_T_VECTOR")]
4802 public static extern void delete_SIZE_T_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1);
4803
4804 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxIteratorEntityData")]
4805 public static extern void delete_CFxIteratorEntityData(global::System.Runtime.InteropServices.HandleRef jarg1);
4806
4807 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorEntityData_start")]
4808 public static extern void CFxIteratorEntityData_start(global::System.Runtime.InteropServices.HandleRef jarg1);
4809
4810 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorEntityData_step")]
4811 public static extern void CFxIteratorEntityData_step(global::System.Runtime.InteropServices.HandleRef jarg1);
4812
4813 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorEntityData_done")]
4814 public static extern bool CFxIteratorEntityData_done(global::System.Runtime.InteropServices.HandleRef jarg1);
4815
4816 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorEntityData_getObject")]
4817 public static extern global::System.IntPtr CFxIteratorEntityData_getObject(global::System.Runtime.InteropServices.HandleRef jarg1);
4818
4819 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorEntityData_seek")]
4820 public static extern bool CFxIteratorEntityData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4821
4822 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxIteratorSelectionData")]
4823 public static extern void delete_CFxIteratorSelectionData(global::System.Runtime.InteropServices.HandleRef jarg1);
4824
4825 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_start")]
4826 public static extern void CFxIteratorSelectionData_start(global::System.Runtime.InteropServices.HandleRef jarg1);
4827
4828 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_step")]
4829 public static extern void CFxIteratorSelectionData_step(global::System.Runtime.InteropServices.HandleRef jarg1);
4830
4831 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_done")]
4832 public static extern bool CFxIteratorSelectionData_done(global::System.Runtime.InteropServices.HandleRef jarg1);
4833
4834 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_getObject")]
4835 public static extern global::System.IntPtr CFxIteratorSelectionData_getObject(global::System.Runtime.InteropServices.HandleRef jarg1);
4836
4837 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxIteratorSelectionData_seek")]
4838 public static extern bool CFxIteratorSelectionData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4839
4840 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_OdStaticRxObject_OdDbSelectionSet")]
4841 public static extern void delete_OdStaticRxObject_OdDbSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1);
4842
4843 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSelectionSet")]
4844 public static extern void delete_CFxSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1);
4845
4846 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetNumber")]
4847 public static extern uint CFxSelectionSet_GetNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
4848
4849 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetFxDatabase")]
4850 public static extern IntPtr CFxSelectionSet_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1);
4851
4852 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetLength")]
4853 public static extern uint CFxSelectionSet_GetLength(global::System.Runtime.InteropServices.HandleRef jarg1);
4854
4855 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetTotalSubents")]
4856 public static extern uint CFxSelectionSet_GetTotalSubents(global::System.Runtime.InteropServices.HandleRef jarg1);
4857
4858 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetId")]
4859 public static extern global::System.IntPtr CFxSelectionSet_GetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4860
4861 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentGetLength")]
4862 public static extern uint CFxSelectionSet_SubentGetLength(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4863
4864 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentGetId")]
4865 public static extern global::System.IntPtr CFxSelectionSet_SubentGetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3);
4866
4867 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_Clear")]
4868 public static extern void CFxSelectionSet_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
4869
4870 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_IsMember__SWIG_0")]
4871 public static extern bool CFxSelectionSet_IsMember__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4872
4873 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_IsMember__SWIG_1")]
4874 public static extern bool CFxSelectionSet_IsMember__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4875
4876 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetClassesFound")]
4877 public static extern void CFxSelectionSet_GetClassesFound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4878
4879 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetCommonBaseClass")]
4880 public static extern IntPtr CFxSelectionSet_GetCommonBaseClass(global::System.Runtime.InteropServices.HandleRef jarg1);
4881
4882 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetCommonBasePEClass")]
4883 public static extern IntPtr CFxSelectionSet_GetCommonBasePEClass(global::System.Runtime.InteropServices.HandleRef jarg1);
4884
4885 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetObjectsByClass")]
4886 public static extern void CFxSelectionSet_GetObjectsByClass(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4887
4888 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetNTHX")]
4889 public static extern int CFxSelectionSet_GetNTHX(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4890
4891 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_Add")]
4892 public static extern bool CFxSelectionSet_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4893
4894 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_Remove")]
4895 public static extern bool CFxSelectionSet_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4896
4897 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentAdd")]
4898 public static extern bool CFxSelectionSet_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4899
4900 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SubentRemove")]
4901 public static extern bool CFxSelectionSet_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4902
4903 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SetCustomFilter")]
4904 public static extern void CFxSelectionSet_SetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4905
4906 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_GetCustomFilter")]
4907 public static extern global::System.IntPtr CFxSelectionSet_GetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
4908
4909 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_AddObjectFilter")]
4910 public static extern void CFxSelectionSet_AddObjectFilter(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
4911
4912 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_ClearObjectFilters")]
4913 public static extern void CFxSelectionSet_ClearObjectFilters(global::System.Runtime.InteropServices.HandleRef jarg1);
4914
4915 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Found_set")]
4916 public static extern void CFxSelectionSet_MergeResult_m_Found_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4917
4918 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Found_get")]
4919 public static extern uint CFxSelectionSet_MergeResult_m_Found_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4920
4921 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Duplicated_set")]
4922 public static extern void CFxSelectionSet_MergeResult_m_Duplicated_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4923
4924 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Duplicated_get")]
4925 public static extern uint CFxSelectionSet_MergeResult_m_Duplicated_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4926
4927 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Removed_set")]
4928 public static extern void CFxSelectionSet_MergeResult_m_Removed_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4929
4930 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Removed_get")]
4931 public static extern uint CFxSelectionSet_MergeResult_m_Removed_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4932
4933 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Groups_set")]
4934 public static extern void CFxSelectionSet_MergeResult_m_Groups_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4935
4936 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_Groups_get")]
4937 public static extern uint CFxSelectionSet_MergeResult_m_Groups_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4938
4939 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_set")]
4940 public static extern void CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4941
4942 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_get")]
4943 public static extern uint CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4944
4945 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_set")]
4946 public static extern void CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4947
4948 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_get")]
4949 public static extern uint CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4950
4951 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_set")]
4952 public static extern void CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4953
4954 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_get")]
4955 public static extern uint CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4956
4957 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_set")]
4958 public static extern void CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4959
4960 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_get")]
4961 public static extern uint CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4962
4963 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_set")]
4964 public static extern void CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4965
4966 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_get")]
4967 public static extern uint CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4968
4969 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_set")]
4970 public static extern void CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4971
4972 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_get")]
4973 public static extern uint CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4974
4975 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedCloud_set")]
4976 public static extern void CFxSelectionSet_MergeResult_m_RemovedCloud_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
4977
4978 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeResult_m_RemovedCloud_get")]
4979 public static extern uint CFxSelectionSet_MergeResult_m_RemovedCloud_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4980
4981 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxSelectionSet_MergeResult")]
4982 public static extern global::System.IntPtr new_CFxSelectionSet_MergeResult();
4983
4984 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSelectionSet_MergeResult")]
4985 public static extern void delete_CFxSelectionSet_MergeResult(global::System.Runtime.InteropServices.HandleRef jarg1);
4986
4987 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_RemoveOptions_set")]
4988 public static extern void CFxSelectionSet_MergeOptions_m_RemoveOptions_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4989
4990 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_RemoveOptions_get")]
4991 public static extern int CFxSelectionSet_MergeOptions_m_RemoveOptions_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4992
4993 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_pFilter_set")]
4994 public static extern void CFxSelectionSet_MergeOptions_m_pFilter_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4995
4996 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_pFilter_get")]
4997 public static extern global::System.IntPtr CFxSelectionSet_MergeOptions_m_pFilter_get(global::System.Runtime.InteropServices.HandleRef jarg1);
4998
4999 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_Classes_set")]
5000 public static extern void CFxSelectionSet_MergeOptions_m_Classes_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5001
5002 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_MergeOptions_m_Classes_get")]
5003 public static extern global::System.IntPtr CFxSelectionSet_MergeOptions_m_Classes_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5004
5005 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxSelectionSet_MergeOptions")]
5006 public static extern global::System.IntPtr new_CFxSelectionSet_MergeOptions();
5007
5008 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSelectionSet_MergeOptions")]
5009 public static extern void delete_CFxSelectionSet_MergeOptions(global::System.Runtime.InteropServices.HandleRef jarg1);
5010
5011 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_Merge__SWIG_0")]
5012 public static extern global::System.IntPtr CFxSelectionSet_Merge__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5013
5014 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_Merge__SWIG_1")]
5015 public static extern global::System.IntPtr CFxSelectionSet_Merge__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5016
5017 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_AddReactor")]
5018 public static extern void CFxSelectionSet_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5019
5020 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_RemoveReactor")]
5021 public static extern void CFxSelectionSet_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5022
5023 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_IsHighlightEnabled")]
5024 public static extern bool CFxSelectionSet_IsHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
5025
5026 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SetHighlightEnabled")]
5027 public static extern void CFxSelectionSet_SetHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5028
5029 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_CreateIterator")]
5030 public static extern global::System.IntPtr CFxSelectionSet_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
5031
5032 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_IsEmpty")]
5033 public static extern bool CFxSelectionSet_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
5034
5035 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByPoint")]
5036 public static extern global::System.IntPtr CFxSelectionSet_SelectByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5037
5038 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByBox")]
5039 public static extern global::System.IntPtr CFxSelectionSet_SelectByBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5040
5041 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByWindow")]
5042 public static extern global::System.IntPtr CFxSelectionSet_SelectByWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5043
5044 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByCrossingWindow")]
5045 public static extern global::System.IntPtr CFxSelectionSet_SelectByCrossingWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5046
5047 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByPolygon")]
5048 public static extern global::System.IntPtr CFxSelectionSet_SelectByPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5049
5050 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByCrossingPolygon")]
5051 public static extern global::System.IntPtr CFxSelectionSet_SelectByCrossingPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5052
5053 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByFence")]
5054 public static extern global::System.IntPtr CFxSelectionSet_SelectByFence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5055
5056 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectAll")]
5057 public static extern global::System.IntPtr CFxSelectionSet_SelectAll(global::System.Runtime.InteropServices.HandleRef jarg1);
5058
5059 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectLast")]
5060 public static extern global::System.IntPtr CFxSelectionSet_SelectLast(global::System.Runtime.InteropServices.HandleRef jarg1);
5061
5062 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectGroup")]
5063 public static extern global::System.IntPtr CFxSelectionSet_SelectGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
5064
5065 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectPrevious")]
5066 public static extern global::System.IntPtr CFxSelectionSet_SelectPrevious(global::System.Runtime.InteropServices.HandleRef jarg1);
5067
5068 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectByView")]
5069 public static extern global::System.IntPtr CFxSelectionSet_SelectByView(global::System.Runtime.InteropServices.HandleRef jarg1);
5070
5071 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSet_SelectForHatch")]
5072 public static extern global::System.IntPtr CFxSelectionSet_SelectForHatch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5073
5074 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSelectionData")]
5075 public static extern void delete_CFxSelectionData(global::System.Runtime.InteropServices.HandleRef jarg1);
5076
5077 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetMethod")]
5078 public static extern int CFxSelectionData_GetMethod(global::System.Runtime.InteropServices.HandleRef jarg1);
5079
5080 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetData")]
5081 public static extern global::System.IntPtr CFxSelectionData_GetData(global::System.Runtime.InteropServices.HandleRef jarg1);
5082
5083 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetWindowId")]
5084 public static extern int CFxSelectionData_GetWindowId(global::System.Runtime.InteropServices.HandleRef jarg1);
5085
5086 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Description_set")]
5087 public static extern void CFxSelectionData_CFxVertexData_m_Description_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5088
5089 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Description_get")]
5090 public static extern int CFxSelectionData_CFxVertexData_m_Description_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5091
5092 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Point_set")]
5093 public static extern void CFxSelectionData_CFxVertexData_m_Point_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5094
5095 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Point_get")]
5096 public static extern global::System.IntPtr CFxSelectionData_CFxVertexData_m_Point_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5097
5098 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Direction_set")]
5099 public static extern void CFxSelectionData_CFxVertexData_m_Direction_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5100
5101 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_CFxVertexData_m_Direction_get")]
5102 public static extern global::System.IntPtr CFxSelectionData_CFxVertexData_m_Direction_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5103
5104 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxSelectionData_CFxVertexData")]
5105 public static extern global::System.IntPtr new_CFxSelectionData_CFxVertexData();
5106
5107 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSelectionData_CFxVertexData")]
5108 public static extern void delete_CFxSelectionData_CFxVertexData(global::System.Runtime.InteropServices.HandleRef jarg1);
5109
5110 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetPointsCount")]
5111 public static extern uint CFxSelectionData_GetPointsCount(global::System.Runtime.InteropServices.HandleRef jarg1);
5112
5113 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetPoints")]
5114 public static extern global::System.IntPtr CFxSelectionData_GetPoints(global::System.Runtime.InteropServices.HandleRef jarg1);
5115
5116 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetNumEntities")]
5117 public static extern uint CFxSelectionData_GetNumEntities(global::System.Runtime.InteropServices.HandleRef jarg1);
5118
5119 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_IsNestedSelection")]
5120 public static extern bool CFxSelectionData_IsNestedSelection(global::System.Runtime.InteropServices.HandleRef jarg1);
5121
5122 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetSpaceId")]
5123 public static extern global::System.IntPtr CFxSelectionData_GetSpaceId(global::System.Runtime.InteropServices.HandleRef jarg1);
5124
5125 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_CreateIterator")]
5126 public static extern global::System.IntPtr CFxSelectionData_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
5127
5128 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionData_GetMode")]
5129 public static extern int CFxSelectionData_GetMode(global::System.Runtime.InteropServices.HandleRef jarg1);
5130
5131 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxEntityData")]
5132 public static extern void delete_CFxEntityData(global::System.Runtime.InteropServices.HandleRef jarg1);
5133
5134 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_GetId")]
5135 public static extern global::System.IntPtr CFxEntityData_GetId(global::System.Runtime.InteropServices.HandleRef jarg1);
5136
5137 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_GetLayerId")]
5138 public static extern global::System.IntPtr CFxEntityData_GetLayerId(global::System.Runtime.InteropServices.HandleRef jarg1);
5139
5140 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_GetDrawOrder")]
5141 public static extern uint CFxEntityData_GetDrawOrder(global::System.Runtime.InteropServices.HandleRef jarg1);
5142
5143 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_GetClass")]
5144 public static extern IntPtr CFxEntityData_GetClass(global::System.Runtime.InteropServices.HandleRef jarg1);
5145
5146 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_GetFlags")]
5147 public static extern int CFxEntityData_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
5148
5149 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_GetIndex")]
5150 public static extern int CFxEntityData_GetIndex(global::System.Runtime.InteropServices.HandleRef jarg1);
5151
5152 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_IsWholeEntitySelected")]
5153 public static extern bool CFxEntityData_IsWholeEntitySelected(global::System.Runtime.InteropServices.HandleRef jarg1);
5154
5155 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_SubentGetLength")]
5156 public static extern uint CFxEntityData_SubentGetLength(global::System.Runtime.InteropServices.HandleRef jarg1);
5157
5158 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_ContainsSubent")]
5159 public static extern bool CFxEntityData_ContainsSubent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5160
5161 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_SubentAdd")]
5162 public static extern bool CFxEntityData_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5163
5164 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_SubentRemove")]
5165 public static extern bool CFxEntityData_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5166
5167 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEntityData_CreateIterator")]
5168 public static extern global::System.IntPtr CFxEntityData_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
5169
5170 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUnitsFormatter")]
5171 public static extern void delete_CFxUnitsFormatter(global::System.Runtime.InteropServices.HandleRef jarg1);
5172
5173 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_SetFxDatabase")]
5174 public static extern void CFxUnitsFormatter_SetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5175
5176 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_GetFxDatabase")]
5177 public static extern IntPtr CFxUnitsFormatter_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1);
5178
5179 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_IntToString")]
5180 public static extern int CFxUnitsFormatter_IntToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
5181
5182 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToInt")]
5183 public static extern int CFxUnitsFormatter_StringToInt(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5184
5185 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_0")]
5186 public static extern int CFxUnitsFormatter_RealToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6);
5187
5188 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_1")]
5189 public static extern int CFxUnitsFormatter_RealToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5);
5190
5191 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_2")]
5192 public static extern int CFxUnitsFormatter_RealToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4);
5193
5194 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_RealToString__SWIG_3")]
5195 public static extern int CFxUnitsFormatter_RealToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
5196
5197 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToReal__SWIG_0")]
5198 public static extern int CFxUnitsFormatter_StringToReal__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, bool jarg5);
5199
5200 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToReal__SWIG_1")]
5201 public static extern int CFxUnitsFormatter_StringToReal__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
5202
5203 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToReal__SWIG_2")]
5204 public static extern int CFxUnitsFormatter_StringToReal__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5205
5206 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_0")]
5207 public static extern int CFxUnitsFormatter_PointToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6, char /*SIMPLETYPE*/ jarg7);
5208
5209 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_1")]
5210 public static extern int CFxUnitsFormatter_PointToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6);
5211
5212 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_2")]
5213 public static extern int CFxUnitsFormatter_PointToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5);
5214
5215 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_3")]
5216 public static extern int CFxUnitsFormatter_PointToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
5217
5218 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_4")]
5219 public static extern int CFxUnitsFormatter_PointToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5220
5221 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_5")]
5222 public static extern int CFxUnitsFormatter_PointToString__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6, char /*SIMPLETYPE*/ jarg7);
5223
5224 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_6")]
5225 public static extern int CFxUnitsFormatter_PointToString__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6);
5226
5227 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_7")]
5228 public static extern int CFxUnitsFormatter_PointToString__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5);
5229
5230 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_8")]
5231 public static extern int CFxUnitsFormatter_PointToString__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
5232
5233 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToString__SWIG_9")]
5234 public static extern int CFxUnitsFormatter_PointToString__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5235
5236 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToPoint__SWIG_0")]
5237 public static extern int CFxUnitsFormatter_StringToPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5238
5239 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToPoint__SWIG_1")]
5240 public static extern int CFxUnitsFormatter_StringToPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
5241
5242 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToPoint__SWIG_2")]
5243 public static extern int CFxUnitsFormatter_StringToPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5244
5245 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_0")]
5246 public static extern int CFxUnitsFormatter_AngleToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, bool jarg7);
5247
5248 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_1")]
5249 public static extern int CFxUnitsFormatter_AngleToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6);
5250
5251 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_2")]
5252 public static extern int CFxUnitsFormatter_AngleToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5);
5253
5254 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_3")]
5255 public static extern int CFxUnitsFormatter_AngleToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4);
5256
5257 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_4")]
5258 public static extern int CFxUnitsFormatter_AngleToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
5259
5260 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_AngleToString__SWIG_5")]
5261 public static extern int CFxUnitsFormatter_AngleToString__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8, double jarg9);
5262
5263 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_0")]
5264 public static extern int CFxUnitsFormatter_StringToAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool /*SIMPLETYPE*/ jarg5, bool jarg6);
5265
5266 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_1")]
5267 public static extern int CFxUnitsFormatter_StringToAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool /*SIMPLETYPE*/ jarg5);
5268
5269 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_2")]
5270 public static extern int CFxUnitsFormatter_StringToAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
5271
5272 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_3")]
5273 public static extern int CFxUnitsFormatter_StringToAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5274
5275 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToAngle__SWIG_4")]
5276 public static extern int CFxUnitsFormatter_StringToAngle__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool /*SIMPLETYPE*/ jarg5, int jarg6, double jarg7);
5277
5278 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointToUCS")]
5279 public static extern int CFxUnitsFormatter_PointToUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5280
5281 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_PointFromUCS")]
5282 public static extern int CFxUnitsFormatter_PointFromUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5283
5284 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_0")]
5285 public static extern int CFxUnitsFormatter_OrientToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6);
5286
5287 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_1")]
5288 public static extern int CFxUnitsFormatter_OrientToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5);
5289
5290 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_2")]
5291 public static extern int CFxUnitsFormatter_OrientToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4);
5292
5293 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_3")]
5294 public static extern int CFxUnitsFormatter_OrientToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
5295
5296 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_OrientToString__SWIG_4")]
5297 public static extern int CFxUnitsFormatter_OrientToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8, double jarg9);
5298
5299 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToOrient__SWIG_0")]
5300 public static extern int CFxUnitsFormatter_StringToOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
5301
5302 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToOrient__SWIG_1")]
5303 public static extern int CFxUnitsFormatter_StringToOrient__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5304
5305 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToOrient__SWIG_2")]
5306 public static extern int CFxUnitsFormatter_StringToOrient__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5, double jarg6);
5307
5308 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToColor")]
5309 public static extern int CFxUnitsFormatter_StringToColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5310
5311 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_ResBufToString")]
5312 public static extern int CFxUnitsFormatter_ResBufToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3);
5313
5314 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_ReadDouble__SWIG_0")]
5315 public static extern int CFxUnitsFormatter_ReadDouble__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
5316
5317 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_ReadDouble__SWIG_1")]
5318 public static extern int CFxUnitsFormatter_ReadDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5319
5320 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_NameToString")]
5321 public static extern int CFxUnitsFormatter_NameToString(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr /*OUT_ARRAY*/ jarg2);
5322
5323 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_StringToName")]
5324 public static extern int CFxUnitsFormatter_StringToName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5325
5326 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_GetUCS2WCS")]
5327 public static extern int CFxUnitsFormatter_GetUCS2WCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5328
5329 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Clear")]
5330 public static extern void TRACKER_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
5331
5332 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Add")]
5333 public static extern void TRACKER_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5334
5335 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_size")]
5336 public static extern uint TRACKER_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1);
5337
5338 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_capacity")]
5339 public static extern uint TRACKER_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
5340
5341 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_reserve")]
5342 public static extern void TRACKER_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
5343
5344 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_TRACKER_VECTOR__SWIG_0")]
5345 public static extern global::System.IntPtr new_TRACKER_VECTOR__SWIG_0();
5346
5347 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_TRACKER_VECTOR__SWIG_1")]
5348 public static extern global::System.IntPtr new_TRACKER_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5349
5350 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_TRACKER_VECTOR__SWIG_2")]
5351 public static extern global::System.IntPtr new_TRACKER_VECTOR__SWIG_2(int jarg1);
5352
5353 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_getitemcopy")]
5354 public static extern global::System.IntPtr TRACKER_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5355
5356 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_getitem")]
5357 public static extern global::System.IntPtr TRACKER_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5358
5359 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_setitem")]
5360 public static extern void TRACKER_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5361
5362 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_AddRange")]
5363 public static extern void TRACKER_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5364
5365 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_GetRange")]
5366 public static extern global::System.IntPtr TRACKER_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5367
5368 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Insert")]
5369 public static extern void TRACKER_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5370
5371 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_InsertRange")]
5372 public static extern void TRACKER_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5373
5374 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_RemoveAt")]
5375 public static extern void TRACKER_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5376
5377 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_RemoveRange")]
5378 public static extern void TRACKER_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5379
5380 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Repeat")]
5381 public static extern global::System.IntPtr TRACKER_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5382
5383 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Reverse__SWIG_0")]
5384 public static extern void TRACKER_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5385
5386 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Reverse__SWIG_1")]
5387 public static extern void TRACKER_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5388
5389 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_SetRange")]
5390 public static extern void TRACKER_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5391
5392 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Contains")]
5393 public static extern bool TRACKER_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5394
5395 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_IndexOf")]
5396 public static extern int TRACKER_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5397
5398 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_LastIndexOf")]
5399 public static extern int TRACKER_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5400
5401 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_TRACKER_VECTOR_Remove")]
5402 public static extern bool TRACKER_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5403
5404 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_TRACKER_VECTOR")]
5405 public static extern void delete_TRACKER_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1);
5406
5407 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_Clear")]
5408 public static extern void CFxStringArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
5409
5410 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_Add")]
5411 public static extern void CFxStringArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5412
5413 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_size")]
5414 public static extern uint CFxStringArray_size(global::System.Runtime.InteropServices.HandleRef jarg1);
5415
5416 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_capacity")]
5417 public static extern uint CFxStringArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
5418
5419 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_reserve")]
5420 public static extern void CFxStringArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
5421
5422 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxStringArray__SWIG_0")]
5423 public static extern global::System.IntPtr new_CFxStringArray__SWIG_0();
5424
5425 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxStringArray__SWIG_1")]
5426 public static extern global::System.IntPtr new_CFxStringArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5427
5428 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxStringArray__SWIG_2")]
5429 public static extern global::System.IntPtr new_CFxStringArray__SWIG_2(int jarg1);
5430
5431 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_getitemcopy")]
5432 public static extern global::System.IntPtr CFxStringArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5433
5434 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_getitem")]
5435 public static extern global::System.IntPtr CFxStringArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5436
5437 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_setitem")]
5438 public static extern void CFxStringArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5439
5440 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_AddRange")]
5441 public static extern void CFxStringArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5442
5443 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_GetRange")]
5444 public static extern global::System.IntPtr CFxStringArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5445
5446 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_Insert")]
5447 public static extern void CFxStringArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5448
5449 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_InsertRange")]
5450 public static extern void CFxStringArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5451
5452 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_RemoveAt")]
5453 public static extern void CFxStringArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5454
5455 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_RemoveRange")]
5456 public static extern void CFxStringArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5457
5458 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_Repeat")]
5459 public static extern global::System.IntPtr CFxStringArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5460
5461 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_Reverse__SWIG_0")]
5462 public static extern void CFxStringArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5463
5464 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_Reverse__SWIG_1")]
5465 public static extern void CFxStringArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5466
5467 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStringArray_SetRange")]
5468 public static extern void CFxStringArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5469
5470 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxStringArray")]
5471 public static extern void delete_CFxStringArray(global::System.Runtime.InteropServices.HandleRef jarg1);
5472
5473 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_Clear")]
5474 public static extern void FileNameRetValArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
5475
5476 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_Add")]
5477 public static extern void FileNameRetValArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5478
5479 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_size")]
5480 public static extern uint FileNameRetValArray_size(global::System.Runtime.InteropServices.HandleRef jarg1);
5481
5482 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_capacity")]
5483 public static extern uint FileNameRetValArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
5484
5485 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_reserve")]
5486 public static extern void FileNameRetValArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
5487
5488 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FileNameRetValArray__SWIG_0")]
5489 public static extern global::System.IntPtr new_FileNameRetValArray__SWIG_0();
5490
5491 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FileNameRetValArray__SWIG_1")]
5492 public static extern global::System.IntPtr new_FileNameRetValArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5493
5494 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_FileNameRetValArray__SWIG_2")]
5495 public static extern global::System.IntPtr new_FileNameRetValArray__SWIG_2(int jarg1);
5496
5497 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_getitemcopy")]
5498 public static extern global::System.IntPtr FileNameRetValArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5499
5500 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_getitem")]
5501 public static extern global::System.IntPtr FileNameRetValArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5502
5503 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_setitem")]
5504 public static extern void FileNameRetValArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5505
5506 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_AddRange")]
5507 public static extern void FileNameRetValArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5508
5509 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_GetRange")]
5510 public static extern global::System.IntPtr FileNameRetValArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5511
5512 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_Insert")]
5513 public static extern void FileNameRetValArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5514
5515 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_InsertRange")]
5516 public static extern void FileNameRetValArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5517
5518 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_RemoveAt")]
5519 public static extern void FileNameRetValArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5520
5521 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_RemoveRange")]
5522 public static extern void FileNameRetValArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5523
5524 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_Repeat")]
5525 public static extern global::System.IntPtr FileNameRetValArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5526
5527 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_Reverse__SWIG_0")]
5528 public static extern void FileNameRetValArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5529
5530 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_Reverse__SWIG_1")]
5531 public static extern void FileNameRetValArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5532
5533 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FileNameRetValArray_SetRange")]
5534 public static extern void FileNameRetValArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5535
5536 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_FileNameRetValArray")]
5537 public static extern void delete_FileNameRetValArray(global::System.Runtime.InteropServices.HandleRef jarg1);
5538
5539 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Min_set")]
5540 public static extern void CFxRangeDouble_m_Min_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
5541
5542 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Min_get")]
5543 public static extern double CFxRangeDouble_m_Min_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5544
5545 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Max_set")]
5546 public static extern void CFxRangeDouble_m_Max_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
5547
5548 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeDouble_m_Max_get")]
5549 public static extern double CFxRangeDouble_m_Max_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5550
5551 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxRangeDouble")]
5552 public static extern global::System.IntPtr new_CFxRangeDouble();
5553
5554 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxRangeDouble")]
5555 public static extern void delete_CFxRangeDouble(global::System.Runtime.InteropServices.HandleRef jarg1);
5556
5557 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeInt_m_Min_set")]
5558 public static extern void CFxRangeInt_m_Min_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5559
5560 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeInt_m_Min_get")]
5561 public static extern int CFxRangeInt_m_Min_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5562
5563 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeInt_m_Max_set")]
5564 public static extern void CFxRangeInt_m_Max_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5565
5566 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRangeInt_m_Max_get")]
5567 public static extern int CFxRangeInt_m_Max_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5568
5569 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxRangeInt")]
5570 public static extern global::System.IntPtr new_CFxRangeInt();
5571
5572 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxRangeInt")]
5573 public static extern void delete_CFxRangeInt(global::System.Runtime.InteropServices.HandleRef jarg1);
5574
5575 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxEdInputTracker")]
5576 public static extern global::System.IntPtr new_CFxEdInputTracker();
5577
5578 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsDrawInAllViewports")]
5579 public static extern bool CFxEdInputTracker_IsDrawInAllViewports(global::System.Runtime.InteropServices.HandleRef jarg1);
5580
5581 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsDrawInAllViewportsSwigExplicitCFxEdInputTracker")]
5582 public static extern bool CFxEdInputTracker_IsDrawInAllViewportsSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
5583
5584 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_subSetAttributes")]
5585 public static extern UInt32 /*SIMPLETYPE*/ CFxEdInputTracker_subSetAttributes(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5586
5587 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_subSetAttributesSwigExplicitCFxEdInputTracker")]
5588 public static extern UInt32 /*SIMPLETYPE*/ CFxEdInputTracker_subSetAttributesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5589
5590 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_subWorldDraw")]
5591 public static extern bool CFxEdInputTracker_subWorldDraw(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5592
5593 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_subWorldDrawSwigExplicitCFxEdInputTracker")]
5594 public static extern bool CFxEdInputTracker_subWorldDrawSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5595
5596 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_setValue")]
5597 public static extern void CFxEdInputTracker_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5598
5599 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_setValueFinal")]
5600 public static extern void CFxEdInputTracker_setValueFinal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5601
5602 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_setValueFinalSwigExplicitCFxEdInputTracker")]
5603 public static extern void CFxEdInputTracker_setValueFinalSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5604
5605 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsSuitableForContext")]
5606 public static extern bool CFxEdInputTracker_IsSuitableForContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5607
5608 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsSuitableForContextSwigExplicitCFxEdInputTracker")]
5609 public static extern bool CFxEdInputTracker_IsSuitableForContextSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5610
5611 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetFxDocument")]
5612 public static extern global::System.IntPtr CFxEdInputTracker_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
5613
5614 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetFxDocumentSwigExplicitCFxEdInputTracker")]
5615 public static extern global::System.IntPtr CFxEdInputTracker_GetFxDocumentSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
5616
5617 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetWorkingPlane")]
5618 public static extern global::System.IntPtr CFxEdInputTracker_GetWorkingPlane(global::System.Runtime.InteropServices.HandleRef jarg1);
5619
5620 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetWorkingPlaneSwigExplicitCFxEdInputTracker")]
5621 public static extern global::System.IntPtr CFxEdInputTracker_GetWorkingPlaneSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
5622
5623 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_EnablePreview")]
5624 public static extern void CFxEdInputTracker_EnablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5625
5626 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_EnablePreviewSwigExplicitCFxEdInputTracker")]
5627 public static extern void CFxEdInputTracker_EnablePreviewSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5628
5629 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsPreviewEnabled")]
5630 public static extern bool CFxEdInputTracker_IsPreviewEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
5631
5632 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_IsPreviewEnabledSwigExplicitCFxEdInputTracker")]
5633 public static extern bool CFxEdInputTracker_IsPreviewEnabledSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
5634
5635 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetName")]
5636 public static extern global::System.IntPtr CFxEdInputTracker_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
5637
5638 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetNameSwigExplicitCFxEdInputTracker")]
5639 public static extern global::System.IntPtr CFxEdInputTracker_GetNameSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
5640
5641 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetDrawDecoration")]
5642 public static extern int CFxEdInputTracker_GetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1);
5643
5644 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_GetDrawDecorationSwigExplicitCFxEdInputTracker")]
5645 public static extern int CFxEdInputTracker_GetDrawDecorationSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
5646
5647 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_addDrawables")]
5648 public static extern int CFxEdInputTracker_addDrawables(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5649
5650 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_addDrawablesSwigExplicitCFxEdInputTracker")]
5651 public static extern int CFxEdInputTracker_addDrawablesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5652
5653 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_removeDrawables")]
5654 public static extern void CFxEdInputTracker_removeDrawables(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5655
5656 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_removeDrawablesSwigExplicitCFxEdInputTracker")]
5657 public static extern void CFxEdInputTracker_removeDrawablesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
5658
5659 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxEdInputTracker")]
5660 public static extern void delete_CFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1);
5661
5662 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEdInputTracker_director_connect")]
5664
5665 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUserIO")]
5666 public static extern void delete_CFxUserIO(global::System.Runtime.InteropServices.HandleRef jarg1);
5667
5668 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_Write")]
5669 public static extern void CFxUserIO_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5670
5671 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_0")]
5672 public static extern int CFxUserIO_DoSSGet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5673
5674 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_1")]
5675 public static extern int CFxUserIO_DoSSGet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, int jarg10);
5676
5677 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_2")]
5678 public static extern int CFxUserIO_DoSSGet__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9);
5679
5680 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_3")]
5681 public static extern int CFxUserIO_DoSSGet__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5682
5683 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_4")]
5684 public static extern int CFxUserIO_DoSSGet__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5685
5686 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_5")]
5687 public static extern int CFxUserIO_DoSSGet__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5688
5689 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_6")]
5690 public static extern int CFxUserIO_DoSSGet__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5691
5692 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_7")]
5693 public static extern int CFxUserIO_DoSSGet__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
5694
5695 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoSSGet__SWIG_8")]
5696 public static extern int CFxUserIO_DoSSGet__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5697
5698 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_0")]
5699 public static extern int CFxUserIO_DoEntsel__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, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
5700
5701 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_1")]
5702 public static extern int CFxUserIO_DoEntsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7, int jarg8);
5703
5704 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_2")]
5705 public static extern int CFxUserIO_DoEntsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7);
5706
5707 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoEntsel__SWIG_3")]
5708 public static extern int CFxUserIO_DoEntsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6);
5709
5710 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_0")]
5711 public static extern int CFxUserIO_DoNentsel__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, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9, int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5712
5713 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_1")]
5714 public static extern int CFxUserIO_DoNentsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9, int jarg10);
5715
5716 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_2")]
5717 public static extern int CFxUserIO_DoNentsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9);
5718
5719 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_DoNentsel__SWIG_3")]
5720 public static extern int CFxUserIO_DoNentsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5721
5722 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetUserInput__SWIG_0")]
5723 public static extern int CFxUserIO_GetUserInput__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5724
5725 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetUserInput__SWIG_1")]
5726 public static extern global::System.IntPtr CFxUserIO_GetUserInput__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5727
5728 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_0")]
5729 public static extern int CFxUserIO_GetPoint__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, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5730
5731 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_1")]
5732 public static extern int CFxUserIO_GetPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
5733
5734 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_2")]
5735 public static extern int CFxUserIO_GetPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8);
5736
5737 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_3")]
5738 public static extern int CFxUserIO_GetPoint__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5739
5740 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_4")]
5741 public static extern int CFxUserIO_GetPoint__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5742
5743 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPoint__SWIG_5")]
5744 public static extern int CFxUserIO_GetPoint__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5745
5746 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetString__SWIG_0")]
5747 public static extern int CFxUserIO_GetString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5748
5749 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetString__SWIG_1")]
5750 public static extern int CFxUserIO_GetString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5751
5752 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetString__SWIG_2")]
5753 public static extern int CFxUserIO_GetString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5754
5755 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetKeyword__SWIG_0")]
5756 public static extern int CFxUserIO_GetKeyword__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, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5757
5758 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetKeyword__SWIG_1")]
5759 public static extern int CFxUserIO_GetKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5760
5761 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetKeyword__SWIG_2")]
5762 public static extern int CFxUserIO_GetKeyword__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
5763
5764 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_0")]
5765 public static extern int CFxUserIO_GetDouble__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5766
5767 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_1")]
5768 public static extern int CFxUserIO_GetDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5769
5770 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_2")]
5771 public static extern int CFxUserIO_GetDouble__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5772
5773 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_3")]
5774 public static extern int CFxUserIO_GetDouble__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5775
5776 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDouble__SWIG_4")]
5777 public static extern int CFxUserIO_GetDouble__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4);
5778
5779 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_0")]
5780 public static extern int CFxUserIO_GetInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5781
5782 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_1")]
5783 public static extern int CFxUserIO_GetInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5784
5785 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_2")]
5786 public static extern int CFxUserIO_GetInt__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5787
5788 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_3")]
5789 public static extern int CFxUserIO_GetInt__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5790
5791 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetInt__SWIG_4")]
5792 public static extern int CFxUserIO_GetInt__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4);
5793
5794 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_0")]
5795 public static extern int CFxUserIO_GetAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5796
5797 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_1")]
5798 public static extern int CFxUserIO_GetAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5799
5800 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_2")]
5801 public static extern int CFxUserIO_GetAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9);
5802
5803 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_3")]
5804 public static extern int CFxUserIO_GetAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5805
5806 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_4")]
5807 public static extern int CFxUserIO_GetAngle__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5808
5809 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_5")]
5810 public static extern int CFxUserIO_GetAngle__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5811
5812 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetAngle__SWIG_6")]
5813 public static extern int CFxUserIO_GetAngle__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5);
5814
5815 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_0")]
5816 public static extern int CFxUserIO_GetDirection__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5817
5818 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_1")]
5819 public static extern int CFxUserIO_GetDirection__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5820
5821 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_2")]
5822 public static extern int CFxUserIO_GetDirection__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9);
5823
5824 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_3")]
5825 public static extern int CFxUserIO_GetDirection__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5826
5827 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_4")]
5828 public static extern int CFxUserIO_GetDirection__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5829
5830 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_5")]
5831 public static extern int CFxUserIO_GetDirection__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5832
5833 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDirection__SWIG_6")]
5834 public static extern int CFxUserIO_GetDirection__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5);
5835
5836 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_0")]
5837 public static extern int CFxUserIO_GetOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5838
5839 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_1")]
5840 public static extern int CFxUserIO_GetOrient__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5841
5842 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_2")]
5843 public static extern int CFxUserIO_GetOrient__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9);
5844
5845 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_3")]
5846 public static extern int CFxUserIO_GetOrient__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5847
5848 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_4")]
5849 public static extern int CFxUserIO_GetOrient__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5850
5851 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_5")]
5852 public static extern int CFxUserIO_GetOrient__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5853
5854 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetOrient__SWIG_6")]
5855 public static extern int CFxUserIO_GetOrient__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5);
5856
5857 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_0")]
5858 public static extern int CFxUserIO_GetCorner__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, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
5859
5860 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_1")]
5861 public static extern int CFxUserIO_GetCorner__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5862
5863 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_2")]
5864 public static extern int CFxUserIO_GetCorner__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5865
5866 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_3")]
5867 public static extern int CFxUserIO_GetCorner__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5868
5869 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetCorner__SWIG_4")]
5870 public static extern int CFxUserIO_GetCorner__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5871
5872 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_0")]
5873 public static extern int CFxUserIO_GetDist__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
5874
5875 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_1")]
5876 public static extern int CFxUserIO_GetDist__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5877
5878 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_2")]
5879 public static extern int CFxUserIO_GetDist__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9);
5880
5881 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_3")]
5882 public static extern int CFxUserIO_GetDist__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5883
5884 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_4")]
5885 public static extern int CFxUserIO_GetDist__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5886
5887 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_5")]
5888 public static extern int CFxUserIO_GetDist__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5889
5890 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetDist__SWIG_6")]
5891 public static extern int CFxUserIO_GetDist__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5);
5892
5893 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_0")]
5894 public static extern int CFxUserIO_GetNoteEditor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8);
5895
5896 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_1")]
5897 public static extern int CFxUserIO_GetNoteEditor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5898
5899 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_2")]
5900 public static extern int CFxUserIO_GetNoteEditor__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5901
5902 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_3")]
5903 public static extern int CFxUserIO_GetNoteEditor__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5904
5905 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_4")]
5906 public static extern int CFxUserIO_GetNoteEditor__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
5907
5908 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_5")]
5909 public static extern int CFxUserIO_GetNoteEditor__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8);
5910
5911 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_6")]
5912 public static extern int CFxUserIO_GetNoteEditor__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
5913
5914 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_7")]
5915 public static extern int CFxUserIO_GetNoteEditor__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
5916
5917 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_8")]
5918 public static extern int CFxUserIO_GetNoteEditor__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
5919
5920 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetNoteEditor__SWIG_9")]
5921 public static extern int CFxUserIO_GetNoteEditor__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, int jarg3, int jarg4);
5922
5923 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_0")]
5924 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_0(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5925
5926 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_1")]
5927 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_1(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11);
5928
5929 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_2")]
5930 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_2(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5931
5932 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_3")]
5933 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_3(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9);
5934
5935 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNameStatic_Obsolete__SWIG_4")]
5936 public static extern int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_4(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5937
5938 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_0")]
5939 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_0(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5940
5941 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_1")]
5942 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_1(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11);
5943
5944 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_2")]
5945 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_2(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
5946
5947 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_3")]
5948 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_3(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9);
5949
5950 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_4")]
5951 public static extern int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_4(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr /*SIMPLETYPE*/ jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
5952
5953 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_0")]
5954 public static extern int CFxUserIO_GetFileName__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16);
5955
5956 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_1")]
5957 public static extern int CFxUserIO_GetFileName__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15);
5958
5959 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_2")]
5960 public static extern int CFxUserIO_GetFileName__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14);
5961
5962 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_3")]
5963 public static extern int CFxUserIO_GetFileName__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13);
5964
5965 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileName__SWIG_4")]
5966 public static extern int CFxUserIO_GetFileName__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5967
5968 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_0")]
5969 public static extern int CFxUserIO_GetFileNames__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16);
5970
5971 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_1")]
5972 public static extern int CFxUserIO_GetFileNames__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15);
5973
5974 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_2")]
5975 public static extern int CFxUserIO_GetFileNames__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14);
5976
5977 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_3")]
5978 public static extern int CFxUserIO_GetFileNames__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13);
5979
5980 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFileNames__SWIG_4")]
5981 public static extern int CFxUserIO_GetFileNames__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr /*SIMPLETYPE*/ jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12);
5982
5983 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_MessageBox")]
5984 public static extern int CFxUserIO_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, uint jarg5);
5985
5986 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_Initget__SWIG_0")]
5987 public static extern void CFxUserIO_Initget__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5988
5989 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_Initget__SWIG_1")]
5990 public static extern void CFxUserIO_Initget__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
5991
5992 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_Initget__SWIG_2")]
5993 public static extern void CFxUserIO_Initget__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5994
5995 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_SetIsPrintSelectResults")]
5996 public static extern void CFxUserIO_SetIsPrintSelectResults(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5997
5998 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetUnitsFormatter")]
5999 public static extern global::System.IntPtr CFxUserIO_GetUnitsFormatter(global::System.Runtime.InteropServices.HandleRef jarg1);
6000
6001 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_SetPromptExplanation")]
6002 public static extern void CFxUserIO_SetPromptExplanation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6003
6004 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPrompt__SWIG_0")]
6005 public static extern global::System.IntPtr CFxUserIO_GetPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6006
6007 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPrompt__SWIG_1")]
6008 public static extern global::System.IntPtr CFxUserIO_GetPrompt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6009
6010 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptPoint__SWIG_0")]
6011 public static extern global::System.IntPtr CFxUserIO_GetPromptPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6012
6013 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptPoint__SWIG_1")]
6014 public static extern global::System.IntPtr CFxUserIO_GetPromptPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6015
6016 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptString__SWIG_0")]
6017 public static extern global::System.IntPtr CFxUserIO_GetPromptString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6018
6019 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptString__SWIG_1")]
6020 public static extern global::System.IntPtr CFxUserIO_GetPromptString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6021
6022 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptDist")]
6023 public static extern global::System.IntPtr CFxUserIO_GetPromptDist(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
6024
6025 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptReal")]
6026 public static extern global::System.IntPtr CFxUserIO_GetPromptReal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
6027
6028 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptAngle__SWIG_0")]
6029 public static extern global::System.IntPtr CFxUserIO_GetPromptAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, bool jarg4);
6030
6031 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptAngle__SWIG_1")]
6032 public static extern global::System.IntPtr CFxUserIO_GetPromptAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
6033
6034 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptInt__SWIG_0")]
6035 public static extern global::System.IntPtr CFxUserIO_GetPromptInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6036
6037 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptInt__SWIG_1")]
6038 public static extern global::System.IntPtr CFxUserIO_GetPromptInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6039
6040 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptKeyword__SWIG_0")]
6041 public static extern global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6042
6043 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptKeyword__SWIG_1")]
6044 public static extern global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6045
6046 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPromptKeyword__SWIG_2")]
6047 public static extern global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
6048
6049 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_MessageLoop_Obsolete")]
6050 public static extern void CFxUserIO_MessageLoop_Obsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
6051
6052 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetPreviousSelectionSet")]
6053 public static extern global::System.IntPtr CFxUserIO_GetPreviousSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1);
6054
6055 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_SetPreviousSelectionSet")]
6056 public static extern void CFxUserIO_SetPreviousSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6057
6058 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetZoomScale")]
6059 public static extern int CFxUserIO_GetZoomScale(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6060
6061 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetFxCurrentSelectionSet")]
6062 public static extern global::System.IntPtr CFxUserIO_GetFxCurrentSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1);
6063
6064 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_IsPending")]
6065 public static extern bool CFxUserIO_IsPending(global::System.Runtime.InteropServices.HandleRef jarg1);
6066
6067 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_InitgetFlags")]
6068 public static extern int CFxUserIO_InitgetFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
6069
6070 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetActivePrompt")]
6071 public static extern global::System.IntPtr CFxUserIO_GetActivePrompt(global::System.Runtime.InteropServices.HandleRef jarg1);
6072
6073 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_SetCurrentPrompt__SWIG_0")]
6074 public static extern void CFxUserIO_SetCurrentPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6075
6076 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_SetCurrentPrompt__SWIG_1")]
6077 public static extern void CFxUserIO_SetCurrentPrompt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6078
6079 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetActiveGlobalKeywords")]
6080 public static extern global::System.IntPtr CFxUserIO_GetActiveGlobalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6081
6082 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUserIO_GetActiveLocalKeywords")]
6083 public static extern global::System.IntPtr CFxUserIO_GetActiveLocalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6084
6085 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetFxUserIO")]
6086 public static extern global::System.IntPtr GetFxUserIO(HandleRef jarg1);
6087
6088 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_NullViewportKey_get")]
6089 public static extern int NullViewportKey_get();
6090
6091 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxViewportSnapShot")]
6092 public static extern global::System.IntPtr new_CFxViewportSnapShot();
6093
6094 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_InitializeFromView")]
6095 public static extern bool CFxViewportSnapShot_InitializeFromView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6096
6097 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_InitializeFromViewInfo")]
6098 public static extern bool CFxViewportSnapShot_InitializeFromViewInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6099
6100 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_ApplyToView")]
6101 public static extern void CFxViewportSnapShot_ApplyToView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6102
6103 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetPosition")]
6104 public static extern global::System.IntPtr CFxViewportSnapShot_GetPosition(global::System.Runtime.InteropServices.HandleRef jarg1);
6105
6106 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetTarget")]
6107 public static extern global::System.IntPtr CFxViewportSnapShot_GetTarget(global::System.Runtime.InteropServices.HandleRef jarg1);
6108
6109 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetEyeVector")]
6110 public static extern global::System.IntPtr CFxViewportSnapShot_GetEyeVector(global::System.Runtime.InteropServices.HandleRef jarg1);
6111
6112 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetUpVector")]
6113 public static extern global::System.IntPtr CFxViewportSnapShot_GetUpVector(global::System.Runtime.InteropServices.HandleRef jarg1);
6114
6115 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetFieldWidth")]
6116 public static extern double CFxViewportSnapShot_GetFieldWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
6117
6118 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetFieldHeight")]
6119 public static extern double CFxViewportSnapShot_GetFieldHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
6120
6121 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetPixelWidth")]
6122 public static extern double CFxViewportSnapShot_GetPixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
6123
6124 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetPixelHeight")]
6125 public static extern double CFxViewportSnapShot_GetPixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
6126
6127 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetFocalLength")]
6128 public static extern double CFxViewportSnapShot_GetFocalLength(global::System.Runtime.InteropServices.HandleRef jarg1);
6129
6130 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetWorldToEyeMatrix")]
6131 public static extern global::System.IntPtr CFxViewportSnapShot_GetWorldToEyeMatrix(global::System.Runtime.InteropServices.HandleRef jarg1);
6132
6133 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetVisibleRect")]
6134 public static extern global::System.IntPtr CFxViewportSnapShot_GetVisibleRect(global::System.Runtime.InteropServices.HandleRef jarg1);
6135
6136 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_IsViewSettingsValid__SWIG_0")]
6137 public static extern bool CFxViewportSnapShot_IsViewSettingsValid__SWIG_0(HandleRef jarg1);
6138
6139 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_IsViewSettingsValid__SWIG_1")]
6140 public static extern bool CFxViewportSnapShot_IsViewSettingsValid__SWIG_1(HandleRef jarg1);
6141
6142 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_IsViewExtentsValid")]
6143 public static extern bool CFxViewportSnapShot_IsViewExtentsValid(global::System.Runtime.InteropServices.HandleRef jarg1);
6144
6145 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewportSnapShot_GetNumPixelsInUnitSquare")]
6146 public static extern global::System.IntPtr CFxViewportSnapShot_GetNumPixelsInUnitSquare(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
6147
6148 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxViewportSnapShot")]
6149 public static extern void delete_CFxViewportSnapShot(global::System.Runtime.InteropServices.HandleRef jarg1);
6150
6151 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxView")]
6152 public static extern void delete_CFxView(global::System.Runtime.InteropServices.HandleRef jarg1);
6153
6154 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_cast")]
6155 public static extern global::System.IntPtr CFxView_cast(HandleRef jarg1);
6156
6157 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_desc")]
6158 public static extern IntPtr CFxView_desc();
6159
6160 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_isA")]
6161 public static extern IntPtr CFxView_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
6162
6163 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_queryX")]
6164 public static extern IntPtr CFxView_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6165
6166 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_createObject")]
6167 public static extern global::System.IntPtr CFxView_createObject();
6168
6169 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetFxVectorizeDevice__SWIG_0")]
6170 public static extern global::System.IntPtr CFxView_GetFxVectorizeDevice__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6171
6172 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetViewportInternalRegionWCS")]
6173 public static extern global::System.IntPtr CFxView_GetViewportInternalRegionWCS(global::System.Runtime.InteropServices.HandleRef jarg1);
6174
6175 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetViewportExternalRegionWCS")]
6176 public static extern global::System.IntPtr CFxView_GetViewportExternalRegionWCS(global::System.Runtime.InteropServices.HandleRef jarg1);
6177
6178 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsOverall")]
6179 public static extern bool CFxView_IsOverall(global::System.Runtime.InteropServices.HandleRef jarg1);
6180
6181 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsPaperSpaceOverall")]
6182 public static extern bool CFxView_IsPaperSpaceOverall(global::System.Runtime.InteropServices.HandleRef jarg1);
6183
6184 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsActive")]
6185 public static extern bool CFxView_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6186
6187 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_SetPreviousData")]
6188 public static extern bool CFxView_SetPreviousData(global::System.Runtime.InteropServices.HandleRef jarg1);
6189
6190 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_StartTransaction")]
6191 public static extern void CFxView_StartTransaction(global::System.Runtime.InteropServices.HandleRef jarg1);
6192
6193 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_EndTransaction")]
6194 public static extern void CFxView_EndTransaction(global::System.Runtime.InteropServices.HandleRef jarg1);
6195
6196 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_InsideTransaction")]
6197 public static extern bool CFxView_InsideTransaction(global::System.Runtime.InteropServices.HandleRef jarg1);
6198
6199 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToWCS__SWIG_0")]
6200 public static extern int CFxView_PointToWCS__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);
6201
6202 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToWCS__SWIG_1")]
6203 public static extern int CFxView_PointToWCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6204
6205 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToWCSOnUCS__SWIG_0")]
6206 public static extern int CFxView_PointToWCSOnUCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6207
6208 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToWCSOnUCS__SWIG_1")]
6209 public static extern int CFxView_PointToWCSOnUCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6210
6211 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToWCSOnUCS__SWIG_2")]
6212 public static extern int CFxView_PointToWCSOnUCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6213
6214 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToSCS__SWIG_0")]
6215 public static extern void CFxView_PointToSCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6216
6217 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToSCS__SWIG_1")]
6218 public static extern void CFxView_PointToSCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6219
6220 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToSCS__SWIG_2")]
6221 public static extern void CFxView_PointToSCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6222
6223 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToView__SWIG_0")]
6224 public static extern int CFxView_PointToView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6225
6226 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PointToView__SWIG_1")]
6227 public static extern int CFxView_PointToView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6228
6229 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_EyeToPaperSpace__SWIG_0")]
6230 public static extern global::System.IntPtr CFxView_EyeToPaperSpace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6231
6232 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_EyeToPaperSpace__SWIG_1")]
6233 public static extern global::System.IntPtr CFxView_EyeToPaperSpace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6234
6235 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PaperSpaceToEye__SWIG_0")]
6236 public static extern global::System.IntPtr CFxView_PaperSpaceToEye__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6237
6238 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_PaperSpaceToEye__SWIG_1")]
6239 public static extern global::System.IntPtr CFxView_PaperSpaceToEye__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6240
6241 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_WorldToView")]
6242 public static extern global::System.IntPtr CFxView_WorldToView(global::System.Runtime.InteropServices.HandleRef jarg1);
6243
6244 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetVpNum")]
6245 public static extern int CFxView_GetVpNum(global::System.Runtime.InteropServices.HandleRef jarg1);
6246
6247 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetCadWindowId")]
6248 public static extern Int16 /*SIMPLETYPE*/ CFxView_GetCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1);
6249
6250 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetPreviousViewSettings")]
6251 public static extern global::System.IntPtr CFxView_GetPreviousViewSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
6252
6253 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_AddViewReactor")]
6254 public static extern void CFxView_AddViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6255
6256 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_RemoveViewReactor")]
6257 public static extern void CFxView_RemoveViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6258
6259 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_SetElevation")]
6260 public static extern void CFxView_SetElevation(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
6261
6262 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_Elevation")]
6263 public static extern double CFxView_Elevation(global::System.Runtime.InteropServices.HandleRef jarg1);
6264
6265 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsRectangular")]
6266 public static extern bool CFxView_IsRectangular(global::System.Runtime.InteropServices.HandleRef jarg1);
6267
6268 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_ViewExtentsWCS")]
6269 public static extern bool CFxView_ViewExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6270
6271 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_ZoomExtentsWCS")]
6272 public static extern bool CFxView_ZoomExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6273
6274 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_EnterDragMode")]
6275 public static extern void CFxView_EnterDragMode(global::System.Runtime.InteropServices.HandleRef jarg1);
6276
6277 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsDragging")]
6278 public static extern bool CFxView_IsDragging(global::System.Runtime.InteropServices.HandleRef jarg1);
6279
6280 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_LeaveDragMode")]
6281 public static extern void CFxView_LeaveDragMode(global::System.Runtime.InteropServices.HandleRef jarg1);
6282
6283 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetRealExtents__SWIG_0")]
6284 public static extern global::System.IntPtr CFxView_GetRealExtents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool /*SIMPLETYPE*/ jarg2);
6285
6286 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetRealExtents__SWIG_1")]
6287 public static extern global::System.IntPtr CFxView_GetRealExtents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6288
6289 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetGeomExtents__SWIG_0")]
6290 public static extern bool CFxView_GetGeomExtents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool /*SIMPLETYPE*/ jarg3);
6291
6292 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetGeomExtents__SWIG_1")]
6293 public static extern bool CFxView_GetGeomExtents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6294
6295 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_SetPanMode")]
6296 public static extern void CFxView_SetPanMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6297
6298 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsPanMode")]
6299 public static extern bool CFxView_IsPanMode(global::System.Runtime.InteropServices.HandleRef jarg1);
6300
6301 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_SetZoomMode")]
6302 public static extern void CFxView_SetZoomMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6303
6304 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsZoomMode")]
6305 public static extern bool CFxView_IsZoomMode(global::System.Runtime.InteropServices.HandleRef jarg1);
6306
6307 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_SetOrbitMode")]
6308 public static extern void CFxView_SetOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6309
6310 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsOrbitMode")]
6311 public static extern bool CFxView_IsOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1);
6312
6313 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsPreviousVectorizationAborted")]
6314 public static extern bool CFxView_IsPreviousVectorizationAborted(global::System.Runtime.InteropServices.HandleRef jarg1);
6315
6316 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_viewDir")]
6317 public static extern global::System.IntPtr CFxView_viewDir(global::System.Runtime.InteropServices.HandleRef jarg1);
6318
6319 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_focalLength")]
6320 public static extern double CFxView_focalLength(global::System.Runtime.InteropServices.HandleRef jarg1);
6321
6322 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_getWorldToEyeTransform")]
6323 public static extern global::System.IntPtr CFxView_getWorldToEyeTransform(global::System.Runtime.InteropServices.HandleRef jarg1);
6324
6325 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_getEyeToWorldTransform")]
6326 public static extern global::System.IntPtr CFxView_getEyeToWorldTransform(global::System.Runtime.InteropServices.HandleRef jarg1);
6327
6328 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_getEyeToScreenMatrix")]
6329 public static extern global::System.IntPtr CFxView_getEyeToScreenMatrix(global::System.Runtime.InteropServices.HandleRef jarg1);
6330
6331 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetDeviation")]
6332 public static extern double CFxView_GetDeviation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6333
6334 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_screenRect__SWIG_0")]
6335 public static extern void CFxView_screenRect__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6336
6337 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_screenRect__SWIG_1")]
6338 public static extern void CFxView_screenRect__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6339
6340 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_visibleScreenRect")]
6341 public static extern global::System.IntPtr CFxView_visibleScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1);
6342
6343 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_visibleScreenRectInViewCoordinates")]
6344 public static extern global::System.IntPtr CFxView_visibleScreenRectInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1);
6345
6346 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_screenWidth")]
6347 public static extern double CFxView_screenWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
6348
6349 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_screenHeight")]
6350 public static extern double CFxView_screenHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
6351
6352 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_visibleWidth")]
6353 public static extern double CFxView_visibleWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
6354
6355 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_visibleHeight")]
6356 public static extern double CFxView_visibleHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
6357
6358 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_viewportObjectId")]
6359 public static extern global::System.IntPtr CFxView_viewportObjectId(global::System.Runtime.InteropServices.HandleRef jarg1);
6360
6361 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_GetCorrectionScreenMatrix")]
6362 public static extern global::System.IntPtr CFxView_GetCorrectionScreenMatrix(global::System.Runtime.InteropServices.HandleRef jarg1);
6363
6364 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_numDrawables")]
6365 public static extern uint CFxView_numDrawables(global::System.Runtime.InteropServices.HandleRef jarg1);
6366
6367 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_drawableAt")]
6368 public static extern IntPtr CFxView_drawableAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6369
6370 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_IsFieldAspectMaintained")]
6371 public static extern bool CFxView_IsFieldAspectMaintained(global::System.Runtime.InteropServices.HandleRef jarg1);
6372
6373 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_SetFieldAspectMaintained")]
6374 public static extern void CFxView_SetFieldAspectMaintained(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6375
6376 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetPaperProperties")]
6377 public static extern void GetPaperProperties(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6378
6379 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetActiveFxView")]
6380 public static extern global::System.IntPtr GetActiveFxView(HandleRef jarg1);
6381
6382 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxVectorizeDevice_CreateDrawContext")]
6383 public static extern IntPtr CFxVectorizeDevice_CreateDrawContext(HandleRef jarg1, int jarg2, int jarg3);
6384
6385
6386 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_cast")]
6387 public static extern global::System.IntPtr CFxVectorizeDevice_cast(HandleRef jarg1);
6388
6389 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_desc")]
6390 public static extern IntPtr CFxVectorizeDevice_desc();
6391
6392 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_isA")]
6393 public static extern IntPtr CFxVectorizeDevice_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
6394
6395 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_queryX")]
6396 public static extern IntPtr CFxVectorizeDevice_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6397
6398 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_createObject")]
6399 public static extern global::System.IntPtr CFxVectorizeDevice_createObject();
6400
6401 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxVectorizeDevice")]
6402 public static extern void delete_CFxVectorizeDevice(global::System.Runtime.InteropServices.HandleRef jarg1);
6403
6404 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_DestroyDrawContext")]
6405 public static extern void CFxVectorizeDevice_DestroyDrawContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6406
6407 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetDeviceWidth")]
6408 public static extern double CFxVectorizeDevice_GetDeviceWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
6409
6410 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetDeviceHeight")]
6411 public static extern double CFxVectorizeDevice_GetDeviceHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
6412
6413 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_InitializeLayout")]
6414 public static extern bool CFxVectorizeDevice_InitializeLayout(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6415
6416 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_DestroyLayout")]
6417 public static extern void CFxVectorizeDevice_DestroyLayout(global::System.Runtime.InteropServices.HandleRef jarg1);
6418
6419 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_Update")]
6420 public static extern void CFxVectorizeDevice_Update(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, bool jarg4);
6421
6422 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetFxDatabase__SWIG_0")]
6423 public static extern IntPtr CFxVectorizeDevice_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6424
6425 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_AddDeviceReactor")]
6426 public static extern void CFxVectorizeDevice_AddDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6427
6428 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_RemoveDeviceReactor")]
6429 public static extern void CFxVectorizeDevice_RemoveDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6430
6431 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetCurrentRenderEngine")]
6432 public static extern int CFxVectorizeDevice_GetCurrentRenderEngine(global::System.Runtime.InteropServices.HandleRef jarg1);
6433
6434 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetLayoutId")]
6435 public static extern global::System.IntPtr CFxVectorizeDevice_GetLayoutId(global::System.Runtime.InteropServices.HandleRef jarg1);
6436
6437 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetPalette")]
6438 public static extern void CFxVectorizeDevice_SetPalette(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]UInt32[] jarg2);
6439
6440 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPalette")]
6441 public static extern global::System.IntPtr CFxVectorizeDevice_GetPalette(global::System.Runtime.InteropServices.HandleRef jarg1);
6442
6443 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetBackground__SWIG_0")]
6444 public static extern void CFxVectorizeDevice_SetBackground__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE*/ jarg2);
6445
6446 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetBackground__SWIG_1")]
6447 public static extern void CFxVectorizeDevice_SetBackground__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE*/ jarg2, bool jarg3);
6448
6449 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetBackground")]
6450 public static extern UInt32 /*SIMPLETYPE*/ CFxVectorizeDevice_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1);
6451
6452 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetForeground")]
6453 public static extern UInt32 /*SIMPLETYPE*/ CFxVectorizeDevice_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1);
6454
6455 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetActiveFxView__SWIG_0")]
6456 public static extern global::System.IntPtr CFxVectorizeDevice_GetActiveFxView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6457
6458 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetFxViewByCadWindowId")]
6459 public static extern global::System.IntPtr CFxVectorizeDevice_GetFxViewByCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
6460
6461 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPaperSpaceOverallView")]
6462 public static extern global::System.IntPtr CFxVectorizeDevice_GetPaperSpaceOverallView(global::System.Runtime.InteropServices.HandleRef jarg1);
6463
6464 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_HitTest")]
6465 public static extern global::System.IntPtr CFxVectorizeDevice_HitTest(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6466
6467 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_IsRegeneration")]
6468 public static extern bool CFxVectorizeDevice_IsRegeneration(global::System.Runtime.InteropServices.HandleRef jarg1);
6469
6470 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetRegeneration")]
6471 public static extern void CFxVectorizeDevice_SetRegeneration(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6472
6473 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_InvalidateGeometry")]
6474 public static extern void CFxVectorizeDevice_InvalidateGeometry(global::System.Runtime.InteropServices.HandleRef jarg1);
6475
6476 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPixelPerMM")]
6477 public static extern double CFxVectorizeDevice_GetPixelPerMM(global::System.Runtime.InteropServices.HandleRef jarg1);
6478
6479 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_AdjustBeforeUpdate")]
6480 public static extern void CFxVectorizeDevice_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6481
6482 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetModelLineWeights")]
6483 public static extern void CFxVectorizeDevice_GetModelLineWeights(IntPtr jarg1, double jarg2);
6484
6485 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPlotArea__SWIG_0")]
6486 public static extern bool CFxVectorizeDevice_GetPlotArea__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6487
6488 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_GetPlotArea__SWIG_1")]
6489 public static extern bool CFxVectorizeDevice_GetPlotArea__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6490
6491 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetPlotArea")]
6492 public static extern void CFxVectorizeDevice_SetPlotArea(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6493
6494 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SetUsePlotTransparency")]
6495 public static extern void CFxVectorizeDevice_SetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6496
6497 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_UsePlotTransparency")]
6498 public static extern bool CFxVectorizeDevice_UsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1);
6499
6500 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_IsInitialUpdate")]
6501 public static extern bool CFxVectorizeDevice_IsInitialUpdate(global::System.Runtime.InteropServices.HandleRef jarg1);
6502
6503
6504 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxCommand_groupName")]
6505 public static extern String CFxCommand_groupName(HandleRef jarg1);
6506
6507 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxCommand_execute")]
6508 public static extern void CFxCommand_execute(HandleRef jarg1, HandleRef jarg2);
6509
6510
6511
6512 [DllImport("FxManaged.dll", EntryPoint=/*@SWIG:E:\j\Build_release\2024.0.1\ODA_Rev2372d7a_Sln\Swig\SwigODABaseRules\OdSwigPlatformSettings.i,125,STRINGIZE@*/
6513"CSharp_new_CFxCommand"
6514/*@SWIG@*/)]
6515 public static extern IntPtr new_CFxCommand();
6516
6517
6518 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxCommand")]
6519 public static extern void delete_CFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6520
6521 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_Execute")]
6522 public static extern int CFxCommand_Execute(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6523
6524 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_undefine")]
6525 public static extern void CFxCommand_undefine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6526
6527 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_undefineSwigExplicitCFxCommand")]
6528 public static extern void CFxCommand_undefineSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6529
6530 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_flags")]
6531 public static extern Int32 /*SIMPLETYPE*/ CFxCommand_flags(global::System.Runtime.InteropServices.HandleRef jarg1);
6532
6533 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_flagsSwigExplicitCFxCommand")]
6534 public static extern Int32 /*SIMPLETYPE*/ CFxCommand_flagsSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6535
6536 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_HasFlag")]
6537 public static extern bool CFxCommand_HasFlag(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE*/ jarg2);
6538
6539 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_GetBuiltInGroupName")]
6540 public static extern global::System.IntPtr CFxCommand_GetBuiltInGroupName();
6541
6542 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_GetLISPGroupName")]
6543 public static extern global::System.IntPtr CFxCommand_GetLISPGroupName(global::System.Runtime.InteropServices.HandleRef jarg1);
6544
6545 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_Help")]
6546 public static extern void CFxCommand_Help(global::System.Runtime.InteropServices.HandleRef jarg1);
6547
6548 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_HelpSwigExplicitCFxCommand")]
6549 public static extern void CFxCommand_HelpSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6550
6551 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_OpenHelp")]
6552 public static extern void CFxCommand_OpenHelp();
6553
6554 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_GetHelpId")]
6555 public static extern uint CFxCommand_GetHelpId(global::System.Runtime.InteropServices.HandleRef jarg1);
6556
6557 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_GetHelpIdSwigExplicitCFxCommand")]
6558 public static extern uint CFxCommand_GetHelpIdSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6559
6560 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_displayName")]
6561 [return: MarshalAs(UnmanagedType.LPWStr)]
6562 public static extern String CFxCommand_displayName(global::System.Runtime.InteropServices.HandleRef jarg1);
6563
6564 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_displayNameSwigExplicitCFxCommand")]
6565 [return: MarshalAs(UnmanagedType.LPWStr)]
6566 public static extern String CFxCommand_displayNameSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6567
6568 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_director_connect")]
6570
6571 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CreateSelectionSet")]
6572 public static extern global::System.IntPtr CreateSelectionSet(HandleRef jarg1);
6573
6574 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDocumentManager")]
6575 public static extern void delete_CFxDocumentManager(global::System.Runtime.InteropServices.HandleRef jarg1);
6576
6577 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_0")]
6578 public static extern global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
6579
6580 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_1")]
6581 public static extern global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4);
6582
6583 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_2")]
6584 public static extern global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6585
6586 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_NewDocument__SWIG_3")]
6587 public static extern global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6588
6589 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_OpenDocument__SWIG_0")]
6590 public static extern global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, [MarshalAs(UnmanagedType.LPWStr)]String jarg5);
6591
6592 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_OpenDocument__SWIG_1")]
6593 public static extern global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6594
6595 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_OpenDocument__SWIG_2")]
6596 public static extern global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3);
6597
6598 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_CloseDocument")]
6599 public static extern void CFxDocumentManager_CloseDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6600
6601 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_GetActiveDocument")]
6602 public static extern global::System.IntPtr CFxDocumentManager_GetActiveDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
6603
6604 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_SetActiveDocument__SWIG_0")]
6605 public static extern void CFxDocumentManager_SetActiveDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6606
6607 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_SetActiveDocument__SWIG_1")]
6608 public static extern void CFxDocumentManager_SetActiveDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6609
6610 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentCount")]
6611 public static extern ushort CFxDocumentManager_GetDocumentCount(global::System.Runtime.InteropServices.HandleRef jarg1);
6612
6613 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentByIndex")]
6614 public static extern global::System.IntPtr CFxDocumentManager_GetDocumentByIndex(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2);
6615
6616 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentByFxNumber")]
6617 public static extern global::System.IntPtr CFxDocumentManager_GetDocumentByFxNumber(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2);
6618
6619 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_GetDocumentByFileName")]
6620 public static extern global::System.IntPtr CFxDocumentManager_GetDocumentByFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6621
6622 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_GetFxDocument")]
6623 public static extern global::System.IntPtr CFxDocumentManager_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6624
6625 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_AddReactor")]
6626 public static extern void CFxDocumentManager_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6627
6628 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_RemoveReactor")]
6629 public static extern void CFxDocumentManager_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6630
6631 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_CreateDocumentIterator")]
6632 public static extern IntPtr CFxDocumentManager_CreateDocumentIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
6633
6634 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_PushResourceHandle")]
6635 public static extern void CFxDocumentManager_PushResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6636
6637 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_PushCadResourceHandle")]
6638 public static extern void CFxDocumentManager_PushCadResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
6639
6640 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManager_PopResourceHandle")]
6641 public static extern void CFxDocumentManager_PopResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
6642
6643 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHistoryObject")]
6644 public static extern void delete_CFxHistoryObject(global::System.Runtime.InteropServices.HandleRef jarg1);
6645
6646 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObject_IsCommand")]
6647 public static extern bool CFxHistoryObject_IsCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6648
6649 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObject_IsArg")]
6650 public static extern bool CFxHistoryObject_IsArg(global::System.Runtime.InteropServices.HandleRef jarg1);
6651
6652 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObject_ToString")]
6653 public static extern bool CFxHistoryObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6654
6655 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObject_Copy")]
6656 public static extern global::System.IntPtr CFxHistoryObject_Copy(global::System.Runtime.InteropServices.HandleRef jarg1);
6657
6658 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHistoryArg")]
6659 public static extern void delete_CFxHistoryArg(global::System.Runtime.InteropServices.HandleRef jarg1);
6660
6661 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryArg_GetData")]
6662 public static extern IntPtr CFxHistoryArg_GetData(global::System.Runtime.InteropServices.HandleRef jarg1);
6663
6664 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryArg_SetData")]
6665 public static extern void CFxHistoryArg_SetData(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6666
6667 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryArg_Create")]
6668 public static extern global::System.IntPtr CFxHistoryArg_Create(HandleRef jarg1);
6669
6670 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryArg_Cast")]
6671 public static extern global::System.IntPtr CFxHistoryArg_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
6672
6673 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHistoryCommand")]
6674 public static extern void delete_CFxHistoryCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
6675
6676 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetNameLocal")]
6677 public static extern global::System.IntPtr CFxHistoryCommand_GetNameLocal(global::System.Runtime.InteropServices.HandleRef jarg1);
6678
6679 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetNameGlobal")]
6680 public static extern global::System.IntPtr CFxHistoryCommand_GetNameGlobal(global::System.Runtime.InteropServices.HandleRef jarg1);
6681
6682 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetFlags")]
6683 public static extern Int32 /*SIMPLETYPE*/ CFxHistoryCommand_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
6684
6685 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetArgCount")]
6686 public static extern int CFxHistoryCommand_GetArgCount(global::System.Runtime.InteropServices.HandleRef jarg1);
6687
6688 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_GetArg")]
6689 public static extern global::System.IntPtr CFxHistoryCommand_GetArg(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6690
6691 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_AddArg")]
6692 public static extern void CFxHistoryCommand_AddArg(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6693
6694 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_Create")]
6695 public static extern global::System.IntPtr CFxHistoryCommand_Create(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6696
6697 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_Cast")]
6698 public static extern global::System.IntPtr CFxHistoryCommand_Cast(global::System.Runtime.InteropServices.HandleRef jarg1);
6699
6700 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Clear")]
6701 public static extern void CFxHistoryObjectArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
6702
6703 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Add")]
6704 public static extern void CFxHistoryObjectArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6705
6706 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_size")]
6707 public static extern uint CFxHistoryObjectArray_size(global::System.Runtime.InteropServices.HandleRef jarg1);
6708
6709 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_capacity")]
6710 public static extern uint CFxHistoryObjectArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
6711
6712 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_reserve")]
6713 public static extern void CFxHistoryObjectArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6714
6715 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxHistoryObjectArray__SWIG_0")]
6716 public static extern global::System.IntPtr new_CFxHistoryObjectArray__SWIG_0();
6717
6718 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxHistoryObjectArray__SWIG_1")]
6719 public static extern global::System.IntPtr new_CFxHistoryObjectArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6720
6721 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxHistoryObjectArray__SWIG_2")]
6722 public static extern global::System.IntPtr new_CFxHistoryObjectArray__SWIG_2(int jarg1);
6723
6724 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_getitemcopy")]
6725 public static extern global::System.IntPtr CFxHistoryObjectArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6726
6727 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_getitem")]
6728 public static extern global::System.IntPtr CFxHistoryObjectArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6729
6730 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_setitem")]
6731 public static extern void CFxHistoryObjectArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6732
6733 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_AddRange")]
6734 public static extern void CFxHistoryObjectArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6735
6736 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_GetRange")]
6737 public static extern global::System.IntPtr CFxHistoryObjectArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
6738
6739 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Insert")]
6740 public static extern void CFxHistoryObjectArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6741
6742 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_InsertRange")]
6743 public static extern void CFxHistoryObjectArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6744
6745 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_RemoveAt")]
6746 public static extern void CFxHistoryObjectArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6747
6748 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_RemoveRange")]
6749 public static extern void CFxHistoryObjectArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
6750
6751 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Repeat")]
6752 public static extern global::System.IntPtr CFxHistoryObjectArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6753
6754 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Reverse__SWIG_0")]
6755 public static extern void CFxHistoryObjectArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6756
6757 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Reverse__SWIG_1")]
6758 public static extern void CFxHistoryObjectArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
6759
6760 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_SetRange")]
6761 public static extern void CFxHistoryObjectArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6762
6763 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Contains")]
6764 public static extern bool CFxHistoryObjectArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6765
6766 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_IndexOf")]
6767 public static extern int CFxHistoryObjectArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6768
6769 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_LastIndexOf")]
6770 public static extern int CFxHistoryObjectArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6771
6772 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryObjectArray_Remove")]
6773 public static extern bool CFxHistoryObjectArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6774
6775 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHistoryObjectArray")]
6776 public static extern void delete_CFxHistoryObjectArray(global::System.Runtime.InteropServices.HandleRef jarg1);
6777
6778 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_cast")]
6779 public static extern global::System.IntPtr CFxDocument_cast(HandleRef jarg1);
6780
6781 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_desc")]
6782 public static extern IntPtr CFxDocument_desc();
6783
6784 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_isA")]
6785 public static extern IntPtr CFxDocument_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
6786
6787 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_queryX")]
6788 public static extern IntPtr CFxDocument_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6789
6790 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_createObject")]
6791 public static extern global::System.IntPtr CFxDocument_createObject();
6792
6793 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDocument")]
6794 public static extern void delete_CFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
6795
6796 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxDisplayDevice")]
6797 public static extern global::System.IntPtr CFxDocument_GetFxDisplayDevice(global::System.Runtime.InteropServices.HandleRef jarg1);
6798
6799 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxDatabase__SWIG_0")]
6800 public static extern IntPtr CFxDocument_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6801
6802 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxAPI")]
6803 public static extern global::System.IntPtr CFxDocument_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1);
6804
6805 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxUserIO")]
6806 public static extern global::System.IntPtr CFxDocument_GetFxUserIO(global::System.Runtime.InteropServices.HandleRef jarg1);
6807
6808 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetActiveFxView")]
6809 public static extern global::System.IntPtr CFxDocument_GetActiveFxView(global::System.Runtime.InteropServices.HandleRef jarg1);
6810
6811 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxMainSelectionSet")]
6812 public static extern global::System.IntPtr CFxDocument_GetFxMainSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1);
6813
6814 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxWorkingSelectionSet")]
6815 public static extern global::System.IntPtr CFxDocument_GetFxWorkingSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1);
6816
6817 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_CreateSelectionSet__SWIG_0")]
6818 public static extern global::System.IntPtr CFxDocument_CreateSelectionSet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3);
6819
6820 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_CreateSelectionSet__SWIG_1")]
6821 public static extern global::System.IntPtr CFxDocument_CreateSelectionSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6822
6823 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxInputPointManager")]
6824 public static extern global::System.IntPtr CFxDocument_GetFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1);
6825
6826 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetHistory")]
6827 public static extern global::System.IntPtr CFxDocument_GetHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
6828
6829 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetCommandWindowHistory")]
6830 public static extern global::System.IntPtr CFxDocument_GetCommandWindowHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
6831
6832 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_AttachDatabase")]
6833 public static extern void CFxDocument_AttachDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6834
6835 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetOverallWindowHandle")]
6836 public static extern IntPtr /*SIMPLETYPE*/ CFxDocument_GetOverallWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
6837
6838 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetDocumentWindowHandle")]
6839 public static extern IntPtr /*SIMPLETYPE*/ CFxDocument_GetDocumentWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
6840
6841 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxScriptEngine")]
6842 public static extern global::System.IntPtr CFxDocument_GetFxScriptEngine(global::System.Runtime.InteropServices.HandleRef jarg1);
6843
6844 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxCommandContext")]
6845 public static extern global::System.IntPtr CFxDocument_GetFxCommandContext(global::System.Runtime.InteropServices.HandleRef jarg1);
6846
6847 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_GetFxNumber")]
6848 public static extern UInt16 /*SIMPLETYPE*/ CFxDocument_GetFxNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
6849
6850 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsInsideSelect")]
6851 public static extern bool CFxDocument_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1);
6852
6853 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsInsideEntsel")]
6854 public static extern bool CFxDocument_IsInsideEntsel(global::System.Runtime.InteropServices.HandleRef jarg1);
6855
6856 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsInsideNEntsel")]
6857 public static extern bool CFxDocument_IsInsideNEntsel(global::System.Runtime.InteropServices.HandleRef jarg1);
6858
6859 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsInsideDragSelectSequence")]
6860 public static extern bool CFxDocument_IsInsideDragSelectSequence(global::System.Runtime.InteropServices.HandleRef jarg1);
6861
6862 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsInsideDragDropSequence")]
6863 public static extern bool CFxDocument_IsInsideDragDropSequence(global::System.Runtime.InteropServices.HandleRef jarg1);
6864
6865 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsValid")]
6866 public static extern bool CFxDocument_IsValid(global::System.Runtime.InteropServices.HandleRef jarg1);
6867
6868 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_Redraw")]
6869 public static extern void CFxDocument_Redraw(global::System.Runtime.InteropServices.HandleRef jarg1);
6870
6871 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_ShrinkMemory")]
6872 public static extern void CFxDocument_ShrinkMemory(global::System.Runtime.InteropServices.HandleRef jarg1);
6873
6874 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsRefeditActive")]
6875 public static extern bool CFxDocument_IsRefeditActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6876
6877 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_IsBEditActive")]
6878 public static extern bool CFxDocument_IsBEditActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6879
6880 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ACTIVE_DOCUMENT")]
6881 public static extern global::System.IntPtr ACTIVE_DOCUMENT();
6882
6883 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxScriptEngine")]
6884 public static extern void delete_CFxScriptEngine(global::System.Runtime.InteropServices.HandleRef jarg1);
6885
6886 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxScriptEngine_LoadScript")]
6887 public static extern bool CFxScriptEngine_LoadScript(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6888
6889 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxScriptEngine_PauseScript")]
6890 public static extern void CFxScriptEngine_PauseScript(global::System.Runtime.InteropServices.HandleRef jarg1);
6891
6892 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxScriptEngine_ResumeScript")]
6893 public static extern void CFxScriptEngine_ResumeScript(global::System.Runtime.InteropServices.HandleRef jarg1);
6894
6895 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxScriptEngine_Restart")]
6896 public static extern void CFxScriptEngine_Restart(global::System.Runtime.InteropServices.HandleRef jarg1);
6897
6898 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxScriptEngine_IsActive")]
6899 public static extern bool CFxScriptEngine_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6900
6901 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetFxScriptEngine")]
6902 public static extern global::System.IntPtr GetFxScriptEngine();
6903
6904 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_cast")]
6905 public static extern IntPtr CFxDocumentIterator_cast(HandleRef jarg1);
6906
6907 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_desc")]
6908 public static extern IntPtr CFxDocumentIterator_desc();
6909
6910 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_isA")]
6911 public static extern IntPtr CFxDocumentIterator_isA(HandleRef jarg1);
6912
6913 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_queryX")]
6914 public static extern IntPtr CFxDocumentIterator_queryX(HandleRef jarg1, HandleRef jarg2);
6915
6916 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_createObject")]
6917 public static extern IntPtr CFxDocumentIterator_createObject();
6918
6919 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDocumentIterator")]
6920 public static extern void delete_CFxDocumentIterator(HandleRef jarg1);
6921
6922 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_Done")]
6923 public static extern bool CFxDocumentIterator_Done(HandleRef jarg1);
6924
6925 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_Step")]
6926 public static extern void CFxDocumentIterator_Step(HandleRef jarg1);
6927
6928 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_Document")]
6929 public static extern global::System.IntPtr CFxDocumentIterator_Document(HandleRef jarg1);
6930
6931 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_Seek")]
6932 public static extern void CFxDocumentIterator_Seek(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6933
6934 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_Start")]
6935 public static extern void CFxDocumentIterator_Start(HandleRef jarg1);
6936
6937 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_getRealClassName")]
6938 public static extern string CFxDocumentIterator_getRealClassName(IntPtr /*SIMPLETYPE*/ jarg1);
6939
6940 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_cast")]
6941 public static extern global::System.IntPtr CFxCommandContext_cast(HandleRef jarg1);
6942
6943 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_desc")]
6944 public static extern IntPtr CFxCommandContext_desc();
6945
6946 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_isA")]
6947 public static extern IntPtr CFxCommandContext_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
6948
6949 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_queryX")]
6950 public static extern IntPtr CFxCommandContext_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
6951
6952 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_createObject")]
6953 public static extern global::System.IntPtr CFxCommandContext_createObject();
6954
6955 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxCommandContext")]
6956 public static extern void delete_CFxCommandContext(global::System.Runtime.InteropServices.HandleRef jarg1);
6957
6958 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_GetFxDocument__SWIG_0")]
6959 public static extern global::System.IntPtr CFxCommandContext_GetFxDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6960
6961 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_GetFxMainSelectionSet")]
6962 public static extern global::System.IntPtr CFxCommandContext_GetFxMainSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1);
6963
6964 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_GetActiveCommandName")]
6965 public static extern global::System.IntPtr CFxCommandContext_GetActiveCommandName(global::System.Runtime.InteropServices.HandleRef jarg1);
6966
6967 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_GetTopGroupName")]
6968 public static extern global::System.IntPtr CFxCommandContext_GetTopGroupName(global::System.Runtime.InteropServices.HandleRef jarg1);
6969
6970 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_SetTopGroupName")]
6971 public static extern void CFxCommandContext_SetTopGroupName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6972
6973 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_IsQuiescent")]
6974 public static extern bool CFxCommandContext_IsQuiescent(global::System.Runtime.InteropServices.HandleRef jarg1);
6975
6976 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_IsSetVarActive")]
6977 public static extern bool CFxCommandContext_IsSetVarActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6978
6979 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_IsCommandActive")]
6980 public static extern bool CFxCommandContext_IsCommandActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6981
6982 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_IsLISPActive")]
6983 public static extern bool CFxCommandContext_IsLISPActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6984
6985 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_IsTransparentCommandActive")]
6986 public static extern bool CFxCommandContext_IsTransparentCommandActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6987
6988 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_IsScriptActive")]
6989 public static extern bool CFxCommandContext_IsScriptActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6990
6991 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_IsMultipleActive")]
6992 public static extern bool CFxCommandContext_IsMultipleActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6993
6994 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_GetCommandStackDepth")]
6995 public static extern uint CFxCommandContext_GetCommandStackDepth(global::System.Runtime.InteropServices.HandleRef jarg1);
6996
6997 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_GetInitdia")]
6998 public static extern int CFxCommandContext_GetInitdia(global::System.Runtime.InteropServices.HandleRef jarg1);
6999
7000 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_SetExpressionToExecute")]
7001 public static extern void CFxCommandContext_SetExpressionToExecute(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7002
7003 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetFxCommandContext")]
7004 public static extern global::System.IntPtr GetFxCommandContext(HandleRef jarg1);
7005
7006 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxDocumentManagerReactor")]
7007 public static extern global::System.IntPtr new_CFxDocumentManagerReactor();
7008
7009 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDocumentManagerReactor")]
7010 public static extern void delete_CFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7011
7012 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_cast")]
7013 public static extern global::System.IntPtr CFxDocumentManagerReactor_cast(HandleRef jarg1);
7014
7015 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_desc")]
7016 public static extern IntPtr CFxDocumentManagerReactor_desc();
7017
7018 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_isA")]
7019 public static extern IntPtr CFxDocumentManagerReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
7020
7021 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_isASwigExplicitCFxDocumentManagerReactor")]
7022 public static extern IntPtr CFxDocumentManagerReactor_isASwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7023
7024 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_queryX")]
7025 public static extern IntPtr CFxDocumentManagerReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7026
7027 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_queryXSwigExplicitCFxDocumentManagerReactor")]
7028 public static extern IntPtr CFxDocumentManagerReactor_queryXSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7029
7030 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_createObject")]
7031 public static extern global::System.IntPtr CFxDocumentManagerReactor_createObject();
7032
7033 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateStarted")]
7034 public static extern void CFxDocumentManagerReactor_DocumentCreateStarted(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7035
7036 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateStartedSwigExplicitCFxDocumentManagerReactor")]
7037 public static extern void CFxDocumentManagerReactor_DocumentCreateStartedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7038
7039 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreated")]
7040 public static extern void CFxDocumentManagerReactor_DocumentCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7041
7042 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreatedSwigExplicitCFxDocumentManagerReactor")]
7043 public static extern void CFxDocumentManagerReactor_DocumentCreatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7044
7045 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDestroyed")]
7046 public static extern void CFxDocumentManagerReactor_DocumentToBeDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7047
7048 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDestroyedSwigExplicitCFxDocumentManagerReactor")]
7049 public static extern void CFxDocumentManagerReactor_DocumentToBeDestroyedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7050
7051 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentDestroyed")]
7052 public static extern void CFxDocumentManagerReactor_DocumentDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7053
7054 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentDestroyedSwigExplicitCFxDocumentManagerReactor")]
7055 public static extern void CFxDocumentManagerReactor_DocumentDestroyedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7056
7057 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseAttached")]
7058 public static extern void CFxDocumentManagerReactor_DatabaseAttached(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7059
7060 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseAttachedSwigExplicitCFxDocumentManagerReactor")]
7061 public static extern void CFxDocumentManagerReactor_DatabaseAttachedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7062
7063 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseDetached")]
7064 public static extern void CFxDocumentManagerReactor_DatabaseDetached(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7065
7066 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DatabaseDetachedSwigExplicitCFxDocumentManagerReactor")]
7067 public static extern void CFxDocumentManagerReactor_DatabaseDetachedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7068
7069 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeActivated")]
7070 public static extern void CFxDocumentManagerReactor_DocumentToBeActivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7071
7072 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeActivatedSwigExplicitCFxDocumentManagerReactor")]
7073 public static extern void CFxDocumentManagerReactor_DocumentToBeActivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7074
7075 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDeactivated")]
7076 public static extern void CFxDocumentManagerReactor_DocumentToBeDeactivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7077
7078 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentToBeDeactivatedSwigExplicitCFxDocumentManagerReactor")]
7079 public static extern void CFxDocumentManagerReactor_DocumentToBeDeactivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7080
7081 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivated")]
7082 public static extern void CFxDocumentManagerReactor_DocumentActivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7083
7084 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivatedSwigExplicitCFxDocumentManagerReactor")]
7085 public static extern void CFxDocumentManagerReactor_DocumentActivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7086
7087 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateCanceled")]
7088 public static extern void CFxDocumentManagerReactor_DocumentCreateCanceled(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7089
7090 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentCreateCanceledSwigExplicitCFxDocumentManagerReactor")]
7091 public static extern void CFxDocumentManagerReactor_DocumentCreateCanceledSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7092
7093 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentBecameCurrent")]
7094 public static extern void CFxDocumentManagerReactor_DocumentBecameCurrent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7095
7096 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentBecameCurrentSwigExplicitCFxDocumentManagerReactor")]
7097 public static extern void CFxDocumentManagerReactor_DocumentBecameCurrentSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7098
7099 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivationModified")]
7100 public static extern void CFxDocumentManagerReactor_DocumentActivationModified(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7101
7102 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentActivationModifiedSwigExplicitCFxDocumentManagerReactor")]
7103 public static extern void CFxDocumentManagerReactor_DocumentActivationModifiedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7104
7105 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentPreOpen")]
7106 public static extern void CFxDocumentManagerReactor_DocumentPreOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5);
7107
7108 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_DocumentPreOpenSwigExplicitCFxDocumentManagerReactor")]
7109 public static extern void CFxDocumentManagerReactor_DocumentPreOpenSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5);
7110
7111 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_director_connect")]
7113
7114 [DllImport("FxManaged.dll", EntryPoint=/*@SWIG:E:\j\Build_release\2024.0.1\ODA_Rev2372d7a_Sln\Swig\SwigODABaseRules\OdSwigPlatformSettings.i,125,STRINGIZE@*/
7115"CSharp_new_CFxEditorReactor"
7116/*@SWIG@*/)]
7117 public static extern IntPtr new_CFxEditorReactor();
7118
7119
7120 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxEditorReactor")]
7121 public static extern void delete_CFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7122
7123 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_desc")]
7124 public static extern IntPtr CFxEditorReactor_desc();
7125
7126 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_isA")]
7127 public static extern IntPtr CFxEditorReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
7128
7129 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_isASwigExplicitCFxEditorReactor")]
7130 public static extern IntPtr CFxEditorReactor_isASwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7131
7132 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_queryX")]
7133 public static extern IntPtr CFxEditorReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7134
7135 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_queryXSwigExplicitCFxEditorReactor")]
7136 public static extern IntPtr CFxEditorReactor_queryXSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7137
7138 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameCreated")]
7139 public static extern void CFxEditorReactor_mainFrameCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7140
7141 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameCreatedSwigExplicitCFxEditorReactor")]
7142 public static extern void CFxEditorReactor_mainFrameCreatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7143
7144 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameDestroyed")]
7145 public static extern void CFxEditorReactor_mainFrameDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7146
7147 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_mainFrameDestroyedSwigExplicitCFxEditorReactor")]
7148 public static extern void CFxEditorReactor_mainFrameDestroyedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7149
7150 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_appActivated")]
7151 public static extern void CFxEditorReactor_appActivated(global::System.Runtime.InteropServices.HandleRef jarg1);
7152
7153 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_appActivatedSwigExplicitCFxEditorReactor")]
7154 public static extern void CFxEditorReactor_appActivatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7155
7156 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_appDeactivated")]
7157 public static extern void CFxEditorReactor_appDeactivated(global::System.Runtime.InteropServices.HandleRef jarg1);
7158
7159 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_appDeactivatedSwigExplicitCFxEditorReactor")]
7160 public static extern void CFxEditorReactor_appDeactivatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7161
7162 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_windowStateChanged")]
7163 public static extern void CFxEditorReactor_windowStateChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7164
7165 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_windowStateChangedSwigExplicitCFxEditorReactor")]
7166 public static extern void CFxEditorReactor_windowStateChangedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7167
7168 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetCreated")]
7169 public static extern void CFxEditorReactor_selectionSetCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7170
7171 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetCreatedSwigExplicitCFxEditorReactor")]
7172 public static extern void CFxEditorReactor_selectionSetCreatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7173
7174 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetDestroyed")]
7175 public static extern void CFxEditorReactor_selectionSetDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7176
7177 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_selectionSetDestroyedSwigExplicitCFxEditorReactor")]
7178 public static extern void CFxEditorReactor_selectionSetDestroyedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7179
7180 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_gripEditCustomOp")]
7181 public static extern void CFxEditorReactor_gripEditCustomOp(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4);
7182
7183 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_gripEditCustomOpSwigExplicitCFxEditorReactor")]
7184 public static extern void CFxEditorReactor_gripEditCustomOpSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4);
7185
7186 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_beginSaveEx")]
7187 public static extern void CFxEditorReactor_beginSaveEx(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5);
7188
7189 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_beginSaveExSwigExplicitCFxEditorReactor")]
7190 public static extern void CFxEditorReactor_beginSaveExSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5);
7191
7192 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_cancelDwgOpen")]
7193 public static extern void CFxEditorReactor_cancelDwgOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7194
7195 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_cancelDwgOpenSwigExplicitCFxEditorReactor")]
7196 public static extern void CFxEditorReactor_cancelDwgOpenSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7197
7198 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_closeAborted")]
7199 public static extern void CFxEditorReactor_closeAborted(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7200
7201 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_closeAbortedSwigExplicitCFxEditorReactor")]
7202 public static extern void CFxEditorReactor_closeAbortedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7203
7204 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_beginModalState")]
7205 public static extern void CFxEditorReactor_beginModalState(global::System.Runtime.InteropServices.HandleRef jarg1);
7206
7207 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_beginModalStateSwigExplicitCFxEditorReactor")]
7208 public static extern void CFxEditorReactor_beginModalStateSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7209
7210 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_endModalState")]
7211 public static extern void CFxEditorReactor_endModalState(global::System.Runtime.InteropServices.HandleRef jarg1);
7212
7213 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_endModalStateSwigExplicitCFxEditorReactor")]
7214 public static extern void CFxEditorReactor_endModalStateSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7215
7216 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_director_connect")]
7217 public static extern void CFxEditorReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxEditorReactor.SwigDelegateCFxEditorReactor_0 delegate0, CFxEditorReactor.SwigDelegateCFxEditorReactor_1 delegate1, CFxEditorReactor.SwigDelegateCFxEditorReactor_2 delegate2, CFxEditorReactor.SwigDelegateCFxEditorReactor_3 delegate3, CFxEditorReactor.SwigDelegateCFxEditorReactor_4 delegate4, CFxEditorReactor.SwigDelegateCFxEditorReactor_5 delegate5, CFxEditorReactor.SwigDelegateCFxEditorReactor_6 delegate6, CFxEditorReactor.SwigDelegateCFxEditorReactor_7 delegate7, CFxEditorReactor.SwigDelegateCFxEditorReactor_8 delegate8, CFxEditorReactor.SwigDelegateCFxEditorReactor_9 delegate9, CFxEditorReactor.SwigDelegateCFxEditorReactor_10 delegate10, CFxEditorReactor.SwigDelegateCFxEditorReactor_11 delegate11, CFxEditorReactor.SwigDelegateCFxEditorReactor_12 delegate12, CFxEditorReactor.SwigDelegateCFxEditorReactor_13 delegate13, CFxEditorReactor.SwigDelegateCFxEditorReactor_14 delegate14, CFxEditorReactor.SwigDelegateCFxEditorReactor_15 delegate15, CFxEditorReactor.SwigDelegateCFxEditorReactor_16 delegate16, CFxEditorReactor.SwigDelegateCFxEditorReactor_17 delegate17, CFxEditorReactor.SwigDelegateCFxEditorReactor_18 delegate18, CFxEditorReactor.SwigDelegateCFxEditorReactor_19 delegate19, CFxEditorReactor.SwigDelegateCFxEditorReactor_20 delegate20, CFxEditorReactor.SwigDelegateCFxEditorReactor_21 delegate21, CFxEditorReactor.SwigDelegateCFxEditorReactor_22 delegate22, CFxEditorReactor.SwigDelegateCFxEditorReactor_23 delegate23, CFxEditorReactor.SwigDelegateCFxEditorReactor_24 delegate24, CFxEditorReactor.SwigDelegateCFxEditorReactor_25 delegate25, CFxEditorReactor.SwigDelegateCFxEditorReactor_26 delegate26, CFxEditorReactor.SwigDelegateCFxEditorReactor_27 delegate27, CFxEditorReactor.SwigDelegateCFxEditorReactor_28 delegate28, CFxEditorReactor.SwigDelegateCFxEditorReactor_29 delegate29, CFxEditorReactor.SwigDelegateCFxEditorReactor_30 delegate30, CFxEditorReactor.SwigDelegateCFxEditorReactor_31 delegate31, CFxEditorReactor.SwigDelegateCFxEditorReactor_32 delegate32, CFxEditorReactor.SwigDelegateCFxEditorReactor_33 delegate33, CFxEditorReactor.SwigDelegateCFxEditorReactor_34 delegate34, CFxEditorReactor.SwigDelegateCFxEditorReactor_35 delegate35, CFxEditorReactor.SwigDelegateCFxEditorReactor_36 delegate36, CFxEditorReactor.SwigDelegateCFxEditorReactor_37 delegate37, CFxEditorReactor.SwigDelegateCFxEditorReactor_38 delegate38, CFxEditorReactor.SwigDelegateCFxEditorReactor_39 delegate39, CFxEditorReactor.SwigDelegateCFxEditorReactor_40 delegate40, CFxEditorReactor.SwigDelegateCFxEditorReactor_41 delegate41, CFxEditorReactor.SwigDelegateCFxEditorReactor_42 delegate42, CFxEditorReactor.SwigDelegateCFxEditorReactor_43 delegate43, CFxEditorReactor.SwigDelegateCFxEditorReactor_44 delegate44, CFxEditorReactor.SwigDelegateCFxEditorReactor_45 delegate45, CFxEditorReactor.SwigDelegateCFxEditorReactor_46 delegate46, CFxEditorReactor.SwigDelegateCFxEditorReactor_47 delegate47, CFxEditorReactor.SwigDelegateCFxEditorReactor_48 delegate48, CFxEditorReactor.SwigDelegateCFxEditorReactor_49 delegate49, CFxEditorReactor.SwigDelegateCFxEditorReactor_50 delegate50, CFxEditorReactor.SwigDelegateCFxEditorReactor_51 delegate51, CFxEditorReactor.SwigDelegateCFxEditorReactor_52 delegate52, CFxEditorReactor.SwigDelegateCFxEditorReactor_53 delegate53, CFxEditorReactor.SwigDelegateCFxEditorReactor_54 delegate54, CFxEditorReactor.SwigDelegateCFxEditorReactor_55 delegate55, CFxEditorReactor.SwigDelegateCFxEditorReactor_56 delegate56, CFxEditorReactor.SwigDelegateCFxEditorReactor_57 delegate57, CFxEditorReactor.SwigDelegateCFxEditorReactor_58 delegate58, CFxEditorReactor.SwigDelegateCFxEditorReactor_59 delegate59, CFxEditorReactor.SwigDelegateCFxEditorReactor_60 delegate60, CFxEditorReactor.SwigDelegateCFxEditorReactor_61 delegate61, CFxEditorReactor.SwigDelegateCFxEditorReactor_62 delegate62, CFxEditorReactor.SwigDelegateCFxEditorReactor_63 delegate63, CFxEditorReactor.SwigDelegateCFxEditorReactor_64 delegate64, CFxEditorReactor.SwigDelegateCFxEditorReactor_65 delegate65, CFxEditorReactor.SwigDelegateCFxEditorReactor_66 delegate66, CFxEditorReactor.SwigDelegateCFxEditorReactor_67 delegate67, CFxEditorReactor.SwigDelegateCFxEditorReactor_68 delegate68, CFxEditorReactor.SwigDelegateCFxEditorReactor_69 delegate69, CFxEditorReactor.SwigDelegateCFxEditorReactor_70 delegate70, CFxEditorReactor.SwigDelegateCFxEditorReactor_71 delegate71, CFxEditorReactor.SwigDelegateCFxEditorReactor_72 delegate72, CFxEditorReactor.SwigDelegateCFxEditorReactor_73 delegate73, CFxEditorReactor.SwigDelegateCFxEditorReactor_74 delegate74, CFxEditorReactor.SwigDelegateCFxEditorReactor_75 delegate75, CFxEditorReactor.SwigDelegateCFxEditorReactor_76 delegate76, CFxEditorReactor.SwigDelegateCFxEditorReactor_77 delegate77, CFxEditorReactor.SwigDelegateCFxEditorReactor_78 delegate78, CFxEditorReactor.SwigDelegateCFxEditorReactor_79 delegate79, CFxEditorReactor.SwigDelegateCFxEditorReactor_80 delegate80, CFxEditorReactor.SwigDelegateCFxEditorReactor_81 delegate81, CFxEditorReactor.SwigDelegateCFxEditorReactor_82 delegate82, CFxEditorReactor.SwigDelegateCFxEditorReactor_83 delegate83, CFxEditorReactor.SwigDelegateCFxEditorReactor_84 delegate84, CFxEditorReactor.SwigDelegateCFxEditorReactor_85 delegate85, CFxEditorReactor.SwigDelegateCFxEditorReactor_86 delegate86, CFxEditorReactor.SwigDelegateCFxEditorReactor_87 delegate87, CFxEditorReactor.SwigDelegateCFxEditorReactor_88 delegate88, CFxEditorReactor.SwigDelegateCFxEditorReactor_89 delegate89, CFxEditorReactor.SwigDelegateCFxEditorReactor_90 delegate90, CFxEditorReactor.SwigDelegateCFxEditorReactor_91 delegate91);
7218
7219 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxInputContextReactor")]
7220 public static extern global::System.IntPtr new_CFxInputContextReactor();
7221
7222 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxInputContextReactor")]
7223 public static extern void delete_CFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7224
7225 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_cast")]
7226 public static extern global::System.IntPtr CFxInputContextReactor_cast(HandleRef jarg1);
7227
7228 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_desc")]
7229 public static extern IntPtr CFxInputContextReactor_desc();
7230
7231 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_isA")]
7232 public static extern IntPtr CFxInputContextReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
7233
7234 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_isASwigExplicitCFxInputContextReactor")]
7235 public static extern IntPtr CFxInputContextReactor_isASwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7236
7237 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_queryX")]
7238 public static extern IntPtr CFxInputContextReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7239
7240 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_queryXSwigExplicitCFxInputContextReactor")]
7241 public static extern IntPtr CFxInputContextReactor_queryXSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7242
7243 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_createObject")]
7244 public static extern global::System.IntPtr CFxInputContextReactor_createObject();
7245
7246 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginQuiescentState")]
7247 public static extern void CFxInputContextReactor_BeginQuiescentState(global::System.Runtime.InteropServices.HandleRef jarg1);
7248
7249 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginQuiescentStateSwigExplicitCFxInputContextReactor")]
7250 public static extern void CFxInputContextReactor_BeginQuiescentStateSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7251
7252 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndQuiescentState")]
7253 public static extern void CFxInputContextReactor_EndQuiescentState(global::System.Runtime.InteropServices.HandleRef jarg1);
7254
7255 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndQuiescentStateSwigExplicitCFxInputContextReactor")]
7256 public static extern void CFxInputContextReactor_EndQuiescentStateSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
7257
7258 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetPoint")]
7259 public static extern void CFxInputContextReactor_BeginGetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7260
7261 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetPointSwigExplicitCFxInputContextReactor")]
7262 public static extern void CFxInputContextReactor_BeginGetPointSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7263
7264 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetPoint")]
7265 public static extern void CFxInputContextReactor_EndGetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7266
7267 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetPointSwigExplicitCFxInputContextReactor")]
7268 public static extern void CFxInputContextReactor_EndGetPointSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7269
7270 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetAngle")]
7271 public static extern void CFxInputContextReactor_BeginGetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7272
7273 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetAngleSwigExplicitCFxInputContextReactor")]
7274 public static extern void CFxInputContextReactor_BeginGetAngleSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7275
7276 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetAngle")]
7277 public static extern void CFxInputContextReactor_EndGetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7278
7279 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetAngleSwigExplicitCFxInputContextReactor")]
7280 public static extern void CFxInputContextReactor_EndGetAngleSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7281
7282 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetDistance")]
7283 public static extern void CFxInputContextReactor_BeginGetDistance(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7284
7285 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetDistanceSwigExplicitCFxInputContextReactor")]
7286 public static extern void CFxInputContextReactor_BeginGetDistanceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7287
7288 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetDistance")]
7289 public static extern void CFxInputContextReactor_EndGetDistance(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7290
7291 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetDistanceSwigExplicitCFxInputContextReactor")]
7292 public static extern void CFxInputContextReactor_EndGetDistanceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7293
7294 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetOrientation")]
7295 public static extern void CFxInputContextReactor_BeginGetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7296
7297 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetOrientationSwigExplicitCFxInputContextReactor")]
7298 public static extern void CFxInputContextReactor_BeginGetOrientationSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7299
7300 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetOrientation")]
7301 public static extern void CFxInputContextReactor_EndGetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7302
7303 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetOrientationSwigExplicitCFxInputContextReactor")]
7304 public static extern void CFxInputContextReactor_EndGetOrientationSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7305
7306 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetCorner")]
7307 public static extern void CFxInputContextReactor_BeginGetCorner(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7308
7309 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetCornerSwigExplicitCFxInputContextReactor")]
7310 public static extern void CFxInputContextReactor_BeginGetCornerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7311
7312 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetCorner")]
7313 public static extern void CFxInputContextReactor_EndGetCorner(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7314
7315 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetCornerSwigExplicitCFxInputContextReactor")]
7316 public static extern void CFxInputContextReactor_EndGetCornerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7317
7318 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetScaleFactor")]
7319 public static extern void CFxInputContextReactor_BeginGetScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7320
7321 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetScaleFactorSwigExplicitCFxInputContextReactor")]
7322 public static extern void CFxInputContextReactor_BeginGetScaleFactorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7323
7324 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetScaleFactor")]
7325 public static extern void CFxInputContextReactor_EndGetScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7326
7327 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetScaleFactorSwigExplicitCFxInputContextReactor")]
7328 public static extern void CFxInputContextReactor_EndGetScaleFactorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7329
7330 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetString")]
7331 public static extern void CFxInputContextReactor_BeginGetString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7332
7333 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetStringSwigExplicitCFxInputContextReactor")]
7334 public static extern void CFxInputContextReactor_BeginGetStringSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7335
7336 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetString")]
7337 public static extern void CFxInputContextReactor_EndGetString(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7338
7339 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetStringSwigExplicitCFxInputContextReactor")]
7340 public static extern void CFxInputContextReactor_EndGetStringSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7341
7342 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetKeyword")]
7343 public static extern void CFxInputContextReactor_BeginGetKeyword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7344
7345 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetKeywordSwigExplicitCFxInputContextReactor")]
7346 public static extern void CFxInputContextReactor_BeginGetKeywordSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7347
7348 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetKeyword")]
7349 public static extern void CFxInputContextReactor_EndGetKeyword(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7350
7351 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetKeywordSwigExplicitCFxInputContextReactor")]
7352 public static extern void CFxInputContextReactor_EndGetKeywordSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7353
7354 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetInteger")]
7355 public static extern void CFxInputContextReactor_BeginGetInteger(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7356
7357 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetIntegerSwigExplicitCFxInputContextReactor")]
7358 public static extern void CFxInputContextReactor_BeginGetIntegerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7359
7360 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetInteger")]
7361 public static extern void CFxInputContextReactor_EndGetInteger(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
7362
7363 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetIntegerSwigExplicitCFxInputContextReactor")]
7364 public static extern void CFxInputContextReactor_EndGetIntegerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
7365
7366 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileName")]
7367 public static extern void CFxInputContextReactor_BeginGetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7368
7369 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileNameSwigExplicitCFxInputContextReactor")]
7370 public static extern void CFxInputContextReactor_BeginGetFileNameSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7371
7372 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileName")]
7373 public static extern void CFxInputContextReactor_EndGetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7374
7375 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileNameSwigExplicitCFxInputContextReactor")]
7376 public static extern void CFxInputContextReactor_EndGetFileNameSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7377
7378 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileNames")]
7379 public static extern void CFxInputContextReactor_BeginGetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7380
7381 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetFileNamesSwigExplicitCFxInputContextReactor")]
7382 public static extern void CFxInputContextReactor_BeginGetFileNamesSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7383
7384 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileNames")]
7385 public static extern void CFxInputContextReactor_EndGetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7386
7387 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetFileNamesSwigExplicitCFxInputContextReactor")]
7388 public static extern void CFxInputContextReactor_EndGetFileNamesSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7389
7390 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetColor")]
7391 public static extern void CFxInputContextReactor_BeginGetColor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7392
7393 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetColorSwigExplicitCFxInputContextReactor")]
7394 public static extern void CFxInputContextReactor_BeginGetColorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7395
7396 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetColor")]
7397 public static extern void CFxInputContextReactor_EndGetColor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
7398
7399 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetColorSwigExplicitCFxInputContextReactor")]
7400 public static extern void CFxInputContextReactor_EndGetColorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
7401
7402 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetReal")]
7403 public static extern void CFxInputContextReactor_BeginGetReal(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7404
7405 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginGetRealSwigExplicitCFxInputContextReactor")]
7406 public static extern void CFxInputContextReactor_BeginGetRealSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7407
7408 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetReal")]
7409 public static extern void CFxInputContextReactor_EndGetReal(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7410
7411 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndGetRealSwigExplicitCFxInputContextReactor")]
7412 public static extern void CFxInputContextReactor_EndGetRealSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
7413
7414 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginEntsel")]
7415 public static extern void CFxInputContextReactor_BeginEntsel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7416
7417 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginEntselSwigExplicitCFxInputContextReactor")]
7418 public static extern void CFxInputContextReactor_BeginEntselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7419
7420 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndEntsel")]
7421 public static extern void CFxInputContextReactor_EndEntsel(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7422
7423 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndEntselSwigExplicitCFxInputContextReactor")]
7424 public static extern void CFxInputContextReactor_EndEntselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7425
7426 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginNentsel")]
7427 public static extern void CFxInputContextReactor_BeginNentsel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7428
7429 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginNentselSwigExplicitCFxInputContextReactor")]
7430 public static extern void CFxInputContextReactor_BeginNentselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7431
7432 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndNentsel")]
7433 public static extern void CFxInputContextReactor_EndNentsel(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7434
7435 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndNentselSwigExplicitCFxInputContextReactor")]
7436 public static extern void CFxInputContextReactor_EndNentselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7437
7438 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginSSGet")]
7439 public static extern void CFxInputContextReactor_BeginSSGet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7440
7441 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginSSGetSwigExplicitCFxInputContextReactor")]
7442 public static extern void CFxInputContextReactor_BeginSSGetSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7443
7444 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndSSGet")]
7445 public static extern void CFxInputContextReactor_EndSSGet(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7446
7447 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndSSGetSwigExplicitCFxInputContextReactor")]
7448 public static extern void CFxInputContextReactor_EndSSGetSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7449
7450 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginDragSequence")]
7451 public static extern void CFxInputContextReactor_BeginDragSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7452
7453 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_BeginDragSequenceSwigExplicitCFxInputContextReactor")]
7454 public static extern void CFxInputContextReactor_BeginDragSequenceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7455
7456 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndDragSequence")]
7457 public static extern void CFxInputContextReactor_EndDragSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7458
7459 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_EndDragSequenceSwigExplicitCFxInputContextReactor")]
7460 public static extern void CFxInputContextReactor_EndDragSequenceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7461
7462 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_GetInputContextManager")]
7463 public static extern global::System.IntPtr CFxInputContextReactor_GetInputContextManager(global::System.Runtime.InteropServices.HandleRef jarg1);
7464
7465 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_director_connect")]
7466 public static extern void CFxInputContextReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_0 delegate0, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_1 delegate1, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_2 delegate2, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_3 delegate3, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_4 delegate4, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_5 delegate5, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_6 delegate6, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_7 delegate7, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_8 delegate8, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_9 delegate9, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_10 delegate10, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_11 delegate11, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_12 delegate12, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_13 delegate13, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_14 delegate14, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_15 delegate15, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_16 delegate16, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_17 delegate17, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_18 delegate18, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_19 delegate19, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_20 delegate20, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_21 delegate21, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_22 delegate22, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_23 delegate23, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_24 delegate24, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_25 delegate25, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_26 delegate26, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_27 delegate27, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_28 delegate28, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_29 delegate29, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_30 delegate30, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_31 delegate31, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_32 delegate32, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_33 delegate33, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_34 delegate34, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_35 delegate35, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_36 delegate36, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_37 delegate37);
7467
7468 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactorExtended_BeginModifier")]
7469 public static extern void CFxInputContextReactorExtended_BeginModifier(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7470
7471 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactorExtended_EndModifier")]
7472 public static extern void CFxInputContextReactorExtended_EndModifier(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7473
7474 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxInputContextReactorExtended")]
7475 public static extern void delete_CFxInputContextReactorExtended(global::System.Runtime.InteropServices.HandleRef jarg1);
7476
7477 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHostAppServices")]
7478 public static extern void delete_CFxHostAppServices(global::System.Runtime.InteropServices.HandleRef jarg1);
7479
7480 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_doFullCRCCheck")]
7481 public static extern bool CFxHostAppServices_doFullCRCCheck(global::System.Runtime.InteropServices.HandleRef jarg1);
7482
7483 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_getMappedFont__SWIG_0")]
7484 public static extern bool CFxHostAppServices_getMappedFont__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
7485
7486 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_getMappedFont__SWIG_1")]
7487 public static extern bool CFxHostAppServices_getMappedFont__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7488
7489 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_isSysVarAllowed")]
7490 public static extern bool CFxHostAppServices_isSysVarAllowed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
7491
7492 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_getRawName")]
7493 public static extern global::System.IntPtr CFxHostAppServices_getRawName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7494
7495 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_getDsName")]
7496 public static extern global::System.IntPtr CFxHostAppServices_getDsName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7497
7498 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_translateAlias")]
7499 public static extern global::System.IntPtr CFxHostAppServices_translateAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7500
7501 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_LoadVariables")]
7502 public static extern void CFxHostAppServices_LoadVariables(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7503
7504 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_SaveVariables")]
7505 public static extern void CFxHostAppServices_SaveVariables(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7506
7507 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_SetVariablesDefault")]
7508 public static extern void CFxHostAppServices_SetVariablesDefault(global::System.Runtime.InteropServices.HandleRef jarg1);
7509
7510 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxMainFrame")]
7511 public static extern void delete_CFxMainFrame(global::System.Runtime.InteropServices.HandleRef jarg1);
7512
7513 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetStatusBar")]
7514 public static extern global::System.IntPtr CFxMainFrame_GetStatusBar(global::System.Runtime.InteropServices.HandleRef jarg1);
7515
7516 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetWindowHandle")]
7517 public static extern IntPtr /*SIMPLETYPE*/ CFxMainFrame_GetWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
7518
7519 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetFxWidget")]
7520 public static extern global::System.IntPtr CFxMainFrame_GetFxWidget(global::System.Runtime.InteropServices.HandleRef jarg1);
7521
7522 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetCommandLineWindowHandle")]
7523 public static extern IntPtr /*SIMPLETYPE*/ CFxMainFrame_GetCommandLineWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
7524
7525 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetCommandHistoryWindowHandle")]
7526 public static extern IntPtr /*SIMPLETYPE*/ CFxMainFrame_GetCommandHistoryWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
7527
7528 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetInput")]
7529 public static extern global::System.IntPtr CFxMainFrame_GetInput(global::System.Runtime.InteropServices.HandleRef jarg1);
7530
7531 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_SetInput")]
7532 public static extern void CFxMainFrame_SetInput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7533
7534 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_ShowPropertiesWindow")]
7535 public static extern void CFxMainFrame_ShowPropertiesWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7536
7537 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_ShowCommandWindow")]
7538 public static extern void CFxMainFrame_ShowCommandWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7539
7540 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_ShowMatrixToolbarWindow")]
7541 public static extern void CFxMainFrame_ShowMatrixToolbarWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7542
7543 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_IsTextWindowVisible")]
7544 public static extern bool CFxMainFrame_IsTextWindowVisible(global::System.Runtime.InteropServices.HandleRef jarg1);
7545
7546 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_ClearCommandWindow")]
7547 public static extern void CFxMainFrame_ClearCommandWindow(global::System.Runtime.InteropServices.HandleRef jarg1);
7548
7549 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_ShowTextWindow")]
7550 public static extern void CFxMainFrame_ShowTextWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7551
7552 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleMain_set")]
7553 public static extern void CFxMainFrame_CFxCommandWindowInfo_visibleMain_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7554
7555 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleMain_get")]
7556 public static extern bool CFxMainFrame_CFxCommandWindowInfo_visibleMain_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7557
7558 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleSecond_set")]
7559 public static extern void CFxMainFrame_CFxCommandWindowInfo_visibleSecond_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7560
7561 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_visibleSecond_get")]
7562 public static extern bool CFxMainFrame_CFxCommandWindowInfo_visibleSecond_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7563
7564 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountMain_set")]
7565 public static extern void CFxMainFrame_CFxCommandWindowInfo_linesCountMain_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7566
7567 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountMain_get")]
7568 public static extern int CFxMainFrame_CFxCommandWindowInfo_linesCountMain_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7569
7570 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_set")]
7571 public static extern void CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7572
7573 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_get")]
7574 public static extern int CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7575
7576 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxMainFrame_CFxCommandWindowInfo")]
7577 public static extern global::System.IntPtr new_CFxMainFrame_CFxCommandWindowInfo();
7578
7579 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxMainFrame_CFxCommandWindowInfo")]
7580 public static extern void delete_CFxMainFrame_CFxCommandWindowInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
7581
7582 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetCommandWindowInfo")]
7583 public static extern int CFxMainFrame_GetCommandWindowInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7584
7585 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_hideApplicationWindows")]
7586 public static extern void CFxMainFrame_hideApplicationWindows(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7587
7588 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_SetTitleSuffix")]
7589 public static extern void CFxMainFrame_SetTitleSuffix(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7590
7591 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_IsVisible")]
7592 public static extern bool CFxMainFrame_CFxToolBars_IsVisible(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7593
7594 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_SetVisible__SWIG_0")]
7595 public static extern void CFxMainFrame_CFxToolBars_SetVisible__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7596
7597 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_SetVisible__SWIG_1")]
7598 public static extern void CFxMainFrame_CFxToolBars_SetVisible__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7599
7600 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_CFxToolBars_SaveState")]
7601 public static extern void CFxMainFrame_CFxToolBars_SaveState(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7602
7603 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxMainFrame_CFxToolBars")]
7604 public static extern void delete_CFxMainFrame_CFxToolBars(global::System.Runtime.InteropServices.HandleRef jarg1);
7605
7606 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxMainFrame_GetToolBars")]
7607 public static extern global::System.IntPtr CFxMainFrame_GetToolBars(global::System.Runtime.InteropServices.HandleRef jarg1);
7608
7609 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_fxToolBars")]
7610 public static extern global::System.IntPtr fxToolBars();
7611
7612 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_cast")]
7613 public static extern global::System.IntPtr CFxInputPointManager_cast(HandleRef jarg1);
7614
7615 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_desc")]
7616 public static extern IntPtr CFxInputPointManager_desc();
7617
7618 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_isA")]
7619 public static extern IntPtr CFxInputPointManager_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
7620
7621 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_queryX")]
7622 public static extern IntPtr CFxInputPointManager_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
7623
7624 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_createObject")]
7625 public static extern global::System.IntPtr CFxInputPointManager_createObject();
7626
7627 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxInputPointManager")]
7628 public static extern void delete_CFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1);
7629
7630 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_AddInputContextReactor")]
7631 public static extern void CFxInputPointManager_AddInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7632
7633 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_RemoveInputContextReactor")]
7634 public static extern void CFxInputPointManager_RemoveInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7635
7636 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_AddTracker")]
7637 public static extern void CFxInputPointManager_AddTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7638
7639 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_RemoveTracker")]
7640 public static extern void CFxInputPointManager_RemoveTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7641
7642 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetHitTestInfo")]
7643 public static extern global::System.IntPtr CFxInputPointManager_GetHitTestInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
7644
7645 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsUpdateTrackersActive")]
7646 public static extern bool CFxInputPointManager_IsUpdateTrackersActive(global::System.Runtime.InteropServices.HandleRef jarg1);
7647
7648 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsDrawTrackersActive")]
7649 public static extern bool CFxInputPointManager_IsDrawTrackersActive(global::System.Runtime.InteropServices.HandleRef jarg1);
7650
7651 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_AddGrVecsVector")]
7652 public static extern void CFxInputPointManager_AddGrVecsVector(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6);
7653
7654 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetPrimaryPoint")]
7655 public static extern global::System.IntPtr CFxInputPointManager_GetPrimaryPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7656
7657 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetPrimaryClickPoint")]
7658 public static extern global::System.IntPtr CFxInputPointManager_GetPrimaryClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7659
7660 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetBasePoint")]
7661 public static extern global::System.IntPtr CFxInputPointManager_GetBasePoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7662
7663 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetBasePoint")]
7664 public static extern void CFxInputPointManager_SetBasePoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7665
7666 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetRubberLinePoint")]
7667 public static extern void CFxInputPointManager_SetRubberLinePoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7668
7669 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetOtrackPoint")]
7670 public static extern global::System.IntPtr CFxInputPointManager_GetOtrackPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7671
7672 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetRubberLinePoint")]
7673 public static extern global::System.IntPtr CFxInputPointManager_GetRubberLinePoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7674
7675 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetRubberLineClickPoint")]
7676 public static extern global::System.IntPtr CFxInputPointManager_GetRubberLineClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7677
7678 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCursorPoint")]
7679 public static extern global::System.IntPtr CFxInputPointManager_GetCursorPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7680
7681 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCursorClickPoint")]
7682 public static extern global::System.IntPtr CFxInputPointManager_GetCursorClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7683
7684 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetOrthoPoint")]
7685 public static extern global::System.IntPtr CFxInputPointManager_GetOrthoPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7686
7687 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetOsnapPoint")]
7688 public static extern global::System.IntPtr CFxInputPointManager_GetOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7689
7690 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetOsnapPoint__SWIG_0")]
7691 public static extern void CFxInputPointManager_SetOsnapPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7692
7693 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetOsnapPoint__SWIG_1")]
7694 public static extern void CFxInputPointManager_SetOsnapPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7695
7696 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetSelectionSet__SWIG_0")]
7697 public static extern global::System.IntPtr CFxInputPointManager_GetSelectionSet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7698
7699 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetSelectionSet__SWIG_1")]
7700 public static extern global::System.IntPtr CFxInputPointManager_GetSelectionSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7701
7702 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetSelectionSetCopy")]
7703 public static extern global::System.IntPtr CFxInputPointManager_GetSelectionSetCopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7704
7705 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOsnapCalculation")]
7706 public static extern void CFxInputPointManager_EnableOsnapCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7707
7708 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOsnapCalculationEnabled")]
7709 public static extern bool CFxInputPointManager_IsOsnapCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
7710
7711 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOtrackCalculation")]
7712 public static extern void CFxInputPointManager_EnableOtrackCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7713
7714 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOtrackCalculationEnabled")]
7715 public static extern bool CFxInputPointManager_IsOtrackCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
7716
7717 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOrthoCalculation")]
7718 public static extern void CFxInputPointManager_EnableOrthoCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7719
7720 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOrthoCalculationEnabled")]
7721 public static extern bool CFxInputPointManager_IsOrthoCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
7722
7723 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableGripsCalculation")]
7724 public static extern void CFxInputPointManager_EnableGripsCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7725
7726 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsGripsCalculationEnabled")]
7727 public static extern bool CFxInputPointManager_IsGripsCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
7728
7729 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableSnapCalculation")]
7730 public static extern void CFxInputPointManager_EnableSnapCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7731
7732 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsSnapCalculationEnabled")]
7733 public static extern bool CFxInputPointManager_IsSnapCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
7734
7735 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsOtrackPolarCalculationEnabled")]
7736 public static extern bool CFxInputPointManager_IsOtrackPolarCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
7737
7738 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_IsCursorSnapping")]
7739 public static extern bool CFxInputPointManager_IsCursorSnapping(global::System.Runtime.InteropServices.HandleRef jarg1);
7740
7741 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_EnableOtrackPolarCalculation")]
7742 public static extern void CFxInputPointManager_EnableOtrackPolarCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7743
7744 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCurrentOSMODE")]
7745 public static extern Int16 /*SIMPLETYPE*/ CFxInputPointManager_GetCurrentOSMODE(global::System.Runtime.InteropServices.HandleRef jarg1);
7746
7747 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetCurrentOSMODE")]
7748 public static extern void CFxInputPointManager_SetCurrentOSMODE(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 /*SIMPLETYPE*/ jarg2);
7749
7750 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetWorkingPlane")]
7751 public static extern global::System.IntPtr CFxInputPointManager_GetWorkingPlane(global::System.Runtime.InteropServices.HandleRef jarg1);
7752
7753 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_AddOtrackBasePoint__SWIG_0")]
7754 public static extern void CFxInputPointManager_AddOtrackBasePoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7755
7756 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_AddOtrackBasePoint__SWIG_1")]
7757 public static extern void CFxInputPointManager_AddOtrackBasePoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7758
7759 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_ClearOtrackBasePoints")]
7760 public static extern void CFxInputPointManager_ClearOtrackBasePoints(global::System.Runtime.InteropServices.HandleRef jarg1);
7761
7762 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SkipCurrentInputPoint__SWIG_0")]
7763 public static extern void CFxInputPointManager_SkipCurrentInputPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7764
7765 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SkipCurrentInputPoint__SWIG_1")]
7766 public static extern void CFxInputPointManager_SkipCurrentInputPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7767
7768 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetFxDocument")]
7769 public static extern global::System.IntPtr CFxInputPointManager_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
7770
7771 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_WorldToWorkingPlaneMatrix")]
7772 public static extern global::System.IntPtr CFxInputPointManager_WorldToWorkingPlaneMatrix(global::System.Runtime.InteropServices.HandleRef jarg1);
7773
7774 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetWorkingPlaneSystem")]
7775 public static extern void CFxInputPointManager_GetWorkingPlaneSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7776
7777 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetCursorSystem")]
7778 public static extern void CFxInputPointManager_GetCursorSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7779
7780 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetElevatedUcsPlane")]
7781 public static extern void CFxInputPointManager_GetElevatedUcsPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7782
7783 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetWorkPlane")]
7784 public static extern void CFxInputPointManager_GetWorkPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7785
7786 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_AllowAbortOperation")]
7787 public static extern void CFxInputPointManager_AllowAbortOperation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7788
7789 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_OperationAborted")]
7790 public static extern bool CFxInputPointManager_OperationAborted(global::System.Runtime.InteropServices.HandleRef jarg1);
7791
7792 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_ResetAbortOperation")]
7793 public static extern void CFxInputPointManager_ResetAbortOperation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, uint jarg3);
7794
7795 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_0")]
7796 public static extern bool CFxInputPointManager_CalculateWCSToSnapMatrix__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, global::System.Runtime.InteropServices.HandleRef jarg5);
7797
7798 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_1")]
7799 public static extern bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7800
7801 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_2")]
7802 public static extern bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7803
7804 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetPrimaryPoint__SWIG_0")]
7805 public static extern void CFxInputPointManager_SetPrimaryPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7806
7807 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetPrimaryPoint__SWIG_1")]
7808 public static extern void CFxInputPointManager_SetPrimaryPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7809
7810 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_CacheMe")]
7811 public static extern void CFxInputPointManager_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4);
7812
7813 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetRibbonContextualState")]
7814 public static extern global::System.IntPtr CFxInputPointManager_GetRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1);
7815
7816 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetRibbonContextualState")]
7817 public static extern void CFxInputPointManager_SetRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7818
7819 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetDraggingPreview")]
7820 public static extern global::System.IntPtr CFxInputPointManager_GetDraggingPreview(global::System.Runtime.InteropServices.HandleRef jarg1);
7821
7822 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SetDraggingPreview")]
7823 public static extern void CFxInputPointManager_SetDraggingPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7824
7825 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_GetLastOsnapPoint")]
7826 public static extern global::System.IntPtr CFxInputPointManager_GetLastOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7827
7828 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxRibbonContextualState")]
7829 public static extern void delete_CFxRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1);
7830
7831 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRibbonContextualState_GetType")]
7832 public static extern int CFxRibbonContextualState_GetType(global::System.Runtime.InteropServices.HandleRef jarg1);
7833
7834 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRibbonContextualState_GetData")]
7835 public static extern IntPtr /*SIMPLETYPE*/ CFxRibbonContextualState_GetData(global::System.Runtime.InteropServices.HandleRef jarg1);
7836
7837 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxString__SWIG_0")]
7838 public static extern global::System.IntPtr new_CFxString__SWIG_0();
7839
7840 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxString__SWIG_1")]
7841 public static extern global::System.IntPtr new_CFxString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7842
7843 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxString__SWIG_2")]
7844 public static extern global::System.IntPtr new_CFxString__SWIG_2([MarshalAs(UnmanagedType.LPWStr)]String jarg1, uint jarg2);
7845
7846 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxString__SWIG_3")]
7847 public static extern global::System.IntPtr new_CFxString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1);
7848
7849 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxString__SWIG_4")]
7850 public static extern global::System.IntPtr new_CFxString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
7851
7852 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxString__SWIG_5")]
7853 public static extern global::System.IntPtr new_CFxString__SWIG_5([MarshalAs(UnmanagedType.LPWStr)]String jarg1);
7854
7855 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxString__SWIG_6")]
7856 public static extern global::System.IntPtr new_CFxString__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1);
7857
7858 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxString")]
7859 public static extern void delete_CFxString(global::System.Runtime.InteropServices.HandleRef jarg1);
7860
7861 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_getAllocLength")]
7862 public static extern int CFxString_getAllocLength(global::System.Runtime.InteropServices.HandleRef jarg1);
7863
7864 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_getLength")]
7865 public static extern int CFxString_getLength(global::System.Runtime.InteropServices.HandleRef jarg1);
7866
7867 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_isNull")]
7868 public static extern bool CFxString_isNull(global::System.Runtime.InteropServices.HandleRef jarg1);
7869
7870 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_isEmpty")]
7871 public static extern bool CFxString_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
7872
7873 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_empty")]
7874 public static extern void CFxString_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
7875
7876 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_clear")]
7877 public static extern void CFxString_clear(global::System.Runtime.InteropServices.HandleRef jarg1);
7878
7879 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_getAtA")]
7880 public static extern char CFxString_getAtA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7881
7882 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_getAtWW")]
7883 public static extern global::System.IntPtr CFxString_getAtWW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7884
7885 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_getAtWU")]
7886 public static extern char /*SIMPLETYPE*/ CFxString_getAtWU(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7887
7888 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_ansi_str")]
7889 public static extern string CFxString_ansi_str(global::System.Runtime.InteropServices.HandleRef jarg1);
7890
7891 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_from_ansi_str__SWIG_0")]
7892 public static extern global::System.IntPtr CFxString_from_ansi_str__SWIG_0(string jarg1);
7893
7894 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_from_ansi_str__SWIG_1")]
7895 public static extern global::System.IntPtr CFxString_from_ansi_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7896
7897 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_utf8_str")]
7898 public static extern global::System.IntPtr CFxString_utf8_str(global::System.Runtime.InteropServices.HandleRef jarg1);
7899
7900 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_from_utf8_str__SWIG_0")]
7901 public static extern global::System.IntPtr CFxString_from_utf8_str__SWIG_0(string jarg1);
7902
7903 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_from_utf8_str__SWIG_1")]
7904 public static extern global::System.IntPtr CFxString_from_utf8_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7905
7906 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_wide_strW")]
7907 public static extern global::System.IntPtr CFxString_wide_strW(global::System.Runtime.InteropServices.HandleRef jarg1);
7908
7909 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_wide_strU")]
7910 [return: MarshalAs(UnmanagedType.LPWStr)]
7911 public static extern String CFxString_wide_strU(global::System.Runtime.InteropServices.HandleRef jarg1);
7912
7913 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_AsString")]
7914 [return: MarshalAs(UnmanagedType.LPWStr)]
7915 public static extern String CFxString_AsString(global::System.Runtime.InteropServices.HandleRef jarg1);
7916
7917 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_Assign__SWIG_0")]
7918 public static extern global::System.IntPtr CFxString_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7919
7920 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_Assign__SWIG_1")]
7921 public static extern global::System.IntPtr CFxString_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
7922
7923 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compareA")]
7924 public static extern int CFxString_compareA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7925
7926 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compare__SWIG_0")]
7927 public static extern int CFxString_compare__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7928
7929 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compare__SWIG_1")]
7930 public static extern int CFxString_compare__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
7931
7932 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compare__SWIG_2")]
7933 public static extern int CFxString_compare__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7934
7935 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compareNoCaseA")]
7936 public static extern int CFxString_compareNoCaseA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7937
7938 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compareNoCase__SWIG_0")]
7939 public static extern int CFxString_compareNoCase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7940
7941 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compareNoCase__SWIG_1")]
7942 public static extern int CFxString_compareNoCase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
7943
7944 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_compareNoCase__SWIG_2")]
7945 public static extern int CFxString_compareNoCase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7946
7947 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_equalNoCase__SWIG_0")]
7948 public static extern bool CFxString_equalNoCase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
7949
7950 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_equalNoCase__SWIG_1")]
7951 public static extern bool CFxString_equalNoCase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7952
7953 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_equalNoCase__SWIG_2")]
7954 public static extern bool CFxString_equalNoCase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7955
7956 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_mid__SWIG_0")]
7957 public static extern global::System.IntPtr CFxString_mid__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7958
7959 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_mid__SWIG_1")]
7960 public static extern global::System.IntPtr CFxString_mid__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7961
7962 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_left")]
7963 public static extern global::System.IntPtr CFxString_left(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7964
7965 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_right")]
7966 public static extern global::System.IntPtr CFxString_right(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7967
7968 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_makeUpper")]
7969 public static extern global::System.IntPtr CFxString_makeUpper(global::System.Runtime.InteropServices.HandleRef jarg1);
7970
7971 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_makeLower")]
7972 public static extern global::System.IntPtr CFxString_makeLower(global::System.Runtime.InteropServices.HandleRef jarg1);
7973
7974 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimRight__SWIG_0")]
7975 public static extern global::System.IntPtr CFxString_trimRight__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
7976
7977 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimLeft__SWIG_0")]
7978 public static extern global::System.IntPtr CFxString_trimLeft__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
7979
7980 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimRightA__SWIG_0")]
7981 public static extern global::System.IntPtr CFxString_trimRightA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
7982
7983 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimRightW__SWIG_0")]
7984 public static extern global::System.IntPtr CFxString_trimRightW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7985
7986 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimRightW__SWIG_1")]
7987 public static extern global::System.IntPtr CFxString_trimRightW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2);
7988
7989 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimRightA__SWIG_1")]
7990 public static extern global::System.IntPtr CFxString_trimRightA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7991
7992 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimRight__SWIG_1")]
7993 public static extern global::System.IntPtr CFxString_trimRight__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7994
7995 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimRight__SWIG_2")]
7996 public static extern global::System.IntPtr CFxString_trimRight__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
7997
7998 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimLeftA__SWIG_0")]
7999 public static extern global::System.IntPtr CFxString_trimLeftA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
8000
8001 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimLeftW__SWIG_0")]
8002 public static extern global::System.IntPtr CFxString_trimLeftW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8003
8004 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimLeftW__SWIG_1")]
8005 public static extern global::System.IntPtr CFxString_trimLeftW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2);
8006
8007 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimLeftA__SWIG_1")]
8008 public static extern global::System.IntPtr CFxString_trimLeftA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8009
8010 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimLeft__SWIG_1")]
8011 public static extern global::System.IntPtr CFxString_trimLeft__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8012
8013 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_trimLeft__SWIG_2")]
8014 public static extern global::System.IntPtr CFxString_trimLeft__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
8015
8016 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_replaceA__SWIG_0")]
8017 public static extern global::System.IntPtr CFxString_replaceA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, char jarg3);
8018
8019 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_replaceW__SWIG_0")]
8020 public static extern global::System.IntPtr CFxString_replaceW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8021
8022 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_replaceW__SWIG_1")]
8023 public static extern global::System.IntPtr CFxString_replaceW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2, char /*SIMPLETYPE*/ jarg3);
8024
8025 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_replaceA__SWIG_1")]
8026 public static extern global::System.IntPtr CFxString_replaceA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
8027
8028 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_replace__SWIG_0")]
8029 public static extern global::System.IntPtr CFxString_replace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8030
8031 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_replace__SWIG_1")]
8032 public static extern global::System.IntPtr CFxString_replace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3);
8033
8034 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_removeA")]
8035 public static extern int CFxString_removeA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
8036
8037 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_removeW__SWIG_0")]
8038 public static extern int CFxString_removeW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8039
8040 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_removeW__SWIG_1")]
8041 public static extern int CFxString_removeW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2);
8042
8043 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_insertA__SWIG_0")]
8044 public static extern int CFxString_insertA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, char jarg3);
8045
8046 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_insertW__SWIG_0")]
8047 public static extern int CFxString_insertW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8048
8049 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_insertW__SWIG_1")]
8050 public static extern int CFxString_insertW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, char /*SIMPLETYPE*/ jarg3);
8051
8052 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_insertA__SWIG_1")]
8053 public static extern int CFxString_insertA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
8054
8055 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_insert__SWIG_0")]
8056 public static extern int CFxString_insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8057
8058 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_insert__SWIG_1")]
8059 public static extern int CFxString_insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3);
8060
8061 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_deleteChars__SWIG_0")]
8062 public static extern int CFxString_deleteChars__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
8063
8064 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_deleteChars__SWIG_1")]
8065 public static extern int CFxString_deleteChars__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8066
8067 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_0")]
8068 public static extern int CFxString_findA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
8069
8070 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_0")]
8071 public static extern int CFxString_findW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8072
8073 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_1")]
8074 public static extern int CFxString_findW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2);
8075
8076 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_reverseFindA")]
8077 public static extern int CFxString_reverseFindA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
8078
8079 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_reverseFindW__SWIG_0")]
8080 public static extern int CFxString_reverseFindW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8081
8082 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_reverseFindW__SWIG_1")]
8083 public static extern int CFxString_reverseFindW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2);
8084
8085 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_1")]
8086 public static extern int CFxString_findA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3);
8087
8088 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_2")]
8089 public static extern int CFxString_findW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
8090
8091 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findW__SWIG_3")]
8092 public static extern int CFxString_findW__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2, int jarg3);
8093
8094 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findOneOfA")]
8095 public static extern int CFxString_findOneOfA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8096
8097 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findOneOf__SWIG_0")]
8098 public static extern int CFxString_findOneOf__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8099
8100 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findOneOf__SWIG_1")]
8101 public static extern int CFxString_findOneOf__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
8102
8103 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_find__SWIG_0")]
8104 public static extern int CFxString_find__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8105
8106 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_2")]
8107 public static extern int CFxString_findA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8108
8109 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_find__SWIG_1")]
8110 public static extern int CFxString_find__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8111
8112 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_find__SWIG_2")]
8113 public static extern int CFxString_find__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
8114
8115 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_findA__SWIG_3")]
8116 public static extern int CFxString_findA__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
8117
8118 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_find__SWIG_3")]
8119 public static extern int CFxString_find__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
8120
8121 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_find__SWIG_4")]
8122 public static extern int CFxString_find__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, int jarg3);
8123
8124 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_format__SWIG_0")]
8125 public static extern global::System.IntPtr CFxString_format__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2);
8126
8127 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_format__SWIG_1")]
8128 public static extern global::System.IntPtr CFxString_format__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8129
8130 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_formatA")]
8131 public static extern global::System.IntPtr CFxString_formatA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8132
8133 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_format__SWIG_2")]
8134 public static extern global::System.IntPtr CFxString_format__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3);
8135
8136 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_format__SWIG_3")]
8137 public static extern global::System.IntPtr CFxString_format__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3);
8138
8139 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_vformatA")]
8140 public static extern global::System.IntPtr CFxString_vformatA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8141
8142 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_vformat__SWIG_0")]
8143 public static extern global::System.IntPtr CFxString_vformat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8144
8145 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_vformat__SWIG_1")]
8146 public static extern global::System.IntPtr CFxString_vformat__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8147
8148 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_GetCodePage")]
8149 public static extern uint CFxString_GetCodePage(global::System.Runtime.InteropServices.HandleRef jarg1);
8150
8151 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_SetCodePage")]
8152 public static extern void CFxString_SetCodePage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
8153
8154 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_SplitA")]
8155 public static extern global::System.IntPtr CFxString_SplitA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
8156
8157 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_SplitW__SWIG_0")]
8158 public static extern global::System.IntPtr CFxString_SplitW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8159
8160 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_SplitW__SWIG_1")]
8161 public static extern global::System.IntPtr CFxString_SplitW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char /*SIMPLETYPE*/ jarg2);
8162
8163 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_GetCadCodePage")]
8164 public static extern int CFxString_GetCadCodePage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
8165
8166 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_EncodeHTML")]
8167 public static extern bool CFxString_EncodeHTML(global::System.Runtime.InteropServices.HandleRef jarg1);
8168
8169 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_DecodeHTML")]
8170 public static extern bool CFxString_DecodeHTML(global::System.Runtime.InteropServices.HandleRef jarg1);
8171
8172 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_0")]
8173 public static extern global::System.IntPtr CFxString_arg__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4, ushort jarg5);
8174
8175 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_1")]
8176 public static extern global::System.IntPtr CFxString_arg__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4);
8177
8178 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_2")]
8179 public static extern global::System.IntPtr CFxString_arg__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3);
8180
8181 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_3")]
8182 public static extern global::System.IntPtr CFxString_arg__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8183
8184 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_4")]
8185 public static extern global::System.IntPtr CFxString_arg__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3, int jarg4, ushort jarg5);
8186
8187 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_5")]
8188 public static extern global::System.IntPtr CFxString_arg__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3, int jarg4);
8189
8190 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_6")]
8191 public static extern global::System.IntPtr CFxString_arg__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3);
8192
8193 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_7")]
8194 public static extern global::System.IntPtr CFxString_arg__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2);
8195
8196 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_8")]
8197 public static extern global::System.IntPtr CFxString_arg__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, ushort jarg5);
8198
8199 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_9")]
8200 public static extern global::System.IntPtr CFxString_arg__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4);
8201
8202 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_10")]
8203 public static extern global::System.IntPtr CFxString_arg__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
8204
8205 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_11")]
8206 public static extern global::System.IntPtr CFxString_arg__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8207
8208 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_12")]
8209 public static extern global::System.IntPtr CFxString_arg__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3, int jarg4, ushort jarg5);
8210
8211 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_13")]
8212 public static extern global::System.IntPtr CFxString_arg__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3, int jarg4);
8213
8214 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_14")]
8215 public static extern global::System.IntPtr CFxString_arg__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3);
8216
8217 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_15")]
8218 public static extern global::System.IntPtr CFxString_arg__SWIG_15(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
8219
8220 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_24")]
8221 public static extern global::System.IntPtr CFxString_arg__SWIG_24(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3, int jarg4, ushort jarg5);
8222
8223 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_25")]
8224 public static extern global::System.IntPtr CFxString_arg__SWIG_25(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3, int jarg4);
8225
8226 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_26")]
8227 public static extern global::System.IntPtr CFxString_arg__SWIG_26(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3);
8228
8229 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_27")]
8230 public static extern global::System.IntPtr CFxString_arg__SWIG_27(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2);
8231
8232 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_28")]
8233 public static extern global::System.IntPtr CFxString_arg__SWIG_28(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3, int jarg4, ushort jarg5);
8234
8235 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_29")]
8236 public static extern global::System.IntPtr CFxString_arg__SWIG_29(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3, int jarg4);
8237
8238 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_30")]
8239 public static extern global::System.IntPtr CFxString_arg__SWIG_30(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3);
8240
8241 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_31")]
8242 public static extern global::System.IntPtr CFxString_arg__SWIG_31(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2);
8243
8244 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_32")]
8245 public static extern global::System.IntPtr CFxString_arg__SWIG_32(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4, int jarg5, ushort jarg6);
8246
8247 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_33")]
8248 public static extern global::System.IntPtr CFxString_arg__SWIG_33(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4, int jarg5);
8249
8250 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_34")]
8251 public static extern global::System.IntPtr CFxString_arg__SWIG_34(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4);
8252
8253 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_35")]
8254 public static extern global::System.IntPtr CFxString_arg__SWIG_35(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3);
8255
8256 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_36")]
8257 public static extern global::System.IntPtr CFxString_arg__SWIG_36(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
8258
8259 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_37")]
8260 public static extern global::System.IntPtr CFxString_arg__SWIG_37(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3, ushort jarg4);
8261
8262 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_38")]
8263 public static extern global::System.IntPtr CFxString_arg__SWIG_38(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3);
8264
8265 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_39")]
8266 public static extern global::System.IntPtr CFxString_arg__SWIG_39(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
8267
8268 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_40")]
8269 public static extern global::System.IntPtr CFxString_arg__SWIG_40(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, ushort jarg4);
8270
8271 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_41")]
8272 public static extern global::System.IntPtr CFxString_arg__SWIG_41(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
8273
8274 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_42")]
8275 public static extern global::System.IntPtr CFxString_arg__SWIG_42(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8276
8277 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_43")]
8278 public static extern global::System.IntPtr CFxString_arg__SWIG_43(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, ushort jarg4);
8279
8280 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_44")]
8281 public static extern global::System.IntPtr CFxString_arg__SWIG_44(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
8282
8283 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_45")]
8284 public static extern global::System.IntPtr CFxString_arg__SWIG_45(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8285
8286 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_46")]
8287 public static extern global::System.IntPtr CFxString_arg__SWIG_46(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8288
8289 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_47")]
8290 public static extern global::System.IntPtr CFxString_arg__SWIG_47(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
8291
8292 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_48")]
8293 public static extern global::System.IntPtr CFxString_arg__SWIG_48(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
8294
8295 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_49")]
8296 public static extern global::System.IntPtr CFxString_arg__SWIG_49(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
8297
8298 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_50")]
8299 public static extern global::System.IntPtr CFxString_arg__SWIG_50(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
8300
8301 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_51")]
8302 public static extern global::System.IntPtr CFxString_arg__SWIG_51(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
8303
8304 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_52")]
8305 public static extern global::System.IntPtr CFxString_arg__SWIG_52(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
8306
8307 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_arg__SWIG_53")]
8308 public static extern global::System.IntPtr CFxString_arg__SWIG_53(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10);
8309
8310 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxString_multiArg")]
8311 public static extern global::System.IntPtr CFxString_multiArg(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8312
8313 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IsEqual__SWIG_3")]
8314 public static extern bool IsEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8315
8316 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IsNotEqual__SWIG_3")]
8317 public static extern bool IsNotEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8318
8319 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IsNotEqual__SWIG_4")]
8320 public static extern bool IsNotEqual__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8321
8322 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_KeywordPair__SWIG_0")]
8323 public static extern global::System.IntPtr new_KeywordPair__SWIG_0();
8324
8325 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_KeywordPair__SWIG_1")]
8326 public static extern global::System.IntPtr new_KeywordPair__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8327
8328 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_KeywordPair__SWIG_2")]
8329 public static extern global::System.IntPtr new_KeywordPair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
8330
8331 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordPair_first_set")]
8332 public static extern void KeywordPair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8333
8334 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordPair_first_get")]
8335 public static extern global::System.IntPtr KeywordPair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8336
8337 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordPair_second_set")]
8338 public static extern void KeywordPair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8339
8340 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordPair_second_get")]
8341 public static extern global::System.IntPtr KeywordPair_second_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8342
8343 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_KeywordPair")]
8344 public static extern void delete_KeywordPair(global::System.Runtime.InteropServices.HandleRef jarg1);
8345
8346 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_Clear")]
8347 public static extern void KeywordVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
8348
8349 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_Add")]
8350 public static extern void KeywordVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8351
8352 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_size")]
8353 public static extern uint KeywordVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
8354
8355 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_capacity")]
8356 public static extern uint KeywordVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
8357
8358 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_reserve")]
8359 public static extern void KeywordVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
8360
8361 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_KeywordVector__SWIG_0")]
8362 public static extern global::System.IntPtr new_KeywordVector__SWIG_0();
8363
8364 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_KeywordVector__SWIG_1")]
8365 public static extern global::System.IntPtr new_KeywordVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
8366
8367 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_KeywordVector__SWIG_2")]
8368 public static extern global::System.IntPtr new_KeywordVector__SWIG_2(int jarg1);
8369
8370 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_getitemcopy")]
8371 public static extern global::System.IntPtr KeywordVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8372
8373 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_getitem")]
8374 public static extern global::System.IntPtr KeywordVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8375
8376 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_setitem")]
8377 public static extern void KeywordVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8378
8379 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_AddRange")]
8380 public static extern void KeywordVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8381
8382 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_GetRange")]
8383 public static extern global::System.IntPtr KeywordVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
8384
8385 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_Insert")]
8386 public static extern void KeywordVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8387
8388 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_InsertRange")]
8389 public static extern void KeywordVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8390
8391 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_RemoveAt")]
8392 public static extern void KeywordVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8393
8394 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_RemoveRange")]
8395 public static extern void KeywordVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
8396
8397 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_Repeat")]
8398 public static extern global::System.IntPtr KeywordVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8399
8400 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_Reverse__SWIG_0")]
8401 public static extern void KeywordVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
8402
8403 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_Reverse__SWIG_1")]
8404 public static extern void KeywordVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
8405
8406 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_KeywordVector_SetRange")]
8407 public static extern void KeywordVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8408
8409 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_KeywordVector")]
8410 public static extern void delete_KeywordVector(global::System.Runtime.InteropServices.HandleRef jarg1);
8411
8412 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxKeywordArray_push_back")]
8413 public static extern void CFxKeywordArray_push_back(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8414
8415 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxKeywordArray_sortit__SWIG_0")]
8416 public static extern void CFxKeywordArray_sortit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8417
8418 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxKeywordArray_sortit__SWIG_1")]
8419 public static extern void CFxKeywordArray_sortit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
8420
8421 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxKeywordArray_global__SWIG_0")]
8422 public static extern global::System.IntPtr CFxKeywordArray_global__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
8423
8424 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxKeywordArray_local__SWIG_0")]
8425 public static extern global::System.IntPtr CFxKeywordArray_local__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
8426
8427 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxKeywordArray")]
8428 public static extern global::System.IntPtr new_CFxKeywordArray();
8429
8430 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxKeywordArray")]
8431 public static extern void delete_CFxKeywordArray(global::System.Runtime.InteropServices.HandleRef jarg1);
8432
8433 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHitTestInfo")]
8434 public static extern void delete_CFxHitTestInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
8435
8436 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseEvent")]
8437 public static extern bool CFxHitTestInfo_IsMouseEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8438
8439 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsDragEvent")]
8440 public static extern bool CFxHitTestInfo_IsDragEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8441
8442 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsKeyboardEvent")]
8443 public static extern bool CFxHitTestInfo_IsKeyboardEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8444
8445 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsKeyboardPressEvent")]
8446 public static extern bool CFxHitTestInfo_IsKeyboardPressEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8447
8448 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsKeyboardReleaseEvent")]
8449 public static extern bool CFxHitTestInfo_IsKeyboardReleaseEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8450
8451 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseWheel")]
8452 public static extern bool CFxHitTestInfo_IsMouseWheel(global::System.Runtime.InteropServices.HandleRef jarg1);
8453
8454 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsGesture")]
8455 public static extern bool CFxHitTestInfo_IsGesture(global::System.Runtime.InteropServices.HandleRef jarg1);
8456
8457 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsGesturePan")]
8458 public static extern bool CFxHitTestInfo_IsGesturePan(global::System.Runtime.InteropServices.HandleRef jarg1);
8459
8460 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsGesturePinch")]
8461 public static extern bool CFxHitTestInfo_IsGesturePinch(global::System.Runtime.InteropServices.HandleRef jarg1);
8462
8463 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGestureState")]
8464 public static extern int CFxHitTestInfo_GetGestureState(global::System.Runtime.InteropServices.HandleRef jarg1);
8465
8466 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsFxEvent")]
8467 public static extern bool CFxHitTestInfo_IsFxEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8468
8469 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetFxEventType")]
8470 public static extern int CFxHitTestInfo_GetFxEventType(global::System.Runtime.InteropServices.HandleRef jarg1);
8471
8472 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetMousePosition")]
8473 public static extern global::System.IntPtr CFxHitTestInfo_GetMousePosition(global::System.Runtime.InteropServices.HandleRef jarg1);
8474
8475 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetMousePositionF")]
8476 public static extern global::System.IntPtr CFxHitTestInfo_GetMousePositionF(global::System.Runtime.InteropServices.HandleRef jarg1);
8477
8478 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftMouseButtonPressed")]
8479 public static extern bool CFxHitTestInfo_IsLeftMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8480
8481 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleMouseButtonPressed")]
8482 public static extern bool CFxHitTestInfo_IsMiddleMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8483
8484 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightMouseButtonPressed")]
8485 public static extern bool CFxHitTestInfo_IsRightMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8486
8487 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsShiftPressed")]
8488 public static extern bool CFxHitTestInfo_IsShiftPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8489
8490 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsCtrlPressed")]
8491 public static extern bool CFxHitTestInfo_IsCtrlPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8492
8493 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsAltPressed")]
8494 public static extern bool CFxHitTestInfo_IsAltPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8495
8496 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseMoved")]
8497 public static extern bool CFxHitTestInfo_IsMouseMoved(global::System.Runtime.InteropServices.HandleRef jarg1);
8498
8499 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonDown")]
8500 public static extern bool CFxHitTestInfo_IsLeftButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1);
8501
8502 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonUp")]
8503 public static extern bool CFxHitTestInfo_IsLeftButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1);
8504
8505 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonDown")]
8506 public static extern bool CFxHitTestInfo_IsMiddleButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1);
8507
8508 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonUp")]
8509 public static extern bool CFxHitTestInfo_IsMiddleButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1);
8510
8511 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonDown")]
8512 public static extern bool CFxHitTestInfo_IsRightButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1);
8513
8514 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonUp")]
8515 public static extern bool CFxHitTestInfo_IsRightButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1);
8516
8517 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMouseOverActiveViewport")]
8518 public static extern bool CFxHitTestInfo_IsMouseOverActiveViewport(global::System.Runtime.InteropServices.HandleRef jarg1);
8519
8520 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetWheelDelta")]
8521 public static extern int CFxHitTestInfo_GetWheelDelta(global::System.Runtime.InteropServices.HandleRef jarg1);
8522
8523 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetWheelOrientation")]
8524 public static extern int CFxHitTestInfo_GetWheelOrientation(global::System.Runtime.InteropServices.HandleRef jarg1);
8525
8526 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePanOffset")]
8527 public static extern global::System.IntPtr CFxHitTestInfo_GetGesturePanOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
8528
8529 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePinchScaleFactor")]
8530 public static extern double CFxHitTestInfo_GetGesturePinchScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1);
8531
8532 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePinchCenterPoint")]
8533 public static extern global::System.IntPtr CFxHitTestInfo_GetGesturePinchCenterPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
8534
8535 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGesturePinchRollAngle")]
8536 public static extern double CFxHitTestInfo_GetGesturePinchRollAngle(global::System.Runtime.InteropServices.HandleRef jarg1);
8537
8538 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetGestureSwipeAngle")]
8539 public static extern double CFxHitTestInfo_GetGestureSwipeAngle(global::System.Runtime.InteropServices.HandleRef jarg1);
8540
8541 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonTrippleClick")]
8542 public static extern bool CFxHitTestInfo_IsRightButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8543
8544 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonTrippleClick")]
8545 public static extern bool CFxHitTestInfo_IsMiddleButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8546
8547 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonTrippleClick")]
8548 public static extern bool CFxHitTestInfo_IsLeftButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8549
8550 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonDoubleClick")]
8551 public static extern bool CFxHitTestInfo_IsRightButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8552
8553 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonDoubleClick")]
8554 public static extern bool CFxHitTestInfo_IsMiddleButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8555
8556 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonDoubleClick")]
8557 public static extern bool CFxHitTestInfo_IsLeftButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8558
8559 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsRightButtonClick")]
8560 public static extern bool CFxHitTestInfo_IsRightButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8561
8562 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsMiddleButtonClick")]
8563 public static extern bool CFxHitTestInfo_IsMiddleButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8564
8565 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsLeftButtonClick")]
8566 public static extern bool CFxHitTestInfo_IsLeftButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1);
8567
8568 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideDragSelectSequence")]
8569 public static extern bool CFxHitTestInfo_IsInsideDragSelectSequence(global::System.Runtime.InteropServices.HandleRef jarg1);
8570
8571 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideDragDropSequence")]
8572 public static extern bool CFxHitTestInfo_IsInsideDragDropSequence(global::System.Runtime.InteropServices.HandleRef jarg1);
8573
8574 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsCancelPressed")]
8575 public static extern bool CFxHitTestInfo_IsCancelPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8576
8577 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsSpacePressed")]
8578 public static extern bool CFxHitTestInfo_IsSpacePressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8579
8580 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsArrowUpPressed")]
8581 public static extern bool CFxHitTestInfo_IsArrowUpPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8582
8583 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsArrowDownPressed")]
8584 public static extern bool CFxHitTestInfo_IsArrowDownPressed(global::System.Runtime.InteropServices.HandleRef jarg1);
8585
8586 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsContinuousEvent")]
8587 public static extern bool CFxHitTestInfo_IsContinuousEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8588
8589 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideLISP")]
8590 public static extern bool CFxHitTestInfo_IsInsideLISP(global::System.Runtime.InteropServices.HandleRef jarg1);
8591
8592 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideCommand")]
8593 public static extern bool CFxHitTestInfo_IsInsideCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
8594
8595 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_IsInsideSelect")]
8596 public static extern bool CFxHitTestInfo_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1);
8597
8598 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetKey")]
8599 public static extern int CFxHitTestInfo_GetKey(global::System.Runtime.InteropServices.HandleRef jarg1);
8600
8601 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetKeyText")]
8602 public static extern global::System.IntPtr CFxHitTestInfo_GetKeyText(global::System.Runtime.InteropServices.HandleRef jarg1);
8603
8604 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetFxDocument")]
8605 public static extern global::System.IntPtr CFxHitTestInfo_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
8606
8607 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_EnableSystemCursorGraphics")]
8608 public static extern void CFxHitTestInfo_EnableSystemCursorGraphics(global::System.Runtime.InteropServices.HandleRef jarg1);
8609
8610 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_DisableSystemCursorGraphics")]
8611 public static extern void CFxHitTestInfo_DisableSystemCursorGraphics(global::System.Runtime.InteropServices.HandleRef jarg1);
8612
8613 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_SystemCursorDisableCount")]
8614 public static extern int CFxHitTestInfo_SystemCursorDisableCount(global::System.Runtime.InteropServices.HandleRef jarg1);
8615
8616 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_SkipNextRightMouseButtonUpEvent")]
8617 public static extern void CFxHitTestInfo_SkipNextRightMouseButtonUpEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8618
8619 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_SkipKeyboardInput")]
8620 public static extern void CFxHitTestInfo_SkipKeyboardInput(global::System.Runtime.InteropServices.HandleRef jarg1);
8621
8622 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHitTestInfo_GetEvent")]
8623 public static extern global::System.IntPtr CFxHitTestInfo_GetEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
8624
8625 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxOrthoPoint")]
8626 public static extern void delete_CFxOrthoPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
8627
8628 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOrthoPoint_Assign")]
8629 public static extern global::System.IntPtr CFxOrthoPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8630
8631 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOrthoPoint_GetPoint")]
8632 public static extern global::System.IntPtr CFxOrthoPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
8633
8634 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxOsnapPoint_ConvertOsnapMode__SWIG_1")]
8635 public static extern CFxOsnapPoint.OsnapMode ConvertOsnapMode(Teigha.Core.OsnapMode osnapMode);
8636
8637
8638 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxOsnapPoint")]
8639 public static extern void delete_CFxOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
8640
8641 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_Assign")]
8642 public static extern global::System.IntPtr CFxOsnapPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8643
8644 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_Clear")]
8645 public static extern void CFxOsnapPoint_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
8646
8647 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_Set__SWIG_0")]
8648 public static extern void CFxOsnapPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8649
8650 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_Set__SWIG_1")]
8651 public static extern void CFxOsnapPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
8652
8653 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetMode")]
8654 public static extern int CFxOsnapPoint_GetMode(global::System.Runtime.InteropServices.HandleRef jarg1);
8655
8656 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetModeName")]
8657 public static extern global::System.IntPtr CFxOsnapPoint_GetModeName(global::System.Runtime.InteropServices.HandleRef jarg1);
8658
8659 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetPoint")]
8660 public static extern global::System.IntPtr CFxOsnapPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
8661
8662 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetSubentPath__SWIG_0")]
8663 public static extern global::System.IntPtr CFxOsnapPoint_GetSubentPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8664
8665 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetSubentPath__SWIG_1")]
8666 public static extern global::System.IntPtr CFxOsnapPoint_GetSubentPath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
8667
8668 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_IsEqualTo")]
8669 public static extern bool CFxOsnapPoint_IsEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
8670
8671 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetOsnapSize")]
8672 public static extern uint CFxOsnapPoint_GetOsnapSize();
8673
8674 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetOsnapDistance")]
8675 public static extern uint CFxOsnapPoint_GetOsnapDistance();
8676
8677 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetOsnapColor")]
8678 public static extern UInt32 /*SIMPLETYPE*/ CFxOsnapPoint_GetOsnapColor();
8679
8680 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetCenterSize")]
8681 public static extern int CFxOsnapPoint_GetCenterSize();
8682
8683 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_GetCenterColor")]
8684 public static extern UInt32 /*SIMPLETYPE*/ CFxOsnapPoint_GetCenterColor(global::System.Runtime.InteropServices.HandleRef jarg1);
8685
8686 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOsnapPoint_ConvertOsnapMode")]
8687 public static extern int CFxOsnapPoint_ConvertOsnapMode(int jarg1);
8688
8689 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxOtrackPoint")]
8690 public static extern void delete_CFxOtrackPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
8691
8692 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_Assign")]
8693 public static extern global::System.IntPtr CFxOtrackPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8694
8695 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_Set__SWIG_0")]
8696 public static extern void CFxOtrackPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8697
8698 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_Set__SWIG_1")]
8699 public static extern void CFxOtrackPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8700
8701 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackType")]
8702 public static extern int CFxOtrackPoint_GetOtrackType(global::System.Runtime.InteropServices.HandleRef jarg1);
8703
8704 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetPoint")]
8705 public static extern global::System.IntPtr CFxOtrackPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
8706
8707 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackBasePointCrossSize")]
8709
8710 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackBasePointCrossColor")]
8711 public static extern UInt32 /*SIMPLETYPE*/ CFxOtrackPoint_GetOtrackBasePointCrossColor();
8712
8713 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackLinesCrossSize")]
8714 public static extern int CFxOtrackPoint_GetOtrackLinesCrossSize(bool jarg1);
8715
8716 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxOtrackPoint_GetOtrackLinesCrossColor")]
8717 public static extern UInt32 /*SIMPLETYPE*/ CFxOtrackPoint_GetOtrackLinesCrossColor(bool jarg1);
8718
8719 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxStatusBar")]
8720 public static extern void delete_CFxStatusBar(global::System.Runtime.InteropServices.HandleRef jarg1);
8721
8722 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_StartProgressor")]
8723 public static extern void CFxStatusBar_StartProgressor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8724
8725 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_StopProgressor")]
8726 public static extern void CFxStatusBar_StopProgressor(global::System.Runtime.InteropServices.HandleRef jarg1);
8727
8728 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_MeterProgress")]
8729 public static extern void CFxStatusBar_MeterProgress(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
8730
8731 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_GetText")]
8732 public static extern global::System.IntPtr CFxStatusBar_GetText(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8733
8734 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_SetText")]
8735 public static extern void CFxStatusBar_SetText(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
8736
8737 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_RefreshCoords__SWIG_0")]
8738 public static extern void CFxStatusBar_RefreshCoords__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
8739
8740 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_RefreshCoords__SWIG_1")]
8741 public static extern void CFxStatusBar_RefreshCoords__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
8742
8743 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_GetFxWidget")]
8744 public static extern global::System.IntPtr CFxStatusBar_GetFxWidget(global::System.Runtime.InteropServices.HandleRef jarg1);
8745
8746 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_GetWindowHandle")]
8747 public static extern IntPtr /*SIMPLETYPE*/ CFxStatusBar_GetWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
8748
8749 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxStatusBar_GetSubControl")]
8750 public static extern global::System.IntPtr CFxStatusBar_GetSubControl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8751
8752 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxLicenseInfo")]
8753 public static extern void delete_CFxLicenseInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
8754
8755 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_CheckOutLicense")]
8756 public static extern int CFxLicenseInfo_CheckOutLicense(global::System.Runtime.InteropServices.HandleRef jarg1);
8757
8758 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_CheckInLicense")]
8759 public static extern int CFxLicenseInfo_CheckInLicense(global::System.Runtime.InteropServices.HandleRef jarg1);
8760
8761 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsLicenseCheckedOut")]
8762 public static extern bool CFxLicenseInfo_IsLicenseCheckedOut(global::System.Runtime.InteropServices.HandleRef jarg1);
8763
8764 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsTrialExpired")]
8765 public static extern bool CFxLicenseInfo_IsTrialExpired(global::System.Runtime.InteropServices.HandleRef jarg1);
8766
8767 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsLicenseHealthy")]
8768 public static extern bool CFxLicenseInfo_IsLicenseHealthy(global::System.Runtime.InteropServices.HandleRef jarg1);
8769
8770 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsNetworkConnectionLost")]
8771 public static extern bool CFxLicenseInfo_IsNetworkConnectionLost(global::System.Runtime.InteropServices.HandleRef jarg1);
8772
8773 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseType")]
8774 public static extern int CFxLicenseInfo_GetLicenseType(global::System.Runtime.InteropServices.HandleRef jarg1);
8775
8776 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsFullVersion")]
8777 public static extern bool CFxLicenseInfo_IsFullVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8778
8779 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsUnregisteredVersion")]
8780 public static extern bool CFxLicenseInfo_IsUnregisteredVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8781
8782 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsTrialVersion")]
8783 public static extern bool CFxLicenseInfo_IsTrialVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8784
8785 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseDays")]
8786 public static extern int CFxLicenseInfo_GetLicenseDays(global::System.Runtime.InteropServices.HandleRef jarg1);
8787
8788 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseOptions")]
8789 public static extern global::System.IntPtr CFxLicenseInfo_GetLicenseOptions(global::System.Runtime.InteropServices.HandleRef jarg1);
8790
8791 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetHostID")]
8792 public static extern global::System.IntPtr CFxLicenseInfo_GetHostID(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8793
8794 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicenseHostId")]
8795 public static extern global::System.IntPtr CFxLicenseInfo_GetLicenseHostId(global::System.Runtime.InteropServices.HandleRef jarg1);
8796
8797 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsProductKeyValid")]
8798 public static extern int CFxLicenseInfo_IsProductKeyValid(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8799
8800 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsActivationCodeValid")]
8801 public static extern int CFxLicenseInfo_IsActivationCodeValid(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8802
8803 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_SaveActivationCode")]
8804 public static extern int CFxLicenseInfo_SaveActivationCode(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8805
8806 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetLicensePath")]
8807 public static extern global::System.IntPtr CFxLicenseInfo_GetLicensePath(global::System.Runtime.InteropServices.HandleRef jarg1);
8808
8809 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingLicenseMaxDays")]
8810 public static extern int CFxLicenseInfo_GetRoamingLicenseMaxDays(global::System.Runtime.InteropServices.HandleRef jarg1);
8811
8812 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingLicenseMaxShares")]
8813 public static extern int CFxLicenseInfo_GetRoamingLicenseMaxShares(global::System.Runtime.InteropServices.HandleRef jarg1);
8814
8815 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingLicenseMaxCount")]
8816 public static extern int CFxLicenseInfo_GetRoamingLicenseMaxCount(global::System.Runtime.InteropServices.HandleRef jarg1);
8817
8818 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingProductMaxCount")]
8819 public static extern int CFxLicenseInfo_GetRoamingProductMaxCount(global::System.Runtime.InteropServices.HandleRef jarg1);
8820
8821 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetRoamingProductCurrentCount")]
8822 public static extern int CFxLicenseInfo_GetRoamingProductCurrentCount(global::System.Runtime.InteropServices.HandleRef jarg1);
8823
8824 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsRoaming")]
8825 public static extern bool CFxLicenseInfo_IsRoaming(global::System.Runtime.InteropServices.HandleRef jarg1);
8826
8827 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetError")]
8828 public static extern int CFxLicenseInfo_GetError(global::System.Runtime.InteropServices.HandleRef jarg1);
8829
8830 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetGde")]
8831 public static extern global::System.IntPtr CFxLicenseInfo_GetGde(global::System.Runtime.InteropServices.HandleRef jarg1);
8832
8833 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_GetVersion")]
8834 public static extern global::System.IntPtr CFxLicenseInfo_GetVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8835
8836 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsPrerelease")]
8837 public static extern bool CFxLicenseInfo_IsPrerelease(global::System.Runtime.InteropServices.HandleRef jarg1);
8838
8839 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_AllowsDongleActivation")]
8840 public static extern bool CFxLicenseInfo_AllowsDongleActivation(global::System.Runtime.InteropServices.HandleRef jarg1);
8841
8842 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_InAppleSandbox")]
8843 public static extern bool CFxLicenseInfo_InAppleSandbox(global::System.Runtime.InteropServices.HandleRef jarg1);
8844
8845 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsExtendedApiEnabled")]
8846 public static extern bool CFxLicenseInfo_IsExtendedApiEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
8847
8848 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsMFCUIEnabled")]
8849 public static extern bool CFxLicenseInfo_IsMFCUIEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
8850
8851 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsLispEnabled")]
8852 public static extern bool CFxLicenseInfo_IsLispEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
8853
8854 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_DisableLisp")]
8855 public static extern void CFxLicenseInfo_DisableLisp(global::System.Runtime.InteropServices.HandleRef jarg1);
8856
8857 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_EnableLisp")]
8858 public static extern void CFxLicenseInfo_EnableLisp(global::System.Runtime.InteropServices.HandleRef jarg1);
8859
8860 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsFibersEnabled")]
8861 public static extern bool CFxLicenseInfo_IsFibersEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
8862
8863 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsDWFEnabled")]
8864 public static extern bool CFxLicenseInfo_IsDWFEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
8865
8866 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_DisableDWF")]
8867 public static extern void CFxLicenseInfo_DisableDWF(global::System.Runtime.InteropServices.HandleRef jarg1);
8868
8869 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsDWFSaveEnabled")]
8870 public static extern bool CFxLicenseInfo_IsDWFSaveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
8871
8872 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_IsSHPEnabled")]
8873 public static extern bool CFxLicenseInfo_IsSHPEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
8874
8875 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_CleanUp")]
8876 public static extern void CFxLicenseInfo_CleanUp(global::System.Runtime.InteropServices.HandleRef jarg1);
8877
8878 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseInfo_ValidateDongle")]
8879 public static extern bool CFxLicenseInfo_ValidateDongle(global::System.Runtime.InteropServices.HandleRef jarg1);
8880
8881 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetFxLicenseInfo")]
8882 public static extern global::System.IntPtr GetFxLicenseInfo();
8883
8884 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxApplications")]
8885 public static extern void delete_CFxApplications(global::System.Runtime.InteropServices.HandleRef jarg1);
8886
8887 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_GetStartupSuite")]
8888 public static extern void CFxApplications_GetStartupSuite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8889
8890 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_GetApplicationsByDocument")]
8891 public static extern void CFxApplications_GetApplicationsByDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8892
8893 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_GetExtendedApiModules")]
8894 public static extern void CFxApplications_GetExtendedApiModules(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8895
8896 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_LoadApplication")]
8897 public static extern global::System.IntPtr CFxApplications_LoadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8898
8899 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_UnloadApplication")]
8900 public static extern bool CFxApplications_UnloadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8901
8902 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_FindApplication")]
8903 public static extern global::System.IntPtr CFxApplications_FindApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8904
8905 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_GetAppCount")]
8906 public static extern int CFxApplications_GetAppCount(global::System.Runtime.InteropServices.HandleRef jarg1);
8907
8908 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_GetAppInfo")]
8909 public static extern global::System.IntPtr CFxApplications_GetAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8910
8911 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_FormatsFilterString")]
8912 public static extern global::System.IntPtr CFxApplications_FormatsFilterString(global::System.Runtime.InteropServices.HandleRef jarg1);
8913
8914 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_DefaultFormat")]
8915 public static extern global::System.IntPtr CFxApplications_DefaultFormat(global::System.Runtime.InteropServices.HandleRef jarg1);
8916
8917 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_FileDescription")]
8918 public static extern global::System.IntPtr CFxApplications_FileDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8919
8920 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxApplications_CreateAppInfo")]
8921 public static extern global::System.IntPtr CFxApplications_CreateAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8922
8923 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSettings")]
8924 public static extern void delete_CFxSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
8925
8926 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_HasGroup")]
8927 public static extern bool CFxSettings_HasGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8928
8929 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_HasKey")]
8930 public static extern bool CFxSettings_HasKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8931
8932 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_GetGroups")]
8933 public static extern global::System.IntPtr CFxSettings_GetGroups(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8934
8935 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_GetKeys")]
8936 public static extern global::System.IntPtr CFxSettings_GetKeys(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8937
8938 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_GetType")]
8939 public static extern int CFxSettings_GetType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8940
8941 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_Read")]
8942 public static extern IntPtr CFxSettings_Read(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
8943
8944 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_Write")]
8945 public static extern void CFxSettings_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4);
8946
8947 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_RemoveKey")]
8948 public static extern void CFxSettings_RemoveKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8949
8950 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSettings_RemoveGroup")]
8951 public static extern void CFxSettings_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8952
8953 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxFileData")]
8954 public static extern void delete_CFxFileData(global::System.Runtime.InteropServices.HandleRef jarg1);
8955
8956 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_Assign")]
8957 public static extern global::System.IntPtr CFxFileData_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8958
8959 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_IsReadOnly")]
8960 public static extern bool CFxFileData_IsReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1);
8961
8962 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_SetReadOnly")]
8963 public static extern void CFxFileData_SetReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8964
8965 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_GetFilename")]
8966 public static extern global::System.IntPtr CFxFileData_GetFilename(global::System.Runtime.InteropServices.HandleRef jarg1);
8967
8968 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_GetPrettyFilename")]
8969 public static extern global::System.IntPtr CFxFileData_GetPrettyFilename(global::System.Runtime.InteropServices.HandleRef jarg1);
8970
8971 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_SetFilename")]
8972 public static extern void CFxFileData_SetFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8973
8974 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_SetPrettyFilename")]
8975 public static extern void CFxFileData_SetPrettyFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8976
8977 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_GetType")]
8978 public static extern int CFxFileData_GetType(global::System.Runtime.InteropServices.HandleRef jarg1);
8979
8980 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_SetType")]
8981 public static extern void CFxFileData_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8982
8983 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_GetDwgVersion")]
8984 public static extern int CFxFileData_GetDwgVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8985
8986 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_SetDwgVersion")]
8987 public static extern void CFxFileData_SetDwgVersion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8988
8989 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_GetFlxVersion")]
8990 public static extern int CFxFileData_GetFlxVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8991
8992 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_SetFlxVersion")]
8993 public static extern void CFxFileData_SetFlxVersion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8994
8995 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_Lock")]
8996 public static extern void CFxFileData_Lock(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8997
8998 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_IsLocked")]
8999 public static extern bool CFxFileData_IsLocked(global::System.Runtime.InteropServices.HandleRef jarg1);
9000
9001 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_IsLockedGlobal")]
9002 public static extern bool CFxFileData_IsLockedGlobal(global::System.Runtime.InteropServices.HandleRef jarg1);
9003
9004 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_IsCloudStorageFile")]
9005 public static extern bool CFxFileData_IsCloudStorageFile(global::System.Runtime.InteropServices.HandleRef jarg1);
9006
9007 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_GetCloudStorageData")]
9008 public static extern global::System.IntPtr CFxFileData_GetCloudStorageData(global::System.Runtime.InteropServices.HandleRef jarg1);
9009
9010 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_SetCloudStorageData")]
9011 public static extern void CFxFileData_SetCloudStorageData(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9012
9013 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_IsNewFile")]
9014 public static extern bool CFxFileData_IsNewFile(global::System.Runtime.InteropServices.HandleRef jarg1);
9015
9016 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_Create__SWIG_0")]
9017 public static extern global::System.IntPtr CFxFileData_Create__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
9018
9019 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_Create__SWIG_1")]
9020 public static extern global::System.IntPtr CFxFileData_Create__SWIG_1();
9021
9022 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_Create__SWIG_2")]
9023 public static extern global::System.IntPtr CFxFileData_Create__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
9024
9025 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxFileData_GetAutoName")]
9026 public static extern global::System.IntPtr CFxFileData_GetAutoName();
9027
9028 [DllImport("FxManaged.dll", EntryPoint=/*@SWIG:E:\j\Build_release\2024.0.1\ODA_Rev2372d7a_Sln\Swig\SwigODABaseRules\OdSwigPlatformSettings.i,125,STRINGIZE@*/
9029"CSharp_new_CFxLayoutManagerReactor"
9030/*@SWIG@*/)]
9031 public static extern IntPtr new_CFxLayoutManagerReactor();
9032
9033
9034 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_cast")]
9035 public static extern IntPtr CFxLayoutManagerReactor_cast(HandleRef jarg1);
9036
9037 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_desc")]
9038 public static extern IntPtr CFxLayoutManagerReactor_desc();
9039
9040 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_isA")]
9041 public static extern IntPtr CFxLayoutManagerReactor_isA(HandleRef jarg1);
9042
9043 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_isASwigExplicitCFxLayoutManagerReactor")]
9044 public static extern IntPtr CFxLayoutManagerReactor_isASwigExplicitCFxLayoutManagerReactor(HandleRef jarg1);
9045
9046 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_queryX")]
9047 public static extern IntPtr CFxLayoutManagerReactor_queryX(HandleRef jarg1, HandleRef jarg2);
9048
9049 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_queryXSwigExplicitCFxLayoutManagerReactor")]
9050 public static extern IntPtr CFxLayoutManagerReactor_queryXSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, HandleRef jarg2);
9051
9052 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_createObject")]
9053 public static extern IntPtr CFxLayoutManagerReactor_createObject();
9054
9055 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeDeactivated")]
9056 public static extern void CFxLayoutManagerReactor_layoutToBeDeactivated(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9057
9058 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeDeactivatedSwigExplicitCFxLayoutManagerReactor")]
9059 public static extern void CFxLayoutManagerReactor_layoutToBeDeactivatedSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9060
9061 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeActivated")]
9062 public static extern void CFxLayoutManagerReactor_layoutToBeActivated(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9063
9064 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_layoutToBeActivatedSwigExplicitCFxLayoutManagerReactor")]
9065 public static extern void CFxLayoutManagerReactor_layoutToBeActivatedSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9066
9067 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_getRealClassName")]
9068 public static extern string CFxLayoutManagerReactor_getRealClassName(IntPtr /*SIMPLETYPE*/ jarg1);
9069
9070 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxLayoutManagerReactor")]
9071 public static extern void delete_CFxLayoutManagerReactor(HandleRef jarg1);
9072
9073 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_director_connect")]
9075
9076 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxProfile")]
9077 public static extern void delete_CFxProfile(global::System.Runtime.InteropServices.HandleRef jarg1);
9078
9079 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_GetName")]
9080 public static extern global::System.IntPtr CFxProfile_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
9081
9082 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_GetDescription")]
9083 public static extern global::System.IntPtr CFxProfile_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1);
9084
9085 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_GetSettings")]
9086 public static extern global::System.IntPtr CFxProfile_GetSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
9087
9088 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_GetStorage")]
9089 public static extern global::System.IntPtr CFxProfile_GetStorage(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
9090
9091 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_GetSystemFiles")]
9092 public static extern global::System.IntPtr CFxProfile_GetSystemFiles(global::System.Runtime.InteropServices.HandleRef jarg1);
9093
9094 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_GetRecentFiles")]
9095 public static extern global::System.IntPtr CFxProfile_GetRecentFiles(global::System.Runtime.InteropServices.HandleRef jarg1);
9096
9097 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_ResolveAlias")]
9098 public static extern global::System.IntPtr CFxProfile_ResolveAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9099
9100 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_LoadAliases")]
9101 public static extern void CFxProfile_LoadAliases(global::System.Runtime.InteropServices.HandleRef jarg1);
9102
9103 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_GetPreferences")]
9104 public static extern global::System.IntPtr CFxProfile_GetPreferences(global::System.Runtime.InteropServices.HandleRef jarg1);
9105
9106 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfile_Flush")]
9107 public static extern void CFxProfile_Flush(global::System.Runtime.InteropServices.HandleRef jarg1);
9108
9109 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxProfileManagerReactor")]
9110 public static extern void delete_CFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
9111
9112 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillChange")]
9113 public static extern void CFxProfileManagerReactor_currentProfileWillChange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9114
9115 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillChangeSwigExplicitCFxProfileManagerReactor")]
9116 public static extern void CFxProfileManagerReactor_currentProfileWillChangeSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9117
9118 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileChanged")]
9119 public static extern void CFxProfileManagerReactor_currentProfileChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9120
9121 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileChangedSwigExplicitCFxProfileManagerReactor")]
9122 public static extern void CFxProfileManagerReactor_currentProfileChangedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9123
9124 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeReset")]
9125 public static extern void CFxProfileManagerReactor_currentProfileWillBeReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9126
9127 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeResetSwigExplicitCFxProfileManagerReactor")]
9128 public static extern void CFxProfileManagerReactor_currentProfileWillBeResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9129
9130 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileReset")]
9131 public static extern void CFxProfileManagerReactor_currentProfileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9132
9133 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileResetSwigExplicitCFxProfileManagerReactor")]
9134 public static extern void CFxProfileManagerReactor_currentProfileResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9135
9136 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeSaved")]
9137 public static extern void CFxProfileManagerReactor_currentProfileWillBeSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9138
9139 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeSavedSwigExplicitCFxProfileManagerReactor")]
9140 public static extern void CFxProfileManagerReactor_currentProfileWillBeSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9141
9142 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeLoaded")]
9143 public static extern void CFxProfileManagerReactor_currentProfileWillBeLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9144
9145 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileWillBeLoadedSwigExplicitCFxProfileManagerReactor")]
9146 public static extern void CFxProfileManagerReactor_currentProfileWillBeLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9147
9148 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileSaved")]
9149 public static extern void CFxProfileManagerReactor_currentProfileSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9150
9151 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileSavedSwigExplicitCFxProfileManagerReactor")]
9152 public static extern void CFxProfileManagerReactor_currentProfileSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9153
9154 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileLoaded")]
9155 public static extern void CFxProfileManagerReactor_currentProfileLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9156
9157 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_currentProfileLoadedSwigExplicitCFxProfileManagerReactor")]
9158 public static extern void CFxProfileManagerReactor_currentProfileLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9159
9160 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillReset")]
9161 public static extern void CFxProfileManagerReactor_profileWillReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9162
9163 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillResetSwigExplicitCFxProfileManagerReactor")]
9164 public static extern void CFxProfileManagerReactor_profileWillResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9165
9166 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileReset")]
9167 public static extern void CFxProfileManagerReactor_profileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9168
9169 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileResetSwigExplicitCFxProfileManagerReactor")]
9170 public static extern void CFxProfileManagerReactor_profileResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9171
9172 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeSaved")]
9173 public static extern void CFxProfileManagerReactor_profileWillBeSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9174
9175 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeSavedSwigExplicitCFxProfileManagerReactor")]
9176 public static extern void CFxProfileManagerReactor_profileWillBeSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9177
9178 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeLoaded")]
9179 public static extern void CFxProfileManagerReactor_profileWillBeLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9180
9181 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileWillBeLoadedSwigExplicitCFxProfileManagerReactor")]
9182 public static extern void CFxProfileManagerReactor_profileWillBeLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9183
9184 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileSaved")]
9185 public static extern void CFxProfileManagerReactor_profileSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9186
9187 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileSavedSwigExplicitCFxProfileManagerReactor")]
9188 public static extern void CFxProfileManagerReactor_profileSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9189
9190 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileLoaded")]
9191 public static extern void CFxProfileManagerReactor_profileLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9192
9193 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_profileLoadedSwigExplicitCFxProfileManagerReactor")]
9194 public static extern void CFxProfileManagerReactor_profileLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9195
9196 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxProfileManagerReactor")]
9197 public static extern global::System.IntPtr new_CFxProfileManagerReactor();
9198
9199 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManagerReactor_director_connect")]
9201
9202 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileRegistryKey")]
9203 public static extern void CFxProfileManager_ProfileRegistryKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9204
9205 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileListNames")]
9206 public static extern int CFxProfileManager_ProfileListNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9207
9208 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileExport")]
9209 public static extern int CFxProfileManager_ProfileExport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9210
9211 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileImport")]
9212 public static extern int CFxProfileManager_ProfileImport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
9213
9214 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileDelete")]
9215 public static extern int CFxProfileManager_ProfileDelete(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9216
9217 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileReset")]
9218 public static extern int CFxProfileManager_ProfileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9219
9220 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileSetCurrent")]
9221 public static extern int CFxProfileManager_ProfileSetCurrent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9222
9223 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileGetCurrent")]
9224 public static extern global::System.IntPtr CFxProfileManager_ProfileGetCurrent(global::System.Runtime.InteropServices.HandleRef jarg1);
9225
9226 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileGetFixed")]
9227 public static extern global::System.IntPtr CFxProfileManager_ProfileGetFixed(global::System.Runtime.InteropServices.HandleRef jarg1);
9228
9229 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileGet")]
9230 public static extern global::System.IntPtr CFxProfileManager_ProfileGet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9231
9232 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileCopy")]
9233 public static extern int CFxProfileManager_ProfileCopy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9234
9235 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileRename")]
9236 public static extern int CFxProfileManager_ProfileRename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9237
9238 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_ProfileSave")]
9239 public static extern int CFxProfileManager_ProfileSave(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9240
9241 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_addReactor")]
9242 public static extern void CFxProfileManager_addReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9243
9244 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileManager_removeReactor")]
9245 public static extern void CFxProfileManager_removeReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9246
9247 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxProfileManager")]
9248 public static extern void delete_CFxProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1);
9249
9250 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxProfileStorage")]
9251 public static extern void delete_CFxProfileStorage(global::System.Runtime.InteropServices.HandleRef jarg1);
9252
9253 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileStorage_DeleteNode")]
9254 public static extern int CFxProfileStorage_DeleteNode(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9255
9256 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileStorage_GetStorageFile")]
9257 public static extern int CFxProfileStorage_GetStorageFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9258
9259 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxProfileStorage_Save")]
9260 public static extern int CFxProfileStorage_Save(global::System.Runtime.InteropServices.HandleRef jarg1);
9261
9262 [DllImport("FxManaged.dll", EntryPoint=/*@SWIG:E:\j\Build_release\2024.0.1\ODA_Rev2372d7a_Sln\Swig\SwigODABaseRules\OdSwigPlatformSettings.i,125,STRINGIZE@*/
9263"CSharp_new_CFxDatabaseReactor"
9264/*@SWIG@*/)]
9265 public static extern IntPtr new_CFxDatabaseReactor();
9266
9267
9268 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_cast")]
9269 public static extern IntPtr CFxDatabaseReactor_cast(HandleRef jarg1);
9270
9271 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_desc")]
9272 public static extern IntPtr CFxDatabaseReactor_desc();
9273
9274 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_isA")]
9275 public static extern IntPtr CFxDatabaseReactor_isA(HandleRef jarg1);
9276
9277 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_isASwigExplicitCFxDatabaseReactor")]
9278 public static extern IntPtr CFxDatabaseReactor_isASwigExplicitCFxDatabaseReactor(HandleRef jarg1);
9279
9280 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_queryX")]
9281 public static extern IntPtr CFxDatabaseReactor_queryX(HandleRef jarg1, HandleRef jarg2);
9282
9283 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_queryXSwigExplicitCFxDatabaseReactor")]
9284 public static extern IntPtr CFxDatabaseReactor_queryXSwigExplicitCFxDatabaseReactor(HandleRef jarg1, HandleRef jarg2);
9285
9286 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_createObject")]
9287 public static extern IntPtr CFxDatabaseReactor_createObject();
9288
9289 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDatabaseReactor")]
9290 public static extern void delete_CFxDatabaseReactor(HandleRef jarg1);
9291
9292 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_getRealClassName")]
9293 public static extern string CFxDatabaseReactor_getRealClassName(IntPtr /*SIMPLETYPE*/ jarg1);
9294
9295 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_director_connect")]
9297
9298 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_cast")]
9299 public static extern global::System.IntPtr CFxCurvePE_cast(HandleRef jarg1);
9300
9301 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_desc")]
9302 public static extern IntPtr CFxCurvePE_desc();
9303
9304 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_isA")]
9305 public static extern IntPtr CFxCurvePE_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
9306
9307 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_queryX")]
9308 public static extern IntPtr CFxCurvePE_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
9309
9310 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_createObject")]
9311 public static extern global::System.IntPtr CFxCurvePE_createObject();
9312
9313 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getExtensionPoints__SWIG_0")]
9314 public static extern int CFxCurvePE_getExtensionPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, IntPtr /*SIMPLETYPE*/ jarg6);
9315
9316 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getExtensionPoints__SWIG_1")]
9317 public static extern int CFxCurvePE_getExtensionPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
9318
9319 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getExtensionPoints__SWIG_2")]
9320 public static extern int CFxCurvePE_getExtensionPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9321
9322 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getFilletPoints__SWIG_0")]
9323 public static extern int CFxCurvePE_getFilletPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, IntPtr /*SIMPLETYPE*/ jarg6);
9324
9325 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getFilletPoints__SWIG_1")]
9326 public static extern int CFxCurvePE_getFilletPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
9327
9328 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getFilletPoints__SWIG_2")]
9329 public static extern int CFxCurvePE_getFilletPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9330
9331 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getGeneralCurve__SWIG_0")]
9332 public static extern int CFxCurvePE_getGeneralCurve__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg3, bool jarg4, IntPtr /*SIMPLETYPE*/ jarg5);
9333
9334 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getGeneralCurve__SWIG_1")]
9335 public static extern int CFxCurvePE_getGeneralCurve__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg3, bool jarg4);
9336
9337 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_getArea")]
9338 public static extern int CFxCurvePE_getArea(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, out double jarg3);
9339
9340 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE__getExtensionPoints__SWIG_0")]
9341 public static extern bool CFxCurvePE__getExtensionPoints__SWIG_0(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
9342
9343 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE__getExtensionPoints__SWIG_1")]
9344 public static extern bool CFxCurvePE__getExtensionPoints__SWIG_1(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9345
9346 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE__getFilletPoints__SWIG_0")]
9347 public static extern bool CFxCurvePE__getFilletPoints__SWIG_0(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
9348
9349 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE__getFilletPoints__SWIG_1")]
9350 public static extern bool CFxCurvePE__getFilletPoints__SWIG_1(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9351
9352 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE__getGeneralCurve")]
9353 public static extern bool CFxCurvePE__getGeneralCurve(HandleRef jarg1, ref IntPtr /*OUT_PARAM for SMARTPTR*/ jarg2, bool jarg3);
9354
9355 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxCurvePE")]
9356 public static extern void delete_CFxCurvePE(global::System.Runtime.InteropServices.HandleRef jarg1);
9357
9358 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_cast")]
9359 public static extern global::System.IntPtr CFxGripPointsPE_cast(HandleRef jarg1);
9360
9361 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_desc")]
9362 public static extern IntPtr CFxGripPointsPE_desc();
9363
9364 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_isA")]
9365 public static extern IntPtr CFxGripPointsPE_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
9366
9367 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_queryX")]
9368 public static extern IntPtr CFxGripPointsPE_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
9369
9370 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_createObject")]
9371 public static extern global::System.IntPtr CFxGripPointsPE_createObject();
9372
9373 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_getOsnapPoints")]
9374 public static extern int CFxGripPointsPE_getOsnapPoints(HandleRef jarg1, int jarg2, IntPtr /*SIMPLETYPE*/ jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8);
9375
9376 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_getObjectCount")]
9377 public static extern int CFxGripPointsPE_getObjectCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9378
9379 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxGripPointsPE")]
9380 public static extern void delete_CFxGripPointsPE(global::System.Runtime.InteropServices.HandleRef jarg1);
9381
9382
9383 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxUITempOverrideKey_GetKeySequence")]
9384 public static extern IntPtr CFxUITempOverrideKey_GetKeySequence(HandleRef jarg1);
9385
9386 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxUITempOverrideKey_SetKeySequence")]
9387 public static extern void CFxUITempOverrideKey_SetKeySequence(HandleRef jarg1, HandleRef jarg2);
9388
9389
9390 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxUIAccelerator_GetKeySequence")]
9391 public static extern IntPtr CFxUIAccelerator_GetKeySequence(HandleRef jarg1);
9392
9393 [DllImport("FxManaged.dll", EntryPoint="CSharp_CFxUIAccelerator_SetKeySequence")]
9394 public static extern void CFxUIAccelerator_SetKeySequence(HandleRef jarg1, HandleRef jarg2);
9395
9396
9397 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUI")]
9398 public static extern void delete_CFxUI(global::System.Runtime.InteropServices.HandleRef jarg1);
9399
9400 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_LoadInterface")]
9401 public static extern void CFxUI_LoadInterface(global::System.Runtime.InteropServices.HandleRef jarg1);
9402
9403 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_SaveInterface")]
9404 public static extern void CFxUI_SaveInterface(global::System.Runtime.InteropServices.HandleRef jarg1);
9405
9406 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_LoadResourceFile__SWIG_0")]
9407 public static extern bool CFxUI_LoadResourceFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9408
9409 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_LoadResourceFile__SWIG_1")]
9410 public static extern bool CFxUI_LoadResourceFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9411
9412 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_FindItem")]
9413 public static extern global::System.IntPtr CFxUI_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9414
9415 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateItemDefinition")]
9416 public static extern global::System.IntPtr CFxUI_CreateItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9417
9418 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyItemDefinition")]
9419 public static extern void CFxUI_DestroyItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9420
9421 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_RemoveItemDefinition")]
9422 public static extern bool CFxUI_RemoveItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9423
9424 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_AddGroup")]
9425 public static extern bool CFxUI_AddGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9426
9427 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_RemoveGroup")]
9428 public static extern bool CFxUI_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9429
9430 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetStartUpGroup")]
9431 public static extern global::System.IntPtr CFxUI_GetStartUpGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
9432
9433 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetStartUpWorkspace")]
9434 public static extern global::System.IntPtr CFxUI_GetStartUpWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1);
9435
9436 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetGroup")]
9437 public static extern global::System.IntPtr CFxUI_GetGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9438
9439 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateGroupIterator")]
9440 public static extern global::System.IntPtr CFxUI_CreateGroupIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
9441
9442 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_AddWorkspace")]
9443 public static extern bool CFxUI_AddWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9444
9445 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_RemoveWorkspace")]
9446 public static extern bool CFxUI_RemoveWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9447
9448 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetWorkspace")]
9449 public static extern global::System.IntPtr CFxUI_GetWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9450
9451 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateWorkspaceIterator")]
9452 public static extern global::System.IntPtr CFxUI_CreateWorkspaceIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
9453
9454 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetCurrentWorkspace")]
9455 public static extern global::System.IntPtr CFxUI_GetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1);
9456
9457 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_SetCurrentWorkspace")]
9458 public static extern void CFxUI_SetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9459
9460 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateUniqueID")]
9461 public static extern global::System.IntPtr CFxUI_CreateUniqueID(global::System.Runtime.InteropServices.HandleRef jarg1);
9462
9463 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateGroup")]
9464 public static extern global::System.IntPtr CFxUI_CreateGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9465
9466 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeGroup")]
9467 public static extern global::System.IntPtr CFxUI_CreateRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9468
9469 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateWorkspace")]
9470 public static extern global::System.IntPtr CFxUI_CreateWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9471
9472 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateMenuItem__SWIG_0")]
9473 public static extern global::System.IntPtr CFxUI_CreateMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
9474
9475 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateMenuItem__SWIG_1")]
9476 public static extern global::System.IntPtr CFxUI_CreateMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9477
9478 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyMenuItem")]
9479 public static extern void CFxUI_DestroyMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9480
9481 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateToolbarItem__SWIG_0")]
9482 public static extern global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9483
9484 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateToolbarItem__SWIG_1")]
9485 public static extern global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
9486
9487 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateToolbarItem__SWIG_2")]
9488 public static extern global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
9489
9490 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyToolbarItem")]
9491 public static extern void CFxUI_DestroyToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9492
9493 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonTabItem__SWIG_0")]
9494 public static extern global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9495
9496 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonTabItem__SWIG_1")]
9497 public static extern global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9498
9499 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonPanelItem__SWIG_0")]
9500 public static extern global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9501
9502 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonPanelItem__SWIG_1")]
9503 public static extern global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9504
9505 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowItem__SWIG_0")]
9506 public static extern global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9507
9508 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowItem__SWIG_1")]
9509 public static extern global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9510
9511 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowElementItem__SWIG_0")]
9512 public static extern global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9513
9514 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonRowElementItem__SWIG_1")]
9515 public static extern global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9516
9517 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBar__SWIG_0")]
9518 public static extern global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9519
9520 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBar__SWIG_1")]
9521 public static extern global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9522
9523 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonSystemMenuItem__SWIG_0")]
9524 public static extern global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9525
9526 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonSystemMenuItem__SWIG_1")]
9527 public static extern global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9528
9529 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBarItem__SWIG_0")]
9530 public static extern global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9531
9532 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonQuickAccessBarItem__SWIG_1")]
9533 public static extern global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9534
9535 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonHelpMenuItem__SWIG_0")]
9536 public static extern global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9537
9538 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRibbonHelpMenuItem__SWIG_1")]
9539 public static extern global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9540
9541 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonTabItem")]
9542 public static extern void CFxUI_DestroyRibbonTabItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9543
9544 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonPanelItem")]
9545 public static extern void CFxUI_DestroyRibbonPanelItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9546
9547 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonRowItem")]
9548 public static extern void CFxUI_DestroyRibbonRowItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9549
9550 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonRowElementItem")]
9551 public static extern void CFxUI_DestroyRibbonRowElementItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9552
9553 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonQuickAccessBar")]
9554 public static extern void CFxUI_DestroyRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9555
9556 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonSystemMenuItem")]
9557 public static extern void CFxUI_DestroyRibbonSystemMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9558
9559 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonHelpMenuItem")]
9560 public static extern void CFxUI_DestroyRibbonHelpMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9561
9562 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRibbonQuickAccessBarItem")]
9563 public static extern void CFxUI_DestroyRibbonQuickAccessBarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9564
9565 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateDoubleClickAction__SWIG_0")]
9566 public static extern global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9567
9568 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateDoubleClickAction__SWIG_1")]
9569 public static extern global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9570
9571 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyDoubleClickAction")]
9572 public static extern void CFxUI_DestroyDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9573
9574 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateAccelerator__SWIG_0")]
9575 public static extern global::System.IntPtr CFxUI_CreateAccelerator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9576
9577 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateAccelerator__SWIG_1")]
9578 public static extern global::System.IntPtr CFxUI_CreateAccelerator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9579
9580 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyAccelerator")]
9581 public static extern void CFxUI_DestroyAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9582
9583 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateMouseButton__SWIG_0")]
9584 public static extern global::System.IntPtr CFxUI_CreateMouseButton__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9585
9586 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateMouseButton__SWIG_1")]
9587 public static extern global::System.IntPtr CFxUI_CreateMouseButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
9588
9589 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyMouseButton")]
9590 public static extern void CFxUI_DestroyMouseButton(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9591
9592 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateTabletMenu")]
9593 public static extern global::System.IntPtr CFxUI_CreateTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
9594
9595 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyTabletMenu")]
9596 public static extern void CFxUI_DestroyTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9597
9598 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateTempOverrideKey__SWIG_0")]
9599 public static extern global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9600
9601 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateTempOverrideKey__SWIG_1")]
9602 public static extern global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9603
9604 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyTempOverrideKey")]
9605 public static extern void CFxUI_DestroyTempOverrideKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9606
9607 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateImageItem__SWIG_0")]
9608 public static extern global::System.IntPtr CFxUI_CreateImageItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9609
9610 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateImageItem__SWIG_1")]
9611 public static extern global::System.IntPtr CFxUI_CreateImageItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9612
9613 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyImageItem")]
9614 public static extern void CFxUI_DestroyImageItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9615
9616 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbar__SWIG_0")]
9617 public static extern global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9618
9619 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbar__SWIG_1")]
9620 public static extern global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9621
9622 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeToolbar")]
9623 public static extern void CFxUI_DestroyRuntimeToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9624
9625 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_AddUserDefaultContextMenu")]
9626 public static extern void CFxUI_AddUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9627
9628 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_RemoveUserDefaultContextMenu")]
9629 public static extern void CFxUI_RemoveUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9630
9631 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_AddUserObjectContextMenu")]
9632 public static extern void CFxUI_AddUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9633
9634 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_RemoveUserObjectContextMenu")]
9635 public static extern void CFxUI_RemoveUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9636
9637 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_AddUserCommandContextMenu")]
9638 public static extern void CFxUI_AddUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9639
9640 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_RemoveUserCommandContextMenu")]
9641 public static extern void CFxUI_RemoveUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9642
9643 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DisplayContextMenu")]
9644 public static extern bool CFxUI_DisplayContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
9645
9646 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_Menucmd")]
9647 public static extern int CFxUI_Menucmd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9648
9649 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CheckEvents")]
9650 public static extern bool CFxUI_CheckEvents(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5);
9651
9652 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_ResetEvents")]
9653 public static extern void CFxUI_ResetEvents(global::System.Runtime.InteropServices.HandleRef jarg1);
9654
9655 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_Update__SWIG_0")]
9656 public static extern void CFxUI_Update__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
9657
9658 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_Update__SWIG_1")]
9659 public static extern void CFxUI_Update__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9660
9661 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_UpdateMenu")]
9662 public static extern void CFxUI_UpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
9663
9664 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_UpdateRibbon")]
9665 public static extern void CFxUI_UpdateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1);
9666
9667 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_UpdatePanelPreview")]
9668 public static extern global::System.IntPtr CFxUI_UpdatePanelPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
9669
9670 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_SetCleanScreenState")]
9671 public static extern void CFxUI_SetCleanScreenState(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
9672
9673 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_AddUIReactor")]
9674 public static extern void CFxUI_AddUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9675
9676 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_RemoveUIReactor")]
9677 public static extern void CFxUI_RemoveUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9678
9679 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeItemDefinition")]
9680 public static extern global::System.IntPtr CFxUI_CreateRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9681
9682 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeItemDefinition")]
9683 public static extern void CFxUI_DestroyRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9684
9685 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeMenuItem__SWIG_0")]
9686 public static extern global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
9687
9688 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeMenuItem__SWIG_1")]
9689 public static extern global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
9690
9691 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeMenuItem")]
9692 public static extern void CFxUI_DestroyRuntimeMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9693
9694 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbarItem__SWIG_0")]
9695 public static extern global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
9696
9697 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_CreateRuntimeToolbarItem__SWIG_1")]
9698 public static extern global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
9699
9700 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_DestroyRuntimeToolbarItem")]
9701 public static extern void CFxUI_DestroyRuntimeToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9702
9703 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetVisibleMenuCollection")]
9704 public static extern global::System.IntPtr CFxUI_GetVisibleMenuCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9705
9706 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetVisibleToolbarCollection")]
9707 public static extern global::System.IntPtr CFxUI_GetVisibleToolbarCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9708
9709 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonTabCollection")]
9710 public static extern global::System.IntPtr CFxUI_GetVisibleRibbonTabCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9711
9712 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonSystemMenu")]
9713 public static extern global::System.IntPtr CFxUI_GetVisibleRibbonSystemMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
9714
9715 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonQuickAccessBar")]
9716 public static extern global::System.IntPtr CFxUI_GetVisibleRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1);
9717
9718 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUI_GetVisibleRibbonHelpMenu")]
9719 public static extern global::System.IntPtr CFxUI_GetVisibleRibbonHelpMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
9720
9721 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIDockableWindowCollection")]
9722 public static extern void delete_CFxUIDockableWindowCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9723
9724 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindowCollection_GetCount")]
9725 public static extern uint CFxUIDockableWindowCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9726
9727 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindowCollection_GetItem")]
9728 public static extern global::System.IntPtr CFxUIDockableWindowCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
9729
9730 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindowCollection_UpdateCurrentState")]
9731 public static extern void CFxUIDockableWindowCollection_UpdateCurrentState(global::System.Runtime.InteropServices.HandleRef jarg1);
9732
9733 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetName")]
9734 public static extern global::System.IntPtr CFxUIWorkspace_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
9735
9736 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetName")]
9737 public static extern void CFxUIWorkspace_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9738
9739 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetLocalizedName")]
9740 public static extern global::System.IntPtr CFxUIWorkspace_GetLocalizedName(global::System.Runtime.InteropServices.HandleRef jarg1);
9741
9742 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetLocalizedName")]
9743 public static extern void CFxUIWorkspace_SetLocalizedName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9744
9745 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetFileName")]
9746 public static extern global::System.IntPtr CFxUIWorkspace_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1);
9747
9748 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetFileName")]
9749 public static extern void CFxUIWorkspace_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9750
9751 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetDescription")]
9752 public static extern global::System.IntPtr CFxUIWorkspace_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1);
9753
9754 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetDescription")]
9755 public static extern void CFxUIWorkspace_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9756
9757 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetMenus")]
9758 public static extern global::System.IntPtr CFxUIWorkspace_GetMenus(global::System.Runtime.InteropServices.HandleRef jarg1);
9759
9760 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetToolbars")]
9761 public static extern global::System.IntPtr CFxUIWorkspace_GetToolbars(global::System.Runtime.InteropServices.HandleRef jarg1);
9762
9763 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetNavigationToolbars")]
9764 public static extern global::System.IntPtr CFxUIWorkspace_GetNavigationToolbars(global::System.Runtime.InteropServices.HandleRef jarg1);
9765
9766 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetDockableWindows")]
9767 public static extern global::System.IntPtr CFxUIWorkspace_GetDockableWindows(global::System.Runtime.InteropServices.HandleRef jarg1);
9768
9769 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetStatusBarVisible")]
9770 public static extern bool CFxUIWorkspace_GetStatusBarVisible(global::System.Runtime.InteropServices.HandleRef jarg1);
9771
9772 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetStatusBarVisible")]
9773 public static extern void CFxUIWorkspace_SetStatusBarVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
9774
9775 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_GetRibbonSystemMenu")]
9776 public static extern global::System.IntPtr CFxUIWorkspace_GetRibbonSystemMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
9777
9778 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIWorkspace_SetRibbonQuickAccessBar")]
9779 public static extern void CFxUIWorkspace_SetRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9780
9781 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetName")]
9782 public static extern global::System.IntPtr CFxUIGroup_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
9783
9784 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetFileName")]
9785 public static extern global::System.IntPtr CFxUIGroup_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1);
9786
9787 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_IsBaseGroup")]
9788 public static extern bool CFxUIGroup_IsBaseGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
9789
9790 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetUIItemDefinitions")]
9791 public static extern global::System.IntPtr CFxUIGroup_GetUIItemDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1);
9792
9793 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetToolbars")]
9794 public static extern global::System.IntPtr CFxUIGroup_GetToolbars(global::System.Runtime.InteropServices.HandleRef jarg1);
9795
9796 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetNavigationToolbars")]
9797 public static extern global::System.IntPtr CFxUIGroup_GetNavigationToolbars(global::System.Runtime.InteropServices.HandleRef jarg1);
9798
9799 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetMenus")]
9800 public static extern global::System.IntPtr CFxUIGroup_GetMenus(global::System.Runtime.InteropServices.HandleRef jarg1);
9801
9802 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetContextMenus")]
9803 public static extern global::System.IntPtr CFxUIGroup_GetContextMenus(global::System.Runtime.InteropServices.HandleRef jarg1);
9804
9805 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonTabSelectors")]
9806 public static extern global::System.IntPtr CFxUIGroup_GetRibbonTabSelectors(global::System.Runtime.InteropServices.HandleRef jarg1);
9807
9808 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonQuickAccessBars")]
9809 public static extern global::System.IntPtr CFxUIGroup_GetRibbonQuickAccessBars(global::System.Runtime.InteropServices.HandleRef jarg1);
9810
9811 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonSystemMenuItems")]
9812 public static extern global::System.IntPtr CFxUIGroup_GetRibbonSystemMenuItems(global::System.Runtime.InteropServices.HandleRef jarg1);
9813
9814 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetRibbonHelpMenuItems")]
9815 public static extern global::System.IntPtr CFxUIGroup_GetRibbonHelpMenuItems(global::System.Runtime.InteropServices.HandleRef jarg1);
9816
9817 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetDoubleClickActions")]
9818 public static extern global::System.IntPtr CFxUIGroup_GetDoubleClickActions(global::System.Runtime.InteropServices.HandleRef jarg1);
9819
9820 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseButtons")]
9821 public static extern global::System.IntPtr CFxUIGroup_GetMouseButtons(global::System.Runtime.InteropServices.HandleRef jarg1);
9822
9823 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseClicks")]
9824 public static extern global::System.IntPtr CFxUIGroup_GetMouseClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9825
9826 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseShiftClicks")]
9827 public static extern global::System.IntPtr CFxUIGroup_GetMouseShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9828
9829 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseCtrlClicks")]
9830 public static extern global::System.IntPtr CFxUIGroup_GetMouseCtrlClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9831
9832 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetMouseCtrlShiftClicks")]
9833 public static extern global::System.IntPtr CFxUIGroup_GetMouseCtrlShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9834
9835 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetAccelerators")]
9836 public static extern global::System.IntPtr CFxUIGroup_GetAccelerators(global::System.Runtime.InteropServices.HandleRef jarg1);
9837
9838 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletMenus")]
9839 public static extern global::System.IntPtr CFxUIGroup_GetTabletMenus(global::System.Runtime.InteropServices.HandleRef jarg1);
9840
9841 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletClicks")]
9842 public static extern global::System.IntPtr CFxUIGroup_GetTabletClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9843
9844 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletShiftClicks")]
9845 public static extern global::System.IntPtr CFxUIGroup_GetTabletShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9846
9847 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletCtrlClicks")]
9848 public static extern global::System.IntPtr CFxUIGroup_GetTabletCtrlClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9849
9850 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetTabletCtrlShiftClicks")]
9851 public static extern global::System.IntPtr CFxUIGroup_GetTabletCtrlShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1);
9852
9853 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetTempOverrideKeys")]
9854 public static extern global::System.IntPtr CFxUIGroup_GetTempOverrideKeys(global::System.Runtime.InteropServices.HandleRef jarg1);
9855
9856 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetMiddleButtonDoubleClickAction")]
9857 public static extern global::System.IntPtr CFxUIGroup_GetMiddleButtonDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1);
9858
9859 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_SetMiddleButtonDoubleClickAction")]
9860 public static extern void CFxUIGroup_SetMiddleButtonDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9861
9862 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_GetImageItems")]
9863 public static extern global::System.IntPtr CFxUIGroup_GetImageItems(global::System.Runtime.InteropServices.HandleRef jarg1);
9864
9865 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIGroup_IsRuntimeGroup")]
9866 public static extern bool CFxUIGroup_IsRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
9867
9868 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIItemDefinitionCollection")]
9869 public static extern void delete_CFxUIItemDefinitionCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9870
9871 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_Add")]
9872 public static extern bool CFxUIItemDefinitionCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9873
9874 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_CreateIterator")]
9875 public static extern global::System.IntPtr CFxUIItemDefinitionCollection_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
9876
9877 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_FindItem")]
9878 public static extern global::System.IntPtr CFxUIItemDefinitionCollection_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9879
9880 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinitionCollection_Has")]
9881 public static extern bool CFxUIItemDefinitionCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9882
9883 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIMenuItemCollection")]
9884 public static extern void delete_CFxUIMenuItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9885
9886 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_InsertAfter")]
9887 public static extern bool CFxUIMenuItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9888
9889 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Add")]
9890 public static extern bool CFxUIMenuItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9891
9892 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Remove")]
9893 public static extern bool CFxUIMenuItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9894
9895 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_GetCount")]
9896 public static extern uint CFxUIMenuItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9897
9898 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_GetItem")]
9899 public static extern global::System.IntPtr CFxUIMenuItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
9900
9901 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Clear")]
9902 public static extern void CFxUIMenuItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
9903
9904 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItemCollection_Has")]
9905 public static extern bool CFxUIMenuItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9906
9907 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIToolbarItemCollection")]
9908 public static extern void delete_CFxUIToolbarItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9909
9910 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_InsertAfter")]
9911 public static extern bool CFxUIToolbarItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
9912
9913 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Add")]
9914 public static extern bool CFxUIToolbarItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9915
9916 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Remove")]
9917 public static extern bool CFxUIToolbarItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9918
9919 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_GetCount")]
9920 public static extern uint CFxUIToolbarItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9921
9922 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_GetItem")]
9923 public static extern global::System.IntPtr CFxUIToolbarItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
9924
9925 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Clear")]
9926 public static extern void CFxUIToolbarItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
9927
9928 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItemCollection_Has")]
9929 public static extern bool CFxUIToolbarItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9930
9931 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIDoubleClickActionsCollection")]
9932 public static extern void delete_CFxUIDoubleClickActionsCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9933
9934 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_Add")]
9935 public static extern bool CFxUIDoubleClickActionsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9936
9937 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_Remove")]
9938 public static extern bool CFxUIDoubleClickActionsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9939
9940 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_GetCount")]
9941 public static extern uint CFxUIDoubleClickActionsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9942
9943 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_GetItem__SWIG_0")]
9944 public static extern global::System.IntPtr CFxUIDoubleClickActionsCollection_GetItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
9945
9946 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickActionsCollection_GetItem__SWIG_1")]
9947 public static extern global::System.IntPtr CFxUIDoubleClickActionsCollection_GetItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9948
9949 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIButtonsCollection")]
9950 public static extern void delete_CFxUIButtonsCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9951
9952 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_Add")]
9953 public static extern bool CFxUIButtonsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9954
9955 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_Remove")]
9956 public static extern bool CFxUIButtonsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9957
9958 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_GetCount")]
9959 public static extern uint CFxUIButtonsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9960
9961 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButtonsCollection_GetItem")]
9962 public static extern global::System.IntPtr CFxUIButtonsCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
9963
9964 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIAcceleratorsCollection")]
9965 public static extern void delete_CFxUIAcceleratorsCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9966
9967 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_Add")]
9968 public static extern bool CFxUIAcceleratorsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9969
9970 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_Remove")]
9971 public static extern bool CFxUIAcceleratorsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9972
9973 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_GetCount")]
9974 public static extern uint CFxUIAcceleratorsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9975
9976 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAcceleratorsCollection_GetItem")]
9977 public static extern global::System.IntPtr CFxUIAcceleratorsCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
9978
9979 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUITabletMenusCollection")]
9980 public static extern void delete_CFxUITabletMenusCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9981
9982 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_Add")]
9983 public static extern bool CFxUITabletMenusCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9984
9985 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_Remove")]
9986 public static extern bool CFxUITabletMenusCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9987
9988 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_GetCount")]
9989 public static extern uint CFxUITabletMenusCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
9990
9991 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenusCollection_GetItem")]
9992 public static extern global::System.IntPtr CFxUITabletMenusCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
9993
9994 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUITempOverrideKeysCollection")]
9995 public static extern void delete_CFxUITempOverrideKeysCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
9996
9997 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKeysCollection_Add")]
9998 public static extern bool CFxUITempOverrideKeysCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
9999
10000 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKeysCollection_Remove")]
10001 public static extern bool CFxUITempOverrideKeysCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10002
10003 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKeysCollection_GetCount")]
10004 public static extern uint CFxUITempOverrideKeysCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
10005
10006 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIImageItemCollection")]
10007 public static extern void delete_CFxUIImageItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1);
10008
10009 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Add")]
10010 public static extern bool CFxUIImageItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10011
10012 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Remove")]
10013 public static extern bool CFxUIImageItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10014
10015 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_GetCount")]
10016 public static extern uint CFxUIImageItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1);
10017
10018 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_GetItem")]
10019 public static extern global::System.IntPtr CFxUIImageItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
10020
10021 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Clear")]
10022 public static extern void CFxUIImageItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10023
10024 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItemCollection_Has")]
10025 public static extern bool CFxUIImageItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10026
10027 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetID")]
10028 public static extern void CFxUIItemDefinition_SetID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10029
10030 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetID")]
10031 public static extern global::System.IntPtr CFxUIItemDefinition_GetID(global::System.Runtime.InteropServices.HandleRef jarg1);
10032
10033 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetContext")]
10034 public static extern global::System.IntPtr CFxUIItemDefinition_GetContext(global::System.Runtime.InteropServices.HandleRef jarg1);
10035
10036 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetName")]
10037 public static extern global::System.IntPtr CFxUIItemDefinition_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10038
10039 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetName")]
10040 public static extern void CFxUIItemDefinition_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10041
10042 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetCommand")]
10043 public static extern global::System.IntPtr CFxUIItemDefinition_GetCommand(global::System.Runtime.InteropServices.HandleRef jarg1);
10044
10045 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetCommand")]
10046 public static extern void CFxUIItemDefinition_SetCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10047
10048 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetIcon")]
10049 public static extern global::System.IntPtr CFxUIItemDefinition_GetIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10050
10051 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetDarkIcon")]
10052 public static extern global::System.IntPtr CFxUIItemDefinition_GetDarkIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10053
10054 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetLightIcon")]
10055 public static extern global::System.IntPtr CFxUIItemDefinition_GetLightIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10056
10057 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetDarkIconInfo")]
10058 public static extern global::System.IntPtr CFxUIItemDefinition_GetDarkIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10059
10060 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetDarkIconInfo")]
10061 public static extern void CFxUIItemDefinition_SetDarkIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10062
10063 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetLightIconInfo")]
10064 public static extern global::System.IntPtr CFxUIItemDefinition_GetLightIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10065
10066 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetLightIconInfo")]
10067 public static extern void CFxUIItemDefinition_SetLightIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10068
10069 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_GetDescription")]
10070 public static extern global::System.IntPtr CFxUIItemDefinition_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1);
10071
10072 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetDescription")]
10073 public static extern void CFxUIItemDefinition_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10074
10075 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_IsObsolete")]
10076 public static extern bool CFxUIItemDefinition_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10077
10078 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_SetObsolete")]
10079 public static extern void CFxUIItemDefinition_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10080
10081 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIItemDefinition_IsRuntime")]
10082 public static extern bool CFxUIItemDefinition_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10083
10084 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetUID")]
10085 public static extern global::System.IntPtr CFxUIMenuItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10086
10087 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetUID")]
10088 public static extern void CFxUIMenuItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10089
10090 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetName")]
10091 public static extern global::System.IntPtr CFxUIMenuItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10092
10093 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetName")]
10094 public static extern void CFxUIMenuItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10095
10096 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetAliases")]
10097 public static extern global::System.IntPtr CFxUIMenuItem_GetAliases(global::System.Runtime.InteropServices.HandleRef jarg1);
10098
10099 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_AddAlias")]
10100 public static extern void CFxUIMenuItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10101
10102 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetDefinition")]
10103 public static extern void CFxUIMenuItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10104
10105 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetDefinition")]
10106 public static extern global::System.IntPtr CFxUIMenuItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
10107
10108 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetParent")]
10109 public static extern global::System.IntPtr CFxUIMenuItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1);
10110
10111 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetChildren")]
10112 public static extern global::System.IntPtr CFxUIMenuItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1);
10113
10114 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsAction")]
10115 public static extern bool CFxUIMenuItem_IsAction(global::System.Runtime.InteropServices.HandleRef jarg1);
10116
10117 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsSeparator")]
10118 public static extern bool CFxUIMenuItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1);
10119
10120 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetToSeparator")]
10121 public static extern void CFxUIMenuItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1);
10122
10123 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_GetType")]
10124 public static extern int CFxUIMenuItem_GetType(global::System.Runtime.InteropServices.HandleRef jarg1);
10125
10126 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetType")]
10127 public static extern void CFxUIMenuItem_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10128
10129 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsObsolete")]
10130 public static extern bool CFxUIMenuItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10131
10132 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_SetObsolete")]
10133 public static extern void CFxUIMenuItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10134
10135 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIMenuItem_IsRuntime")]
10136 public static extern bool CFxUIMenuItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10137
10138 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetUID")]
10139 public static extern global::System.IntPtr CFxUIToolbarItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10140
10141 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetUID")]
10142 public static extern void CFxUIToolbarItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10143
10144 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetName")]
10145 public static extern global::System.IntPtr CFxUIToolbarItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10146
10147 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetName")]
10148 public static extern void CFxUIToolbarItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10149
10150 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetAliases")]
10151 public static extern global::System.IntPtr CFxUIToolbarItem_GetAliases(global::System.Runtime.InteropServices.HandleRef jarg1);
10152
10153 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_AddAlias")]
10154 public static extern void CFxUIToolbarItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10155
10156 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDefinition")]
10157 public static extern void CFxUIToolbarItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10158
10159 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDefinition")]
10160 public static extern global::System.IntPtr CFxUIToolbarItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
10161
10162 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetParent")]
10163 public static extern global::System.IntPtr CFxUIToolbarItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1);
10164
10165 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetChildren")]
10166 public static extern global::System.IntPtr CFxUIToolbarItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1);
10167
10168 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetType")]
10169 public static extern int CFxUIToolbarItem_GetType(global::System.Runtime.InteropServices.HandleRef jarg1);
10170
10171 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsAction")]
10172 public static extern bool CFxUIToolbarItem_IsAction(global::System.Runtime.InteropServices.HandleRef jarg1);
10173
10174 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsSeparator")]
10175 public static extern bool CFxUIToolbarItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1);
10176
10177 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetToSeparator")]
10178 public static extern void CFxUIToolbarItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1);
10179
10180 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetOnByDefault")]
10181 public static extern bool CFxUIToolbarItem_GetOnByDefault(global::System.Runtime.InteropServices.HandleRef jarg1);
10182
10183 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetOnByDefault")]
10184 public static extern void CFxUIToolbarItem_SetOnByDefault(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10185
10186 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetOrientation")]
10187 public static extern int CFxUIToolbarItem_GetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1);
10188
10189 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetOrientation")]
10190 public static extern void CFxUIToolbarItem_SetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10191
10192 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetMovable")]
10193 public static extern bool CFxUIToolbarItem_GetMovable(global::System.Runtime.InteropServices.HandleRef jarg1);
10194
10195 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetMovable")]
10196 public static extern void CFxUIToolbarItem_SetMovable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10197
10198 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDefXLocation")]
10199 public static extern int CFxUIToolbarItem_GetDefXLocation(global::System.Runtime.InteropServices.HandleRef jarg1);
10200
10201 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDefXLocation")]
10202 public static extern void CFxUIToolbarItem_SetDefXLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10203
10204 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDefYLocation")]
10205 public static extern int CFxUIToolbarItem_GetDefYLocation(global::System.Runtime.InteropServices.HandleRef jarg1);
10206
10207 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDefYLocation")]
10208 public static extern void CFxUIToolbarItem_SetDefYLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10209
10210 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsInMatrixToolbar")]
10211 public static extern bool CFxUIToolbarItem_IsInMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1);
10212
10213 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetInMatrixToolbar")]
10214 public static extern void CFxUIToolbarItem_SetInMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10215
10216 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetMatrixToolbarIndex")]
10217 public static extern int CFxUIToolbarItem_GetMatrixToolbarIndex(global::System.Runtime.InteropServices.HandleRef jarg1);
10218
10219 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetMatrixToolbarIndex")]
10220 public static extern void CFxUIToolbarItem_SetMatrixToolbarIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10221
10222 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsExpanded")]
10223 public static extern bool CFxUIToolbarItem_IsExpanded(global::System.Runtime.InteropServices.HandleRef jarg1);
10224
10225 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetExpanded")]
10226 public static extern void CFxUIToolbarItem_SetExpanded(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10227
10228 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetRows")]
10229 public static extern int CFxUIToolbarItem_GetRows(global::System.Runtime.InteropServices.HandleRef jarg1);
10230
10231 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetRows")]
10232 public static extern void CFxUIToolbarItem_SetRows(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10233
10234 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsObsolete")]
10235 public static extern bool CFxUIToolbarItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10236
10237 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetObsolete")]
10238 public static extern void CFxUIToolbarItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10239
10240 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetFlyoutID")]
10241 public static extern global::System.IntPtr CFxUIToolbarItem_GetFlyoutID(global::System.Runtime.InteropServices.HandleRef jarg1);
10242
10243 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetFlyoutID")]
10244 public static extern void CFxUIToolbarItem_SetFlyoutID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10245
10246 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDockRow")]
10247 public static extern int CFxUIToolbarItem_GetDockRow(global::System.Runtime.InteropServices.HandleRef jarg1);
10248
10249 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDockRow")]
10250 public static extern void CFxUIToolbarItem_SetDockRow(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10251
10252 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_GetDockColumn")]
10253 public static extern int CFxUIToolbarItem_GetDockColumn(global::System.Runtime.InteropServices.HandleRef jarg1);
10254
10255 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_SetDockColumn")]
10256 public static extern void CFxUIToolbarItem_SetDockColumn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10257
10258 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIToolbarItem_IsRuntime")]
10259 public static extern bool CFxUIToolbarItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10260
10261 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetUID")]
10262 public static extern global::System.IntPtr CFxUIDoubleClickAction_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10263
10264 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetUID")]
10265 public static extern void CFxUIDoubleClickAction_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10266
10267 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetName")]
10268 public static extern global::System.IntPtr CFxUIDoubleClickAction_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10269
10270 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetName")]
10271 public static extern void CFxUIDoubleClickAction_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10272
10273 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetDxfClassName")]
10274 public static extern global::System.IntPtr CFxUIDoubleClickAction_GetDxfClassName(global::System.Runtime.InteropServices.HandleRef jarg1);
10275
10276 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetDefinition")]
10277 public static extern void CFxUIDoubleClickAction_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10278
10279 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_GetDefinition")]
10280 public static extern global::System.IntPtr CFxUIDoubleClickAction_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
10281
10282 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_IsObsolete")]
10283 public static extern bool CFxUIDoubleClickAction_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10284
10285 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_SetObsolete")]
10286 public static extern void CFxUIDoubleClickAction_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10287
10288 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDoubleClickAction_IsRuntime")]
10289 public static extern bool CFxUIDoubleClickAction_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10290
10291 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_GetUID")]
10292 public static extern global::System.IntPtr CFxUIAccelerator_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10293
10294 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetUID")]
10295 public static extern void CFxUIAccelerator_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10296
10297 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_GetName")]
10298 public static extern global::System.IntPtr CFxUIAccelerator_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10299
10300 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetName")]
10301 public static extern void CFxUIAccelerator_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10302
10303 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetDefinition")]
10304 public static extern void CFxUIAccelerator_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10305
10306 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_GetDefinition")]
10307 public static extern global::System.IntPtr CFxUIAccelerator_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
10308
10309 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_IsObsolete")]
10310 public static extern bool CFxUIAccelerator_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10311
10312 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_SetObsolete")]
10313 public static extern void CFxUIAccelerator_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10314
10315 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIAccelerator_IsRuntime")]
10316 public static extern bool CFxUIAccelerator_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10317
10318 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_GetUID")]
10319 public static extern global::System.IntPtr CFxUIButton_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10320
10321 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_SetUID")]
10322 public static extern void CFxUIButton_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10323
10324 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_GetName")]
10325 public static extern global::System.IntPtr CFxUIButton_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10326
10327 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_SetName")]
10328 public static extern void CFxUIButton_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10329
10330 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_SetDefinition")]
10331 public static extern void CFxUIButton_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10332
10333 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_GetDefinition")]
10334 public static extern global::System.IntPtr CFxUIButton_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
10335
10336 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_GetButtonNumber")]
10337 public static extern int CFxUIButton_GetButtonNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
10338
10339 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_IsObsolete")]
10340 public static extern bool CFxUIButton_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10341
10342 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_SetObsolete")]
10343 public static extern void CFxUIButton_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10344
10345 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIButton_IsRuntime")]
10346 public static extern bool CFxUIButton_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10347
10348 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetRowsNumber")]
10349 public static extern int CFxUITabletMenu_GetRowsNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
10350
10351 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetRowsNumber")]
10352 public static extern bool CFxUITabletMenu_SetRowsNumber(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10353
10354 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetColumnsNumber")]
10355 public static extern int CFxUITabletMenu_GetColumnsNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
10356
10357 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetColumnsNumber")]
10358 public static extern bool CFxUITabletMenu_SetColumnsNumber(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10359
10360 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetItem")]
10361 public static extern global::System.IntPtr CFxUITabletMenu_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
10362
10363 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetItem")]
10364 public static extern bool CFxUITabletMenu_SetItem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
10365
10366 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_GetName")]
10367 public static extern global::System.IntPtr CFxUITabletMenu_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10368
10369 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_IsObsolete")]
10370 public static extern bool CFxUITabletMenu_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10371
10372 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_SetObsolete")]
10373 public static extern void CFxUITabletMenu_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10374
10375 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITabletMenu_IsRuntime")]
10376 public static extern bool CFxUITabletMenu_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10377
10378 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetUID")]
10379 public static extern global::System.IntPtr CFxUITempOverrideKey_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10380
10381 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetUID")]
10382 public static extern void CFxUITempOverrideKey_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10383
10384 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetName")]
10385 public static extern global::System.IntPtr CFxUITempOverrideKey_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10386
10387 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetName")]
10388 public static extern void CFxUITempOverrideKey_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10389
10390 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetDescription")]
10391 public static extern global::System.IntPtr CFxUITempOverrideKey_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1);
10392
10393 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetDescription")]
10394 public static extern void CFxUITempOverrideKey_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10395
10396 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetKeyDownMacro")]
10397 public static extern global::System.IntPtr CFxUITempOverrideKey_GetKeyDownMacro(global::System.Runtime.InteropServices.HandleRef jarg1);
10398
10399 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetKeyDownMacro")]
10400 public static extern void CFxUITempOverrideKey_SetKeyDownMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10401
10402 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_GetKeyUpMacro")]
10403 public static extern global::System.IntPtr CFxUITempOverrideKey_GetKeyUpMacro(global::System.Runtime.InteropServices.HandleRef jarg1);
10404
10405 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetKeyUpMacro")]
10406 public static extern void CFxUITempOverrideKey_SetKeyUpMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10407
10408 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_IsObsolete")]
10409 public static extern bool CFxUITempOverrideKey_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10410
10411 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_SetObsolete")]
10412 public static extern void CFxUITempOverrideKey_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10413
10414 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUITempOverrideKey_IsRuntime")]
10415 public static extern bool CFxUITempOverrideKey_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10416
10417 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIDockableWindow")]
10418 public static extern void delete_CFxUIDockableWindow(global::System.Runtime.InteropServices.HandleRef jarg1);
10419
10420 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetShow")]
10421 public static extern bool CFxUIDockableWindow_GetShow(global::System.Runtime.InteropServices.HandleRef jarg1);
10422
10423 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_SetShow")]
10424 public static extern void CFxUIDockableWindow_SetShow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10425
10426 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetAvailableOrientations")]
10427 public static extern int CFxUIDockableWindow_GetAvailableOrientations(global::System.Runtime.InteropServices.HandleRef jarg1);
10428
10429 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetOrientation")]
10430 public static extern int CFxUIDockableWindow_GetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1);
10431
10432 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_SetOrientation")]
10433 public static extern bool CFxUIDockableWindow_SetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10434
10435 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetAllowDocking")]
10436 public static extern bool CFxUIDockableWindow_GetAllowDocking(global::System.Runtime.InteropServices.HandleRef jarg1);
10437
10438 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_SetAllowDocking")]
10439 public static extern void CFxUIDockableWindow_SetAllowDocking(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10440
10441 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetName")]
10442 public static extern global::System.IntPtr CFxUIDockableWindow_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10443
10444 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIDockableWindow_GetObjectName")]
10445 public static extern global::System.IntPtr CFxUIDockableWindow_GetObjectName(global::System.Runtime.InteropServices.HandleRef jarg1);
10446
10447 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIContext")]
10448 public static extern void delete_CFxUIContext(global::System.Runtime.InteropServices.HandleRef jarg1);
10449
10450 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIContext_OnCommand")]
10451 public static extern void CFxUIContext_OnCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10452
10453 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIContext_GetMenuContext")]
10454 public static extern global::System.IntPtr CFxUIContext_GetMenuContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10455
10456 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIContext_OnUpdateMenu")]
10457 public static extern void CFxUIContext_OnUpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
10458
10459 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetUID")]
10460 public static extern global::System.IntPtr CFxUIImageItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1);
10461
10462 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetUID")]
10463 public static extern void CFxUIImageItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10464
10465 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetName")]
10466 public static extern global::System.IntPtr CFxUIImageItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
10467
10468 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetName")]
10469 public static extern void CFxUIImageItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10470
10471 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetUITitleName")]
10472 public static extern global::System.IntPtr CFxUIImageItem_GetUITitleName(global::System.Runtime.InteropServices.HandleRef jarg1);
10473
10474 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetUITitleName")]
10475 public static extern void CFxUIImageItem_SetUITitleName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10476
10477 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetImageLibFile")]
10478 public static extern global::System.IntPtr CFxUIImageItem_GetImageLibFile(global::System.Runtime.InteropServices.HandleRef jarg1);
10479
10480 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetImageLibFile")]
10481 public static extern void CFxUIImageItem_SetImageLibFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10482
10483 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetImageName")]
10484 public static extern global::System.IntPtr CFxUIImageItem_GetImageName(global::System.Runtime.InteropServices.HandleRef jarg1);
10485
10486 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetImageName")]
10487 public static extern void CFxUIImageItem_SetImageName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10488
10489 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetDefinition")]
10490 public static extern void CFxUIImageItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10491
10492 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetDefinition")]
10493 public static extern global::System.IntPtr CFxUIImageItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
10494
10495 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_IsObsolete")]
10496 public static extern bool CFxUIImageItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1);
10497
10498 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetObsolete")]
10499 public static extern void CFxUIImageItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10500
10501 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetParent")]
10502 public static extern global::System.IntPtr CFxUIImageItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1);
10503
10504 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetChildren")]
10505 public static extern global::System.IntPtr CFxUIImageItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1);
10506
10507 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_IsSeparator")]
10508 public static extern bool CFxUIImageItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1);
10509
10510 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetToSeparator")]
10511 public static extern void CFxUIImageItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1);
10512
10513 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_IsRuntime")]
10514 public static extern bool CFxUIImageItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1);
10515
10516 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetColumns")]
10517 public static extern int CFxUIImageItem_GetColumns(global::System.Runtime.InteropServices.HandleRef jarg1);
10518
10519 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetColumns")]
10520 public static extern void CFxUIImageItem_SetColumns(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10521
10522 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_GetRows")]
10523 public static extern int CFxUIImageItem_GetRows(global::System.Runtime.InteropServices.HandleRef jarg1);
10524
10525 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIImageItem_SetRows")]
10526 public static extern void CFxUIImageItem_SetRows(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10527
10528 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxUIReactor")]
10529 public static extern global::System.IntPtr new_CFxUIReactor();
10530
10531 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemCreated")]
10532 public static extern void CFxUIReactor_OnToolbarItemCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10533
10534 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemCreatedSwigExplicitCFxUIReactor")]
10535 public static extern void CFxUIReactor_OnToolbarItemCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10536
10537 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionCreated")]
10538 public static extern void CFxUIReactor_OnItemDefinitionCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10539
10540 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionCreatedSwigExplicitCFxUIReactor")]
10541 public static extern void CFxUIReactor_OnItemDefinitionCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10542
10543 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemCreated")]
10544 public static extern void CFxUIReactor_OnMenuItemCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10545
10546 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemCreatedSwigExplicitCFxUIReactor")]
10547 public static extern void CFxUIReactor_OnMenuItemCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10548
10549 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemAboutToDestroy")]
10550 public static extern void CFxUIReactor_OnToolbarItemAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10551
10552 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarItemAboutToDestroySwigExplicitCFxUIReactor")]
10553 public static extern void CFxUIReactor_OnToolbarItemAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10554
10555 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionAboutToDestroy")]
10556 public static extern void CFxUIReactor_OnItemDefinitionAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10557
10558 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnItemDefinitionAboutToDestroySwigExplicitCFxUIReactor")]
10559 public static extern void CFxUIReactor_OnItemDefinitionAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10560
10561 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemAboutToDestroy")]
10562 public static extern void CFxUIReactor_OnMenuItemAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10563
10564 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnMenuItemAboutToDestroySwigExplicitCFxUIReactor")]
10565 public static extern void CFxUIReactor_OnMenuItemAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10566
10567 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarVisibilityChanged")]
10568 public static extern void CFxUIReactor_OnToolbarVisibilityChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
10569
10570 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnToolbarVisibilityChangedSwigExplicitCFxUIReactor")]
10571 public static extern void CFxUIReactor_OnToolbarVisibilityChangedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
10572
10573 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnSubMenuAboutToShow")]
10574 public static extern void CFxUIReactor_OnSubMenuAboutToShow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10575
10576 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnSubMenuAboutToShowSwigExplicitCFxUIReactor")]
10577 public static extern void CFxUIReactor_OnSubMenuAboutToShowSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10578
10579 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceAboutToReload")]
10580 public static extern void CFxUIReactor_OnInterfaceAboutToReload(global::System.Runtime.InteropServices.HandleRef jarg1);
10581
10582 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceAboutToReloadSwigExplicitCFxUIReactor")]
10583 public static extern void CFxUIReactor_OnInterfaceAboutToReloadSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
10584
10585 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceReloaded")]
10586 public static extern void CFxUIReactor_OnInterfaceReloaded(global::System.Runtime.InteropServices.HandleRef jarg1);
10587
10588 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnInterfaceReloadedSwigExplicitCFxUIReactor")]
10589 public static extern void CFxUIReactor_OnInterfaceReloadedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
10590
10591 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnRibbonControlCreated")]
10592 public static extern void CFxUIReactor_OnRibbonControlCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10593
10594 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_OnRibbonControlCreatedSwigExplicitCFxUIReactor")]
10595 public static extern void CFxUIReactor_OnRibbonControlCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
10596
10597 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIReactor")]
10598 public static extern void delete_CFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
10599
10600 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUIReactor_director_connect")]
10602
10603 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxUIStyle")]
10604 public static extern global::System.IntPtr new_CFxUIStyle();
10605
10606 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxUIStyle")]
10607 public static extern void delete_CFxUIStyle(global::System.Runtime.InteropServices.HandleRef jarg1);
10608
10609 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesSystem")]
10610 public static extern void delete_CFxPreferencesSystem(global::System.Runtime.InteropServices.HandleRef jarg1);
10611
10612 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetDisplayOLEScale")]
10613 public static extern bool CFxPreferencesSystem_GetDisplayOLEScale(global::System.Runtime.InteropServices.HandleRef jarg1);
10614
10615 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetDisplayOLEScale")]
10616 public static extern void CFxPreferencesSystem_SetDisplayOLEScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10617
10618 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetStoreSQLIndex")]
10619 public static extern bool CFxPreferencesSystem_GetStoreSQLIndex(global::System.Runtime.InteropServices.HandleRef jarg1);
10620
10621 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetStoreSQLIndex")]
10622 public static extern void CFxPreferencesSystem_SetStoreSQLIndex(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10623
10624 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetTablesReadOnly")]
10625 public static extern bool CFxPreferencesSystem_GetTablesReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1);
10626
10627 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetTablesReadOnly")]
10628 public static extern void CFxPreferencesSystem_SetTablesReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10629
10630 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetEnableStartupDialog")]
10631 public static extern bool CFxPreferencesSystem_GetEnableStartupDialog(global::System.Runtime.InteropServices.HandleRef jarg1);
10632
10633 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetEnableStartupDialog")]
10634 public static extern void CFxPreferencesSystem_SetEnableStartupDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10635
10636 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetBeepOnError")]
10637 public static extern bool CFxPreferencesSystem_GetBeepOnError(global::System.Runtime.InteropServices.HandleRef jarg1);
10638
10639 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetBeepOnError")]
10640 public static extern void CFxPreferencesSystem_SetBeepOnError(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10641
10642 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetShowWarningMessages")]
10643 public static extern bool CFxPreferencesSystem_GetShowWarningMessages(global::System.Runtime.InteropServices.HandleRef jarg1);
10644
10645 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetShowWarningMessages")]
10646 public static extern void CFxPreferencesSystem_SetShowWarningMessages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10647
10648 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetHelpFileName")]
10649 public static extern global::System.IntPtr CFxPreferencesSystem_GetHelpFileName(global::System.Runtime.InteropServices.HandleRef jarg1);
10650
10651 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetHelpFileName")]
10652 public static extern void CFxPreferencesSystem_SetHelpFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10653
10654 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetWebHelpEnable")]
10655 public static extern bool CFxPreferencesSystem_GetWebHelpEnable(global::System.Runtime.InteropServices.HandleRef jarg1);
10656
10657 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetWebHelpEnable")]
10658 public static extern void CFxPreferencesSystem_SetWebHelpEnable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10659
10660 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetUsePerformanceMonitor")]
10661 public static extern bool CFxPreferencesSystem_GetUsePerformanceMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
10662
10663 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetUsePerformanceMonitor")]
10664 public static extern void CFxPreferencesSystem_SetUsePerformanceMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10665
10666 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetCheckBackBufferIssues")]
10667 public static extern bool CFxPreferencesSystem_GetCheckBackBufferIssues(global::System.Runtime.InteropServices.HandleRef jarg1);
10668
10669 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetCheckBackBufferIssues")]
10670 public static extern void CFxPreferencesSystem_SetCheckBackBufferIssues(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10671
10672 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetCheckForXPressUpdates")]
10673 public static extern bool CFxPreferencesSystem_GetCheckForXPressUpdates(global::System.Runtime.InteropServices.HandleRef jarg1);
10674
10675 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetCheckForXPressUpdates")]
10676 public static extern void CFxPreferencesSystem_SetCheckForXPressUpdates(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10677
10678 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetAdditionalSupportPaths")]
10679 public static extern global::System.IntPtr CFxPreferencesSystem_GetAdditionalSupportPaths(global::System.Runtime.InteropServices.HandleRef jarg1);
10680
10681 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetAdditionalSupportPaths")]
10682 public static extern void CFxPreferencesSystem_SetAdditionalSupportPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10683
10684 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetUseDefaultFileLocationSetting")]
10685 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesSystem_GetUseDefaultFileLocationSetting(global::System.Runtime.InteropServices.HandleRef jarg1);
10686
10687 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetLoadMFCUI")]
10688 public static extern bool CFxPreferencesSystem_GetLoadMFCUI(global::System.Runtime.InteropServices.HandleRef jarg1);
10689
10690 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetLoadMFCUI")]
10691 public static extern void CFxPreferencesSystem_SetLoadMFCUI(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10692
10693 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetTopLevelMode")]
10694 public static extern bool CFxPreferencesSystem_GetTopLevelMode(global::System.Runtime.InteropServices.HandleRef jarg1);
10695
10696 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetTopLevelMode")]
10697 public static extern void CFxPreferencesSystem_SetTopLevelMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10698
10699 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_Get3DMousePlugged")]
10700 public static extern bool CFxPreferencesSystem_Get3DMousePlugged(global::System.Runtime.InteropServices.HandleRef jarg1);
10701
10702 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_Set3DMousePlugged")]
10703 public static extern void CFxPreferencesSystem_Set3DMousePlugged(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10704
10705 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetPrintDialogQuickPreview")]
10706 public static extern bool CFxPreferencesSystem_GetPrintDialogQuickPreview(global::System.Runtime.InteropServices.HandleRef jarg1);
10707
10708 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetPrintDialogQuickPreview")]
10709 public static extern void CFxPreferencesSystem_SetPrintDialogQuickPreview(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10710
10711 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetScaleListFileName")]
10712 public static extern global::System.IntPtr CFxPreferencesSystem_GetScaleListFileName(global::System.Runtime.InteropServices.HandleRef jarg1);
10713
10714 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetScaleListFileName")]
10715 public static extern void CFxPreferencesSystem_SetScaleListFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10716
10717 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetLispDebugPort")]
10718 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesSystem_GetLispDebugPort(global::System.Runtime.InteropServices.HandleRef jarg1);
10719
10720 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetLispDebugPort")]
10721 public static extern void CFxPreferencesSystem_SetLispDebugPort(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10722
10723 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetLispDebuggerEnabled")]
10724 public static extern bool CFxPreferencesSystem_GetLispDebuggerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
10725
10726 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetLispDebuggerEnabled")]
10727 public static extern void CFxPreferencesSystem_SetLispDebuggerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10728
10729 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetScaleListIsMetric")]
10730 public static extern bool CFxPreferencesSystem_GetScaleListIsMetric(global::System.Runtime.InteropServices.HandleRef jarg1);
10731
10732 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetScaleListIsMetric")]
10733 public static extern void CFxPreferencesSystem_SetScaleListIsMetric(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10734
10735 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetScaleListRstDlgUseSystem")]
10736 public static extern bool CFxPreferencesSystem_GetScaleListRstDlgUseSystem(global::System.Runtime.InteropServices.HandleRef jarg1);
10737
10738 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetScaleListRstDlgUseSystem")]
10739 public static extern void CFxPreferencesSystem_SetScaleListRstDlgUseSystem(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10740
10741 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetOutputMaxLineCount")]
10742 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesSystem_GetOutputMaxLineCount(global::System.Runtime.InteropServices.HandleRef jarg1);
10743
10744 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetOutputMaxLineCount")]
10745 public static extern void CFxPreferencesSystem_SetOutputMaxLineCount(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10746
10747 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetMaxArray")]
10748 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesSystem_GetMaxArray(global::System.Runtime.InteropServices.HandleRef jarg1);
10749
10750 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetMaxArray")]
10751 public static extern void CFxPreferencesSystem_SetMaxArray(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10752
10753 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetXNotifyTime")]
10754 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesSystem_GetXNotifyTime(global::System.Runtime.InteropServices.HandleRef jarg1);
10755
10756 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetXNotifyTime")]
10757 public static extern void CFxPreferencesSystem_SetXNotifyTime(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10758
10759 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetAppCastEnabled")]
10760 public static extern bool CFxPreferencesSystem_GetAppCastEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
10761
10762 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetAppCastEnabled")]
10763 public static extern void CFxPreferencesSystem_SetAppCastEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10764
10765 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetAppCastShowDialog")]
10766 public static extern bool CFxPreferencesSystem_GetAppCastShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1);
10767
10768 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetAppCastShowDialog")]
10769 public static extern void CFxPreferencesSystem_SetAppCastShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10770
10771 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetWelcomeShowDialog")]
10772 public static extern bool CFxPreferencesSystem_GetWelcomeShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1);
10773
10774 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetWelcomeShowDialog")]
10775 public static extern void CFxPreferencesSystem_SetWelcomeShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10776
10777 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_GetReportMissingXRefsEnabled")]
10778 public static extern bool CFxPreferencesSystem_GetReportMissingXRefsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
10779
10780 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSystem_SetReportMissingXRefsEnabled")]
10781 public static extern void CFxPreferencesSystem_SetReportMissingXRefsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10782
10783 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesUser")]
10784 public static extern void delete_CFxPreferencesUser(global::System.Runtime.InteropServices.HandleRef jarg1);
10785
10786 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetKeyboardAccelerator")]
10787 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesUser_GetKeyboardAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1);
10788
10789 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetKeyboardAccelerator")]
10790 public static extern void CFxPreferencesUser_SetKeyboardAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10791
10792 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetHyperlinkDisplayCursor")]
10793 public static extern bool CFxPreferencesUser_GetHyperlinkDisplayCursor(global::System.Runtime.InteropServices.HandleRef jarg1);
10794
10795 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetHyperlinkDisplayCursor")]
10796 public static extern void CFxPreferencesUser_SetHyperlinkDisplayCursor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10797
10798 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetHyperlinkDisplayTooltip")]
10799 public static extern bool CFxPreferencesUser_GetHyperlinkDisplayTooltip(global::System.Runtime.InteropServices.HandleRef jarg1);
10800
10801 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetHyperlinkDisplayTooltip")]
10802 public static extern void CFxPreferencesUser_SetHyperlinkDisplayTooltip(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10803
10804 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetSCMTimeValue")]
10805 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesUser_GetSCMTimeValue(global::System.Runtime.InteropServices.HandleRef jarg1);
10806
10807 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetSCMTimeValue")]
10808 public static extern void CFxPreferencesUser_SetSCMTimeValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10809
10810 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetToggleLanguages")]
10811 public static extern global::System.IntPtr CFxPreferencesUser_GetToggleLanguages(global::System.Runtime.InteropServices.HandleRef jarg1);
10812
10813 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetToggleLanguages")]
10814 public static extern void CFxPreferencesUser_SetToggleLanguages(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10815
10816 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetUseFullPath")]
10817 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesUser_GetUseFullPath(global::System.Runtime.InteropServices.HandleRef jarg1);
10818
10819 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetUseFullPath")]
10820 public static extern void CFxPreferencesUser_SetUseFullPath(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10821
10822 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetKeepPaperUnits")]
10823 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesUser_GetKeepPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
10824
10825 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetKeepPaperUnits")]
10826 public static extern void CFxPreferencesUser_SetKeepPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10827
10828 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetApplyFilterToLayersToolbar")]
10829 public static extern bool CFxPreferencesUser_GetApplyFilterToLayersToolbar(global::System.Runtime.InteropServices.HandleRef jarg1);
10830
10831 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetApplyFilterToLayersToolbar")]
10832 public static extern void CFxPreferencesUser_SetApplyFilterToLayersToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10833
10834 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetDrawingProperties")]
10835 public static extern global::System.IntPtr CFxPreferencesUser_GetDrawingProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
10836
10837 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetDrawingProperties")]
10838 public static extern void CFxPreferencesUser_SetDrawingProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10839
10840 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_GetAutoSaveOnSwitchingWorksapces")]
10841 public static extern bool CFxPreferencesUser_GetAutoSaveOnSwitchingWorksapces(global::System.Runtime.InteropServices.HandleRef jarg1);
10842
10843 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesUser_SetAutoSaveOnSwitchingWorksapces")]
10844 public static extern void CFxPreferencesUser_SetAutoSaveOnSwitchingWorksapces(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10845
10846 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesSelection")]
10847 public static extern void delete_CFxPreferencesSelection(global::System.Runtime.InteropServices.HandleRef jarg1);
10848
10849 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSelection_GetPickGroup")]
10850 public static extern bool CFxPreferencesSelection_GetPickGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
10851
10852 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesSelection_SetPickGroup")]
10853 public static extern void CFxPreferencesSelection_SetPickGroup(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10854
10855 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesOutput")]
10856 public static extern void delete_CFxPreferencesOutput(global::System.Runtime.InteropServices.HandleRef jarg1);
10857
10858 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetDefaultOutputDevice")]
10859 public static extern global::System.IntPtr CFxPreferencesOutput_GetDefaultOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1);
10860
10861 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetDefaultOutputDevice")]
10862 public static extern void CFxPreferencesOutput_SetDefaultOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10863
10864 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPrinterSpoolAlert")]
10865 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesOutput_GetPrinterSpoolAlert(global::System.Runtime.InteropServices.HandleRef jarg1);
10866
10867 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPrinterSpoolAlert")]
10868 public static extern void CFxPreferencesOutput_SetPrinterSpoolAlert(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
10869
10870 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPrinterPaperSizeAlert")]
10871 public static extern bool CFxPreferencesOutput_GetPrinterPaperSizeAlert(global::System.Runtime.InteropServices.HandleRef jarg1);
10872
10873 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPrinterPaperSizeAlert")]
10874 public static extern void CFxPreferencesOutput_SetPrinterPaperSizeAlert(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10875
10876 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotLegacy")]
10877 public static extern bool CFxPreferencesOutput_GetPlotLegacy(global::System.Runtime.InteropServices.HandleRef jarg1);
10878
10879 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotLegacy")]
10880 public static extern void CFxPreferencesOutput_SetPlotLegacy(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10881
10882 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetUseLastPlotSettings")]
10883 public static extern bool CFxPreferencesOutput_GetUseLastPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
10884
10885 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetUseLastPlotSettings")]
10886 public static extern void CFxPreferencesOutput_SetUseLastPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10887
10888 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetDefaultPlotStyleTable")]
10889 public static extern global::System.IntPtr CFxPreferencesOutput_GetDefaultPlotStyleTable(global::System.Runtime.InteropServices.HandleRef jarg1);
10890
10891 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetDefaultPlotStyleTable")]
10892 public static extern void CFxPreferencesOutput_SetDefaultPlotStyleTable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10893
10894 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetAutoSavePlotLog")]
10895 public static extern bool CFxPreferencesOutput_GetAutoSavePlotLog(global::System.Runtime.InteropServices.HandleRef jarg1);
10896
10897 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetAutoSavePlotLog")]
10898 public static extern void CFxPreferencesOutput_SetAutoSavePlotLog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10899
10900 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetSaveContinuousPlotLog")]
10901 public static extern bool CFxPreferencesOutput_GetSaveContinuousPlotLog(global::System.Runtime.InteropServices.HandleRef jarg1);
10902
10903 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetSaveContinuousPlotLog")]
10904 public static extern void CFxPreferencesOutput_SetSaveContinuousPlotLog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10905
10906 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetRecentPrinterName")]
10907 public static extern global::System.IntPtr CFxPreferencesOutput_GetRecentPrinterName(global::System.Runtime.InteropServices.HandleRef jarg1);
10908
10909 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetRecentPrinterName")]
10910 public static extern void CFxPreferencesOutput_SetRecentPrinterName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10911
10912 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetSaveChangesToLayout")]
10913 public static extern bool CFxPreferencesOutput_GetSaveChangesToLayout(global::System.Runtime.InteropServices.HandleRef jarg1);
10914
10915 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetSaveChangesToLayout")]
10916 public static extern void CFxPreferencesOutput_SetSaveChangesToLayout(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10917
10918 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetBatchPrintOutputPath")]
10919 public static extern global::System.IntPtr CFxPreferencesOutput_GetBatchPrintOutputPath(global::System.Runtime.InteropServices.HandleRef jarg1);
10920
10921 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetBatchPrintOutputPath")]
10922 public static extern void CFxPreferencesOutput_SetBatchPrintOutputPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10923
10924 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPlotStamp")]
10925 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayPlotStamp(global::System.Runtime.InteropServices.HandleRef jarg1);
10926
10927 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPlotStamp")]
10928 public static extern void CFxPreferencesOutput_SetPlotStampDisplayPlotStamp(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10929
10930 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayDrawingName")]
10931 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayDrawingName(global::System.Runtime.InteropServices.HandleRef jarg1);
10932
10933 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayDrawingName")]
10934 public static extern void CFxPreferencesOutput_SetPlotStampDisplayDrawingName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10935
10936 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayLayoutName")]
10937 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayLayoutName(global::System.Runtime.InteropServices.HandleRef jarg1);
10938
10939 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayLayoutName")]
10940 public static extern void CFxPreferencesOutput_SetPlotStampDisplayLayoutName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10941
10942 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayDate")]
10943 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayDate(global::System.Runtime.InteropServices.HandleRef jarg1);
10944
10945 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayDate")]
10946 public static extern void CFxPreferencesOutput_SetPlotStampDisplayDate(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10947
10948 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayLoginName")]
10949 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayLoginName(global::System.Runtime.InteropServices.HandleRef jarg1);
10950
10951 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayLoginName")]
10952 public static extern void CFxPreferencesOutput_SetPlotStampDisplayLoginName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10953
10954 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPlotDeviceName")]
10955 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayPlotDeviceName(global::System.Runtime.InteropServices.HandleRef jarg1);
10956
10957 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPlotDeviceName")]
10958 public static extern void CFxPreferencesOutput_SetPlotStampDisplayPlotDeviceName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10959
10960 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPaperSize")]
10961 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayPaperSize(global::System.Runtime.InteropServices.HandleRef jarg1);
10962
10963 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPaperSize")]
10964 public static extern void CFxPreferencesOutput_SetPlotStampDisplayPaperSize(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10965
10966 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampDisplayPlotScale")]
10967 public static extern bool CFxPreferencesOutput_GetPlotStampDisplayPlotScale(global::System.Runtime.InteropServices.HandleRef jarg1);
10968
10969 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampDisplayPlotScale")]
10970 public static extern void CFxPreferencesOutput_SetPlotStampDisplayPlotScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10971
10972 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampUserFields")]
10973 public static extern global::System.IntPtr CFxPreferencesOutput_GetPlotStampUserFields(global::System.Runtime.InteropServices.HandleRef jarg1);
10974
10975 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampUserFields")]
10976 public static extern void CFxPreferencesOutput_SetPlotStampUserFields(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10977
10978 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampWriteToLogFile")]
10979 public static extern bool CFxPreferencesOutput_GetPlotStampWriteToLogFile(global::System.Runtime.InteropServices.HandleRef jarg1);
10980
10981 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampWriteToLogFile")]
10982 public static extern void CFxPreferencesOutput_SetPlotStampWriteToLogFile(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
10983
10984 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampLogFilePath")]
10985 public static extern global::System.IntPtr CFxPreferencesOutput_GetPlotStampLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1);
10986
10987 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampLogFilePath")]
10988 public static extern void CFxPreferencesOutput_SetPlotStampLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
10989
10990 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampLocation")]
10991 public static extern int CFxPreferencesOutput_GetPlotStampLocation(global::System.Runtime.InteropServices.HandleRef jarg1);
10992
10993 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampLocation")]
10994 public static extern void CFxPreferencesOutput_SetPlotStampLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
10995
10996 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOrientation")]
10997 public static extern int CFxPreferencesOutput_GetPlotStampOrientation(global::System.Runtime.InteropServices.HandleRef jarg1);
10998
10999 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOrientation")]
11000 public static extern void CFxPreferencesOutput_SetPlotStampOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11001
11002 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampUpsideDown")]
11003 public static extern bool CFxPreferencesOutput_GetPlotStampUpsideDown(global::System.Runtime.InteropServices.HandleRef jarg1);
11004
11005 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampUpsideDown")]
11006 public static extern void CFxPreferencesOutput_SetPlotStampUpsideDown(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11007
11008 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampRelativity")]
11009 public static extern int CFxPreferencesOutput_GetPlotStampRelativity(global::System.Runtime.InteropServices.HandleRef jarg1);
11010
11011 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampRelativity")]
11012 public static extern void CFxPreferencesOutput_SetPlotStampRelativity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11013
11014 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOffsetX")]
11015 public static extern double CFxPreferencesOutput_GetPlotStampOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1);
11016
11017 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOffsetX")]
11018 public static extern void CFxPreferencesOutput_SetPlotStampOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11019
11020 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOffsetY")]
11021 public static extern double CFxPreferencesOutput_GetPlotStampOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1);
11022
11023 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOffsetY")]
11024 public static extern void CFxPreferencesOutput_SetPlotStampOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11025
11026 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampPixelOffsetX")]
11027 public static extern double CFxPreferencesOutput_GetPlotStampPixelOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1);
11028
11029 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampPixelOffsetX")]
11030 public static extern void CFxPreferencesOutput_SetPlotStampPixelOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11031
11032 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampPixelOffsetY")]
11033 public static extern double CFxPreferencesOutput_GetPlotStampPixelOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1);
11034
11035 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampPixelOffsetY")]
11036 public static extern void CFxPreferencesOutput_SetPlotStampPixelOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11037
11038 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampFontName")]
11039 public static extern global::System.IntPtr CFxPreferencesOutput_GetPlotStampFontName(global::System.Runtime.InteropServices.HandleRef jarg1);
11040
11041 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampFontName")]
11042 public static extern void CFxPreferencesOutput_SetPlotStampFontName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11043
11044 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampFontSize")]
11045 public static extern double CFxPreferencesOutput_GetPlotStampFontSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11046
11047 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampFontSize")]
11048 public static extern void CFxPreferencesOutput_SetPlotStampFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11049
11050 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampPixelFontSize")]
11051 public static extern double CFxPreferencesOutput_GetPlotStampPixelFontSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11052
11053 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampPixelFontSize")]
11054 public static extern void CFxPreferencesOutput_SetPlotStampPixelFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11055
11056 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampOnSingleLine")]
11057 public static extern bool CFxPreferencesOutput_GetPlotStampOnSingleLine(global::System.Runtime.InteropServices.HandleRef jarg1);
11058
11059 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampOnSingleLine")]
11060 public static extern void CFxPreferencesOutput_SetPlotStampOnSingleLine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11061
11062 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampUnits")]
11063 public static extern int CFxPreferencesOutput_GetPlotStampUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
11064
11065 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampUnits")]
11066 public static extern void CFxPreferencesOutput_SetPlotStampUnits(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11067
11068 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_GetPlotStampFile")]
11069 public static extern global::System.IntPtr CFxPreferencesOutput_GetPlotStampFile(global::System.Runtime.InteropServices.HandleRef jarg1);
11070
11071 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOutput_SetPlotStampFile")]
11072 public static extern void CFxPreferencesOutput_SetPlotStampFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11073
11074 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesPlotSettings")]
11075 public static extern void delete_CFxPreferencesPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
11076
11077 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotCfgName")]
11078 public static extern global::System.IntPtr CFxPreferencesPlotSettings_GetPlotCfgName(global::System.Runtime.InteropServices.HandleRef jarg1);
11079
11080 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotCfgName")]
11081 public static extern void CFxPreferencesPlotSettings_SetPlotCfgName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11082
11083 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCanonicalMediaName")]
11084 public static extern global::System.IntPtr CFxPreferencesPlotSettings_GetCanonicalMediaName(global::System.Runtime.InteropServices.HandleRef jarg1);
11085
11086 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCanonicalMediaName")]
11087 public static extern void CFxPreferencesPlotSettings_SetCanonicalMediaName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11088
11089 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetUseStandardScale")]
11090 public static extern bool CFxPreferencesPlotSettings_GetUseStandardScale(global::System.Runtime.InteropServices.HandleRef jarg1);
11091
11092 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetUseStandardScale")]
11093 public static extern void CFxPreferencesPlotSettings_SetUseStandardScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11094
11095 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetStdScaleType")]
11096 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesPlotSettings_GetStdScaleType(global::System.Runtime.InteropServices.HandleRef jarg1);
11097
11098 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetStdScaleType")]
11099 public static extern void CFxPreferencesPlotSettings_SetStdScaleType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11100
11101 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCustomPrintScaleNumerator")]
11102 public static extern double CFxPreferencesPlotSettings_GetCustomPrintScaleNumerator(global::System.Runtime.InteropServices.HandleRef jarg1);
11103
11104 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCustomPrintScaleNumerator")]
11105 public static extern void CFxPreferencesPlotSettings_SetCustomPrintScaleNumerator(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11106
11107 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCustomPrintScaleDenominator")]
11108 public static extern double CFxPreferencesPlotSettings_GetCustomPrintScaleDenominator(global::System.Runtime.InteropServices.HandleRef jarg1);
11109
11110 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCustomPrintScaleDenominator")]
11111 public static extern void CFxPreferencesPlotSettings_SetCustomPrintScaleDenominator(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11112
11113 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotType")]
11114 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesPlotSettings_GetPlotType(global::System.Runtime.InteropServices.HandleRef jarg1);
11115
11116 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotType")]
11117 public static extern void CFxPreferencesPlotSettings_SetPlotType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11118
11119 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotViewHandle")]
11120 public static extern UInt64 /*SIMPLETYPE*/ CFxPreferencesPlotSettings_GetPlotViewHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
11121
11122 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotViewHandle")]
11123 public static extern void CFxPreferencesPlotSettings_SetPlotViewHandle(global::System.Runtime.InteropServices.HandleRef jarg1, UInt64 /*SIMPLETYPE imtype*/ jarg2);
11124
11125 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaXMin")]
11126 public static extern double CFxPreferencesPlotSettings_GetPlotWindowAreaXMin(global::System.Runtime.InteropServices.HandleRef jarg1);
11127
11128 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaXMax")]
11129 public static extern double CFxPreferencesPlotSettings_GetPlotWindowAreaXMax(global::System.Runtime.InteropServices.HandleRef jarg1);
11130
11131 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaYMin")]
11132 public static extern double CFxPreferencesPlotSettings_GetPlotWindowAreaYMin(global::System.Runtime.InteropServices.HandleRef jarg1);
11133
11134 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaYMax")]
11135 public static extern double CFxPreferencesPlotSettings_GetPlotWindowAreaYMax(global::System.Runtime.InteropServices.HandleRef jarg1);
11136
11137 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaXMin")]
11138 public static extern void CFxPreferencesPlotSettings_SetPlotWindowAreaXMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11139
11140 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaXMax")]
11141 public static extern void CFxPreferencesPlotSettings_SetPlotWindowAreaXMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11142
11143 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaYMin")]
11144 public static extern void CFxPreferencesPlotSettings_SetPlotWindowAreaYMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11145
11146 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaYMax")]
11147 public static extern void CFxPreferencesPlotSettings_SetPlotWindowAreaYMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11148
11149 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaZMin")]
11150 public static extern double CFxPreferencesPlotSettings_GetPlotWindowAreaZMin(global::System.Runtime.InteropServices.HandleRef jarg1);
11151
11152 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotWindowAreaZMax")]
11153 public static extern double CFxPreferencesPlotSettings_GetPlotWindowAreaZMax(global::System.Runtime.InteropServices.HandleRef jarg1);
11154
11155 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaZMin")]
11156 public static extern void CFxPreferencesPlotSettings_SetPlotWindowAreaZMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11157
11158 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotWindowAreaZMax")]
11159 public static extern void CFxPreferencesPlotSettings_SetPlotWindowAreaZMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11160
11161 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotCentered")]
11162 public static extern bool CFxPreferencesPlotSettings_GetPlotCentered(global::System.Runtime.InteropServices.HandleRef jarg1);
11163
11164 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotCentered")]
11165 public static extern void CFxPreferencesPlotSettings_SetPlotCentered(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11166
11167 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotRotation")]
11168 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesPlotSettings_GetPlotRotation(global::System.Runtime.InteropServices.HandleRef jarg1);
11169
11170 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotRotation")]
11171 public static extern void CFxPreferencesPlotSettings_SetPlotRotation(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11172
11173 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintLineweights")]
11174 public static extern bool CFxPreferencesPlotSettings_GetPrintLineweights(global::System.Runtime.InteropServices.HandleRef jarg1);
11175
11176 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintLineweights")]
11177 public static extern void CFxPreferencesPlotSettings_SetPrintLineweights(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11178
11179 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetShadePlot")]
11180 public static extern int CFxPreferencesPlotSettings_GetShadePlot(global::System.Runtime.InteropServices.HandleRef jarg1);
11181
11182 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetShadePlot")]
11183 public static extern void CFxPreferencesPlotSettings_SetShadePlot(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11184
11185 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetShadePlotResLevel")]
11186 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesPlotSettings_GetShadePlotResLevel(global::System.Runtime.InteropServices.HandleRef jarg1);
11187
11188 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetShadePlotResLevel")]
11189 public static extern void CFxPreferencesPlotSettings_SetShadePlotResLevel(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11190
11191 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetShadePlotCustomDPI")]
11192 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesPlotSettings_GetShadePlotCustomDPI(global::System.Runtime.InteropServices.HandleRef jarg1);
11193
11194 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetShadePlotCustomDPI")]
11195 public static extern void CFxPreferencesPlotSettings_SetShadePlotCustomDPI(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11196
11197 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintToFile")]
11198 public static extern bool CFxPreferencesPlotSettings_GetPrintToFile(global::System.Runtime.InteropServices.HandleRef jarg1);
11199
11200 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintToFile")]
11201 public static extern void CFxPreferencesPlotSettings_SetPrintToFile(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11202
11203 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintStamp")]
11204 public static extern bool CFxPreferencesPlotSettings_GetPrintStamp(global::System.Runtime.InteropServices.HandleRef jarg1);
11205
11206 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintStamp")]
11207 public static extern void CFxPreferencesPlotSettings_SetPrintStamp(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11208
11209 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotPaperUnits")]
11210 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesPlotSettings_GetPlotPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
11211
11212 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotPaperUnits")]
11213 public static extern void CFxPreferencesPlotSettings_SetPlotPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11214
11215 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintOffsetX")]
11216 public static extern void CFxPreferencesPlotSettings_SetPrintOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11217
11218 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintOffsetX")]
11219 public static extern double CFxPreferencesPlotSettings_GetPrintOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1);
11220
11221 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPrintOffsetY")]
11222 public static extern void CFxPreferencesPlotSettings_SetPrintOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11223
11224 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPrintOffsetY")]
11225 public static extern double CFxPreferencesPlotSettings_GetPrintOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1);
11226
11227 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetCurrentStyleSheet")]
11228 public static extern global::System.IntPtr CFxPreferencesPlotSettings_GetCurrentStyleSheet(global::System.Runtime.InteropServices.HandleRef jarg1);
11229
11230 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetCurrentStyleSheet")]
11231 public static extern void CFxPreferencesPlotSettings_SetCurrentStyleSheet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11232
11233 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPlotPlotStyles")]
11234 public static extern bool CFxPreferencesPlotSettings_GetPlotPlotStyles(global::System.Runtime.InteropServices.HandleRef jarg1);
11235
11236 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPlotPlotStyles")]
11237 public static extern void CFxPreferencesPlotSettings_SetPlotPlotStyles(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11238
11239 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetUsePlotTransparency")]
11240 public static extern bool CFxPreferencesPlotSettings_GetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1);
11241
11242 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetUsePlotTransparency")]
11243 public static extern void CFxPreferencesPlotSettings_SetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11244
11245 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetPaperImageOrigin")]
11246 public static extern global::System.IntPtr CFxPreferencesPlotSettings_GetPaperImageOrigin(global::System.Runtime.InteropServices.HandleRef jarg1);
11247
11248 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetPaperImageOrigin")]
11249 public static extern void CFxPreferencesPlotSettings_SetPaperImageOrigin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11250
11251 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetScaleLineWeight")]
11252 public static extern bool CFxPreferencesPlotSettings_GetScaleLineWeight(global::System.Runtime.InteropServices.HandleRef jarg1);
11253
11254 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetScaleLineWeight")]
11255 public static extern void CFxPreferencesPlotSettings_SetScaleLineWeight(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11256
11257 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetUseLayersPDF")]
11258 public static extern bool CFxPreferencesPlotSettings_GetUseLayersPDF(global::System.Runtime.InteropServices.HandleRef jarg1);
11259
11260 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetUseLayersPDF")]
11261 public static extern void CFxPreferencesPlotSettings_SetUseLayersPDF(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11262
11263 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetReplacePDFwithPC3")]
11264 public static extern bool CFxPreferencesPlotSettings_GetReplacePDFwithPC3(global::System.Runtime.InteropServices.HandleRef jarg1);
11265
11266 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetReplacePDFwithPC3")]
11267 public static extern void CFxPreferencesPlotSettings_SetReplacePDFwithPC3(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11268
11269 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_GetOpenPDF")]
11270 public static extern bool CFxPreferencesPlotSettings_GetOpenPDF(global::System.Runtime.InteropServices.HandleRef jarg1);
11271
11272 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPlotSettings_SetOpenPDF")]
11273 public static extern void CFxPreferencesPlotSettings_SetOpenPDF(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11274
11275 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesOpenSave")]
11276 public static extern void delete_CFxPreferencesOpenSave(global::System.Runtime.InteropServices.HandleRef jarg1);
11277
11278 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetFullCRCValidation")]
11279 public static extern bool CFxPreferencesOpenSave_GetFullCRCValidation(global::System.Runtime.InteropServices.HandleRef jarg1);
11280
11281 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetFullCRCValidation")]
11282 public static extern void CFxPreferencesOpenSave_SetFullCRCValidation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11283
11284 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetTempFileExtension")]
11285 public static extern global::System.IntPtr CFxPreferencesOpenSave_GetTempFileExtension(global::System.Runtime.InteropServices.HandleRef jarg1);
11286
11287 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetTempFileExtension")]
11288 public static extern void CFxPreferencesOpenSave_SetTempFileExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11289
11290 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetProxyImage")]
11291 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesOpenSave_GetProxyImage(global::System.Runtime.InteropServices.HandleRef jarg1);
11292
11293 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetProxyImage")]
11294 public static extern void CFxPreferencesOpenSave_SetProxyImage(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11295
11296 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetAutoAudit")]
11297 public static extern bool CFxPreferencesOpenSave_GetAutoAudit(global::System.Runtime.InteropServices.HandleRef jarg1);
11298
11299 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetAutoAudit")]
11300 public static extern void CFxPreferencesOpenSave_SetAutoAudit(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11301
11302 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetSaveAsType")]
11303 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesOpenSave_GetSaveAsType(global::System.Runtime.InteropServices.HandleRef jarg1);
11304
11305 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetSaveAsType")]
11306 public static extern void CFxPreferencesOpenSave_SetSaveAsType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11307
11308 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetTryRecovery")]
11309 public static extern bool CFxPreferencesOpenSave_GetTryRecovery(global::System.Runtime.InteropServices.HandleRef jarg1);
11310
11311 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetTryRecovery")]
11312 public static extern void CFxPreferencesOpenSave_SetTryRecovery(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11313
11314 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetUseOriginalFormat")]
11315 public static extern bool CFxPreferencesOpenSave_GetUseOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1);
11316
11317 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetUseOriginalFormat")]
11318 public static extern void CFxPreferencesOpenSave_SetUseOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11319
11320 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetPreserveOriginalFormat")]
11321 public static extern bool CFxPreferencesOpenSave_GetPreserveOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1);
11322
11323 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetPreserveOriginalFormat")]
11324 public static extern void CFxPreferencesOpenSave_SetPreserveOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11325
11326 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetForceOpenWithCodepage")]
11327 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesOpenSave_GetForceOpenWithCodepage(global::System.Runtime.InteropServices.HandleRef jarg1);
11328
11329 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetForceOpenWithCodepage")]
11330 public static extern void CFxPreferencesOpenSave_SetForceOpenWithCodepage(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11331
11332 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetForceOpenWithCtbPrintMode")]
11333 public static extern bool CFxPreferencesOpenSave_GetForceOpenWithCtbPrintMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11334
11335 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetForceOpenWithCtbPrintMode")]
11336 public static extern void CFxPreferencesOpenSave_SetForceOpenWithCtbPrintMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11337
11338 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetAutomaticPurgeUnspecifiedData")]
11339 public static extern bool CFxPreferencesOpenSave_GetAutomaticPurgeUnspecifiedData(global::System.Runtime.InteropServices.HandleRef jarg1);
11340
11341 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetAutomaticPurgeUnspecifiedData")]
11342 public static extern void CFxPreferencesOpenSave_SetAutomaticPurgeUnspecifiedData(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11343
11344 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_GetFullFilePathInTitleBar")]
11345 public static extern bool CFxPreferencesOpenSave_GetFullFilePathInTitleBar(global::System.Runtime.InteropServices.HandleRef jarg1);
11346
11347 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOpenSave_SetFullFilePathInTitleBar")]
11348 public static extern void CFxPreferencesOpenSave_SetFullFilePathInTitleBar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11349
11350 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDrafting")]
11351 public static extern void delete_CFxPreferencesDrafting(global::System.Runtime.InteropServices.HandleRef jarg1);
11352
11353 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetDynaSnapMarkerColor")]
11354 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDrafting_GetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11355
11356 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetDynaSnapMarkerColor")]
11357 public static extern void CFxPreferencesDrafting_SetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11358
11359 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetSheetDynaSnapMarkerColor")]
11360 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDrafting_GetSheetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11361
11362 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetSheetDynaSnapMarkerColor")]
11363 public static extern void CFxPreferencesDrafting_SetSheetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11364
11365 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetDynaSnapMarkerSize")]
11366 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDrafting_GetDynaSnapMarkerSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11367
11368 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetDynaSnapMarkerSize")]
11369 public static extern void CFxPreferencesDrafting_SetDynaSnapMarkerSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11370
11371 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetAlignmentPointAcquisition")]
11372 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDrafting_GetAlignmentPointAcquisition(global::System.Runtime.InteropServices.HandleRef jarg1);
11373
11374 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetAlignmentPointAcquisition")]
11375 public static extern void CFxPreferencesDrafting_SetAlignmentPointAcquisition(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11376
11377 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetModelAnnoautoscaleValue")]
11378 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDrafting_GetModelAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1);
11379
11380 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetModelAnnoautoscaleValue")]
11381 public static extern void CFxPreferencesDrafting_SetModelAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11382
11383 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_GetSheetAnnoautoscaleValue")]
11384 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDrafting_GetSheetAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1);
11385
11386 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDrafting_SetSheetAnnoautoscaleValue")]
11387 public static extern void CFxPreferencesDrafting_SetSheetAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11388
11389 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDisplay")]
11390 public static extern void delete_CFxPreferencesDisplay(global::System.Runtime.InteropServices.HandleRef jarg1);
11391
11392 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutDisplayMargins")]
11393 public static extern bool CFxPreferencesDisplay_GetLayoutDisplayMargins(global::System.Runtime.InteropServices.HandleRef jarg1);
11394
11395 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutDisplayMargins")]
11396 public static extern void CFxPreferencesDisplay_SetLayoutDisplayMargins(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11397
11398 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutDisplayPaper")]
11399 public static extern bool CFxPreferencesDisplay_GetLayoutDisplayPaper(global::System.Runtime.InteropServices.HandleRef jarg1);
11400
11401 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutDisplayPaper")]
11402 public static extern void CFxPreferencesDisplay_SetLayoutDisplayPaper(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11403
11404 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutDisplayPaperShadow")]
11405 public static extern bool CFxPreferencesDisplay_GetLayoutDisplayPaperShadow(global::System.Runtime.InteropServices.HandleRef jarg1);
11406
11407 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutDisplayPaperShadow")]
11408 public static extern void CFxPreferencesDisplay_SetLayoutDisplayPaperShadow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11409
11410 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutShowPlotSetup")]
11411 public static extern bool CFxPreferencesDisplay_GetLayoutShowPlotSetup(global::System.Runtime.InteropServices.HandleRef jarg1);
11412
11413 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutShowPlotSetup")]
11414 public static extern void CFxPreferencesDisplay_SetLayoutShowPlotSetup(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11415
11416 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutCreateViewport")]
11417 public static extern bool CFxPreferencesDisplay_GetLayoutCreateViewport(global::System.Runtime.InteropServices.HandleRef jarg1);
11418
11419 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutCreateViewport")]
11420 public static extern void CFxPreferencesDisplay_SetLayoutCreateViewport(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11421
11422 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayScrollBars")]
11423 public static extern bool CFxPreferencesDisplay_GetDisplayScrollBars(global::System.Runtime.InteropServices.HandleRef jarg1);
11424
11425 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayScrollBars")]
11426 public static extern void CFxPreferencesDisplay_SetDisplayScrollBars(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11427
11428 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayScreenMenu")]
11429 public static extern bool CFxPreferencesDisplay_GetDisplayScreenMenu(global::System.Runtime.InteropServices.HandleRef jarg1);
11430
11431 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayScreenMenu")]
11432 public static extern void CFxPreferencesDisplay_SetDisplayScreenMenu(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11433
11434 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayLayoutTabs")]
11435 public static extern bool CFxPreferencesDisplay_GetDisplayLayoutTabs(global::System.Runtime.InteropServices.HandleRef jarg1);
11436
11437 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayLayoutTabs")]
11438 public static extern void CFxPreferencesDisplay_SetDisplayLayoutTabs(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11439
11440 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayPaletteHideDelay")]
11441 public static extern int CFxPreferencesDisplay_GetDisplayPaletteHideDelay(global::System.Runtime.InteropServices.HandleRef jarg1);
11442
11443 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayPaletteHideDelay")]
11444 public static extern void CFxPreferencesDisplay_SetDisplayPaletteHideDelay(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11445
11446 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayPaletteShowDelay")]
11447 public static extern int CFxPreferencesDisplay_GetDisplayPaletteShowDelay(global::System.Runtime.InteropServices.HandleRef jarg1);
11448
11449 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayPaletteShowDelay")]
11450 public static extern void CFxPreferencesDisplay_SetDisplayPaletteShowDelay(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11451
11452 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTrueColorImages")]
11453 public static extern bool CFxPreferencesDisplay_GetTrueColorImages(global::System.Runtime.InteropServices.HandleRef jarg1);
11454
11455 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTrueColorImages")]
11456 public static extern void CFxPreferencesDisplay_SetTrueColorImages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11457
11458 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDockedVisibleLines")]
11459 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetDockedVisibleLines(global::System.Runtime.InteropServices.HandleRef jarg1);
11460
11461 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDockedVisibleLines")]
11462 public static extern void CFxPreferencesDisplay_SetDockedVisibleLines(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11463
11464 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetGraphicsWinModelBackgrndColor")]
11465 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetGraphicsWinModelBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11466
11467 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetGraphicsWinModelBackgrndColor")]
11468 public static extern void CFxPreferencesDisplay_SetGraphicsWinModelBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11469
11470 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetModelCrosshairColor")]
11471 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetModelCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11472
11473 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetModelCrosshairColor")]
11474 public static extern void CFxPreferencesDisplay_SetModelCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11475
11476 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetGraphicsWinLayoutBackgrndColor")]
11477 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetGraphicsWinLayoutBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11478
11479 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetGraphicsWinLayoutBackgrndColor")]
11480 public static extern void CFxPreferencesDisplay_SetGraphicsWinLayoutBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11481
11482 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextWinBackgrndColor")]
11483 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetTextWinBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11484
11485 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextWinBackgrndColor")]
11486 public static extern void CFxPreferencesDisplay_SetTextWinBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11487
11488 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextWinTextColor")]
11489 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetTextWinTextColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11490
11491 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextWinTextColor")]
11492 public static extern void CFxPreferencesDisplay_SetTextWinTextColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11493
11494 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutCrosshairColor")]
11495 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetLayoutCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11496
11497 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutCrosshairColor")]
11498 public static extern void CFxPreferencesDisplay_SetLayoutCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11499
11500 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetAutoTrackingVecColor")]
11501 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11502
11503 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetAutoTrackingVecColor")]
11504 public static extern void CFxPreferencesDisplay_SetAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11505
11506 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLayoutAutoTrackingVecColor")]
11507 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetLayoutAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11508
11509 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLayoutAutoTrackingVecColor")]
11510 public static extern void CFxPreferencesDisplay_SetLayoutAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11511
11512 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextFont")]
11513 public static extern global::System.IntPtr CFxPreferencesDisplay_GetTextFont(global::System.Runtime.InteropServices.HandleRef jarg1);
11514
11515 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextFont")]
11516 public static extern void CFxPreferencesDisplay_SetTextFont(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11517
11518 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextFontStyle")]
11519 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetTextFontStyle(global::System.Runtime.InteropServices.HandleRef jarg1);
11520
11521 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextFontStyle")]
11522 public static extern void CFxPreferencesDisplay_SetTextFontStyle(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11523
11524 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetTextFontSize")]
11525 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetTextFontSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11526
11527 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetTextFontSize")]
11528 public static extern void CFxPreferencesDisplay_SetTextFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11529
11530 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetHistoryLines")]
11531 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetHistoryLines(global::System.Runtime.InteropServices.HandleRef jarg1);
11532
11533 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetHistoryLines")]
11534 public static extern void CFxPreferencesDisplay_SetHistoryLines(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11535
11536 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairTintMode")]
11537 public static extern bool CFxPreferencesDisplay_GetCrosshairTintMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11538
11539 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairTintMode")]
11540 public static extern void CFxPreferencesDisplay_SetCrosshairTintMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11541
11542 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairXAxisColor")]
11543 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetCrosshairXAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11544
11545 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairXAxisColor")]
11546 public static extern void CFxPreferencesDisplay_SetCrosshairXAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11547
11548 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairYAxisColor")]
11549 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetCrosshairYAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11550
11551 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairYAxisColor")]
11552 public static extern void CFxPreferencesDisplay_SetCrosshairYAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11553
11554 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCrosshairZAxisColor")]
11555 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetCrosshairZAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11556
11557 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCrosshairZAxisColor")]
11558 public static extern void CFxPreferencesDisplay_SetCrosshairZAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11559
11560 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDynamicHighlightColor")]
11561 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetDynamicHighlightColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11562
11563 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDynamicHighlightColor")]
11564 public static extern void CFxPreferencesDisplay_SetDynamicHighlightColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11565
11566 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSelectedEntityColor")]
11567 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetSelectedEntityColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11568
11569 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSelectedEntityColor")]
11570 public static extern void CFxPreferencesDisplay_SetSelectedEntityColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11571
11572 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetUseLargeToolbarsButtons")]
11573 public static extern bool CFxPreferencesDisplay_GetUseLargeToolbarsButtons(global::System.Runtime.InteropServices.HandleRef jarg1);
11574
11575 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetUseLargeToolbarsButtons")]
11576 public static extern void CFxPreferencesDisplay_SetUseLargeToolbarsButtons(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11577
11578 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetDisplayOptionToolbar")]
11579 public static extern bool CFxPreferencesDisplay_GetDisplayOptionToolbar(global::System.Runtime.InteropServices.HandleRef jarg1);
11580
11581 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetDisplayOptionToolbar")]
11582 public static extern void CFxPreferencesDisplay_SetDisplayOptionToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11583
11584 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLineTypeShowDetails")]
11585 public static extern bool CFxPreferencesDisplay_GetLineTypeShowDetails(global::System.Runtime.InteropServices.HandleRef jarg1);
11586
11587 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLineTypeShowDetails")]
11588 public static extern void CFxPreferencesDisplay_SetLineTypeShowDetails(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11589
11590 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetPropertiesWindowDisplayMode")]
11591 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetPropertiesWindowDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11592
11593 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetPropertiesWindowDisplayMode")]
11594 public static extern void CFxPreferencesDisplay_SetPropertiesWindowDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11595
11596 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLargeToolbarsIconSize")]
11597 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetLargeToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11598
11599 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLargeToolbarsIconSize")]
11600 public static extern void CFxPreferencesDisplay_SetLargeToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11601
11602 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSmallToolbarsIconSize")]
11603 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetSmallToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11604
11605 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSmallToolbarsIconSize")]
11606 public static extern void CFxPreferencesDisplay_SetSmallToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11607
11608 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLargeRibbonBigButtonIconSize")]
11609 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetLargeRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11610
11611 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLargeRibbonBigButtonIconSize")]
11612 public static extern void CFxPreferencesDisplay_SetLargeRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11613
11614 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSmallRibbonBigButtonIconSize")]
11615 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetSmallRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11616
11617 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSmallRibbonBigButtonIconSize")]
11618 public static extern void CFxPreferencesDisplay_SetSmallRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11619
11620 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetLargeRibbonSmallButtonIconSize")]
11621 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetLargeRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11622
11623 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetLargeRibbonSmallButtonIconSize")]
11624 public static extern void CFxPreferencesDisplay_SetLargeRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11625
11626 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetSmallRibbonSmallButtonIconSize")]
11627 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetSmallRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1);
11628
11629 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetSmallRibbonSmallButtonIconSize")]
11630 public static extern void CFxPreferencesDisplay_SetSmallRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11631
11632 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetColorComboBoxSortMode")]
11633 public static extern bool CFxPreferencesDisplay_GetColorComboBoxSortMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11634
11635 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetColorComboBoxSortMode")]
11636 public static extern void CFxPreferencesDisplay_SetColorComboBoxSortMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11637
11638 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRefeditBackgrndColor")]
11639 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetRefeditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11640
11641 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRefeditBackgrndColor")]
11642 public static extern void CFxPreferencesDisplay_SetRefeditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11643
11644 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetBEditBackgrndColor")]
11645 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetBEditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11646
11647 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetBEditBackgrndColor")]
11648 public static extern void CFxPreferencesDisplay_SetBEditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11649
11650 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetOptionsToolbarMode")]
11651 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetOptionsToolbarMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11652
11653 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetOptionsToolbarMode")]
11654 public static extern void CFxPreferencesDisplay_SetOptionsToolbarMode(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
11655
11656 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonCustomizeButtonVisible")]
11657 public static extern bool CFxPreferencesDisplay_GetRibbonCustomizeButtonVisible(global::System.Runtime.InteropServices.HandleRef jarg1);
11658
11659 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonCustomizeButtonVisible")]
11660 public static extern void CFxPreferencesDisplay_SetRibbonCustomizeButtonVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11661
11662 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonDisplayMode")]
11663 public static extern bool CFxPreferencesDisplay_GetRibbonDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11664
11665 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonDisplayMode")]
11666 public static extern void CFxPreferencesDisplay_SetRibbonDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11667
11668 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonMinimizedMode")]
11669 public static extern bool CFxPreferencesDisplay_GetRibbonMinimizedMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11670
11671 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonMinimizedMode")]
11672 public static extern void CFxPreferencesDisplay_SetRibbonMinimizedMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11673
11674 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetRibbonWorkspaceVisible")]
11675 public static extern bool CFxPreferencesDisplay_GetRibbonWorkspaceVisible(global::System.Runtime.InteropServices.HandleRef jarg1);
11676
11677 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetRibbonWorkspaceVisible")]
11678 public static extern void CFxPreferencesDisplay_SetRibbonWorkspaceVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11679
11680 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetStyleMode")]
11681 public static extern int CFxPreferencesDisplay_GetStyleMode(global::System.Runtime.InteropServices.HandleRef jarg1);
11682
11683 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetStyleMode")]
11684 public static extern void CFxPreferencesDisplay_SetStyleMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11685
11686 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputBkgColor")]
11687 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetQuickInputBkgColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11688
11689 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputBkgColor")]
11690 public static extern void CFxPreferencesDisplay_SetQuickInputBkgColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11691
11692 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputBorderColor")]
11693 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetQuickInputBorderColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11694
11695 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputBorderColor")]
11696 public static extern void CFxPreferencesDisplay_SetQuickInputBorderColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11697
11698 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputTextColor")]
11699 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetQuickInputTextColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11700
11701 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputTextColor")]
11702 public static extern void CFxPreferencesDisplay_SetQuickInputTextColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11703
11704 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetQuickInputDimLinesColor")]
11705 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_GetQuickInputDimLinesColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11706
11707 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetQuickInputDimLinesColor")]
11708 public static extern void CFxPreferencesDisplay_SetQuickInputDimLinesColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11709
11710 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetCLExtensionConstantWithViewport")]
11711 public static extern bool CFxPreferencesDisplay_GetCLExtensionConstantWithViewport(global::System.Runtime.InteropServices.HandleRef jarg1);
11712
11713 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetCLExtensionConstantWithViewport")]
11714 public static extern void CFxPreferencesDisplay_SetCLExtensionConstantWithViewport(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11715
11716 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetEntitySelectionHighlightOpacity")]
11717 public static extern double CFxPreferencesDisplay_GetEntitySelectionHighlightOpacity(global::System.Runtime.InteropServices.HandleRef jarg1);
11718
11719 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetEntitySelectionHighlightOpacity")]
11720 public static extern void CFxPreferencesDisplay_SetEntitySelectionHighlightOpacity(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11721
11722 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetEntitySelectionHighlightThickness")]
11723 public static extern double CFxPreferencesDisplay_GetEntitySelectionHighlightThickness(global::System.Runtime.InteropServices.HandleRef jarg1);
11724
11725 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetEntitySelectionHighlightThickness")]
11726 public static extern void CFxPreferencesDisplay_SetEntitySelectionHighlightThickness(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
11727
11728 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_Get3DSnapMarkerColor")]
11729 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDisplay_Get3DSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11730
11731 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_Set3DSnapMarkerColor")]
11732 public static extern void CFxPreferencesDisplay_Set3DSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11733
11734 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetUseDashedEntitySelection")]
11735 public static extern bool CFxPreferencesDisplay_GetUseDashedEntitySelection(global::System.Runtime.InteropServices.HandleRef jarg1);
11736
11737 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetUseDashedEntitySelection")]
11738 public static extern void CFxPreferencesDisplay_SetUseDashedEntitySelection(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11739
11740 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetGripAlpha")]
11741 public static extern int CFxPreferencesDisplay_GetGripAlpha(global::System.Runtime.InteropServices.HandleRef jarg1);
11742
11743 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetGripAlpha")]
11744 public static extern void CFxPreferencesDisplay_SetGripAlpha(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
11745
11746 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetAngBaseTrackerActivationValue")]
11747 public static extern bool CFxPreferencesDisplay_GetAngBaseTrackerActivationValue(global::System.Runtime.InteropServices.HandleRef jarg1);
11748
11749 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetAngBaseTrackerActivationValue")]
11750 public static extern void CFxPreferencesDisplay_SetAngBaseTrackerActivationValue(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11751
11752 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_GetPaletteIcons")]
11753 public static extern bool CFxPreferencesDisplay_GetPaletteIcons(global::System.Runtime.InteropServices.HandleRef jarg1);
11754
11755 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDisplay_SetPaletteIcons")]
11756 public static extern void CFxPreferencesDisplay_SetPaletteIcons(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11757
11758 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesEnterpoint")]
11759 public static extern void delete_CFxPreferencesEnterpoint(global::System.Runtime.InteropServices.HandleRef jarg1);
11760
11761 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_GetRemainOnScreen")]
11762 public static extern bool CFxPreferencesEnterpoint_GetRemainOnScreen(global::System.Runtime.InteropServices.HandleRef jarg1);
11763
11764 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_SetRemainOnScreen")]
11765 public static extern void CFxPreferencesEnterpoint_SetRemainOnScreen(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11766
11767 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_GetAngDistTogether")]
11768 public static extern bool CFxPreferencesEnterpoint_GetAngDistTogether(global::System.Runtime.InteropServices.HandleRef jarg1);
11769
11770 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_SetAngDistTogether")]
11771 public static extern void CFxPreferencesEnterpoint_SetAngDistTogether(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11772
11773 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_GetPresetRelativePoint")]
11774 public static extern bool CFxPreferencesEnterpoint_GetPresetRelativePoint(global::System.Runtime.InteropServices.HandleRef jarg1);
11775
11776 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEnterpoint_SetPresetRelativePoint")]
11777 public static extern void CFxPreferencesEnterpoint_SetPresetRelativePoint(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11778
11779 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesMatrixToolbar")]
11780 public static extern void delete_CFxPreferencesMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1);
11781
11782 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_GetExtendedView")]
11783 public static extern bool CFxPreferencesMatrixToolbar_GetExtendedView(global::System.Runtime.InteropServices.HandleRef jarg1);
11784
11785 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_SetExtendedView")]
11786 public static extern void CFxPreferencesMatrixToolbar_SetExtendedView(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11787
11788 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_GetPreferredColumnCount")]
11789 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesMatrixToolbar_GetPreferredColumnCount(global::System.Runtime.InteropServices.HandleRef jarg1);
11790
11791 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMatrixToolbar_SetPreferredColumnCount")]
11792 public static extern void CFxPreferencesMatrixToolbar_SetPreferredColumnCount(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
11793
11794 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesHatch")]
11795 public static extern void delete_CFxPreferencesHatch(global::System.Runtime.InteropServices.HandleRef jarg1);
11796
11797 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesHatch_GetDefaultGradientColor")]
11798 public static extern UInt16 /*SIMPLETYPE*/ CFxPreferencesHatch_GetDefaultGradientColor(global::System.Runtime.InteropServices.HandleRef jarg1);
11799
11800 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesHatch_SetDefaultGradientColor")]
11801 public static extern void CFxPreferencesHatch_SetDefaultGradientColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 /*SIMPLETYPE imtype*/ jarg2);
11802
11803 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesPackAndGo")]
11804 public static extern void delete_CFxPreferencesPackAndGo(global::System.Runtime.InteropServices.HandleRef jarg1);
11805
11806 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetPackageType")]
11807 public static extern UInt16 /*SIMPLETYPE*/ CFxPreferencesPackAndGo_GetPackageType(global::System.Runtime.InteropServices.HandleRef jarg1);
11808
11809 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetPackageType")]
11810 public static extern void CFxPreferencesPackAndGo_SetPackageType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 /*SIMPLETYPE imtype*/ jarg2);
11811
11812 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetSaveFormat")]
11813 public static extern UInt16 /*SIMPLETYPE*/ CFxPreferencesPackAndGo_GetSaveFormat(global::System.Runtime.InteropServices.HandleRef jarg1);
11814
11815 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetSaveFormat")]
11816 public static extern void CFxPreferencesPackAndGo_SetSaveFormat(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 /*SIMPLETYPE imtype*/ jarg2);
11817
11818 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetDestFolder")]
11819 public static extern global::System.IntPtr CFxPreferencesPackAndGo_GetDestFolder(global::System.Runtime.InteropServices.HandleRef jarg1);
11820
11821 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetDestFolder")]
11822 public static extern void CFxPreferencesPackAndGo_SetDestFolder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11823
11824 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetDestFile")]
11825 public static extern global::System.IntPtr CFxPreferencesPackAndGo_GetDestFile(global::System.Runtime.InteropServices.HandleRef jarg1);
11826
11827 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetDestFile")]
11828 public static extern void CFxPreferencesPackAndGo_SetDestFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11829
11830 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetDestAction")]
11831 public static extern UInt16 /*SIMPLETYPE*/ CFxPreferencesPackAndGo_GetDestAction(global::System.Runtime.InteropServices.HandleRef jarg1);
11832
11833 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetDestAction")]
11834 public static extern void CFxPreferencesPackAndGo_SetDestAction(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 /*SIMPLETYPE imtype*/ jarg2);
11835
11836 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetFilePathOption")]
11837 public static extern UInt16 /*SIMPLETYPE*/ CFxPreferencesPackAndGo_GetFilePathOption(global::System.Runtime.InteropServices.HandleRef jarg1);
11838
11839 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetFilePathOption")]
11840 public static extern void CFxPreferencesPackAndGo_SetFilePathOption(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 /*SIMPLETYPE imtype*/ jarg2);
11841
11842 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetRootFolder")]
11843 public static extern global::System.IntPtr CFxPreferencesPackAndGo_GetRootFolder(global::System.Runtime.InteropServices.HandleRef jarg1);
11844
11845 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetRootFolder")]
11846 public static extern void CFxPreferencesPackAndGo_SetRootFolder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11847
11848 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetBindXRef")]
11849 public static extern bool CFxPreferencesPackAndGo_GetBindXRef(global::System.Runtime.InteropServices.HandleRef jarg1);
11850
11851 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetBindXRef")]
11852 public static extern void CFxPreferencesPackAndGo_SetBindXRef(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11853
11854 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetBindType")]
11855 public static extern UInt16 /*SIMPLETYPE*/ CFxPreferencesPackAndGo_GetBindType(global::System.Runtime.InteropServices.HandleRef jarg1);
11856
11857 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetBindType")]
11858 public static extern void CFxPreferencesPackAndGo_SetBindType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 /*SIMPLETYPE imtype*/ jarg2);
11859
11860 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetPurgeDatabase")]
11861 public static extern bool CFxPreferencesPackAndGo_GetPurgeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1);
11862
11863 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetPurgeDatabase")]
11864 public static extern void CFxPreferencesPackAndGo_SetPurgeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11865
11866 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetIncludeFont")]
11867 public static extern bool CFxPreferencesPackAndGo_GetIncludeFont(global::System.Runtime.InteropServices.HandleRef jarg1);
11868
11869 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetIncludeFont")]
11870 public static extern void CFxPreferencesPackAndGo_SetIncludeFont(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11871
11872 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetIncludeUnloadedReferences")]
11873 public static extern bool CFxPreferencesPackAndGo_GetIncludeUnloadedReferences(global::System.Runtime.InteropServices.HandleRef jarg1);
11874
11875 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetIncludeUnloadedReferences")]
11876 public static extern void CFxPreferencesPackAndGo_SetIncludeUnloadedReferences(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11877
11878 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetIncludePrintConfigs")]
11879 public static extern bool CFxPreferencesPackAndGo_GetIncludePrintConfigs(global::System.Runtime.InteropServices.HandleRef jarg1);
11880
11881 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetIncludePrintConfigs")]
11882 public static extern void CFxPreferencesPackAndGo_SetIncludePrintConfigs(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
11883
11884 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_GetSearchPath")]
11885 public static extern global::System.IntPtr CFxPreferencesPackAndGo_GetSearchPath(global::System.Runtime.InteropServices.HandleRef jarg1);
11886
11887 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesPackAndGo_SetSearchPath")]
11888 public static extern void CFxPreferencesPackAndGo_SetSearchPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11889
11890 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesTablet")]
11891 public static extern void delete_CFxPreferencesTablet(global::System.Runtime.InteropServices.HandleRef jarg1);
11892
11893 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetWindowLeft")]
11894 public static extern global::System.IntPtr CFxPreferencesTablet_GetWindowLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11895
11896 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetWindowLeft")]
11897 public static extern void CFxPreferencesTablet_SetWindowLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11898
11899 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetWindowRight")]
11900 public static extern global::System.IntPtr CFxPreferencesTablet_GetWindowRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11901
11902 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetWindowRight")]
11903 public static extern void CFxPreferencesTablet_SetWindowRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11904
11905 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectOneLeft")]
11906 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectOneLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11907
11908 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectOneLeft")]
11909 public static extern void CFxPreferencesTablet_SetSectOneLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11910
11911 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectOneRight")]
11912 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectOneRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11913
11914 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectOneRight")]
11915 public static extern void CFxPreferencesTablet_SetSectOneRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11916
11917 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectTwoLeft")]
11918 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectTwoLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11919
11920 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectTwoLeft")]
11921 public static extern void CFxPreferencesTablet_SetSectTwoLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11922
11923 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectTwoRight")]
11924 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectTwoRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11925
11926 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectTwoRight")]
11927 public static extern void CFxPreferencesTablet_SetSectTwoRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11928
11929 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectThreeLeft")]
11930 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectThreeLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11931
11932 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectThreeLeft")]
11933 public static extern void CFxPreferencesTablet_SetSectThreeLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11934
11935 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectThreeRight")]
11936 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectThreeRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11937
11938 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectThreeRight")]
11939 public static extern void CFxPreferencesTablet_SetSectThreeRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11940
11941 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFourLeft")]
11942 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectFourLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11943
11944 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFourLeft")]
11945 public static extern void CFxPreferencesTablet_SetSectFourLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11946
11947 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFourRight")]
11948 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectFourRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11949
11950 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFourRight")]
11951 public static extern void CFxPreferencesTablet_SetSectFourRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11952
11953 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFifthLeft")]
11954 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectFifthLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11955
11956 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFifthLeft")]
11957 public static extern void CFxPreferencesTablet_SetSectFifthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11958
11959 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectFifthRight")]
11960 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectFifthRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11961
11962 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectFifthRight")]
11963 public static extern void CFxPreferencesTablet_SetSectFifthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11964
11965 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSixthLeft")]
11966 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectSixthLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11967
11968 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSixthLeft")]
11969 public static extern void CFxPreferencesTablet_SetSectSixthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11970
11971 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSixthRight")]
11972 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectSixthRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11973
11974 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSixthRight")]
11975 public static extern void CFxPreferencesTablet_SetSectSixthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11976
11977 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSeventhLeft")]
11978 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectSeventhLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11979
11980 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSeventhLeft")]
11981 public static extern void CFxPreferencesTablet_SetSectSeventhLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11982
11983 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectSeventhRight")]
11984 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectSeventhRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11985
11986 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectSeventhRight")]
11987 public static extern void CFxPreferencesTablet_SetSectSeventhRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11988
11989 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectEighthLeft")]
11990 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectEighthLeft(global::System.Runtime.InteropServices.HandleRef jarg1);
11991
11992 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectEighthLeft")]
11993 public static extern void CFxPreferencesTablet_SetSectEighthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
11994
11995 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetSectEighthRight")]
11996 public static extern global::System.IntPtr CFxPreferencesTablet_GetSectEighthRight(global::System.Runtime.InteropServices.HandleRef jarg1);
11997
11998 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetSectEighthRight")]
11999 public static extern void CFxPreferencesTablet_SetSectEighthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12000
12001 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_GetTabletEnabled")]
12002 public static extern bool CFxPreferencesTablet_GetTabletEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12003
12004 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesTablet_SetTabletEnabled")]
12005 public static extern void CFxPreferencesTablet_SetTabletEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12006
12007 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDimensionPalette")]
12008 public static extern void delete_CFxPreferencesDimensionPalette(global::System.Runtime.InteropServices.HandleRef jarg1);
12009
12010 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_GetLibraryPath")]
12011 public static extern global::System.IntPtr CFxPreferencesDimensionPalette_GetLibraryPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12012
12013 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_SetLibraryPath")]
12014 public static extern void CFxPreferencesDimensionPalette_SetLibraryPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12015
12016 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_GetDimensionPaletteEnabled")]
12017 public static extern bool CFxPreferencesDimensionPalette_GetDimensionPaletteEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12018
12019 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDimensionPalette_SetDimensionPaletteEnabled")]
12020 public static extern void CFxPreferencesDimensionPalette_SetDimensionPaletteEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12021
12022 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesLayerPallete")]
12023 public static extern void delete_CFxPreferencesLayerPallete(global::System.Runtime.InteropServices.HandleRef jarg1);
12024
12025 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_GetIsolateLayerBehavior")]
12026 public static extern bool CFxPreferencesLayerPallete_GetIsolateLayerBehavior(global::System.Runtime.InteropServices.HandleRef jarg1);
12027
12028 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_SetIsolateLayerBehavior")]
12029 public static extern void CFxPreferencesLayerPallete_SetIsolateLayerBehavior(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12030
12031 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_GetIsoLayerBehaviorViewPort")]
12032 public static extern bool CFxPreferencesLayerPallete_GetIsoLayerBehaviorViewPort(global::System.Runtime.InteropServices.HandleRef jarg1);
12033
12034 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerPallete_SetIsoLayerBehaviorViewPort")]
12035 public static extern void CFxPreferencesLayerPallete_SetIsoLayerBehaviorViewPort(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12036
12037 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDimensionMove")]
12038 public static extern void delete_CFxPreferencesDimensionMove(global::System.Runtime.InteropServices.HandleRef jarg1);
12039
12040 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDimensionMove_GetDimensionMoveEnabled")]
12041 public static extern bool CFxPreferencesDimensionMove_GetDimensionMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12042
12043 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDimensionMove_SetDimensionMoveEnabled")]
12044 public static extern void CFxPreferencesDimensionMove_SetDimensionMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12045
12046 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesEntityMove")]
12047 public static extern void delete_CFxPreferencesEntityMove(global::System.Runtime.InteropServices.HandleRef jarg1);
12048
12049 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEntityMove_GetEntityMoveEnabled")]
12050 public static extern bool CFxPreferencesEntityMove_GetEntityMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12051
12052 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesEntityMove_SetEntityMoveEnabled")]
12053 public static extern void CFxPreferencesEntityMove_SetEntityMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12054
12055 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesHeadsUpDisplay")]
12056 public static extern void delete_CFxPreferencesHeadsUpDisplay(global::System.Runtime.InteropServices.HandleRef jarg1);
12057
12058 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesHeadsUpDisplay_GetHeadsUpDisplayEnabled")]
12059 public static extern bool CFxPreferencesHeadsUpDisplay_GetHeadsUpDisplayEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12060
12061 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesHeadsUpDisplay_SetHeadsUpDisplayEnabled")]
12062 public static extern void CFxPreferencesHeadsUpDisplay_SetHeadsUpDisplayEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12063
12064 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesAutoSplitDimensions")]
12065 public static extern void delete_CFxPreferencesAutoSplitDimensions(global::System.Runtime.InteropServices.HandleRef jarg1);
12066
12067 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutoSplitDimensions_GetAutoSplitDimensionsEnabled")]
12068 public static extern bool CFxPreferencesAutoSplitDimensions_GetAutoSplitDimensionsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12069
12070 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutoSplitDimensions_SetAutoSplitDimensionsEnabled")]
12071 public static extern void CFxPreferencesAutoSplitDimensions_SetAutoSplitDimensionsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12072
12073 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesOLEEditor")]
12074 public static extern void delete_CFxPreferencesOLEEditor(global::System.Runtime.InteropServices.HandleRef jarg1);
12075
12076 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOLEEditor_GetInPlaceEditorEnabled")]
12077 public static extern bool CFxPreferencesOLEEditor_GetInPlaceEditorEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12078
12079 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesOLEEditor_SetInPlaceEditorEnabled")]
12080 public static extern void CFxPreferencesOLEEditor_SetInPlaceEditorEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12081
12082 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDwgStandards")]
12083 public static extern void delete_CFxPreferencesDwgStandards(global::System.Runtime.InteropServices.HandleRef jarg1);
12084
12085 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_GetIsAutomaticallyFixedOn")]
12086 public static extern bool CFxPreferencesDwgStandards_GetIsAutomaticallyFixedOn(global::System.Runtime.InteropServices.HandleRef jarg1);
12087
12088 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_SetIsAutomaticallyFixedOn")]
12089 public static extern void CFxPreferencesDwgStandards_SetIsAutomaticallyFixedOn(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12090
12091 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_GetIsShowIgnoredIssuesOn")]
12092 public static extern bool CFxPreferencesDwgStandards_GetIsShowIgnoredIssuesOn(global::System.Runtime.InteropServices.HandleRef jarg1);
12093
12094 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_SetIsShowIgnoredIssuesOn")]
12095 public static extern void CFxPreferencesDwgStandards_SetIsShowIgnoredIssuesOn(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12096
12097 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_GetPreferredDwsFile")]
12098 public static extern global::System.IntPtr CFxPreferencesDwgStandards_GetPreferredDwsFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12099
12100 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDwgStandards_SetPreferredDwsFile")]
12101 public static extern void CFxPreferencesDwgStandards_SetPreferredDwsFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12102
12103 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDesignResources")]
12104 public static extern void delete_CFxPreferencesDesignResources(global::System.Runtime.InteropServices.HandleRef jarg1);
12105
12106 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetContentViewType")]
12107 public static extern UInt32 /*SIMPLETYPE*/ CFxPreferencesDesignResources_GetContentViewType(global::System.Runtime.InteropServices.HandleRef jarg1);
12108
12109 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetContentViewType")]
12110 public static extern void CFxPreferencesDesignResources_SetContentViewType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE imtype*/ jarg2);
12111
12112 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetLastAccessedLocation")]
12113 public static extern global::System.IntPtr CFxPreferencesDesignResources_GetLastAccessedLocation(global::System.Runtime.InteropServices.HandleRef jarg1);
12114
12115 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetLastAccessedLocation")]
12116 public static extern void CFxPreferencesDesignResources_SetLastAccessedLocation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12117
12118 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetHomeLocation")]
12119 public static extern global::System.IntPtr CFxPreferencesDesignResources_GetHomeLocation(global::System.Runtime.InteropServices.HandleRef jarg1);
12120
12121 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetHomeLocation")]
12122 public static extern void CFxPreferencesDesignResources_SetHomeLocation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12123
12124 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetFavorites")]
12125 public static extern global::System.IntPtr CFxPreferencesDesignResources_GetFavorites(global::System.Runtime.InteropServices.HandleRef jarg1);
12126
12127 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetFavorites")]
12128 public static extern void CFxPreferencesDesignResources_SetFavorites(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12129
12130 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetTreeVisibilty")]
12131 public static extern bool CFxPreferencesDesignResources_GetTreeVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1);
12132
12133 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetTreeVisibilty")]
12134 public static extern void CFxPreferencesDesignResources_SetTreeVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12135
12136 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetPreviewVisibilty")]
12137 public static extern bool CFxPreferencesDesignResources_GetPreviewVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1);
12138
12139 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetPreviewVisibilty")]
12140 public static extern void CFxPreferencesDesignResources_SetPreviewVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12141
12142 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetPortDesignLibraryFolders")]
12143 public static extern bool CFxPreferencesDesignResources_GetPortDesignLibraryFolders(global::System.Runtime.InteropServices.HandleRef jarg1);
12144
12145 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetPortDesignLibraryFolders")]
12146 public static extern void CFxPreferencesDesignResources_SetPortDesignLibraryFolders(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12147
12148 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetProperties")]
12149 public static extern global::System.IntPtr CFxPreferencesDesignResources_GetProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
12150
12151 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetProperties")]
12152 public static extern void CFxPreferencesDesignResources_SetProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12153
12154 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_GetLastBrowsePath")]
12155 public static extern global::System.IntPtr CFxPreferencesDesignResources_GetLastBrowsePath(global::System.Runtime.InteropServices.HandleRef jarg1);
12156
12157 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDesignResources_SetLastBrowsePath")]
12158 public static extern void CFxPreferencesDesignResources_SetLastBrowsePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12159
12160 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDynamicInputs")]
12161 public static extern void delete_CFxPreferencesDynamicInputs(global::System.Runtime.InteropServices.HandleRef jarg1);
12162
12163 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_GetTooltipsTransparency")]
12164 public static extern int CFxPreferencesDynamicInputs_GetTooltipsTransparency(global::System.Runtime.InteropServices.HandleRef jarg1);
12165
12166 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_SetTooltipsTransparency")]
12167 public static extern void CFxPreferencesDynamicInputs_SetTooltipsTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12168
12169 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_GetTooltipsSize")]
12170 public static extern int CFxPreferencesDynamicInputs_GetTooltipsSize(global::System.Runtime.InteropServices.HandleRef jarg1);
12171
12172 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDynamicInputs_SetTooltipsSize")]
12173 public static extern void CFxPreferencesDynamicInputs_SetTooltipsSize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12174
12175 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesDiscardDuplicatesSettings")]
12176 public static extern void delete_CFxPreferencesDiscardDuplicatesSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
12177
12178 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetTolerance")]
12179 public static extern double CFxPreferencesDiscardDuplicatesSettings_GetTolerance(global::System.Runtime.InteropServices.HandleRef jarg1);
12180
12181 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetTolerance")]
12182 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetTolerance(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
12183
12184 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetIgnoreObjectProperties")]
12185 public static extern UInt64 /*SIMPLETYPE*/ CFxPreferencesDiscardDuplicatesSettings_GetIgnoreObjectProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
12186
12187 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetIgnoreObjectProperties")]
12188 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetIgnoreObjectProperties(global::System.Runtime.InteropServices.HandleRef jarg1, UInt64 /*SIMPLETYPE imtype*/ jarg2);
12189
12190 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetOptimizePolyline")]
12191 public static extern bool CFxPreferencesDiscardDuplicatesSettings_GetOptimizePolyline(global::System.Runtime.InteropServices.HandleRef jarg1);
12192
12193 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetOptimizePolyline")]
12194 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetOptimizePolyline(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12195
12196 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetIgnorePolylineWidth")]
12197 public static extern bool CFxPreferencesDiscardDuplicatesSettings_GetIgnorePolylineWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
12198
12199 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetIgnorePolylineWidth")]
12200 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetIgnorePolylineWidth(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12201
12202 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetDonotBreakPolyline")]
12203 public static extern bool CFxPreferencesDiscardDuplicatesSettings_GetDonotBreakPolyline(global::System.Runtime.InteropServices.HandleRef jarg1);
12204
12205 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetDonotBreakPolyline")]
12206 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetDonotBreakPolyline(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12207
12208 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetCombinePartialOverlap")]
12209 public static extern bool CFxPreferencesDiscardDuplicatesSettings_GetCombinePartialOverlap(global::System.Runtime.InteropServices.HandleRef jarg1);
12210
12211 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetCombinePartialOverlap")]
12212 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetCombinePartialOverlap(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12213
12214 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetCombineEndtoEndAligned")]
12215 public static extern bool CFxPreferencesDiscardDuplicatesSettings_GetCombineEndtoEndAligned(global::System.Runtime.InteropServices.HandleRef jarg1);
12216
12217 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetCombineEndtoEndAligned")]
12218 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetCombineEndtoEndAligned(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12219
12220 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_GetMaintainAssociativity")]
12221 public static extern bool CFxPreferencesDiscardDuplicatesSettings_GetMaintainAssociativity(global::System.Runtime.InteropServices.HandleRef jarg1);
12222
12223 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesDiscardDuplicatesSettings_SetMaintainAssociativity")]
12224 public static extern void CFxPreferencesDiscardDuplicatesSettings_SetMaintainAssociativity(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12225
12226 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesLayerStateManager")]
12227 public static extern void delete_CFxPreferencesLayerStateManager(global::System.Runtime.InteropServices.HandleRef jarg1);
12228
12229 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_GetHideUnusedLayers")]
12230 public static extern bool CFxPreferencesLayerStateManager_GetHideUnusedLayers(global::System.Runtime.InteropServices.HandleRef jarg1);
12231
12232 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_SetHideUnusedLayers")]
12233 public static extern void CFxPreferencesLayerStateManager_SetHideUnusedLayers(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12234
12235 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_GetViewPortOverrides")]
12236 public static extern bool CFxPreferencesLayerStateManager_GetViewPortOverrides(global::System.Runtime.InteropServices.HandleRef jarg1);
12237
12238 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_SetViewPortOverrides")]
12239 public static extern void CFxPreferencesLayerStateManager_SetViewPortOverrides(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12240
12241 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_GetHideDeletedLayersArea")]
12242 public static extern bool CFxPreferencesLayerStateManager_GetHideDeletedLayersArea(global::System.Runtime.InteropServices.HandleRef jarg1);
12243
12244 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesLayerStateManager_SetHideDeletedLayersArea")]
12245 public static extern void CFxPreferencesLayerStateManager_SetHideDeletedLayersArea(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12246
12247 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesAutocomplete")]
12248 public static extern void delete_CFxPreferencesAutocomplete(global::System.Runtime.InteropServices.HandleRef jarg1);
12249
12250 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetAlias")]
12251 public static extern bool CFxPreferencesAutocomplete_GetAlias(global::System.Runtime.InteropServices.HandleRef jarg1);
12252
12253 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetAlias")]
12254 public static extern void CFxPreferencesAutocomplete_SetAlias(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12255
12256 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetListDisplay")]
12257 public static extern bool CFxPreferencesAutocomplete_GetListDisplay(global::System.Runtime.InteropServices.HandleRef jarg1);
12258
12259 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetListDisplay")]
12260 public static extern void CFxPreferencesAutocomplete_SetListDisplay(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12261
12262 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetMidstring")]
12263 public static extern bool CFxPreferencesAutocomplete_GetMidstring(global::System.Runtime.InteropServices.HandleRef jarg1);
12264
12265 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetMidstring")]
12266 public static extern void CFxPreferencesAutocomplete_SetMidstring(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12267
12268 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetSystemVariable")]
12269 public static extern bool CFxPreferencesAutocomplete_GetSystemVariable(global::System.Runtime.InteropServices.HandleRef jarg1);
12270
12271 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetSystemVariable")]
12272 public static extern void CFxPreferencesAutocomplete_SetSystemVariable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12273
12274 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetCommandWithAlias")]
12275 public static extern bool CFxPreferencesAutocomplete_GetCommandWithAlias(global::System.Runtime.InteropServices.HandleRef jarg1);
12276
12277 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetCommandWithAlias")]
12278 public static extern void CFxPreferencesAutocomplete_SetCommandWithAlias(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12279
12280 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetAutoCorrect")]
12281 public static extern bool CFxPreferencesAutocomplete_GetAutoCorrect(global::System.Runtime.InteropServices.HandleRef jarg1);
12282
12283 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetAutoCorrect")]
12284 public static extern void CFxPreferencesAutocomplete_SetAutoCorrect(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12285
12286 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_GetMidStringCharCount")]
12287 public static extern int CFxPreferencesAutocomplete_GetMidStringCharCount(global::System.Runtime.InteropServices.HandleRef jarg1);
12288
12289 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAutocomplete_SetMidStringCharCount")]
12290 public static extern void CFxPreferencesAutocomplete_SetMidStringCharCount(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12291
12292 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesAdvancedAttEdit")]
12293 public static extern void delete_CFxPreferencesAdvancedAttEdit(global::System.Runtime.InteropServices.HandleRef jarg1);
12294
12295 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAdvancedAttEdit_GetHideProperties")]
12296 public static extern bool CFxPreferencesAdvancedAttEdit_GetHideProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
12297
12298 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesAdvancedAttEdit_SetHideProperties")]
12299 public static extern void CFxPreferencesAdvancedAttEdit_SetHideProperties(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12300
12301 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesMLeaderSettings")]
12302 public static extern void delete_CFxPreferencesMLeaderSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
12303
12304 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderOptions")]
12305 public static extern int CFxPreferencesMLeaderSettings_GetLeaderOptions(global::System.Runtime.InteropServices.HandleRef jarg1);
12306
12307 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderOptions")]
12308 public static extern void CFxPreferencesMLeaderSettings_SetLeaderOptions(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12309
12310 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderType")]
12311 public static extern int CFxPreferencesMLeaderSettings_GetLeaderType(global::System.Runtime.InteropServices.HandleRef jarg1);
12312
12313 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderType")]
12314 public static extern void CFxPreferencesMLeaderSettings_SetLeaderType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12315
12316 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderContentType")]
12317 public static extern int CFxPreferencesMLeaderSettings_GetLeaderContentType(global::System.Runtime.InteropServices.HandleRef jarg1);
12318
12319 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderContentType")]
12320 public static extern void CFxPreferencesMLeaderSettings_SetLeaderContentType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12321
12322 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderVertex")]
12323 public static extern int CFxPreferencesMLeaderSettings_GetLeaderVertex(global::System.Runtime.InteropServices.HandleRef jarg1);
12324
12325 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderVertex")]
12326 public static extern void CFxPreferencesMLeaderSettings_SetLeaderVertex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12327
12328 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderStartAngle")]
12329 public static extern double CFxPreferencesMLeaderSettings_GetLeaderStartAngle(global::System.Runtime.InteropServices.HandleRef jarg1);
12330
12331 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderStartAngle")]
12332 public static extern void CFxPreferencesMLeaderSettings_SetLeaderStartAngle(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
12333
12334 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderEndAngle")]
12335 public static extern double CFxPreferencesMLeaderSettings_GetLeaderEndAngle(global::System.Runtime.InteropServices.HandleRef jarg1);
12336
12337 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderEndAngle")]
12338 public static extern void CFxPreferencesMLeaderSettings_SetLeaderEndAngle(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
12339
12340 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderBlockName")]
12341 public static extern global::System.IntPtr CFxPreferencesMLeaderSettings_GetLeaderBlockName(global::System.Runtime.InteropServices.HandleRef jarg1);
12342
12343 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderBlockName")]
12344 public static extern void CFxPreferencesMLeaderSettings_SetLeaderBlockName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12345
12346 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderLandingLine")]
12347 public static extern bool CFxPreferencesMLeaderSettings_GetLeaderLandingLine(global::System.Runtime.InteropServices.HandleRef jarg1);
12348
12349 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderLandingLine")]
12350 public static extern void CFxPreferencesMLeaderSettings_SetLeaderLandingLine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12351
12352 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_GetLeaderLandingLineLength")]
12353 public static extern double CFxPreferencesMLeaderSettings_GetLeaderLandingLineLength(global::System.Runtime.InteropServices.HandleRef jarg1);
12354
12355 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesMLeaderSettings_SetLeaderLandingLineLength")]
12356 public static extern void CFxPreferencesMLeaderSettings_SetLeaderLandingLineLength(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
12357
12358 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesInputHistory")]
12359 public static extern void delete_CFxPreferencesInputHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
12360
12361 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesInputHistory_GetEnabled")]
12362 public static extern bool CFxPreferencesInputHistory_GetEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12363
12364 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesInputHistory_SetEnabled")]
12365 public static extern void CFxPreferencesInputHistory_SetEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12366
12367 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesCloudCommenting")]
12368 public static extern void delete_CFxPreferencesCloudCommenting(global::System.Runtime.InteropServices.HandleRef jarg1);
12369
12370 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesCloudCommenting_GetFilter")]
12371 public static extern Int32 /*SIMPLETYPE*/ CFxPreferencesCloudCommenting_GetFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
12372
12373 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesCloudCommenting_SetFilter")]
12374 public static extern void CFxPreferencesCloudCommenting_SetFilter(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 /*SIMPLETYPE imtype*/ jarg2);
12375
12376 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesCloudStorage")]
12377 public static extern void delete_CFxPreferencesCloudStorage(global::System.Runtime.InteropServices.HandleRef jarg1);
12378
12379 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesCloudStorage_GetXrefUploadPopup")]
12380 public static extern int CFxPreferencesCloudStorage_GetXrefUploadPopup(global::System.Runtime.InteropServices.HandleRef jarg1);
12381
12382 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesCloudStorage_SetXrefUploadPopup")]
12383 public static extern void CFxPreferencesCloudStorage_SetXrefUploadPopup(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12384
12385 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferencesContextualHelp")]
12386 public static extern void delete_CFxPreferencesContextualHelp(global::System.Runtime.InteropServices.HandleRef jarg1);
12387
12388 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesContextualHelp_GetContextualHelpEnabled")]
12389 public static extern bool CFxPreferencesContextualHelp_GetContextualHelpEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
12390
12391 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferencesContextualHelp_SetContextualHelpEnabled")]
12392 public static extern void CFxPreferencesContextualHelp_SetContextualHelpEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12393
12394 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreferences")]
12395 public static extern void delete_CFxPreferences(global::System.Runtime.InteropServices.HandleRef jarg1);
12396
12397 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Display")]
12398 public static extern global::System.IntPtr CFxPreferences_Display(global::System.Runtime.InteropServices.HandleRef jarg1);
12399
12400 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Drafting")]
12401 public static extern global::System.IntPtr CFxPreferences_Drafting(global::System.Runtime.InteropServices.HandleRef jarg1);
12402
12403 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_DimensionPalette")]
12404 public static extern global::System.IntPtr CFxPreferences_DimensionPalette(global::System.Runtime.InteropServices.HandleRef jarg1);
12405
12406 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_DimensionMove")]
12407 public static extern global::System.IntPtr CFxPreferences_DimensionMove(global::System.Runtime.InteropServices.HandleRef jarg1);
12408
12409 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_EntityMove")]
12410 public static extern global::System.IntPtr CFxPreferences_EntityMove(global::System.Runtime.InteropServices.HandleRef jarg1);
12411
12412 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_HeadsUpDisplay")]
12413 public static extern global::System.IntPtr CFxPreferences_HeadsUpDisplay(global::System.Runtime.InteropServices.HandleRef jarg1);
12414
12415 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_OLEEditor")]
12416 public static extern global::System.IntPtr CFxPreferences_OLEEditor(global::System.Runtime.InteropServices.HandleRef jarg1);
12417
12418 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_OpenSave")]
12419 public static extern global::System.IntPtr CFxPreferences_OpenSave(global::System.Runtime.InteropServices.HandleRef jarg1);
12420
12421 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Output")]
12422 public static extern global::System.IntPtr CFxPreferences_Output(global::System.Runtime.InteropServices.HandleRef jarg1);
12423
12424 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_PlotSettings")]
12425 public static extern global::System.IntPtr CFxPreferences_PlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
12426
12427 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Selection")]
12428 public static extern global::System.IntPtr CFxPreferences_Selection(global::System.Runtime.InteropServices.HandleRef jarg1);
12429
12430 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Systems")]
12431 public static extern global::System.IntPtr CFxPreferences_Systems(global::System.Runtime.InteropServices.HandleRef jarg1);
12432
12433 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_User")]
12434 public static extern global::System.IntPtr CFxPreferences_User(global::System.Runtime.InteropServices.HandleRef jarg1);
12435
12436 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Enterpoint")]
12437 public static extern global::System.IntPtr CFxPreferences_Enterpoint(global::System.Runtime.InteropServices.HandleRef jarg1);
12438
12439 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_MatrixToolbar")]
12440 public static extern global::System.IntPtr CFxPreferences_MatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1);
12441
12442 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Hatch")]
12443 public static extern global::System.IntPtr CFxPreferences_Hatch(global::System.Runtime.InteropServices.HandleRef jarg1);
12444
12445 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_PackAndGo")]
12446 public static extern global::System.IntPtr CFxPreferences_PackAndGo(global::System.Runtime.InteropServices.HandleRef jarg1);
12447
12448 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_StandardCompliantDwg")]
12449 public static extern global::System.IntPtr CFxPreferences_StandardCompliantDwg(global::System.Runtime.InteropServices.HandleRef jarg1);
12450
12451 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_DesignResources")]
12452 public static extern global::System.IntPtr CFxPreferences_DesignResources(global::System.Runtime.InteropServices.HandleRef jarg1);
12453
12454 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_Tablet")]
12455 public static extern global::System.IntPtr CFxPreferences_Tablet(global::System.Runtime.InteropServices.HandleRef jarg1);
12456
12457 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_DiscardDuplicatesSettings")]
12458 public static extern global::System.IntPtr CFxPreferences_DiscardDuplicatesSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
12459
12460 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_LayerStateSettings")]
12461 public static extern global::System.IntPtr CFxPreferences_LayerStateSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
12462
12463 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_DynamicInputs")]
12464 public static extern global::System.IntPtr CFxPreferences_DynamicInputs(global::System.Runtime.InteropServices.HandleRef jarg1);
12465
12466 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_AutocompleteSettings")]
12467 public static extern global::System.IntPtr CFxPreferences_AutocompleteSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
12468
12469 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_AdvancedAttEdit")]
12470 public static extern global::System.IntPtr CFxPreferences_AdvancedAttEdit(global::System.Runtime.InteropServices.HandleRef jarg1);
12471
12472 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_MLeaderSettings")]
12473 public static extern global::System.IntPtr CFxPreferences_MLeaderSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
12474
12475 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_AutoSplitDimensions")]
12476 public static extern global::System.IntPtr CFxPreferences_AutoSplitDimensions(global::System.Runtime.InteropServices.HandleRef jarg1);
12477
12478 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_InputHistory")]
12479 public static extern global::System.IntPtr CFxPreferences_InputHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
12480
12481 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_LayerPallete")]
12482 public static extern global::System.IntPtr CFxPreferences_LayerPallete(global::System.Runtime.InteropServices.HandleRef jarg1);
12483
12484 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_CloudCommenting")]
12485 public static extern global::System.IntPtr CFxPreferences_CloudCommenting(global::System.Runtime.InteropServices.HandleRef jarg1);
12486
12487 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_CloudStorage")]
12488 public static extern global::System.IntPtr CFxPreferences_CloudStorage(global::System.Runtime.InteropServices.HandleRef jarg1);
12489
12490 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreferences_ContextualHelp")]
12491 public static extern global::System.IntPtr CFxPreferences_ContextualHelp(global::System.Runtime.InteropServices.HandleRef jarg1);
12492
12493 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_cast")]
12494 public static extern global::System.IntPtr CFxModule_cast(HandleRef jarg1);
12495
12496 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_desc")]
12497 public static extern IntPtr CFxModule_desc();
12498
12499 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_isA")]
12500 public static extern IntPtr CFxModule_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
12501
12502 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_isASwigExplicitCFxModule")]
12503 public static extern IntPtr CFxModule_isASwigExplicitCFxModule(global::System.Runtime.InteropServices.HandleRef jarg1);
12504
12505 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_queryX")]
12506 public static extern IntPtr CFxModule_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
12507
12508 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_queryXSwigExplicitCFxModule")]
12509 public static extern IntPtr CFxModule_queryXSwigExplicitCFxModule(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
12510
12511 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_createObject")]
12512 public static extern global::System.IntPtr CFxModule_createObject();
12513
12514 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxModule_CFxEventData__SWIG_0")]
12515 public static extern global::System.IntPtr new_CFxModule_CFxEventData__SWIG_0(HandleRef jarg1, int jarg2);
12516
12517 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxModule_CFxEventData__SWIG_1")]
12518 public static extern global::System.IntPtr new_CFxModule_CFxEventData__SWIG_1(HandleRef jarg1);
12519
12520 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxModule_CFxEventData__SWIG_2")]
12521 public static extern global::System.IntPtr new_CFxModule_CFxEventData__SWIG_2();
12522
12523 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_pDatabase_set")]
12524 public static extern void CFxModule_CFxEventData_m_pDatabase_set(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
12525
12526 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_pDatabase_get")]
12527 public static extern IntPtr CFxModule_CFxEventData_m_pDatabase_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12528
12529 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_DefunCode_set")]
12530 public static extern void CFxModule_CFxEventData_m_DefunCode_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12531
12532 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_CFxEventData_m_DefunCode_get")]
12533 public static extern int CFxModule_CFxEventData_m_DefunCode_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12534
12535 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxModule_CFxEventData")]
12536 public static extern void delete_CFxModule_CFxEventData(global::System.Runtime.InteropServices.HandleRef jarg1);
12537
12538 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_event___SWIG_0")]
12539 public static extern int CFxModule_event___SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
12540
12541 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_event___SWIG_1")]
12542 public static extern int CFxModule_event___SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12543
12544 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxModule")]
12545 public static extern global::System.IntPtr new_CFxModule();
12546
12547 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxModule")]
12548 public static extern void delete_CFxModule(global::System.Runtime.InteropServices.HandleRef jarg1);
12549
12550 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_director_connect")]
12552
12553 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPluginModuleInternal")]
12554 public static extern void delete_CFxPluginModuleInternal(global::System.Runtime.InteropServices.HandleRef jarg1);
12555
12556 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_initApp")]
12557 public static extern void CFxPluginModuleInternal_initApp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12558
12559 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_uninitApp")]
12560 public static extern void CFxPluginModuleInternal_uninitApp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12561
12562 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_addGUID")]
12563 public static extern void CFxPluginModuleInternal_addGUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12564
12565 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_addGUIDs")]
12566 public static extern void CFxPluginModuleInternal_addGUIDs(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12567
12568 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_nextGUID__SWIG_0")]
12569 public static extern global::System.IntPtr CFxPluginModuleInternal_nextGUID__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
12570
12571 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_nextGUID__SWIG_1")]
12572 public static extern global::System.IntPtr CFxPluginModuleInternal_nextGUID__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
12573
12574 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_setEdition")]
12575 public static extern void CFxPluginModuleInternal_setEdition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12576
12577 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPluginModuleInternal_valid")]
12578 public static extern bool CFxPluginModuleInternal_valid(global::System.Runtime.InteropServices.HandleRef jarg1);
12579
12580 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetCFxPluginModuleInternal")]
12581 public static extern global::System.IntPtr GetCFxPluginModuleInternal();
12582
12583 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_desktop_set")]
12584 public static extern void VSTA_CONTEXT_desktop_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
12585
12586 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_desktop_get")]
12587 public static extern string VSTA_CONTEXT_desktop_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12588
12589 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_userFolder_set")]
12590 public static extern void VSTA_CONTEXT_userFolder_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
12591
12592 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_userFolder_get")]
12593 public static extern string VSTA_CONTEXT_userFolder_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12594
12595 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_manufacturer_set")]
12596 public static extern void VSTA_CONTEXT_manufacturer_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
12597
12598 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_manufacturer_get")]
12599 public static extern string VSTA_CONTEXT_manufacturer_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12600
12601 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_hostID_set")]
12602 public static extern void VSTA_CONTEXT_hostID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
12603
12604 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_hostID_get")]
12605 public static extern string VSTA_CONTEXT_hostID_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12606
12607 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_appName_set")]
12608 public static extern void VSTA_CONTEXT_appName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
12609
12610 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_appName_get")]
12611 public static extern string VSTA_CONTEXT_appName_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12612
12613 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_templates_set")]
12614 public static extern void VSTA_CONTEXT_templates_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
12615
12616 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_VSTA_CONTEXT_templates_get")]
12617 public static extern string VSTA_CONTEXT_templates_get(global::System.Runtime.InteropServices.HandleRef jarg1);
12618
12619 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_VSTA_CONTEXT")]
12620 public static extern global::System.IntPtr new_VSTA_CONTEXT();
12621
12622 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_VSTA_CONTEXT")]
12623 public static extern void delete_VSTA_CONTEXT(global::System.Runtime.InteropServices.HandleRef jarg1);
12624
12625 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxVSTA")]
12626 public static extern void delete_CFxVSTA(global::System.Runtime.InteropServices.HandleRef jarg1);
12627
12628 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_IsVSTAStarted")]
12629 public static extern bool CFxVSTA_IsVSTAStarted(global::System.Runtime.InteropServices.HandleRef jarg1);
12630
12631 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_SetContext")]
12632 public static extern void CFxVSTA_SetContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5);
12633
12634 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_Load")]
12635 public static extern bool CFxVSTA_Load(global::System.Runtime.InteropServices.HandleRef jarg1);
12636
12637 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_GetMacros")]
12638 public static extern global::System.IntPtr CFxVSTA_GetMacros(global::System.Runtime.InteropServices.HandleRef jarg1);
12639
12640 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_GenerateNewMacroName")]
12641 public static extern global::System.IntPtr CFxVSTA_GenerateNewMacroName(global::System.Runtime.InteropServices.HandleRef jarg1);
12642
12643 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_ExecuteMacro")]
12644 public static extern void CFxVSTA_ExecuteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
12645
12646 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_EditMacro")]
12647 public static extern void CFxVSTA_EditMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12648
12649 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_DeleteMacro")]
12650 public static extern void CFxVSTA_DeleteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12651
12652 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_StartMacroRecording")]
12653 public static extern void CFxVSTA_StartMacroRecording(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12654
12655 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_StopMacroRecording")]
12656 public static extern void CFxVSTA_StopMacroRecording(global::System.Runtime.InteropServices.HandleRef jarg1);
12657
12658 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_EmitCommands")]
12659 public static extern void CFxVSTA_EmitCommands(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12660
12661 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_GetCurrentMacro")]
12662 public static extern int CFxVSTA_GetCurrentMacro(global::System.Runtime.InteropServices.HandleRef jarg1);
12663
12664 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_SetCurrentMacro")]
12665 public static extern void CFxVSTA_SetCurrentMacro(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
12666
12667 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVSTA_GetLanguage")]
12668 public static extern int CFxVSTA_GetLanguage(global::System.Runtime.InteropServices.HandleRef jarg1);
12669
12670 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSystemFiles")]
12671 public static extern void delete_CFxSystemFiles(global::System.Runtime.InteropServices.HandleRef jarg1);
12672
12673 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetSupportPath")]
12674 public static extern global::System.IntPtr CFxSystemFiles_GetSupportPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12675
12676 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetSupportPath")]
12677 public static extern void CFxSystemFiles_SetSupportPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12678
12679 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDrawingsPath")]
12680 public static extern global::System.IntPtr CFxSystemFiles_GetDrawingsPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12681
12682 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDrawingsPath")]
12683 public static extern void CFxSystemFiles_SetDrawingsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12684
12685 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMenusPath")]
12686 public static extern global::System.IntPtr CFxSystemFiles_GetMenusPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12687
12688 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMenusPath")]
12689 public static extern void CFxSystemFiles_SetMenusPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12690
12691 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetFontsPath")]
12692 public static extern global::System.IntPtr CFxSystemFiles_GetFontsPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12693
12694 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetFontsPath")]
12695 public static extern void CFxSystemFiles_SetFontsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12696
12697 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTempPath")]
12698 public static extern global::System.IntPtr CFxSystemFiles_GetTempPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12699
12700 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTempPath")]
12701 public static extern void CFxSystemFiles_SetTempPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12702
12703 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetHelpFile")]
12704 public static extern global::System.IntPtr CFxSystemFiles_GetHelpFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12705
12706 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetHelpFile")]
12707 public static extern void CFxSystemFiles_SetHelpFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12708
12709 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPlotFile")]
12710 public static extern global::System.IntPtr CFxSystemFiles_GetPlotFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12711
12712 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPlotFile")]
12713 public static extern void CFxSystemFiles_SetPlotFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12714
12715 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPlotStyleTablesPath")]
12716 public static extern global::System.IntPtr CFxSystemFiles_GetPlotStyleTablesPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12717
12718 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPlotStyleTablesPath")]
12719 public static extern void CFxSystemFiles_SetPlotStyleTablesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12720
12721 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetWBLOCKPath")]
12722 public static extern global::System.IntPtr CFxSystemFiles_GetWBLOCKPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12723
12724 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetWBLOCKPath")]
12725 public static extern void CFxSystemFiles_SetWBLOCKPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12726
12727 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMultilineStylePath")]
12728 public static extern global::System.IntPtr CFxSystemFiles_GetMultilineStylePath(global::System.Runtime.InteropServices.HandleRef jarg1);
12729
12730 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMultilineStylePath")]
12731 public static extern void CFxSystemFiles_SetMultilineStylePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12732
12733 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetLinetypesPath")]
12734 public static extern global::System.IntPtr CFxSystemFiles_GetLinetypesPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12735
12736 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetLinetypesPath")]
12737 public static extern void CFxSystemFiles_SetLinetypesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12738
12739 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAutosavePath")]
12740 public static extern global::System.IntPtr CFxSystemFiles_GetAutosavePath(global::System.Runtime.InteropServices.HandleRef jarg1);
12741
12742 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAutosavePath")]
12743 public static extern void CFxSystemFiles_SetAutosavePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12744
12745 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAliasPath")]
12746 public static extern global::System.IntPtr CFxSystemFiles_GetAliasPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12747
12748 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAliasPath")]
12749 public static extern void CFxSystemFiles_SetAliasPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12750
12751 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetProjectFilePath")]
12752 public static extern global::System.IntPtr CFxSystemFiles_GetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12753
12754 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetProjectFilePath")]
12755 public static extern void CFxSystemFiles_SetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
12756
12757 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetWorkspacePath")]
12758 public static extern global::System.IntPtr CFxSystemFiles_GetWorkspacePath(global::System.Runtime.InteropServices.HandleRef jarg1);
12759
12760 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetWorkspacePath")]
12761 public static extern void CFxSystemFiles_SetWorkspacePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12762
12763 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDriversPath")]
12764 public static extern global::System.IntPtr CFxSystemFiles_GetDriversPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12765
12766 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDriversPath")]
12767 public static extern void CFxSystemFiles_SetDriversPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12768
12769 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMenuFile")]
12770 public static extern global::System.IntPtr CFxSystemFiles_GetMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12771
12772 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMenuFile")]
12773 public static extern void CFxSystemFiles_SetMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12774
12775 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetEnterpriseMenuFile")]
12776 public static extern global::System.IntPtr CFxSystemFiles_GetEnterpriseMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12777
12778 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetEnterpriseMenuFile")]
12779 public static extern void CFxSystemFiles_SetEnterpriseMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12780
12781 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetCustomIconPath")]
12782 public static extern global::System.IntPtr CFxSystemFiles_GetCustomIconPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12783
12784 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetCustomIconPath")]
12785 public static extern void CFxSystemFiles_SetCustomIconPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12786
12787 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDefaultInternetURL")]
12788 public static extern global::System.IntPtr CFxSystemFiles_GetDefaultInternetURL(global::System.Runtime.InteropServices.HandleRef jarg1);
12789
12790 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDefaultInternetURL")]
12791 public static extern void CFxSystemFiles_SetDefaultInternetURL(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12792
12793 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetConfigFile")]
12794 public static extern global::System.IntPtr CFxSystemFiles_GetConfigFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12795
12796 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTextEditor")]
12797 public static extern global::System.IntPtr CFxSystemFiles_GetTextEditor(global::System.Runtime.InteropServices.HandleRef jarg1);
12798
12799 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTextEditor")]
12800 public static extern void CFxSystemFiles_SetTextEditor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12801
12802 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetMainDictionary")]
12803 public static extern global::System.IntPtr CFxSystemFiles_GetMainDictionary(global::System.Runtime.InteropServices.HandleRef jarg1);
12804
12805 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetMainDictionary")]
12806 public static extern void CFxSystemFiles_SetMainDictionary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12807
12808 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetCustomDictionary")]
12809 public static extern global::System.IntPtr CFxSystemFiles_GetCustomDictionary(global::System.Runtime.InteropServices.HandleRef jarg1);
12810
12811 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetCustomDictionary")]
12812 public static extern void CFxSystemFiles_SetCustomDictionary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12813
12814 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAltFontFile")]
12815 public static extern global::System.IntPtr CFxSystemFiles_GetAltFontFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12816
12817 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAltFontFile")]
12818 public static extern void CFxSystemFiles_SetAltFontFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12819
12820 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetFontFileMap")]
12821 public static extern global::System.IntPtr CFxSystemFiles_GetFontFileMap(global::System.Runtime.InteropServices.HandleRef jarg1);
12822
12823 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetFontFileMap")]
12824 public static extern void CFxSystemFiles_SetFontFileMap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12825
12826 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintFile")]
12827 public static extern global::System.IntPtr CFxSystemFiles_GetPrintFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12828
12829 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintFile")]
12830 public static extern void CFxSystemFiles_SetPrintFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12831
12832 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintSpoolExecutable")]
12833 public static extern global::System.IntPtr CFxSystemFiles_GetPrintSpoolExecutable(global::System.Runtime.InteropServices.HandleRef jarg1);
12834
12835 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintSpoolExecutable")]
12836 public static extern void CFxSystemFiles_SetPrintSpoolExecutable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12837
12838 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPostScriptPrologFile")]
12839 public static extern global::System.IntPtr CFxSystemFiles_GetPostScriptPrologFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12840
12841 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPostScriptPrologFile")]
12842 public static extern void CFxSystemFiles_SetPostScriptPrologFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12843
12844 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintSpoolerPath")]
12845 public static extern global::System.IntPtr CFxSystemFiles_GetPrintSpoolerPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12846
12847 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintSpoolerPath")]
12848 public static extern void CFxSystemFiles_SetPrintSpoolerPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12849
12850 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrinterConfigPath")]
12851 public static extern global::System.IntPtr CFxSystemFiles_GetPrinterConfigPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12852
12853 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrinterConfigPath")]
12854 public static extern void CFxSystemFiles_SetPrinterConfigPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12855
12856 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrinterDescPath")]
12857 public static extern global::System.IntPtr CFxSystemFiles_GetPrinterDescPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12858
12859 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrinterDescPath")]
12860 public static extern void CFxSystemFiles_SetPrinterDescPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12861
12862 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrinterStyleSheetPath")]
12863 public static extern global::System.IntPtr CFxSystemFiles_GetPrinterStyleSheetPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12864
12865 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrinterStyleSheetPath")]
12866 public static extern void CFxSystemFiles_SetPrinterStyleSheetPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12867
12868 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetColorBookPath")]
12869 public static extern global::System.IntPtr CFxSystemFiles_GetColorBookPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12870
12871 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetColorBookPath")]
12872 public static extern void CFxSystemFiles_SetColorBookPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12873
12874 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetSmartNewTemplateFile")]
12875 public static extern global::System.IntPtr CFxSystemFiles_GetSmartNewTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12876
12877 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetSmartNewTemplateFile")]
12878 public static extern void CFxSystemFiles_SetSmartNewTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12879
12880 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPageSetupOverridesTemplateFile")]
12881 public static extern global::System.IntPtr CFxSystemFiles_GetPageSetupOverridesTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12882
12883 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPageSetupOverridesTemplateFile")]
12884 public static extern void CFxSystemFiles_SetPageSetupOverridesTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12885
12886 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetToolPalettePath")]
12887 public static extern global::System.IntPtr CFxSystemFiles_GetToolPalettePath(global::System.Runtime.InteropServices.HandleRef jarg1);
12888
12889 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetToolPalettePath")]
12890 public static extern void CFxSystemFiles_SetToolPalettePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12891
12892 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetLogFilePath")]
12893 public static extern global::System.IntPtr CFxSystemFiles_GetLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1);
12894
12895 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetLogFilePath")]
12896 public static extern void CFxSystemFiles_SetLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12897
12898 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPlotLogFilePath")]
12899 public static extern global::System.IntPtr CFxSystemFiles_GetPlotLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1);
12900
12901 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPlotLogFilePath")]
12902 public static extern void CFxSystemFiles_SetPlotLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12903
12904 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTemplateDWGPath")]
12905 public static extern global::System.IntPtr CFxSystemFiles_GetTemplateDWGPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12906
12907 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTemplateDWGPath")]
12908 public static extern void CFxSystemFiles_SetTemplateDWGPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12909
12910 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTempXRefPath")]
12911 public static extern global::System.IntPtr CFxSystemFiles_GetTempXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12912
12913 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTempXRefPath")]
12914 public static extern void CFxSystemFiles_SetTempXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12915
12916 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTextureMapPath")]
12917 public static extern global::System.IntPtr CFxSystemFiles_GetTextureMapPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12918
12919 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTextureMapPath")]
12920 public static extern void CFxSystemFiles_SetTextureMapPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12921
12922 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetAltTabletMenuFile")]
12923 public static extern global::System.IntPtr CFxSystemFiles_GetAltTabletMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1);
12924
12925 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetAltTabletMenuFile")]
12926 public static extern void CFxSystemFiles_SetAltTabletMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12927
12928 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetLicenseServer")]
12929 public static extern global::System.IntPtr CFxSystemFiles_GetLicenseServer(global::System.Runtime.InteropServices.HandleRef jarg1);
12930
12931 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetVSTATemplatesPath")]
12932 public static extern global::System.IntPtr CFxSystemFiles_GetVSTATemplatesPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12933
12934 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetVSTATemplatesPath")]
12935 public static extern void CFxSystemFiles_SetVSTATemplatesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12936
12937 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetVSTAHostId")]
12938 public static extern global::System.IntPtr CFxSystemFiles_GetVSTAHostId(global::System.Runtime.InteropServices.HandleRef jarg1);
12939
12940 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetVSTAHostId")]
12941 public static extern void CFxSystemFiles_SetVSTAHostId(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12942
12943 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetXRefPath")]
12944 public static extern global::System.IntPtr CFxSystemFiles_GetXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12945
12946 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetXRefPath")]
12947 public static extern void CFxSystemFiles_SetXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12948
12949 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetPrintSettingsPath")]
12950 public static extern global::System.IntPtr CFxSystemFiles_GetPrintSettingsPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12951
12952 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetPrintSettingsPath")]
12953 public static extern void CFxSystemFiles_SetPrintSettingsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12954
12955 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetApplicationPath")]
12956 public static extern global::System.IntPtr CFxSystemFiles_GetApplicationPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12957
12958 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetUserDataPath")]
12959 public static extern global::System.IntPtr CFxSystemFiles_GetUserDataPath(global::System.Runtime.InteropServices.HandleRef jarg1);
12960
12961 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetDrawingBorderPaths")]
12962 public static extern global::System.IntPtr CFxSystemFiles_GetDrawingBorderPaths(global::System.Runtime.InteropServices.HandleRef jarg1);
12963
12964 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetDrawingBorderPaths")]
12965 public static extern void CFxSystemFiles_SetDrawingBorderPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12966
12967 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetTitleBlockPaths")]
12968 public static extern global::System.IntPtr CFxSystemFiles_GetTitleBlockPaths(global::System.Runtime.InteropServices.HandleRef jarg1);
12969
12970 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_SetTitleBlockPaths")]
12971 public static extern void CFxSystemFiles_SetTitleBlockPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12972
12973 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSystemFiles_GetSessionFolder")]
12974 public static extern global::System.IntPtr CFxSystemFiles_GetSessionFolder(global::System.Runtime.InteropServices.HandleRef jarg1);
12975
12976 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxRecentFiles")]
12977 public static extern void delete_CFxRecentFiles(global::System.Runtime.InteropServices.HandleRef jarg1);
12978
12979 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRecentFiles_Clear")]
12980 public static extern void CFxRecentFiles_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
12981
12982 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRecentFiles_Add")]
12983 public static extern void CFxRecentFiles_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12984
12985 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRecentFiles_Remove")]
12986 public static extern void CFxRecentFiles_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
12987
12988 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRecentFiles_GetFileNames")]
12989 public static extern global::System.IntPtr CFxRecentFiles_GetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1);
12990
12991 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxAppInfo")]
12992 public static extern void delete_CFxAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
12993
12994 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_cast")]
12995 public static extern global::System.IntPtr CFxAppInfo_cast(HandleRef jarg1);
12996
12997 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_desc")]
12998 public static extern IntPtr CFxAppInfo_desc();
12999
13000 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_isA")]
13001 public static extern IntPtr CFxAppInfo_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
13002
13003 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_queryX")]
13004 public static extern IntPtr CFxAppInfo_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
13005
13006 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_createObject")]
13007 public static extern global::System.IntPtr CFxAppInfo_createObject();
13008
13009 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetType")]
13010 public static extern int CFxAppInfo_GetType(global::System.Runtime.InteropServices.HandleRef jarg1);
13011
13012 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetType")]
13013 public static extern void CFxAppInfo_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
13014
13015 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetLoadReasons")]
13016 public static extern int CFxAppInfo_GetLoadReasons(global::System.Runtime.InteropServices.HandleRef jarg1);
13017
13018 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetLoadReasons")]
13019 public static extern void CFxAppInfo_SetLoadReasons(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
13020
13021 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetFileName")]
13022 public static extern global::System.IntPtr CFxAppInfo_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1);
13023
13024 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetFileName")]
13025 public static extern void CFxAppInfo_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13026
13027 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetAppName")]
13028 public static extern global::System.IntPtr CFxAppInfo_GetAppName(global::System.Runtime.InteropServices.HandleRef jarg1);
13029
13030 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetAppName")]
13031 public static extern void CFxAppInfo_SetAppName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13032
13033 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetAppDesc")]
13034 public static extern global::System.IntPtr CFxAppInfo_GetAppDesc(global::System.Runtime.InteropServices.HandleRef jarg1);
13035
13036 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetAppDesc")]
13037 public static extern void CFxAppInfo_SetAppDesc(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13038
13039 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetManaged")]
13040 public static extern void CFxAppInfo_SetManaged(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13041
13042 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_IsManaged")]
13043 public static extern bool CFxAppInfo_IsManaged(global::System.Runtime.InteropServices.HandleRef jarg1);
13044
13045 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_Load")]
13046 public static extern bool CFxAppInfo_Load(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13047
13048 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_Save")]
13049 public static extern bool CFxAppInfo_Save(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13050
13051 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetGlobalCommandNames")]
13052 public static extern void CFxAppInfo_SetGlobalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13053
13054 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetGlobalCommandNames")]
13055 public static extern void CFxAppInfo_GetGlobalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13056
13057 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetLocalCommandNames")]
13058 public static extern void CFxAppInfo_SetLocalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13059
13060 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetLocalCommandNames")]
13061 public static extern void CFxAppInfo_GetLocalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13062
13063 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SetGroupNames")]
13064 public static extern void CFxAppInfo_SetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13065
13066 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetGroupNames")]
13067 public static extern void CFxAppInfo_GetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13068
13069 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_GetStatus")]
13070 public static extern int CFxAppInfo_GetStatus(global::System.Runtime.InteropServices.HandleRef jarg1);
13071
13072 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPicture")]
13073 public static extern void delete_CFxPicture(global::System.Runtime.InteropServices.HandleRef jarg1);
13074
13075 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPicture_Clear")]
13076 public static extern void CFxPicture_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
13077
13078 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxViewDrawContext")]
13079 public static extern void delete_CFxViewDrawContext(global::System.Runtime.InteropServices.HandleRef jarg1);
13080
13081 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_AdjustBeforeUpdate")]
13082 public static extern void CFxViewDrawContext_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13083
13084 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_BeginUpdate")]
13085 public static extern void CFxViewDrawContext_BeginUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13086
13087 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_DrawObject")]
13088 public static extern void CFxViewDrawContext_DrawObject(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
13089
13090 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_EndUpdate")]
13091 public static extern void CFxViewDrawContext_EndUpdate(global::System.Runtime.InteropServices.HandleRef jarg1);
13092
13093 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_GetViewDrawInfo__SWIG_0")]
13094 public static extern global::System.IntPtr CFxViewDrawContext_GetViewDrawInfo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
13095
13096 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_ClearBackground")]
13097 public static extern void CFxViewDrawContext_ClearBackground(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 /*SIMPLETYPE*/ jarg2);
13098
13099 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_SetClipPath")]
13100 public static extern void CFxViewDrawContext_SetClipPath(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
13101
13102 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawContext_GetGiGeometry")]
13103 public static extern IntPtr CFxViewDrawContext_GetGiGeometry(global::System.Runtime.InteropServices.HandleRef jarg1);
13104
13105 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_kMAX_VALID_DEPTH_RANGE_get")]
13106 public static extern double kMAX_VALID_DEPTH_RANGE_get();
13107
13108 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxViewDrawInfo")]
13109 public static extern global::System.IntPtr new_CFxViewDrawInfo();
13110
13111 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxViewDrawInfo")]
13112 public static extern void delete_CFxViewDrawInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
13113
13114 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeView__SWIG_0")]
13115 public static extern void CFxViewDrawInfo_InitializeView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, double jarg5, double jarg6, int jarg7);
13116
13117 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeView__SWIG_1")]
13118 public static extern void CFxViewDrawInfo_InitializeView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, double jarg5, double jarg6);
13119
13120 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeViewByExtents")]
13121 public static extern void CFxViewDrawInfo_InitializeViewByExtents(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13122
13123 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeOutputSize")]
13124 public static extern void CFxViewDrawInfo_InitializeOutputSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3);
13125
13126 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializePalette")]
13127 public static extern void CFxViewDrawInfo_InitializePalette(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]UInt32[] jarg2);
13128
13129 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeDatabase")]
13130 public static extern void CFxViewDrawInfo_InitializeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
13131
13132 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeFromFxView")]
13133 public static extern bool CFxViewDrawInfo_InitializeFromFxView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13134
13135 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_InitializeFromDbViewport")]
13136 public static extern bool CFxViewDrawInfo_InitializeFromDbViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, bool jarg5);
13137
13138 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFILLMODE")]
13139 public static extern bool CFxViewDrawInfo_GetFILLMODE(global::System.Runtime.InteropServices.HandleRef jarg1);
13140
13141 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetQTEXTMODE")]
13142 public static extern bool CFxViewDrawInfo_GetQTEXTMODE(global::System.Runtime.InteropServices.HandleRef jarg1);
13143
13144 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetXCLIPFRAME")]
13145 public static extern bool CFxViewDrawInfo_GetXCLIPFRAME(global::System.Runtime.InteropServices.HandleRef jarg1);
13146
13147 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetDrawImages")]
13148 public static extern bool CFxViewDrawInfo_GetDrawImages(global::System.Runtime.InteropServices.HandleRef jarg1);
13149
13150 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetDrawImages")]
13151 public static extern void CFxViewDrawInfo_SetDrawImages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13152
13153 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetTEXTFILL")]
13154 public static extern bool CFxViewDrawInfo_GetTEXTFILL(global::System.Runtime.InteropServices.HandleRef jarg1);
13155
13156 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFxCadWindowId")]
13157 public static extern Int16 /*SIMPLETYPE*/ CFxViewDrawInfo_GetFxCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1);
13158
13159 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetViewportId")]
13160 public static extern global::System.IntPtr CFxViewDrawInfo_GetViewportId(global::System.Runtime.InteropServices.HandleRef jarg1);
13161
13162 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetIMAGEFRAME")]
13163 public static extern int CFxViewDrawInfo_GetIMAGEFRAME(global::System.Runtime.InteropServices.HandleRef jarg1);
13164
13165 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetIMAGEFRAME")]
13166 public static extern void CFxViewDrawInfo_SetIMAGEFRAME(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
13167
13168 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsPlotGeneration")]
13169 public static extern bool CFxViewDrawInfo_IsPlotGeneration(global::System.Runtime.InteropServices.HandleRef jarg1);
13170
13171 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseGsModel")]
13172 public static extern bool CFxViewDrawInfo_UseGsModel(global::System.Runtime.InteropServices.HandleRef jarg1);
13173
13174 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseGsModel")]
13175 public static extern void CFxViewDrawInfo_SetUseGsModel(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13176
13177 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseTransparency")]
13178 public static extern void CFxViewDrawInfo_SetUseTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13179
13180 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseTransparency")]
13181 public static extern bool CFxViewDrawInfo_UseTransparency(global::System.Runtime.InteropServices.HandleRef jarg1);
13182
13183 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsInitialUpdate")]
13184 public static extern bool CFxViewDrawInfo_IsInitialUpdate(global::System.Runtime.InteropServices.HandleRef jarg1);
13185
13186 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsDrawSkipped")]
13187 public static extern bool CFxViewDrawInfo_IsDrawSkipped(global::System.Runtime.InteropServices.HandleRef jarg1);
13188
13189 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetDrawSkipped")]
13190 public static extern void CFxViewDrawInfo_SetDrawSkipped(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13191
13192 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsInsideSelect")]
13193 public static extern bool CFxViewDrawInfo_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1);
13194
13195 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInsideSelect")]
13196 public static extern void CFxViewDrawInfo_SetInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13197
13198 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVIEWRES")]
13199 public static extern UInt16 /*SIMPLETYPE*/ CFxViewDrawInfo_GetVIEWRES(global::System.Runtime.InteropServices.HandleRef jarg1);
13200
13201 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsPerspective")]
13202 public static extern bool CFxViewDrawInfo_IsPerspective(global::System.Runtime.InteropServices.HandleRef jarg1);
13203
13204 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPixelWidth")]
13205 public static extern double CFxViewDrawInfo_GetPixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
13206
13207 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPixelHeight")]
13208 public static extern double CFxViewDrawInfo_GetPixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
13209
13210 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisiblePixelWidth")]
13211 public static extern double CFxViewDrawInfo_GetVisiblePixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
13212
13213 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisiblePixelHeight")]
13214 public static extern double CFxViewDrawInfo_GetVisiblePixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
13215
13216 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrontClip")]
13217 public static extern double CFxViewDrawInfo_GetFrontClip(global::System.Runtime.InteropServices.HandleRef jarg1);
13218
13219 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetBackClip")]
13220 public static extern double CFxViewDrawInfo_GetBackClip(global::System.Runtime.InteropServices.HandleRef jarg1);
13221
13222 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetFrontClip")]
13223 public static extern void CFxViewDrawInfo_SetFrontClip(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
13224
13225 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetBackClip")]
13226 public static extern void CFxViewDrawInfo_SetBackClip(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
13227
13228 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsFrontClipped")]
13229 public static extern bool CFxViewDrawInfo_IsFrontClipped(global::System.Runtime.InteropServices.HandleRef jarg1);
13230
13231 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsBackClipped")]
13232 public static extern bool CFxViewDrawInfo_IsBackClipped(global::System.Runtime.InteropServices.HandleRef jarg1);
13233
13234 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFocalLength")]
13235 public static extern double CFxViewDrawInfo_GetFocalLength(global::System.Runtime.InteropServices.HandleRef jarg1);
13236
13237 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetViewDir")]
13238 public static extern global::System.IntPtr CFxViewDrawInfo_GetViewDir(global::System.Runtime.InteropServices.HandleRef jarg1);
13239
13240 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPosition")]
13241 public static extern global::System.IntPtr CFxViewDrawInfo_GetPosition(global::System.Runtime.InteropServices.HandleRef jarg1);
13242
13243 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetUpVector")]
13244 public static extern global::System.IntPtr CFxViewDrawInfo_GetUpVector(global::System.Runtime.InteropServices.HandleRef jarg1);
13245
13246 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetTarget")]
13247 public static extern global::System.IntPtr CFxViewDrawInfo_GetTarget(global::System.Runtime.InteropServices.HandleRef jarg1);
13248
13249 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFieldWidth")]
13250 public static extern double CFxViewDrawInfo_GetFieldWidth(global::System.Runtime.InteropServices.HandleRef jarg1);
13251
13252 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFieldHeight")]
13253 public static extern double CFxViewDrawInfo_GetFieldHeight(global::System.Runtime.InteropServices.HandleRef jarg1);
13254
13255 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsRapidMode")]
13256 public static extern bool CFxViewDrawInfo_IsRapidMode(global::System.Runtime.InteropServices.HandleRef jarg1);
13257
13258 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetInitialActiveAreaInViewCoordinates")]
13259 public static extern global::System.IntPtr CFxViewDrawInfo_GetInitialActiveAreaInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1);
13260
13261 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaInViewCoordinates")]
13262 public static extern void CFxViewDrawInfo_SetInitialActiveAreaInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13263
13264 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaByViewport")]
13265 public static extern void CFxViewDrawInfo_SetInitialActiveAreaByViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13266
13267 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaByWCSContour")]
13268 public static extern void CFxViewDrawInfo_SetInitialActiveAreaByWCSContour(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
13269
13270 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetInitialActiveAreaByEYEContour")]
13271 public static extern void CFxViewDrawInfo_SetInitialActiveAreaByEYEContour(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
13272
13273 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetBackground")]
13274 public static extern UInt32 /*SIMPLETYPE*/ CFxViewDrawInfo_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1);
13275
13276 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetForeground")]
13277 public static extern UInt32 /*SIMPLETYPE*/ CFxViewDrawInfo_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1);
13278
13279 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPalette")]
13280 public static extern global::System.IntPtr CFxViewDrawInfo_GetPalette(global::System.Runtime.InteropServices.HandleRef jarg1);
13281
13282 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetColor")]
13283 public static extern UInt32 /*SIMPLETYPE*/ CFxViewDrawInfo_GetColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 /*SIMPLETYPE*/ jarg2);
13284
13285 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetRenderMode")]
13286 public static extern int CFxViewDrawInfo_GetRenderMode(global::System.Runtime.InteropServices.HandleRef jarg1);
13287
13288 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetRenderMode")]
13289 public static extern void CFxViewDrawInfo_SetRenderMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
13290
13291 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsDragging")]
13292 public static extern bool CFxViewDrawInfo_IsDragging(global::System.Runtime.InteropServices.HandleRef jarg1);
13293
13294 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetIsDragging")]
13295 public static extern void CFxViewDrawInfo_SetIsDragging(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13296
13297 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsFadeMode")]
13298 public static extern bool CFxViewDrawInfo_IsFadeMode(global::System.Runtime.InteropServices.HandleRef jarg1);
13299
13300 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetFadeMode")]
13301 public static extern void CFxViewDrawInfo_SetFadeMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13302
13303 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetDrawDecoration")]
13304 public static extern int CFxViewDrawInfo_GetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1);
13305
13306 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetDrawDecoration")]
13307 public static extern void CFxViewDrawInfo_SetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
13308
13309 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsExtentsCalculationActive")]
13310 public static extern bool CFxViewDrawInfo_IsExtentsCalculationActive(global::System.Runtime.InteropServices.HandleRef jarg1);
13311
13312 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetExtentsCalculationActive")]
13313 public static extern void CFxViewDrawInfo_SetExtentsCalculationActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13314
13315 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetDebugMode")]
13316 public static extern Int32 /*SIMPLETYPE*/ CFxViewDrawInfo_GetDebugMode(global::System.Runtime.InteropServices.HandleRef jarg1);
13317
13318 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFxDatabase")]
13319 public static extern IntPtr CFxViewDrawInfo_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1);
13320
13321 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrozenLayerStubs")]
13322 public static extern global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerStubs(global::System.Runtime.InteropServices.HandleRef jarg1);
13323
13324 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrozenLayerListNames")]
13325 public static extern global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerListNames(global::System.Runtime.InteropServices.HandleRef jarg1);
13326
13327 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFrozenLayerList")]
13328 public static extern global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerList(global::System.Runtime.InteropServices.HandleRef jarg1);
13329
13330 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetFrozenLayerList")]
13331 public static extern void CFxViewDrawInfo_SetFrozenLayerList(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13332
13333 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseLinetyper")]
13334 public static extern bool CFxViewDrawInfo_UseLinetyper(global::System.Runtime.InteropServices.HandleRef jarg1);
13335
13336 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseLinetyper")]
13337 public static extern void CFxViewDrawInfo_SetUseLinetyper(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13338
13339 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_UseLineWeights")]
13340 public static extern bool CFxViewDrawInfo_UseLineWeights(global::System.Runtime.InteropServices.HandleRef jarg1);
13341
13342 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetUseLineWeights")]
13343 public static extern void CFxViewDrawInfo_SetUseLineWeights(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13344
13345 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetLineweightToDcScaleOverride")]
13346 public static extern double CFxViewDrawInfo_GetLineweightToDcScaleOverride(global::System.Runtime.InteropServices.HandleRef jarg1);
13347
13348 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_0")]
13349 public static extern void CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
13350
13351 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_1")]
13352 public static extern void CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
13353
13354 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsOrbitMode")]
13355 public static extern bool CFxViewDrawInfo_IsOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1);
13356
13357 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetOrbitMode")]
13358 public static extern void CFxViewDrawInfo_SetOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13359
13360 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetFxView")]
13361 public static extern global::System.IntPtr CFxViewDrawInfo_GetFxView(global::System.Runtime.InteropServices.HandleRef jarg1);
13362
13363 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetPDFFRAME")]
13364 public static extern int CFxViewDrawInfo_GetPDFFRAME(global::System.Runtime.InteropServices.HandleRef jarg1);
13365
13366 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetLensLength")]
13367 public static extern double CFxViewDrawInfo_GetLensLength(global::System.Runtime.InteropServices.HandleRef jarg1);
13368
13369 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetLensLength")]
13370 public static extern void CFxViewDrawInfo_SetLensLength(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
13371
13372 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetEyeToOutput")]
13373 public static extern global::System.IntPtr CFxViewDrawInfo_GetEyeToOutput(global::System.Runtime.InteropServices.HandleRef jarg1);
13374
13375 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetEyeToOutput")]
13376 public static extern void CFxViewDrawInfo_SetEyeToOutput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13377
13378 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetScreenRect")]
13379 public static extern global::System.IntPtr CFxViewDrawInfo_GetScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1);
13380
13381 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisibleScreenRect")]
13382 public static extern global::System.IntPtr CFxViewDrawInfo_GetVisibleScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1);
13383
13384 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisibleScreenRectInViewCoordinates")]
13385 public static extern global::System.IntPtr CFxViewDrawInfo_GetVisibleScreenRectInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1);
13386
13387 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVpNum")]
13388 public static extern int CFxViewDrawInfo_GetVpNum(global::System.Runtime.InteropServices.HandleRef jarg1);
13389
13390 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetCadWindowId")]
13391 public static extern int CFxViewDrawInfo_GetCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1);
13392
13393 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetWorldToEyeMatrix")]
13394 public static extern global::System.IntPtr CFxViewDrawInfo_GetWorldToEyeMatrix(global::System.Runtime.InteropServices.HandleRef jarg1);
13395
13396 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetAdjustedProjectionMatrix")]
13397 public static extern global::System.IntPtr CFxViewDrawInfo_GetAdjustedProjectionMatrix(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3);
13398
13399 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetAdjustedViewportMatrix")]
13400 public static extern global::System.IntPtr CFxViewDrawInfo_GetAdjustedViewportMatrix(global::System.Runtime.InteropServices.HandleRef jarg1);
13401
13402 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetViewportMatrix")]
13403 public static extern global::System.IntPtr CFxViewDrawInfo_GetViewportMatrix(global::System.Runtime.InteropServices.HandleRef jarg1);
13404
13405 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetScalePixelSize")]
13406 public static extern void CFxViewDrawInfo_SetScalePixelSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
13407
13408 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_HardwareTransformationsAllowed")]
13409 public static extern bool CFxViewDrawInfo_HardwareTransformationsAllowed(global::System.Runtime.InteropServices.HandleRef jarg1);
13410
13411 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_AllowHardwareTransformations")]
13412 public static extern void CFxViewDrawInfo_AllowHardwareTransformations(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13413
13414 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetLayoutId")]
13415 public static extern global::System.IntPtr CFxViewDrawInfo_GetLayoutId(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2);
13416
13417 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_IsScalingLineweights")]
13418 public static extern bool CFxViewDrawInfo_IsScalingLineweights(global::System.Runtime.InteropServices.HandleRef jarg1);
13419
13420 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_SetClipBoundary")]
13421 public static extern void CFxViewDrawInfo_SetClipBoundary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13422
13423 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetClipBoundary")]
13424 public static extern global::System.IntPtr CFxViewDrawInfo_GetClipBoundary(global::System.Runtime.InteropServices.HandleRef jarg1);
13425
13426 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewDrawInfo_GetVisualStyle")]
13427 public static extern IntPtr CFxViewDrawInfo_GetVisualStyle(global::System.Runtime.InteropServices.HandleRef jarg1);
13428
13429 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxViewReactor")]
13430 public static extern void delete_CFxViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13431
13432 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewReactor_OnWorldToEyeChanged")]
13433 public static extern void CFxViewReactor_OnWorldToEyeChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13434
13435 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewReactor_OnWorldToEyeChangedSwigExplicitCFxViewReactor")]
13436 public static extern void CFxViewReactor_OnWorldToEyeChangedSwigExplicitCFxViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13437
13438 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxViewReactor")]
13439 public static extern global::System.IntPtr new_CFxViewReactor();
13440
13441 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxViewReactor_director_connect")]
13442 public static extern void CFxViewReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxViewReactor.SwigDelegateCFxViewReactor_0 delegate0);
13443
13444 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxHistoryItem")]
13445 public static extern global::System.IntPtr new_CFxHistoryItem();
13446
13447 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHistoryItem")]
13448 public static extern void delete_CFxHistoryItem(global::System.Runtime.InteropServices.HandleRef jarg1);
13449
13450 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxHistoryStack")]
13451 public static extern void delete_CFxHistoryStack(global::System.Runtime.InteropServices.HandleRef jarg1);
13452
13453 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryStack_IsEmpty")]
13454 public static extern bool CFxHistoryStack_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
13455
13456 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryStack_Top")]
13457 public static extern global::System.IntPtr CFxHistoryStack_Top(global::System.Runtime.InteropServices.HandleRef jarg1);
13458
13459 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryStack_Pop")]
13460 public static extern void CFxHistoryStack_Pop(global::System.Runtime.InteropServices.HandleRef jarg1);
13461
13462 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryStack_Push")]
13463 public static extern void CFxHistoryStack_Push(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13464
13465 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryStack_GetStackDepth")]
13466 public static extern int CFxHistoryStack_GetStackDepth(global::System.Runtime.InteropServices.HandleRef jarg1);
13467
13468 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxHistoryStack")]
13469 public static extern global::System.IntPtr new_CFxHistoryStack();
13470
13471 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryStack_director_connect")]
13473
13474 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseHistory_Get")]
13475 public static extern global::System.IntPtr CFxDatabaseHistory_Get(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13476
13477 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseHistory_Add")]
13478 public static extern void CFxDatabaseHistory_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13479
13480 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDatabaseHistory")]
13481 public static extern void delete_CFxDatabaseHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
13482
13483 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxSelectionSetReactor")]
13484 public static extern global::System.IntPtr new_CFxSelectionSetReactor();
13485
13486 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxSelectionSetReactor")]
13487 public static extern void delete_CFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13488
13489 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_cast")]
13490 public static extern global::System.IntPtr CFxSelectionSetReactor_cast(HandleRef jarg1);
13491
13492 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_desc")]
13493 public static extern IntPtr CFxSelectionSetReactor_desc();
13494
13495 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_isA")]
13496 public static extern IntPtr CFxSelectionSetReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1);
13497
13498 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_isASwigExplicitCFxSelectionSetReactor")]
13499 public static extern IntPtr CFxSelectionSetReactor_isASwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13500
13501 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_queryX")]
13502 public static extern IntPtr CFxSelectionSetReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
13503
13504 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_queryXSwigExplicitCFxSelectionSetReactor")]
13505 public static extern IntPtr CFxSelectionSetReactor_queryXSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2);
13506
13507 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_createObject")]
13508 public static extern global::System.IntPtr CFxSelectionSetReactor_createObject();
13509
13510 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStarted__SWIG_0")]
13511 public static extern void CFxSelectionSetReactor_OnSelectionStarted__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13512
13513 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_0")]
13514 public static extern void CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13515
13516 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStarted__SWIG_1")]
13517 public static extern void CFxSelectionSetReactor_OnSelectionStarted__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13518
13519 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_1")]
13520 public static extern void CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13521
13522 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionEnded")]
13523 public static extern void CFxSelectionSetReactor_OnSelectionEnded(global::System.Runtime.InteropServices.HandleRef jarg1);
13524
13525 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnSelectionEndedSwigExplicitCFxSelectionSetReactor")]
13526 public static extern void CFxSelectionSetReactor_OnSelectionEndedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13527
13528 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectAppended")]
13529 public static extern void CFxSelectionSetReactor_OnObjectAppended(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13530
13531 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectAppendedSwigExplicitCFxSelectionSetReactor")]
13532 public static extern void CFxSelectionSetReactor_OnObjectAppendedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13533
13534 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectRemoved")]
13535 public static extern void CFxSelectionSetReactor_OnObjectRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13536
13537 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectRemovedSwigExplicitCFxSelectionSetReactor")]
13538 public static extern void CFxSelectionSetReactor_OnObjectRemovedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13539
13540 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectModified")]
13541 public static extern void CFxSelectionSetReactor_OnObjectModified(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13542
13543 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnObjectModifiedSwigExplicitCFxSelectionSetReactor")]
13544 public static extern void CFxSelectionSetReactor_OnObjectModifiedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13545
13546 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearStarted")]
13547 public static extern void CFxSelectionSetReactor_OnClearStarted(global::System.Runtime.InteropServices.HandleRef jarg1);
13548
13549 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearStartedSwigExplicitCFxSelectionSetReactor")]
13550 public static extern void CFxSelectionSetReactor_OnClearStartedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13551
13552 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearEnded")]
13553 public static extern void CFxSelectionSetReactor_OnClearEnded(global::System.Runtime.InteropServices.HandleRef jarg1);
13554
13555 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_OnClearEndedSwigExplicitCFxSelectionSetReactor")]
13556 public static extern void CFxSelectionSetReactor_OnClearEndedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13557
13558 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_director_connect")]
13560
13561 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDisplayDevice")]
13562 public static extern void delete_CFxDisplayDevice(global::System.Runtime.InteropServices.HandleRef jarg1);
13563
13564 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetFxDocument")]
13565 public static extern global::System.IntPtr CFxDisplayDevice_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
13566
13567 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_AddDrawHook")]
13568 public static extern void CFxDisplayDevice_AddDrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13569
13570 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_RemoveDrawHook")]
13571 public static extern void CFxDisplayDevice_RemoveDrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13572
13573 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_Regen")]
13574 public static extern void CFxDisplayDevice_Regen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13575
13576 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_Redraw")]
13577 public static extern void CFxDisplayDevice_Redraw(global::System.Runtime.InteropServices.HandleRef jarg1);
13578
13579 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_InvalidateAllViewports")]
13580 public static extern void CFxDisplayDevice_InvalidateAllViewports(global::System.Runtime.InteropServices.HandleRef jarg1);
13581
13582 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetMaximizedView")]
13583 public static extern global::System.IntPtr CFxDisplayDevice_GetMaximizedView(global::System.Runtime.InteropServices.HandleRef jarg1);
13584
13585 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_SetMaximizedView")]
13586 public static extern void CFxDisplayDevice_SetMaximizedView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13587
13588 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetSlideImage")]
13589 public static extern IntPtr CFxDisplayDevice_GetSlideImage(global::System.Runtime.InteropServices.HandleRef jarg1, CFxView jarg2);
13590
13591 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_SetSlideImage")]
13592 public static extern void CFxDisplayDevice_SetSlideImage(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13593
13594 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetEffectiveBackgroundColor")]
13595 public static extern UInt32 /*SIMPLETYPE*/ CFxDisplayDevice_GetEffectiveBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1);
13596
13597 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_IsSceneUpdatingActive")]
13598 public static extern bool CFxDisplayDevice_IsSceneUpdatingActive(global::System.Runtime.InteropServices.HandleRef jarg1);
13599
13600 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_SetSceneUpdatingActive")]
13601 public static extern void CFxDisplayDevice_SetSceneUpdatingActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13602
13603 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_ShrinkMemory")]
13604 public static extern void CFxDisplayDevice_ShrinkMemory(global::System.Runtime.InteropServices.HandleRef jarg1);
13605
13606 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_GetDisplayContext")]
13607 public static extern global::System.IntPtr CFxDisplayDevice_GetDisplayContext(global::System.Runtime.InteropServices.HandleRef jarg1);
13608
13609 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_RedrawEntity__SWIG_0")]
13610 public static extern void RedrawEntity__SWIG_0(HandleRef jarg1, int jarg2, int jarg3, IntPtr /*SIMPLETYPE*/ jarg4);
13611
13612 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_RedrawEntity__SWIG_1")]
13613 public static extern void RedrawEntity__SWIG_1(HandleRef jarg1, int jarg2, int jarg3);
13614
13615 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxPreviewBitmap")]
13616 public static extern void delete_CFxPreviewBitmap(global::System.Runtime.InteropServices.HandleRef jarg1);
13617
13618 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Create")]
13619 public static extern global::System.IntPtr CFxPreviewBitmap_Create();
13620
13621 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Read__SWIG_0")]
13622 public static extern bool CFxPreviewBitmap_Read__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13623
13624 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_HasPreview")]
13625 public static extern bool CFxPreviewBitmap_HasPreview(global::System.Runtime.InteropServices.HandleRef jarg1);
13626
13627 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Clear")]
13628 public static extern void CFxPreviewBitmap_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
13629
13630 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_Read__SWIG_1")]
13631 public static extern bool CFxPreviewBitmap_Read__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13632
13633 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_DrawToHDC")]
13634 public static extern void CFxPreviewBitmap_DrawToHDC(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5, int jarg6);
13635
13636 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_GetBitmapAndPalette")]
13637 public static extern void CFxPreviewBitmap_GetBitmapAndPalette(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13638
13639 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxPreviewBitmap_DrawNoPreview")]
13640 public static extern void CFxPreviewBitmap_DrawNoPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
13641
13642 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FxNoop")]
13643 public static extern void FxNoop();
13644
13645 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonAssertFuncA__SWIG_0")]
13646 public static extern void ArgonAssertFuncA__SWIG_0(string jarg1, int jarg2, string jarg3, string jarg4, bool /*SIMPLETYPE*/ jarg5);
13647
13648 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonAssertFuncA__SWIG_1")]
13649 public static extern void ArgonAssertFuncA__SWIG_1(string jarg1, int jarg2, string jarg3, string jarg4);
13650
13651 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_0")]
13652 public static extern void ArgonAssertFuncW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool /*SIMPLETYPE*/ jarg5);
13653
13654 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_1")]
13655 public static extern void ArgonAssertFuncW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13656
13657 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_2")]
13658 public static extern void ArgonAssertFuncW__SWIG_2([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, bool /*SIMPLETYPE*/ jarg5);
13659
13660 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonAssertFuncW__SWIG_3")]
13661 public static extern void ArgonAssertFuncW__SWIG_3([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4);
13662
13663 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonVerifyFuncA")]
13664 public static extern bool ArgonVerifyFuncA(bool jarg1, string jarg2, int jarg3, string jarg4, string jarg5);
13665
13666 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonVerifyFuncW__SWIG_0")]
13667 public static extern bool ArgonVerifyFuncW__SWIG_0(bool jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
13668
13669 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_ArgonVerifyFuncW__SWIG_1")]
13670 public static extern bool ArgonVerifyFuncW__SWIG_1(bool jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, int jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, [MarshalAs(UnmanagedType.LPWStr)]String jarg5);
13671
13672 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxTrace__SWIG_0")]
13673 public static extern global::System.IntPtr new_CFxTrace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
13674
13675 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxTrace__SWIG_1")]
13676 public static extern global::System.IntPtr new_CFxTrace__SWIG_1([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2);
13677
13678 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxTrace")]
13679 public static extern void delete_CFxTrace(global::System.Runtime.InteropServices.HandleRef jarg1);
13680
13681 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_SetIgnoreAll")]
13682 public static extern void SetIgnoreAll(bool jarg1);
13683
13684 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IsAllIgnored")]
13685 public static extern bool IsAllIgnored();
13686
13687 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_UseCustomAssert")]
13688 public static extern void UseCustomAssert(bool jarg1);
13689
13690 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IsCustomAssertUsed")]
13691 public static extern bool IsCustomAssertUsed();
13692
13693 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FxCIPRecordAssertion")]
13694 public static extern void FxCIPRecordAssertion(string jarg1, int jarg2, string jarg3);
13695
13696 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxDeviceReactor")]
13697 public static extern void delete_CFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13698
13699 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewCreated")]
13700 public static extern void CFxDeviceReactor_ViewCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13701
13702 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewCreatedSwigExplicitCFxDeviceReactor")]
13703 public static extern void CFxDeviceReactor_ViewCreatedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13704
13705 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewAdded")]
13706 public static extern void CFxDeviceReactor_ViewAdded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13707
13708 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewAddedSwigExplicitCFxDeviceReactor")]
13709 public static extern void CFxDeviceReactor_ViewAddedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13710
13711 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewRemoved")]
13712 public static extern void CFxDeviceReactor_ViewRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13713
13714 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewRemovedSwigExplicitCFxDeviceReactor")]
13715 public static extern void CFxDeviceReactor_ViewRemovedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13716
13717 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewDestroyed")]
13718 public static extern void CFxDeviceReactor_ViewDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13719
13720 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewDestroyedSwigExplicitCFxDeviceReactor")]
13721 public static extern void CFxDeviceReactor_ViewDestroyedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13722
13723 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawStarted")]
13724 public static extern void CFxDeviceReactor_RedrawStarted(global::System.Runtime.InteropServices.HandleRef jarg1);
13725
13726 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawStartedSwigExplicitCFxDeviceReactor")]
13727 public static extern void CFxDeviceReactor_RedrawStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13728
13729 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawFinished")]
13730 public static extern void CFxDeviceReactor_RedrawFinished(global::System.Runtime.InteropServices.HandleRef jarg1);
13731
13732 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RedrawFinishedSwigExplicitCFxDeviceReactor")]
13733 public static extern void CFxDeviceReactor_RedrawFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13734
13735 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenStarted")]
13736 public static extern void CFxDeviceReactor_RegenStarted(global::System.Runtime.InteropServices.HandleRef jarg1);
13737
13738 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenStartedSwigExplicitCFxDeviceReactor")]
13739 public static extern void CFxDeviceReactor_RegenStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13740
13741 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenFinished")]
13742 public static extern void CFxDeviceReactor_RegenFinished(global::System.Runtime.InteropServices.HandleRef jarg1);
13743
13744 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_RegenFinishedSwigExplicitCFxDeviceReactor")]
13745 public static extern void CFxDeviceReactor_RegenFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13746
13747 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateStarted")]
13748 public static extern void CFxDeviceReactor_UpdateStarted(global::System.Runtime.InteropServices.HandleRef jarg1);
13749
13750 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateStartedSwigExplicitCFxDeviceReactor")]
13751 public static extern void CFxDeviceReactor_UpdateStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13752
13753 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateFinished")]
13754 public static extern void CFxDeviceReactor_UpdateFinished(global::System.Runtime.InteropServices.HandleRef jarg1);
13755
13756 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_UpdateFinishedSwigExplicitCFxDeviceReactor")]
13757 public static extern void CFxDeviceReactor_UpdateFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1);
13758
13759 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewModified")]
13760 public static extern void CFxDeviceReactor_ViewModified(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13761
13762 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_ViewModifiedSwigExplicitCFxDeviceReactor")]
13763 public static extern void CFxDeviceReactor_ViewModifiedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13764
13765 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_SizeChanged")]
13766 public static extern void CFxDeviceReactor_SizeChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
13767
13768 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_SizeChangedSwigExplicitCFxDeviceReactor")]
13769 public static extern void CFxDeviceReactor_SizeChangedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
13770
13771 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_new_CFxDeviceReactor")]
13772 public static extern global::System.IntPtr new_CFxDeviceReactor();
13773
13774 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDeviceReactor_director_connect")]
13776
13777 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxRecentlyErased")]
13778 public static extern void delete_CFxRecentlyErased(global::System.Runtime.InteropServices.HandleRef jarg1);
13779
13780 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRecentlyErased_GetObjects")]
13781 public static extern global::System.IntPtr CFxRecentlyErased_GetObjects(global::System.Runtime.InteropServices.HandleRef jarg1);
13782
13783 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxRecentlyErased_setEnabled")]
13784 public static extern void CFxRecentlyErased_setEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13785
13786 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_SelectSubentsByPoint")]
13787 public static extern void CFxGeomUtils_SelectSubentsByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
13788
13789 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetNormalOfPlanarFace")]
13790 public static extern bool CFxGeomUtils_GetNormalOfPlanarFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13791
13792 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetClosestPointInFace")]
13793 public static extern bool CFxGeomUtils_GetClosestPointInFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
13794
13795 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstObject__SWIG_0")]
13796 public static extern bool CFxGeomUtils_shootRayAgainstObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
13797
13798 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstObject__SWIG_1")]
13799 public static extern bool CFxGeomUtils_shootRayAgainstObject__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
13800
13801 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_0")]
13802 public static extern bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13803
13804 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_1")]
13805 public static extern bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13806
13807 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_0")]
13808 public static extern bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13809
13810 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_1")]
13811 public static extern bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
13812
13813 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_SelectEdgeOnFace")]
13814 public static extern bool CFxGeomUtils_SelectEdgeOnFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr jarg5, ref IntPtr jarg6);
13815
13816 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetEdgesFromFace")]
13817 public static extern bool CFxGeomUtils_GetEdgesFromFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
13818
13819 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetTransform__SWIG_0")]
13820 public static extern global::System.IntPtr CFxGeomUtils_GetTransform__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
13821
13822 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetTransform__SWIG_1")]
13823 public static extern global::System.IntPtr CFxGeomUtils_GetTransform__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
13824
13825 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetImageBoundary")]
13826 public static extern global::System.IntPtr CFxGeomUtils_GetImageBoundary(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2);
13827
13828 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetPixelToModelTransform")]
13829 public static extern global::System.IntPtr CFxGeomUtils_GetPixelToModelTransform(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4);
13830
13831 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetPolySegment")]
13832 public static extern IntPtr CFxGeomUtils_GetPolySegment(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
13833
13834 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_GetSegmentAtPoint")]
13835 public static extern bool CFxGeomUtils_GetSegmentAtPoint(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out bool jarg5, out bool jarg6);
13836
13837 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeomUtils_ConvertToStdPolyline")]
13838 public static extern IntPtr CFxGeomUtils_ConvertToStdPolyline(HandleRef jarg1);
13839
13840 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxGeomUtils")]
13841 public static extern void delete_CFxGeomUtils(global::System.Runtime.InteropServices.HandleRef jarg1);
13842
13843 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_IHLData")]
13844 public static extern void delete_IHLData(global::System.Runtime.InteropServices.HandleRef jarg1);
13845
13846 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IHLData_GetEntity")]
13847 public static extern IntPtr IHLData_GetEntity(global::System.Runtime.InteropServices.HandleRef jarg1);
13848
13849 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IHLData_GetFlags")]
13850 public static extern int IHLData_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
13851
13852 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_IHLData_IHLOriginal")]
13853 public static extern void delete_IHLData_IHLOriginal(global::System.Runtime.InteropServices.HandleRef jarg1);
13854
13855 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IHLData_IHLOriginal_GetEntity")]
13856 public static extern IntPtr IHLData_IHLOriginal_GetEntity(global::System.Runtime.InteropServices.HandleRef jarg1);
13857
13858 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IHLData_IHLOriginal_GetSubEntity")]
13859 public static extern global::System.IntPtr IHLData_IHLOriginal_GetSubEntity(global::System.Runtime.InteropServices.HandleRef jarg1);
13860
13861 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_IHLData_GetOriginalEntities")]
13862 public static extern global::System.IntPtr IHLData_GetOriginalEntities(global::System.Runtime.InteropServices.HandleRef jarg1);
13863
13864 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_FlatShotHL")]
13865 public static extern int FlatShotHL(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
13866
13867 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_delete_CFxLicenseManager")]
13868 public static extern void delete_CFxLicenseManager(global::System.Runtime.InteropServices.HandleRef jarg1);
13869
13870 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseManager_IsProductActivated__SWIG_0")]
13871 public static extern bool CFxLicenseManager_IsProductActivated__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13872
13873 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseManager_IsProductActivated__SWIG_1")]
13874 public static extern bool CFxLicenseManager_IsProductActivated__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
13875
13876 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseManager_StartUpCheck")]
13877 public static extern bool CFxLicenseManager_StartUpCheck(global::System.Runtime.InteropServices.HandleRef jarg1);
13878
13879 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseManager_StartActivation")]
13880 public static extern bool CFxLicenseManager_StartActivation(global::System.Runtime.InteropServices.HandleRef jarg1);
13881
13882 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseManager_ShowDashboard")]
13883 public static extern void CFxLicenseManager_ShowDashboard(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
13884
13885 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLicenseManager_ShowMessage")]
13886 public static extern void CFxLicenseManager_ShowMessage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
13887
13888 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_GetFxLicenseManager")]
13889 public static extern global::System.IntPtr GetFxLicenseManager();
13890
13891 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxBagFiler_SWIGUpcast")]
13892 public static extern global::System.IntPtr CFxBagFiler_SWIGUpcast(global::System.IntPtr jarg1);
13893
13894 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGeometryClipper_SWIGUpcast")]
13895 public static extern global::System.IntPtr CFxGeometryClipper_SWIGUpcast(global::System.IntPtr jarg1);
13896
13897 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabase_SWIGUpcast")]
13898 public static extern global::System.IntPtr CFxDatabase_SWIGUpcast(global::System.IntPtr jarg1);
13899
13900 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_OdStaticRxObject_OdDbSelectionSet_SWIGUpcast")]
13901 public static extern global::System.IntPtr OdStaticRxObject_OdDbSelectionSet_SWIGUpcast(global::System.IntPtr jarg1);
13902
13903 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxUnitsFormatter_SWIGUpcast")]
13904 public static extern global::System.IntPtr CFxUnitsFormatter_SWIGUpcast(global::System.IntPtr jarg1);
13905
13906 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxView_SWIGUpcast")]
13907 public static extern global::System.IntPtr CFxView_SWIGUpcast(global::System.IntPtr jarg1);
13908
13909 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxVectorizeDevice_SWIGUpcast")]
13910 public static extern global::System.IntPtr CFxVectorizeDevice_SWIGUpcast(global::System.IntPtr jarg1);
13911
13912 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommand_SWIGUpcast")]
13913 public static extern global::System.IntPtr CFxCommand_SWIGUpcast(global::System.IntPtr jarg1);
13914
13915 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryArg_SWIGUpcast")]
13916 public static extern global::System.IntPtr CFxHistoryArg_SWIGUpcast(global::System.IntPtr jarg1);
13917
13918 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHistoryCommand_SWIGUpcast")]
13919 public static extern global::System.IntPtr CFxHistoryCommand_SWIGUpcast(global::System.IntPtr jarg1);
13920
13921 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocument_SWIGUpcast")]
13922 public static extern global::System.IntPtr CFxDocument_SWIGUpcast(global::System.IntPtr jarg1);
13923
13924 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentIterator_SWIGUpcast")]
13925 public static extern global::System.IntPtr CFxDocumentIterator_SWIGUpcast(global::System.IntPtr jarg1);
13926
13927 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCommandContext_SWIGUpcast")]
13928 public static extern global::System.IntPtr CFxCommandContext_SWIGUpcast(global::System.IntPtr jarg1);
13929
13930 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDocumentManagerReactor_SWIGUpcast")]
13931 public static extern global::System.IntPtr CFxDocumentManagerReactor_SWIGUpcast(global::System.IntPtr jarg1);
13932
13933 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxEditorReactor_SWIGUpcast")]
13934 public static extern global::System.IntPtr CFxEditorReactor_SWIGUpcast(global::System.IntPtr jarg1);
13935
13936 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactor_SWIGUpcast")]
13937 public static extern global::System.IntPtr CFxInputContextReactor_SWIGUpcast(global::System.IntPtr jarg1);
13938
13939 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputContextReactorExtended_SWIGUpcast")]
13940 public static extern global::System.IntPtr CFxInputContextReactorExtended_SWIGUpcast(global::System.IntPtr jarg1);
13941
13942 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxHostAppServices_SWIGUpcast")]
13943 public static extern global::System.IntPtr CFxHostAppServices_SWIGUpcast(global::System.IntPtr jarg1);
13944
13945 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxInputPointManager_SWIGUpcast")]
13946 public static extern global::System.IntPtr CFxInputPointManager_SWIGUpcast(global::System.IntPtr jarg1);
13947
13948 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxLayoutManagerReactor_SWIGUpcast")]
13949 public static extern global::System.IntPtr CFxLayoutManagerReactor_SWIGUpcast(global::System.IntPtr jarg1);
13950
13951 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDatabaseReactor_SWIGUpcast")]
13952 public static extern global::System.IntPtr CFxDatabaseReactor_SWIGUpcast(global::System.IntPtr jarg1);
13953
13954 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxCurvePE_SWIGUpcast")]
13955 public static extern global::System.IntPtr CFxCurvePE_SWIGUpcast(global::System.IntPtr jarg1);
13956
13957 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxGripPointsPE_SWIGUpcast")]
13958 public static extern global::System.IntPtr CFxGripPointsPE_SWIGUpcast(global::System.IntPtr jarg1);
13959
13960 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxModule_SWIGUpcast")]
13961 public static extern global::System.IntPtr CFxModule_SWIGUpcast(global::System.IntPtr jarg1);
13962
13963 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxAppInfo_SWIGUpcast")]
13964 public static extern global::System.IntPtr CFxAppInfo_SWIGUpcast(global::System.IntPtr jarg1);
13965
13966 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxSelectionSetReactor_SWIGUpcast")]
13967 public static extern global::System.IntPtr CFxSelectionSetReactor_SWIGUpcast(global::System.IntPtr jarg1);
13968
13969 [global::System.Runtime.InteropServices.DllImport("FxManaged.dll", EntryPoint="CSharp_PCAD_DOT_NET_CFxDisplayDevice_SWIGUpcast")]
13970 public static extern global::System.IntPtr CFxDisplayDevice_SWIGUpcast(global::System.IntPtr jarg1);
13971}
13972
13973}
delegate IntPtr SwigDelegateCFxCommand_4()
delegate IntPtr SwigDelegateCFxCommand_1()
delegate IntPtr SwigDelegateCFxCommand_0(IntPtr protocolClass)
delegate void SwigDelegateCFxCommand_5(bool undefIt)
delegate String SwigDelegateCFxCommand_10()
delegate uint SwigDelegateCFxCommand_9()
delegate int SwigDelegateCFxCommand_7(global::System.IntPtr pFxCmdCtx)
delegate Int32 SwigDelegateCFxCommand_6()
delegate void SwigDelegateCFxCommand_8()
delegate String SwigDelegateCFxCommand_3()
delegate String SwigDelegateCFxCommand_2()
delegate void SwigDelegateCFxDatabaseReactor_7(IntPtr pDb, IntPtr pObject, bool erased)
delegate void SwigDelegateCFxDatabaseReactor_3(IntPtr pDb, IntPtr pObject)
delegate IntPtr SwigDelegateCFxDatabaseReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxDatabaseReactor_11(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String appname, global::System.IntPtr objectIds)
delegate void SwigDelegateCFxDatabaseReactor_2(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDatabaseReactor_5(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDatabaseReactor_10(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String name)
delegate void SwigDelegateCFxDatabaseReactor_12(IntPtr pDb)
delegate void SwigDelegateCFxDatabaseReactor_8(IntPtr pDb, IntPtr pObject)
delegate IntPtr SwigDelegateCFxDatabaseReactor_1()
delegate void SwigDelegateCFxDatabaseReactor_9(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String name)
delegate void SwigDelegateCFxDatabaseReactor_6(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDatabaseReactor_4(IntPtr pDb, IntPtr pObject)
delegate void SwigDelegateCFxDeviceReactor_8()
delegate void SwigDelegateCFxDeviceReactor_2(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_0(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_9()
delegate void SwigDelegateCFxDeviceReactor_7()
delegate void SwigDelegateCFxDeviceReactor_6()
delegate void SwigDelegateCFxDeviceReactor_10(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_5()
delegate void SwigDelegateCFxDeviceReactor_3(global::System.IntPtr pView)
delegate void SwigDelegateCFxDeviceReactor_4()
delegate void SwigDelegateCFxDeviceReactor_11(int iOverallWidth, int iOverallHeight)
delegate void SwigDelegateCFxDeviceReactor_1(global::System.IntPtr pView)
delegate void SwigDelegateCFxDocumentManagerReactor_13(bool bActivation)
delegate void SwigDelegateCFxDocumentManagerReactor_2(global::System.IntPtr pDocCreating)
delegate void SwigDelegateCFxDocumentManagerReactor_11(global::System.IntPtr pDocCreateCancelled)
delegate void SwigDelegateCFxDocumentManagerReactor_8(global::System.IntPtr pActivatingDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_4(global::System.IntPtr pDocToDestroy)
delegate IntPtr SwigDelegateCFxDocumentManagerReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxDocumentManagerReactor_12(global::System.IntPtr pDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_9(global::System.IntPtr pDeActivatedDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_3(global::System.IntPtr pDocCreating)
delegate void SwigDelegateCFxDocumentManagerReactor_5(global::System.IntPtr pDocToDestroyed, global::System.IntPtr strFileName)
delegate void SwigDelegateCFxDocumentManagerReactor_7(global::System.IntPtr pDoc)
delegate IntPtr SwigDelegateCFxDocumentManagerReactor_1()
delegate void SwigDelegateCFxDocumentManagerReactor_10(global::System.IntPtr pActivatedDoc)
delegate void SwigDelegateCFxDocumentManagerReactor_14(global::System.IntPtr pDoc, global::System.IntPtr strFileName, int codePage, int openFlags)
delegate void SwigDelegateCFxDocumentManagerReactor_6(global::System.IntPtr pDoc)
delegate bool SwigDelegateCFxEdInputTracker_2(IntPtr pWorldDraw)
delegate global::System.IntPtr SwigDelegateCFxEdInputTracker_7()
delegate UInt32 SwigDelegateCFxEdInputTracker_1(IntPtr pTraits)
delegate int SwigDelegateCFxEdInputTracker_11()
delegate void SwigDelegateCFxEdInputTracker_4(global::System.IntPtr value)
delegate int SwigDelegateCFxEdInputTracker_12(IntPtr pView)
delegate bool SwigDelegateCFxEdInputTracker_9()
delegate bool SwigDelegateCFxEdInputTracker_5(global::System.IntPtr pFxView)
delegate void SwigDelegateCFxEdInputTracker_13(IntPtr pView)
delegate void SwigDelegateCFxEdInputTracker_3(global::System.IntPtr value)
delegate global::System.IntPtr SwigDelegateCFxEdInputTracker_6()
delegate global::System.IntPtr SwigDelegateCFxEdInputTracker_10()
delegate bool SwigDelegateCFxEdInputTracker_0()
delegate void SwigDelegateCFxEdInputTracker_8(bool bVal)
delegate void SwigDelegateCFxEditorReactor_61(int activity, int numSteps)
delegate void SwigDelegateCFxEditorReactor_83(int type, int state)
delegate void SwigDelegateCFxEditorReactor_29(IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_71()
delegate void SwigDelegateCFxEditorReactor_58(int activity)
delegate void SwigDelegateCFxEditorReactor_5(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_60(int activity)
delegate void SwigDelegateCFxEditorReactor_74([MarshalAs(UnmanagedType.LPWStr)]String contextString)
delegate void SwigDelegateCFxEditorReactor_84(global::System.IntPtr pSS)
delegate void SwigDelegateCFxEditorReactor_42(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_14(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_41(IntPtr pFromDb)
delegate IntPtr SwigDelegateCFxEditorReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxEditorReactor_62()
delegate void SwigDelegateCFxEditorReactor_36([MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate void SwigDelegateCFxEditorReactor_38(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_89(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_82()
delegate void SwigDelegateCFxEditorReactor_12(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_65(UInt64 hwndMainFrame, bool moved)
delegate void SwigDelegateCFxEditorReactor_35(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths)
delegate void SwigDelegateCFxEditorReactor_21(IntPtr pToDb, IntPtr pFromDb, global::System.IntPtr insertionPoint)
delegate void SwigDelegateCFxEditorReactor_81()
delegate void SwigDelegateCFxEditorReactor_30(IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_55(int activity, bool undoAuto)
delegate void SwigDelegateCFxEditorReactor_78(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths)
delegate void SwigDelegateCFxEditorReactor_39(IntPtr pToDb, [MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_23(IntPtr pToDb, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_66(global::System.IntPtr clickPoint)
delegate void SwigDelegateCFxEditorReactor_73()
delegate void SwigDelegateCFxEditorReactor_76(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String varName)
delegate void SwigDelegateCFxEditorReactor_69(bool largeBitmaps)
delegate void SwigDelegateCFxEditorReactor_28(IntPtr pToDb, IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_75([MarshalAs(UnmanagedType.LPWStr)]String contextString)
delegate void SwigDelegateCFxEditorReactor_13(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_26(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_25(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_72()
delegate void SwigDelegateCFxEditorReactor_37([MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate void SwigDelegateCFxEditorReactor_2(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String filename)
delegate void SwigDelegateCFxEditorReactor_40(IntPtr pToDb, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_9(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_59(int activity)
delegate void SwigDelegateCFxEditorReactor_19(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_44(IntPtr pToDb, global::System.IntPtr id, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_54(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_22(IntPtr pToDb, IntPtr pFromDb, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_53(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_33(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths, bool veto)
delegate void SwigDelegateCFxEditorReactor_18(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_80(global::System.IntPtr pWidget)
delegate void SwigDelegateCFxEditorReactor_49(int activity, [MarshalAs(UnmanagedType.LPWStr)]String xrefPath)
delegate void SwigDelegateCFxEditorReactor_6(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String intendedName)
delegate void SwigDelegateCFxEditorReactor_24(IntPtr pToDb, IntPtr idMap, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_31(IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_63([MarshalAs(UnmanagedType.LPWStr)]String newLayoutName)
delegate void SwigDelegateCFxEditorReactor_15(IntPtr pToDb, [MarshalAs(UnmanagedType.LPWStr)]String blockName, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_7(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String actualName)
delegate void SwigDelegateCFxEditorReactor_8(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_79(global::System.IntPtr pWidget)
delegate void SwigDelegateCFxEditorReactor_16(IntPtr pToDb, global::System.IntPtr xfm, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_3(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_56(int activity, int option)
delegate void SwigDelegateCFxEditorReactor_10(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_48(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_34(IntPtr pHostDb, int subCmd, global::System.IntPtr btrIds, global::System.IntPtr btrNames, global::System.IntPtr paths)
delegate void SwigDelegateCFxEditorReactor_57(int activity)
delegate IntPtr SwigDelegateCFxEditorReactor_1()
delegate void SwigDelegateCFxEditorReactor_90()
delegate void SwigDelegateCFxEditorReactor_46(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_50(int activity, [MarshalAs(UnmanagedType.LPWStr)]String xrefPath)
delegate void SwigDelegateCFxEditorReactor_91()
delegate void SwigDelegateCFxEditorReactor_4(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_17(IntPtr pToDb, IntPtr idMap, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_45(IntPtr pToDb, [MarshalAs(UnmanagedType.LPWStr)]String filename, IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_27(IntPtr pFromDb, IntPtr idMap)
delegate void SwigDelegateCFxEditorReactor_86(IntPtr pEnt, global::System.IntPtr action, IntPtr matrix)
delegate void SwigDelegateCFxEditorReactor_88(global::System.IntPtr sFileName)
delegate void SwigDelegateCFxEditorReactor_77(IntPtr pDb, [MarshalAs(UnmanagedType.LPWStr)]String varName)
delegate void SwigDelegateCFxEditorReactor_47(IntPtr pToDb)
delegate void SwigDelegateCFxEditorReactor_32(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_68(bool largeBitmaps)
delegate void SwigDelegateCFxEditorReactor_64(UInt64 hwndDocFrame, bool moved)
delegate void SwigDelegateCFxEditorReactor_70(global::System.IntPtr objectIds)
delegate void SwigDelegateCFxEditorReactor_43(global::System.IntPtr newId, global::System.IntPtr oldId)
delegate void SwigDelegateCFxEditorReactor_67(global::System.IntPtr clickPoint)
delegate void SwigDelegateCFxEditorReactor_87(IntPtr pDb, global::System.IntPtr sFileName, int iFileType, int iFileVersion)
delegate void SwigDelegateCFxEditorReactor_20(IntPtr pFromDb)
delegate void SwigDelegateCFxEditorReactor_11(IntPtr pDb)
delegate void SwigDelegateCFxEditorReactor_85(global::System.IntPtr pSS)
delegate void SwigDelegateCFxEditorReactor_51(int activity, global::System.IntPtr blockId)
delegate void SwigDelegateCFxEditorReactor_52(int activity, global::System.IntPtr blockId, [MarshalAs(UnmanagedType.LPWStr)]String newPath)
delegate bool SwigDelegateCFxHistoryStack_0()
delegate void SwigDelegateCFxHistoryStack_3(global::System.IntPtr pData)
delegate global::System.IntPtr SwigDelegateCFxHistoryStack_1()
delegate int SwigDelegateCFxHistoryStack_4()
delegate void SwigDelegateCFxHistoryStack_2()
delegate void SwigDelegateCFxInputContextReactor_11(int returnStatus, global::System.IntPtr arg1, double dAngle)
delegate void SwigDelegateCFxInputContextReactor_18(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_21(int returnStatus, global::System.IntPtr arg1, int retValue)
delegate void SwigDelegateCFxInputContextReactor_24(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_32(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_13(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr secondPoint)
delegate void SwigDelegateCFxInputContextReactor_36(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_33(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr entPicked, global::System.IntPtr pickPoint)
delegate void SwigDelegateCFxInputContextReactor_12(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_25(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr retValue)
delegate void SwigDelegateCFxInputContextReactor_14(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_35(int iResult, global::System.IntPtr arg1, global::System.IntPtr ss)
delegate void SwigDelegateCFxInputContextReactor_34(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_23(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr retValue)
delegate IntPtr SwigDelegateCFxInputContextReactor_1()
delegate void SwigDelegateCFxInputContextReactor_4(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_15(int returnStatus, global::System.IntPtr arg1, double dScale)
delegate IntPtr SwigDelegateCFxInputContextReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxInputContextReactor_5(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr pointOut)
delegate void SwigDelegateCFxInputContextReactor_8(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_27(int returnStatus, global::System.IntPtr arg1, int retValue)
delegate void SwigDelegateCFxInputContextReactor_16(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_2()
delegate void SwigDelegateCFxInputContextReactor_19(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr outKeyword)
delegate void SwigDelegateCFxInputContextReactor_31(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr entPicked)
delegate void SwigDelegateCFxInputContextReactor_6(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_17(int returnStatus, global::System.IntPtr arg1, global::System.IntPtr outString)
delegate void SwigDelegateCFxInputContextReactor_7(int returnStatus, global::System.IntPtr arg1, double dAngle)
delegate void SwigDelegateCFxInputContextReactor_20(int pDefault, global::System.IntPtr arg1)
delegate void SwigDelegateCFxInputContextReactor_28(double pDefault, global::System.IntPtr arg1)
delegate void SwigDelegateCFxInputContextReactor_10(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_3()
delegate void SwigDelegateCFxInputContextReactor_26(int pDefault, global::System.IntPtr arg1)
delegate void SwigDelegateCFxInputContextReactor_29(int returnStatus, global::System.IntPtr arg1, double retValue)
delegate void SwigDelegateCFxInputContextReactor_37(int iResult, global::System.IntPtr pickPoint, IntPtr vector, global::System.IntPtr arg3)
delegate void SwigDelegateCFxInputContextReactor_30(global::System.IntPtr arg0)
delegate void SwigDelegateCFxInputContextReactor_9(int returnStatus, global::System.IntPtr arg1, double dDistance)
delegate void SwigDelegateCFxInputContextReactor_22(global::System.IntPtr arg0)
delegate void SwigDelegateCFxLayoutManagerReactor_13([MarshalAs(UnmanagedType.LPWStr)]String newTableName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_10([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr layoutId)
delegate IntPtr SwigDelegateCFxLayoutManagerReactor_0(IntPtr protocolClass)
delegate void SwigDelegateCFxLayoutManagerReactor_11([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_5([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_8([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_9([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_2([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_15([MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr newLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_12([MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr newLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_4([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_6([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate IntPtr SwigDelegateCFxLayoutManagerReactor_1()
delegate void SwigDelegateCFxLayoutManagerReactor_14([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, global::System.IntPtr oldLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_7([MarshalAs(UnmanagedType.LPWStr)]String oldLayoutName, global::System.IntPtr oldLayoutId, [MarshalAs(UnmanagedType.LPWStr)]String newLayoutName, global::System.IntPtr newLayoutId)
delegate void SwigDelegateCFxLayoutManagerReactor_3([MarshalAs(UnmanagedType.LPWStr)]String layoutName, global::System.IntPtr layoutId)
delegate IntPtr SwigDelegateCFxModule_2()
delegate String SwigDelegateCFxModule_6()
delegate IntPtr SwigDelegateCFxModule_0(IntPtr protocolClass)
delegate IntPtr SwigDelegateCFxModule_1()
delegate int SwigDelegateCFxModule_7(int e, global::System.IntPtr pData)
delegate void SwigDelegateCFxModule_5()
delegate void SwigDelegateCFxModule_3()
delegate int SwigDelegateCFxModule_8(int e)
delegate void SwigDelegateCFxModule_4()
delegate void SwigDelegateCFxProfileManagerReactor_12(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_6(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_5(global::System.IntPtr currentProfile, global::System.IntPtr pCurrentProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_3(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_9(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_10(global::System.IntPtr profileName, global::System.IntPtr pProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_13(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_4(global::System.IntPtr currentProfile, global::System.IntPtr pCurrentProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_0(global::System.IntPtr newProfile)
delegate void SwigDelegateCFxProfileManagerReactor_7(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_2(global::System.IntPtr currentProfile)
delegate void SwigDelegateCFxProfileManagerReactor_8(global::System.IntPtr profileName)
delegate void SwigDelegateCFxProfileManagerReactor_11(global::System.IntPtr profileName, global::System.IntPtr pProfileSettings)
delegate void SwigDelegateCFxProfileManagerReactor_1(global::System.IntPtr newProfile)
delegate IntPtr SwigDelegateCFxSelectionSetReactor_0(IntPtr protocolClass)
delegate IntPtr SwigDelegateCFxSelectionSetReactor_1()
delegate void SwigDelegateCFxSelectionSetReactor_9()
delegate void SwigDelegateCFxSelectionSetReactor_4()
delegate void SwigDelegateCFxSelectionSetReactor_3(global::System.IntPtr pData)
delegate void SwigDelegateCFxSelectionSetReactor_5(global::System.IntPtr id)
delegate void SwigDelegateCFxSelectionSetReactor_2(int eMethod, global::System.IntPtr pointsWCS, global::System.IntPtr pView)
delegate void SwigDelegateCFxSelectionSetReactor_6(global::System.IntPtr id)
delegate void SwigDelegateCFxSelectionSetReactor_7(global::System.IntPtr id)
delegate void SwigDelegateCFxSelectionSetReactor_8()
delegate global::System.IntPtr SwigDelegateCFxTracker_4()
delegate bool SwigDelegateCFxTracker_6(global::System.IntPtr pHitTestInfo)
delegate bool SwigDelegateCFxTracker_5(global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_2(global::System.IntPtr pContext, global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_7(global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_1(global::System.IntPtr pContext, global::System.IntPtr pHitTestInfo)
delegate void SwigDelegateCFxTracker_0(global::System.IntPtr pContext, global::System.IntPtr pHitTestInfo)
delegate bool SwigDelegateCFxTracker_3(global::System.IntPtr pInputManager)
delegate void SwigDelegateCFxUIReactor_3(global::System.IntPtr pUIToolBar)
delegate void SwigDelegateCFxUIReactor_6(global::System.IntPtr pUIToolBar, bool bVisible)
delegate void SwigDelegateCFxUIReactor_9()
delegate void SwigDelegateCFxUIReactor_2(global::System.IntPtr pMenuItem)
delegate void SwigDelegateCFxUIReactor_5(global::System.IntPtr pUIMenuItem)
delegate void SwigDelegateCFxUIReactor_8()
delegate void SwigDelegateCFxUIReactor_1(global::System.IntPtr pItemDef)
delegate void SwigDelegateCFxUIReactor_10(global::System.IntPtr strId, global::System.IntPtr pControl)
delegate void SwigDelegateCFxUIReactor_7(global::System.IntPtr pSubMenu)
delegate void SwigDelegateCFxUIReactor_4(global::System.IntPtr pUIItemDef)
delegate void SwigDelegateCFxUIReactor_0(global::System.IntPtr pToolBarItem)
delegate void SwigDelegateCFxViewReactor_0(global::System.IntPtr pView)
static void SWIGRegisterExceptionCallbacks_PCADGlobals(ExceptionDelegate applicationDelegate, ExceptionDelegate arithmeticDelegate, ExceptionDelegate divideByZeroDelegate, ExceptionDelegate indexOutOfRangeDelegate, ExceptionDelegate invalidCastDelegate, ExceptionDelegate invalidOperationDelegate, ExceptionDelegate ioDelegate, ExceptionDelegate nullReferenceDelegate, ExceptionDelegate outOfMemoryDelegate, ExceptionDelegate overflowDelegate, ExceptionDelegate systemExceptionDelegate)
delegate void ExceptionDelegate(string message)
delegate void ExceptionArgumentDelegate(string message, string paramName)
static void SWIGRegisterExceptionCallbacksArgument_PCADGlobals(ExceptionArgumentDelegate argumentDelegate, ExceptionArgumentDelegate argumentNullDelegate, ExceptionArgumentDelegate argumentOutOfRangeDelegate)
static void Set(global::System.Exception e)
static void SWIGRegisterStringCallback_PCADGlobals(SWIGStringDelegate stringDelegate)
delegate string SWIGStringDelegate(string message)
static void SWIGRegisterWStringCallback_PCADGlobals(SWIGWStringDelegate wstringDelegate)
delegate string SWIGWStringDelegate(global::System.IntPtr message)
static void CFxEditorReactor_appDeactivatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDesignResources_GetFavorites(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnItemDefinitionAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_binaryW(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssnamexA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, uint jarg5)
static global::System.IntPtr new_KeywordVector__SWIG_0()
static global::System.IntPtr CFxSystemFiles_GetPlotStyleTablesPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxString_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_vportsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIDoubleClickAction_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetMultilineStylePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUserIO_SetIsPrintSelectResults(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_38(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3)
static void CFxDeviceReactor_RegenFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_InitgetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawContext_SetClipPath(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxViewDrawInfo_InitializeView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, double jarg5, double jarg6, int jarg7)
static int CFxVSTA_GetLanguage(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_EntityMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetIncludeUnloadedReferences(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIContext_GetMenuContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_OrientToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static int dlg_callback_packetA_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_MergeOptions_m_pFilter_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIButton_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static global::System.IntPtr CFxFileData_Create__SWIG_1()
static void CFxPreferencesUser_SetKeepPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxUserIO_GetOrient__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static bool CFxUIMenuItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxApplications_FileDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetDrawingBorderPaths(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDocumentManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryArg(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_set_progress_state(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDrafting_SetAlignmentPointAcquisition(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxUIToolbarItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static Int32 CFxPreferencesDrafting_GetModelAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageLibraryW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6, [MarshalAs(UnmanagedType.LPWStr)]string jarg7)
static void CFxInputContextReactor_BeginGetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_GetFxIO(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IHLData_GetOriginalEntities(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIAcceleratorsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_closeAborted(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static string FDT_FLX_INFO_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUITabletMenusCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetScaleFactorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static int CFxAPI_fdt_tbldelA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static global::System.IntPtr CFxUserIO_GetPromptInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static IntPtr CFxDocumentManagerReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_45(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxFileData_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_selcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static IntPtr new_CFxLayoutManagerReactor()
static bool CFxSystemServices_IsApplicationExiting(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recA_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxDatabase_setLIMMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_AutocompleteSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_EndTransaction(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxLicenseInfo_GetRoamingLicenseMaxCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setTEXTSTYLE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, int jarg5, string jarg6)
static global::System.IntPtr CFxUserIO_GetPromptString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesDiscardDuplicatesSettings_GetOptimizePolyline(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesOutput_GetPlotStampLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxGripPointsPE_desc()
static void delete_CFxSystemFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxEditorReactor_selectionSetCreatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr GetFxCommandContext(HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetPurgeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxEdInputTracker_subWorldDrawSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_filename_extensionA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void delete_CFxHostAppServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr TRACKER_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static IntPtr dcl_u_val_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileName__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16)
static void CFxSystemFiles_SetPrintSpoolerPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FDT_FLX_INFOW_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_P_LINE()
static void P_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxOsnapPoint_GetModeName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDeviceReactor_ViewModifiedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_BeginQuiescentStateSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesPackAndGo(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderOptions(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void dcl_u_val_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxAPI_GetSSPtr(IntPtr jarg1)
static bool CFxPreferencesUser_GetApplyFilterToLayersToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIItemDefinitionCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUIToolbarItem_GetDockColumn(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDrafting_SetModelAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxInputContextReactor_EndGetColor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr CFxInputContextReactor_cast(HandleRef jarg1)
static int CFxUnitsFormatter_StringToReal__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxOtrackPoint_GetOtrackLinesCrossSize(bool jarg1)
static bool CFxHitTestInfo_IsCancelPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxStringArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIToolbarItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampRelativity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_ssfree(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxInputContextReactor_BeginGetDistanceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_52(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static IntPtr CFxDocument_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryCommand_GetNameLocal(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotCentered(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static char PRINTREC_Type_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxCommand_groupName(HandleRef jarg1)
static void dcl_resbuf_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetMaintainAssociativity(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxModule_event___SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPackAndGo_SetDestFolder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUITabletMenusCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHistoryObjectArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIMenuItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommandContext_GetTopGroupName(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxMainFrame_IsTextWindowVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_compare__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxSystemFiles_GetFontsPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_IsValidFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxAppInfo_Save(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesSystem_SetCheckForXPressUpdates(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUI_RemoveUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxMainFrame_CFxCommandWindowInfo_visibleSecond_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_34(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4)
static short FDT_GENOUT_AREA_nLineType_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_replace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_flxropenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxSelectionSet_MergeOptions_m_Classes_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetIgnorePolylineWidth(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FileNameRetValArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint CFxSelectionData_GetNumEntities(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxTracker_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetPreferences(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getdistatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, out double jarg4)
static IntPtr new_CFxDatabaseReactor()
static global::System.IntPtr CFxString_arg__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, ushort jarg5)
static void CFxInputContextReactor_BeginSSGetSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SIZE_T_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static Int16 CFxDatabase_getHANDLES(HandleRef jarg1)
static void fdt_tablet_recW_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int dlg_callback_packetA_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetLargeRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getsecondderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void CFxPreviewBitmap_DrawNoPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint CFxCommandContext_GetCommandStackDepth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_filename_baseW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static void CFxViewDrawInfo_SetInitialActiveAreaInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setINSNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void delete_CFxPreferencesMLeaderSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCurvePE__getFilletPoints__SWIG_0(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static void CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static UInt16 CFxPreferencesPackAndGo_GetPackageType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_binary_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static Int16 CFxDatabase_getXCLIPFRAME(HandleRef jarg1)
static void CFxStringArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxTrackerContext_IsForActiveView(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxEditorReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxDocumentManagerReactor_cast(HandleRef jarg1)
static void dcl_u_val_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxUIButton_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxUITabletMenu_SetRowsNumber(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static uint CLASS_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_iscntrl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_palhideA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxDatabase_setOFFSETDIST(HandleRef jarg1, double jarg2)
static void CFxTracker_OnMainSelectionSetChangedSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetAngle__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxRecentFiles_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_InitializeFromDbViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, bool jarg5)
static void delete_CFxPreferencesDimensionPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionStarted__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static Int16 CFxViewDrawInfo_GetFxCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIWorkspace_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getconfintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void CFxInputContextReactor_EndGetKeyword(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxVSTA_StopMacroRecording(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxEntityData_GetLayerId(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesOutput_SetPlotStampWriteToLogFile(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 CFxPreferencesDisplay_GetTextFontStyle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDoubleClickAction_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryStack(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_25(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3, int jarg4)
static int CFxAPI_fdt_isalpha(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabase_setLASTPOINT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyRibbonQuickAccessBarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxStatusBar_RefreshCoords__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_getangleW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4)
static void P_OLEOBJ_LlObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxStringArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPlotSettings_GetPrintStamp(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getpreviewbitmapA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxPreferencesContextualHelp_SetContextualHelpEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_DialogStart(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxAPI_fdt_DelRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxPreferencesLayerStateManager_SetHideDeletedLayersArea(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint TRACKER_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxDatabase_getDWGCODEPAGE(HandleRef jarg1)
static int CFxProfileStorage_Save(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toupper(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_entpos(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, IntPtr jarg3)
static short fdt_resbufA_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_Systems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_InitializeViewByExtents(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewDrawInfo_GetFILLMODE(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGripPointsPE_createObject()
static IntPtr new_ClassPtrArray__SWIG_2(int jarg1)
static void fdt_resbufA_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesOpenSave_GetSaveAsType(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static bool CFxUIMenuItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDesignResources_GetPortDesignLibraryFolders(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampPixelOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedCloud_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxPreferencesCloudCommenting(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIItemDefinitionCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCSOnUCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetLayoutCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxSystemServices_WriteLine__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_xformss(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_arg__SWIG_44(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxUIToolbarItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_SetFieldAspectMaintained(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIReactor_OnSubMenuAboutToShowSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetRibbonTabSelectors(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_2(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static global::System.IntPtr CFxHistoryStack_Top(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetVSTATemplatesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string dcl_callback_packetW_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_palunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxUI_AddUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxIteratorSelectionData_start(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetOrient__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static bool CFxViewDrawInfo_IsDrawSkipped(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_drxloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxDeviceReactor_ViewRemovedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetDisplayPaletteHideDelay(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxPreferencesDesignResources_GetHomeLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dlg_callback_packetA_key_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recW_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static double CFxViewDrawInfo_GetFocalLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setdbmodhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxUIImageItem_SetImageLibFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void dlg_callback_packetA_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUI_DestroyMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr GetActiveFxView(HandleRef jarg1)
static void SIZE_T_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxUIImageItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static long fdt_u_valW_mnInt64_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_SIZE_T_VECTOR__SWIG_0()
static uint CFxAPI_fdt_getrgb(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxSystemServices_GetFxDocumentManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint SIZE_T_VECTOR_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int ClassPtrArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_LayerStateSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr dcl_callback_packetA_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static short FDT_GENOUT_AREA_nPnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetContextMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_angtofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, out double jarg4)
static int CFxAPI_fdt_add_support_pathA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static IntPtr CFxVectorizeDevice_desc()
static void CFxDatabase_setVIEWSIZE(HandleRef jarg1, double jarg2)
static void CFxString_clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setpreselect(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_grvecsA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void TRACKER_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_DisableUI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3)
static void CFxPreferencesDwgStandards_SetIsShowIgnoredIssuesOn(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_tblpurgeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxSystemServices_FileDialog__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static int CFxAPI_dcl_fill_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
static void delete_CFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxTrace(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_User(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxSystemServices_CFxExpressionParserData()
static void CFxInputContextReactor_BeginGetFileNamesSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetTempPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12)
static void CFxPreferencesCloudStorage_SetXrefUploadPopup(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_transA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static void CFxSystemFiles_SetEnterpriseMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxTrackerContext_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetOsnapPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setDWGCODEPAGE(HandleRef jarg1, int jarg2)
static int CFxAPI_dlg_TileSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static bool CFxGeomUtils_GetNormalOfPlanarFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUITempOverrideKey_GetKeyDownMacro(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGripPointsPE_cast(HandleRef jarg1)
static int CFxAPI_fdt_findfileW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void fdt_u_valW_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxViewDrawInfo_GetRenderMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SIZE_T_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIToolbarItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 CFxDatabase_getUNDOCTL(HandleRef jarg1)
static void CFxHistoryObjectArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_DoSSGet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, int jarg10)
static void CFxSystemServices_Help(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCSOnUCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_setenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxInputPointManager_SetCurrentOSMODE(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetEyeToOutput(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetPointSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetTempXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayPlotScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint P_FILL_POLY_nCount_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDockableWindow_SetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxStringArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxUIReactor_OnToolbarItemCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_32(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4, int jarg5, ushort jarg6)
static IntPtr CFxCommandContext_desc()
static String CFxDatabase_getUSERS5(HandleRef jarg1)
static IntPtr P_OLEOBJ_pReserved1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_deldbmodhook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDeviceReactor_ViewAdded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxGripPointsPE_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPluginModuleInternal_setEdition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentManagerReactor_DatabaseAttachedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string fdt_binaryW_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesOutput_GetPlotStampOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetClipBoundary(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_GetFxMainSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_SetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDatabase_getCTAB(HandleRef jarg1)
static global::System.IntPtr CFxString_trimRightW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_retstrA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int dlg_callback_packetW_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetModelCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectSixthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxApplications_GetExtendedApiModules(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4)
static global::System.IntPtr CFxDatabase_getUCSORG(HandleRef jarg1)
static int CFxAPI_fdt_tbldelW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxHistoryObjectArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxStatusBar_StopProgressor(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_resbufW_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_2(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxUI_DestroyToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_setUSERS2(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxMainFrame_hideApplicationWindows(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsRightButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static uint CFxSelectionSet_GetLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPageSetupOverridesTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FileNameRetValArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxEdInputTracker_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setOLEFRAME(HandleRef jarg1, sbyte jarg2)
static void FDT_FLX_INFOW_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryObject_Copy(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIWorkspace_SetLocalizedName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setLENSLENGTH(HandleRef jarg1, double jarg2)
static global::System.IntPtr new_CFxSelectionSetReactor()
static int CFxLicenseInfo_SaveActivationCode(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetPrintSpoolerPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_Get3DMousePlugged(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_IsEagerSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxEdInputTracker_IsSuitableForContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_ImageStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3)
static void CFxPreferencesMLeaderSettings_SetLeaderEndAngle(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxEditorReactor_selectionSetCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxEntityData_SubentGetLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_u_valA_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionData_GetData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetTitleBlockPaths(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_46(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxHitTestInfo_IsRightButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int fdt_u_valW_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint TRACKER_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_u_valW_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxEntityData_GetIndex(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesDiscardDuplicatesSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_GetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetAngBaseTrackerActivationValue(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectOneRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryCommand_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr CFxAPI_fdt_inputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxUserIO_DoNentsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static int CFxAPI_fdt_textboxW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static string VSTA_CONTEXT_userFolder_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCrosshairZAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxHitTestInfo_GetMousePositionF(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOtrackPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getUCSICON(HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_regappA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void fdt_VPORT_EXT_INFO_hDc_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSystemServices_CFxExpressionParserData(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_action_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static global::System.IntPtr CFxString_arg__SWIG_53(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxViewDrawInfo_SetDrawImages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void fdt_VPORT_EXT_INFO_WinWidth_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr dcl_callback_packetW_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsDragging(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetInteger(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxGeometryClipper_SetClipBoundary__SWIG_1(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIImageItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static double fdt_u_valA_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsTransparentCommandActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetA_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxPreferencesDisplay_Set3DSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxSettings_RemoveKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_arg__SWIG_37(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3, ushort jarg4)
static void fdt_u_valA_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxUserIO_GetDist__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxPreferencesPlotSettings_GetShadePlot(global::System.Runtime.InteropServices.HandleRef jarg1)
static double IMAGE_PNT_3D_z_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUITempOverrideKey_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxCommand_undefine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxDatabase_getHPDRAWORDER(HandleRef jarg1)
static void CFxDatabase_setXCLIPFRAME(HandleRef jarg1, Int16 jarg2)
static IntPtr CFxDocumentIterator_queryX(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxPreferencesOutput_GetBatchPrintOutputPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static Int32 CFxPreferencesSystem_GetUseDefaultFileLocationSetting(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 dcl_callback_packetW_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_OLEOBJ_UrObjPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVSTA_EmitCommands(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxLicenseInfo_GetLicenseDays(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnMenuItemCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_u_valW_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_remove(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxDatabase_getUCSVP(HandleRef jarg1)
static IntPtr FDT_GENOUT_POINT_Pnt_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_from_utf8_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDisplay_GetTextFont(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_appActivatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_WriteLine__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxUIAccelerator_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_mainFrameCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetInitialActiveAreaByWCSContour(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxUIImageItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonPanelItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetAccelerators(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetSaveChangesToLayout(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getLIMMIN(HandleRef jarg1)
static int CFxAPI_fdt_translateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, uint jarg5)
static UInt32 CFxPreferencesDisplay_GetSelectedEntityColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblcheckrefW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void SIZE_T_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesOutput_GetPrinterPaperSizeAlert(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static IntPtr CFxGeomUtils_ConvertToStdPolyline(HandleRef jarg1)
static void CFxDatabase_setUCSNAME(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButtonsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IMAGE_PNT_3D_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxSelectionSetReactor_OnClearStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetBasePoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint KeywordVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPackAndGo_SetDestAction(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static global::System.IntPtr CFxDatabase_getINSBASE(HandleRef jarg1)
static bool CFxView_InsideTransaction(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_getprinterlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_PointToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6, char jarg7)
static void CFxEditorReactor_endModalStateSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxOsnapPoint_GetOsnapColor()
static void PRINT_EXT_INFO_LowLeCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=2)]double[] jarg2)
static void CFxProfileManagerReactor_currentProfileWillBeResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_addimage2libA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, ushort jarg5)
static double CFxRangeDouble_m_Max_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxDatabase_getRealClassName(IntPtr jarg1)
static void VSTA_CONTEXT_templates_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxInputPointManager_IsOsnapCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int DEVPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_delselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getpreviewbitmapW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxDatabase_getUCSFOLLOW(HandleRef jarg1)
static int CFxAPI_fdt_registerA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static bool CFxViewDrawInfo_IsInitialUpdate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxPreferencesOutput_SetPlotStampPixelOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxUIItemDefinition_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_Update__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetW_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxString_find__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxString_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonTabItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimRight__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoSSGet__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxString_arg__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4, ushort jarg5)
static void CFxDatabase_setHPBOUND(HandleRef jarg1, Int16 jarg2)
static IntPtr CFxInputContextReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocument_desc()
static int CFxAPI_dlg_TileActionA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxUITempOverrideKeysCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3, int jarg4, ushort jarg5)
static Int32 dcl_callback_packetA_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_OLEOBJ(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dlg_callback_packetA_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_handentW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3)
static bool CFxPreferencesSystem_GetEnableStartupDialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetAltTabletMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSelectionSet_GetCommonBaseClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxopenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static void CFxUI_DestroyRibbonRowItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetUIItemDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetTryRecovery(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxHitTestInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIMenuItemCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxPreferencesOutput_GetPlotStampDisplayDrawingName(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetFocalLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setTDUCREATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_GetVpNum(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrinterDescPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIImageItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxLicenseInfo_GetLicenseOptions(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsPlotGeneration(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryObjectArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static IntPtr FDT_GENOUT_LINE_Pnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_removeW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void CFxPreferencesPlotSettings_SetPlotRotation(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxSystemFiles_SetPlotStyleTablesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetReportMissingXRefsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPrintToFile(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetDynamicHighlightColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static void CFxPreferencesTablet_SetTabletEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxInputPointManager_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxViewDrawInfo_IsFadeMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxView_PointToWCS__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)
static int CFxAPI_fdt_registerW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_dcl_start_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
static bool CFxPreferencesSystem_GetUsePerformanceMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrinterConfigPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_tblcheckrefA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxPreferencesLayerPallete_SetIsolateLayerBehavior(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_SetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxView_ZoomExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_GetMainFrame(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_u_valW_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void P_FILL_POLY_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_wcmatchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static global::System.IntPtr CFxString_mid__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxMainFrame_CFxToolBars_SetVisible__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static double CFxDatabase_getOFFSETDIST(HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetLicenseServer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUnitsFormatter_SetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_40(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, ushort jarg4)
static void FDT_FLX_INFOW_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_ssgetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr jarg6)
static global::System.IntPtr CFxString_arg__SWIG_31(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2)
static void CFxDocumentManagerReactor_DocumentToBeDestroyedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndEntsel(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxUserIO_MessageLoop_Obsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxPreferencesOutput_SetBatchPrintOutputPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_DialogDonePositioned(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, out int jarg4, out int jarg5)
static bool CFxLicenseInfo_IsTrialVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setSNAPMODE(HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDisplayDevice_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr fdt_VPORT_EXT_INFO_MatWcsToVcs_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_fgetenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static bool CFxEdInputTracker_IsSuitableForContextSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimLeftA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void delete_CFxKeywordArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDiscardDuplicatesSettings_GetCombineEndtoEndAligned(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_copyresbufA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_dlg_callback_packetA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxEdInputTracker_GetWorkingPlane(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RegenStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetMainDictionary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxStringArray__SWIG_2(int jarg1)
static int CFxUserIO_DoEntsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7)
static global::System.IntPtr CFxHistoryCommand_GetArg(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxHitTestInfo_IsShiftPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_fdt_DelPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimLeft__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void fdt_tablet_recA_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxViewportSnapShot_GetUpVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewportSnapShot_IsViewSettingsValid__SWIG_0(HandleRef jarg1)
static string fdt_u_valA_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbarremoveA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static IntPtr CFxGeometryClipper_desc()
static global::System.IntPtr CFxViewDrawInfo_GetUpVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaYMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxViewDrawInfo_UseLinetyper(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxOtrackPoint_GetOtrackBasePointCrossSize()
static bool CFxViewDrawInfo_IsRapidMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetIncludeFont(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetResBufDDW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3, int jarg4)
static IntPtr CFxSelectionSetReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINTREC_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxString_replace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr CFxSelectionSetReactor_createObject()
static int CFxAPI_fdt_curve_getparamatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, out double jarg4)
static global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setUCSFOLLOW(HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateRasterImage(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetDisplayScrollBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_ConvertToA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static global::System.IntPtr new_dcl_resbuf()
static int CFxAPI_fdt_tolower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void FDT_FLX_INFO_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_compare__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_snvalidW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxUserIO_GetAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void CFxProfileManagerReactor_currentProfileSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getEXTMIN(HandleRef jarg1)
static bool CFxPreferencesLayerStateManager_GetHideDeletedLayersArea(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryObjectArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getLIMMAX(HandleRef jarg1)
static void CFxInputContextReactor_EndGetIntegerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxPreferencesDrafting_SetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxString_format__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_loadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxPreferences_Display(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_41(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxSelectionSet_SelectByPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxKeywordArray_sortit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxFileData_IsLockedGlobal(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcurr_mousepos(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxSystemServices_DisableUI__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void P_IMAGE_LlDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaZMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetRows(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemServices_AuditPrintReport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxProfileManagerReactor_currentProfileWillBeSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndQuiescentStateSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewAddedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesPlotSettings_GetReplacePDFwithPC3(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetVisibleMenuCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr cursordef_cursorpnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetWindowLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedCloud_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectTwoLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetRibbonMinimizedMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetPlotStampDisplayPlotDeviceName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotLegacy(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesTablet_SetWindowRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxBagFiler_isA(HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrinterDescPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIDoubleClickAction_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_norm_dxfcode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOpenSave_SetFullFilePathInTitleBar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr FDT_FLX_INFOW_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_P_IMAGE()
static int CFxAPI_fdt_toolbarmatrixgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetTarget(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesPlotSettings_GetCanonicalMediaName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recW_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxDatabase_setCDATE(HandleRef jarg1, double jarg2)
static int CFxUserIO_GetInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxPreferencesEntityMove_GetEntityMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr KeywordVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static UInt16 CFxPreferencesPackAndGo_GetBindType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesCloudStorage(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsRefeditActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIDockableWindow_GetAvailableOrientations(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOA_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void fdt_binaryA_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxStatusBar_StartProgressor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 dcl_resbuf_restype_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetCornerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void P_FILL_POLY_nCount_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static IntPtr dlg_callback_packetA_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetRibbonSystemMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStatusBar_GetFxWidget(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_VPORT_EXT_INFO_VportMax_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxPreferencesDisplay_SetRibbonMinimizedMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_isselecthook(global::System.Runtime.InteropServices.HandleRef jarg1)
static double WORLDPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetCustomPrintScaleDenominator(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxUnitsFormatter_ReadDouble__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_nentselpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr CFxUIButton_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectThreeLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutDisplayPaperShadow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxString_GetCodePage(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_GetFxWorkingSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_3(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9)
static void delete_CFxGeomUtils(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsMiddleButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_VPORT_EXT_INFO_VportMin_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxStatusBar_SetText(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void FDT_FLX_INFOA_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxVectorizeDevice_GetModelLineWeights(IntPtr jarg1, double jarg2)
static global::System.IntPtr CFxSystemFiles_GetSessionFolder(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13)
static Int32 CFxPreferencesPlotSettings_GetPlotPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINT_EXT_INFO_DevHeight_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxSelectionSet_GetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesMLeaderSettings_GetLeaderContentType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_LockFile(HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayPaperSize(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_SIZE_T_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIStyle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int TRACKER_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxDocumentManagerReactor()
static global::System.IntPtr CFxString_arg__SWIG_36(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr KeywordVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUserIO_GetPromptInt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxFileData_Lock(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_delimagefromlibA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static UInt32 CFxViewDrawInfo_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_SetMaximizedView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetCustomIconPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setUCSORG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAppInfo_GetStatus(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_createObject()
static void fdt_u_valW_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUITabletMenusCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewDrawInfo_IsFrontClipped(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_FILL_POLY(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RedrawFinished(global::System.Runtime.InteropServices.HandleRef jarg1)
static sbyte CFxDatabase_getOLEFRAME(HandleRef jarg1)
static int CFxAPI_fdt_ssgetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr jarg6)
static void CFxSelectionSet_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectFifthLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSetReactor_cast(HandleRef jarg1)
static bool CFxLicenseManager_StartUpCheck(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetRootFolder(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentIterator_isA(HandleRef jarg1)
static void CFxViewDrawInfo_SetIMAGEFRAME(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreviewBitmap_Read__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_SetDisplayOLEScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDeviceReactor_RegenFinished(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_SetBackground__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2, bool jarg3)
static void CFxInputContextReactorExtended_EndModifier(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxProfileManager_ProfileExport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static sbyte CFxDatabase_getDWFFRAME(HandleRef jarg1)
static void CFxInputPointManager_GetCursorSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxSystemFiles_SetDriversPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentManagerReactor_DatabaseDetached(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_GetInitialDirPath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDatabase_setOPENFORMATVERSION(HandleRef jarg1, Int16 jarg2)
static void CFxSystemServices_ExitApplication__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxDocument_IsBEditActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setPUCSORG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaXMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxVectorizeDevice_GetCurrentRenderEngine(global::System.Runtime.InteropServices.HandleRef jarg1)
static string VSTA_CONTEXT_desktop_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getUSERS3(HandleRef jarg1)
static void CFxCommand_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxCommand.SwigDelegateCFxCommand_0 delegate0, CFxCommand.SwigDelegateCFxCommand_1 delegate1, CFxCommand.SwigDelegateCFxCommand_2 delegate2, CFxCommand.SwigDelegateCFxCommand_3 delegate3, CFxCommand.SwigDelegateCFxCommand_4 delegate4, CFxCommand.SwigDelegateCFxCommand_5 delegate5, CFxCommand.SwigDelegateCFxCommand_6 delegate6, CFxCommand.SwigDelegateCFxCommand_7 delegate7, CFxCommand.SwigDelegateCFxCommand_8 delegate8, CFxCommand.SwigDelegateCFxCommand_9 delegate9, CFxCommand.SwigDelegateCFxCommand_10 delegate10)
static global::System.IntPtr CFxSystemFiles_GetLinetypesPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDesignResources_GetLastAccessedLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnClearEnded(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetForceOpenWithCtbPrintMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetQuickInputBorderColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxUserIO_GetOrient__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static int CFxAPI_fdt_regen(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCurvePE__getExtensionPoints__SWIG_1(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSystemFiles_GetToolPalettePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetScaleListIsMetric(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetLastAccessedLocation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesPlotSettings_GetPrintLineweights(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsSetVarActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxViewDrawInfo_GetIMAGEFRAME(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetLispDebugPort(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxSelectionSet_SelectGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static SWIGExceptionHelper swigExceptionHelper
static void delete_CFxMainFrame_CFxToolBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDeviceReactor_UpdateFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_remdelall(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetFadeMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxCommand_HasFlag(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxInputPointManager_GetSelectionSet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxIteratorSelectionData_done(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getTEXTSIZE(HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectPrevious(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_tile_keyW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static double CFxPreferencesMLeaderSettings_GetLeaderEndAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbarremoveW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxHitTestInfo_IsDragEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_fdt_angtofA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, out double jarg4)
static void delete_CFxHistoryObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsKeyboardReleaseEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetLayoutDisplayPaper(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ArgonVerifyFuncW__SWIG_0(bool jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxHitTestInfo_IsArrowUpPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabaseReactor_isA(HandleRef jarg1)
static IntPtr dlg_callback_packetA_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxStatusBar_GetWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTrackerContext_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4)
static global::System.IntPtr CFxDocumentManagerReactor_createObject()
static global::System.IntPtr new_CFxTrace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectSeventhRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_reverseFindA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static global::System.IntPtr CFxString_wide_strW(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsLISPActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_inputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxUserIO_GetCorner__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void delete_dlg_callback_packetW(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4, short jarg5)
static global::System.IntPtr CFxSystemServices_GetAvailableFonts(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxAPI_fdt_newrbA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxTracker_DrawDDTrackerSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxHitTestInfo_GetGestureSwipeAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIMenuItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesMLeaderSettings_GetLeaderOptions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_InitializeView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, double jarg5, double jarg6)
static int CFxUIToolbarItem_GetMatrixToolbarIndex(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDONUTOD(HandleRef jarg1, double jarg2)
static int CFxUnitsFormatter_PointToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesAutocomplete_GetMidStringCharCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesEnterpoint_SetAngDistTogether(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxString_arg__SWIG_39(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToInt(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxVectorizeDevice_GetLayoutId(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FDT_FLX_INFOA()
static int CFxAPI_fdt_getfiledA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void fdt_resbufW_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIMenuItem_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getdistatpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, out double jarg4)
static void CFxPreferencesMLeaderSettings_SetLeaderVertex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxEdInputTracker_IsDrawInAllViewports(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLicenseInfo_CleanUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetColorBookPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDisplay_GetLayoutDisplayMargins(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_PointToSCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetToolPalettePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_GENOUT_AREA_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxEdInputTracker_IsDrawInAllViewportsSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetTextFontSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetQuickInputTextColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxViewDrawInfo_SetClipBoundary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_GetViewportExternalRegionWCS(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetLineTypeShowDetails(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHistoryObject_IsCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_shootRayAgainstObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_dcl_action_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, IntPtr jarg4)
static void CFxDocumentManagerReactor_DocumentActivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSelectionSet_MergeOptions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3)
static double CFxDatabase_getDONUTID(HandleRef jarg1)
static void CFxSystemFiles_SetFontsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxAPI_fdt_free(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static uint CFxHistoryObjectArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxRibbonContextualState_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_loadedW(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_UpdateStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_SelectEdgeOnFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, ref IntPtr jarg5, ref IntPtr jarg6)
static global::System.IntPtr CFxSystemServices_GetIApplication(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsArrowDownPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_start_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static IntPtr CFxDocument_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesPlotSettings_GetPrintToFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetUITitleName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxModule_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetWorkingPlane(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setEXTMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_StringToAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool jarg5)
static global::System.IntPtr CFxViewDrawInfo_GetAdjustedProjectionMatrix(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3)
static void CFxView_SetElevation(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_ssgetfirstW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUIToolbarItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateGroupIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIButton_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetFilePathOption(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static int CFxUserIO_GetDouble__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void delete_CFxRangeInt(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_recA_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_SizeChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxProfileManagerReactor_currentProfileChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxIteratorEntityData_done(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CLASS_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxPreferencesDisplay_GetDisplayOptionToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ArgonAssertFuncA__SWIG_0(string jarg1, int jarg2, string jarg3, string jarg4, bool jarg5)
static void CFxUIItemDefinition_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxString_isNull(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStatusBar_GetText(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxHistoryObjectArray__SWIG_2(int jarg1)
static void CFxPreferencesSystem_SetAppCastEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxProfileManagerReactor_profileWillReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxDatabase_getCMDNAMES(HandleRef jarg1)
static void CFxDatabase_setWORLDUCS(HandleRef jarg1, Int16 jarg2)
static void CFxDeviceReactor_ViewDestroyedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesOpenSave_GetProxyImage(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxEditorReactor_desc()
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_ClearOtrackBasePoints(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryObjectArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewportSnapShot_InitializeFromView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxRecentlyErased_setEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static string FDT_FLX_INFOA_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RedrawEntity__SWIG_0(HandleRef jarg1, int jarg2, int jarg3, IntPtr jarg4)
static void CFxDeviceReactor_ViewModified(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIItemDefinition_GetDarkIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIButton_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_attr_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5)
static void CFxAPI_fdt_failA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_findA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void cursordef_cursorpnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void delete_IMAGE_PNT_3D(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageBmpW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static int CFxAPI_GetMatrix3D(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getvarW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHostAppServices_getMappedFont__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetFileNamesSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxDeviceReactor_SizeChangedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void fdt_u_valA_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_PRINT_EXT_INFO()
static void DEVPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUIMenuItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxStringArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_GetAutoName()
static void CFxAPI_fdt_pop_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxDisplayDevice_GetEffectiveBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxGeometryClipper(HandleRef jarg1)
static int CFxAPI_fdt_menucmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_ssnamexW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, uint jarg5)
static void CFxDatabase_setINSBASE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_dcl_u_val()
static int CFxAPI_dlg_ImageLibraryA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6, string jarg7)
static void CFxInputContextReactor_BeginGetString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetBasePoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIMenuItem_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static UInt32 CFxPreferencesDisplay_GetRefeditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetAngle__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxProfileManagerReactor_currentProfileWillBeSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_AngleToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void dcl_callback_packetW_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesTablet_SetSectFifthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void dlg_callback_packetW_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void P_IMAGE_UrDevicePoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_Update__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_curve_getpointatdist(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxInputPointManager_GetRubberLineClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_alertA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static String CFxDatabase_getDWGNAME(HandleRef jarg1)
static void CFxPreferencesLayerStateManager_SetHideUnusedLayers(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEditorReactor_windowStateChangedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void SIZE_T_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_FDT_GENOUT_LINE()
static int CFxAPI_dlg_TileSetFontW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4)
static int fdt_VPORT_EXT_INFO_WinWidth_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVSTA_GetMacros(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_StartUndoRecord(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsAltPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetSupportPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_FLX_INFOA_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static Int32 CFxPreferencesDrafting_GetDynaSnapMarkerSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grvecsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ArgonAssertFuncW__SWIG_2([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, bool jarg5)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreDoubleQuotes_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_ListSetTabStopsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static IntPtr CFxVectorizeDevice_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxProfile_GetRecentFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_AREA_nFlags_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxSystemServices_GetPassword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, ref IntPtr jarg4)
static int CFxPreferencesDisplay_GetDisplayPaletteHideDelay(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_drxunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetCombinePartialOverlap(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDocument_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_WORLDPOINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEvalModeHandler_DoEvalMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxFileData_SetFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_tablet_recW_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetDestFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_Set3DMousePlugged(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsMiddleButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManager_addReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHostAppServices_SaveVariables(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxModule(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentActivationModifiedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDatabase_getEXTMAX(HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabase_LoadFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxDocument_GetFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_cast(HandleRef jarg1)
static global::System.IntPtr CFxHistoryCommand_Cast(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_48(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxDatabase_getBACKZ(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesMLeaderSettings_GetLeaderBlockName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13)
static global::System.IntPtr CFxString_makeUpper(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_isdbmodhook(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_fdt_strfreeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void delete_KeywordPair(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesEnterpoint_GetRemainOnScreen(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStatusBar_GetSubControl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxHistoryObjectArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferences(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_LoadFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr CFxPreferences_PlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHitTestInfo_EnableSystemCursorGraphics(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxString__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetDistanceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static int CFxUserIO_GetFileNames__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15, global::System.Runtime.InteropServices.HandleRef jarg16)
static int CFxAPI_fdt_palgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndGetFileNameSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static double CFxPreferencesPlotSettings_GetCustomPrintScaleDenominator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeActivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSettings_GetGroups(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesDrafting_GetSheetAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileName__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13)
static short fdt_tablet_recW_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_MatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ArgonAssertFuncA__SWIG_1(string jarg1, int jarg2, string jarg3, string jarg4)
static void FDT_FLX_INFO_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxSelectionSet_MergeOptions_m_Classes_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxDatabaseReactor_getRealClassName(IntPtr jarg1)
static void dlg_callback_packetW_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxPreferencesDesignResources_SetTreeVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 CFxPreferencesSystem_GetXNotifyTime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectTwoLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIImageItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setCMDACTIVE(HandleRef jarg1, Int16 jarg2)
static void CFxMainFrame_SetInput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int fdt_u_valA_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabaseReactor_SWIGUpcast(global::System.IntPtr jarg1)
static UInt16 CFxViewDrawInfo_GetVIEWRES(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_ClassPtrArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetFlyoutID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxDatabase_setUSERS4(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr FileNameRetValArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxHistoryObjectArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr fdt_u_valA_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CLASS_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabase_setVIEWCTR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxApplications_GetAppCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void cursordef_cursorstyle_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxDatabase_setWRITESTAT(HandleRef jarg1, Int16 jarg2)
static Int16 dcl_u_val_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxCommandContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getHPBOUND(HandleRef jarg1)
static void CFxHistoryObjectArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_done_positioned_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, out int jarg5)
static void CFxDatabase_setGRIDUNIT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIDoubleClickAction_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDwgStandards_GetPreferredDwsFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputPointManager_AllowAbortOperation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesDimensionPalette_GetLibraryPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDiscardDuplicatesSettings_SetCombineEndtoEndAligned(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesPlotSettings_GetPlotCfgName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetWelcomeShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetQuickInputBorderColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_cast(HandleRef jarg1)
static int CFxUserIO_GetDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_GetPointFDT__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxDatabase_setLIMMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxMainFrame_CFxCommandWindowInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetPlotStampWriteToLogFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_initgetW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxInputPointManager_AddTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void CFxMainFrame_CFxCommandWindowInfo_linesCountMain_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabaseReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_0 delegate0, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_1 delegate1, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_2 delegate2, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_3 delegate3, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_4 delegate4, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_5 delegate5, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_6 delegate6, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_7 delegate7, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_8 delegate8, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_9 delegate9, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_10 delegate10, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_11 delegate11, CFxDatabaseReactor.SwigDelegateCFxDatabaseReactor_12 delegate12)
static global::System.IntPtr CFxInputPointManager_GetOrthoPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUserIO_Initget__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxView_EnterDragMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_binaryA_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetXNotifyTime(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxDeviceReactor_RedrawFinishedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrintSettingsPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 dcl_callback_packetA_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionStarted__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetRefeditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr P_OLEOBJ_LlClipPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnToolbarVisibilityChangedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr GetFxLicenseInfo()
static bool CFxHitTestInfo_IsInsideLISP(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxUIImageItem_GetRows(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_Regen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommand_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxPreferencesDisplay_SetEntitySelectionHighlightOpacity(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxUIReactor_OnSubMenuAboutToShow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUITabletMenu_SetColumnsNumber(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dcl_load_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static void CFxDeviceReactor_RegenStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SIZE_T_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxSystemFiles_GetPageSetupOverridesTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEntityData_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_textpage(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_GetClassesFound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void KeywordVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_getresourceimageW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_setdesktopcolor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3)
static int CFxUnitsFormatter_PointToString__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6)
static global::System.IntPtr CFxHostAppServices_translateAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxViewReactor.SwigDelegateCFxViewReactor_0 delegate0)
static global::System.IntPtr CFxUITempOverrideKey_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxrnewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_genout_enamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxMainFrame_CFxToolBars_SetVisible__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void CFxInputContextReactor_BeginGetCorner(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesAutocomplete_SetMidStringCharCount(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxPreferences_Drafting(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_inters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5, int jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg7)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaYMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxString_SetCodePage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_fdt_setmousehook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3)
static void CFxUI_DestroyTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_OLEOBJ_LlClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetDrawingBorderPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHistoryObjectArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesTablet_SetSectFourLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool IsNotEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetSmartNewTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxMainFrame_SetTitleSuffix(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDisplayDevice_GetMaximizedView(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSettings_HasKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxSelectionSetReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_42(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_find__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, int jarg3)
static bool CFxViewDrawInfo_HardwareTransformationsAllowed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesHeadsUpDisplay_SetHeadsUpDisplayEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUnitsFormatter_RealToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void FDT_FLX_INFOA_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxKeywordArray_global__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxString_arg__SWIG_29(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3, int jarg4)
static int CFxCurvePE_getGeneralCurve__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, ref IntPtr jarg3, bool jarg4, IntPtr jarg5)
static bool CFxEdInputTracker_IsPreviewEnabledSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dcl_mode_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static void CLASS_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSelectionSetReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_0 delegate0, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_1 delegate1, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_2 delegate2, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_3 delegate3, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_4 delegate4, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_5 delegate5, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_6 delegate6, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_7 delegate7, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_8 delegate8, CFxSelectionSetReactor.SwigDelegateCFxSelectionSetReactor_9 delegate9)
static IntPtr CFxEditorReactor_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_FDT_GENOUT_LINE(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_UseGsModel(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHistoryCommand_GetArgCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_rec_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionData_GetWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxIteratorSelectionData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxOsnapPoint_GetOsnapSize()
static global::System.IntPtr CFxAPI_ConvertToA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPluginModuleInternal_initApp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_cast(HandleRef jarg1)
static void CFxPreferencesDisplay_SetGripAlpha(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetSmallToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static IntPtr IHLData_IHLOriginal_GetEntity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, IntPtr jarg4)
static int CFxAPI_fdt_vportsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_BeginGetKeyword(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimLeft__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_RecoverFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static bool CFxEntityData_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUITabletMenu_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUITempOverrideKey_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxMainFrame_GetWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxDatabase_getSYSCODEPAGE(HandleRef jarg1)
static bool CFxUI_DisplayContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabaseReactor_desc()
static IntPtr CFxAppInfo_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_fgetenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static double CFxPreferencesDisplay_GetEntitySelectionHighlightThickness(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampPixelFontSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_rec_TabRow_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static int CFxLicenseInfo_GetLicenseType(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIMenuItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDrafting_GetAlignmentPointAcquisition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxDocument_GetFxMainSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_resbufA()
static IntPtr FDT_GENOUT_LINE_Pnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr dlg_callback_packetW_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsMouseOverActiveViewport(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsFibersEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_IMAGE_hImage_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static double CFxView_screenHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewportSnapShot_GetPosition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedOnLockedLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static IntPtr CFxSystemServices_ExecuteStringOnPause__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)
static void CFxInputContextReactor_BeginGetScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string VSTA_CONTEXT_manufacturer_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSelectionSet_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetFileData(HandleRef jarg1)
static void CFxPreferencesSystem_SetReportMissingXRefsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsRightButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetTextWinBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_createObject()
static int CFxAPI_fdt_dictionary_addA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static void fdt_tablet_recA_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxView_IsPaperSpaceOverall(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxLicenseInfo_GetRoamingLicenseMaxShares(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIImageItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxUITabletMenu_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxView_screenRect__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSettings_GetKeys(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetLayoutId(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2)
static UInt64 CFxPreferencesPlotSettings_GetPlotViewHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static bool CFxUIItemDefinition_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static string FDT_FLX_INFO_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectFourRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetNavigationToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxAPI_fdt_angle(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommandContext_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr CFxAPI_GetFXImages(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTracker_Update(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetPostScriptPrologFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetInitialActiveAreaInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static void CFxVSTA_EditMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetAliasPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillBeSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_dictionary_renameA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_entnext_dbhook(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static void CFxPreferencesAutocomplete_SetCommandWithAlias(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesPlotSettings_GetPlotCentered(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionSet_GetNTHX(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDiscardDuplicatesSettings_SetDonotBreakPolyline(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetQuickInputBkgColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_GetUCS2WCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetUseGsModel(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxScriptEngine(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetImageItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_resbuf_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHostAppServices_isSysVarAllowed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static double CFxDatabase_getDISTANCE(HandleRef jarg1)
static void CFxDatabase_setVSMAX(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxSystemServices_GetVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, out int jarg3, out int jarg4, out int jarg5)
static void VSTA_CONTEXT_manufacturer_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr ClassPtrArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxSelectionSet_GetObjectsByClass(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dlg_DialogNewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUIGroup_GetTempOverrideKeys(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxUIAccelerator_GetKeySequence(HandleRef jarg1)
static global::System.IntPtr P_IMAGE_UrWorldPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageVector(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6)
static global::System.IntPtr new_KeywordPair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetImageName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_load_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static void CFxInputContextReactor_BeginGetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentManagerReactor_DocumentToBeDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getSNAPUNIT(HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetViewportId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderBlockName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxCurvePE_getFilletPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIItemDefinition_GetContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_cast(HandleRef jarg1)
static void CFxInputPointManager_EnableOtrackCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesPackAndGo_SetIncludeFont(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxView_viewportObjectId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_LoadInterface(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxSystemFiles_GetConfigFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsGesture(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_IsInMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getSNAPBASE(HandleRef jarg1)
static bool CFxHitTestInfo_IsGesturePinch(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFO_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dlg_DialogNewPositionedA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxSystemServices_SetUserBreak__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_tablet_recW_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_recW_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static bool CFxPreferencesDisplay_GetLayoutDisplayPaperShadow(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_attrW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, int jarg6)
static int dlg_callback_packetW_reason_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUITempOverrideKey_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxCurvePE_getExtensionPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxAppInfo_SetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static global::System.IntPtr CFxView_SWIGUpcast(global::System.IntPtr jarg1)
static int CFxAPI_fdt_rett(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_DestroyDrawContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDrafting_SetSheetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_setcfgW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr CFxPreferences_StandardCompliantDwg(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIAcceleratorsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setFILLETRAD3D(HandleRef jarg1, double jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayLoginName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxStringArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr KeywordPair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_selectionSetDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputContextReactor_GetInputContextManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetHelpFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_StringToAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool jarg5, bool jarg6)
static void CFxDisplayDevice_RemoveDrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetxA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static void CFxDatabase_setIMAGEFRAME(HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxDocumentManager_GetActiveDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionEnded(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIButtonsCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr TRACKER_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dcl_slide_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static bool CFxPreferencesDisplay_GetAngBaseTrackerActivationValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesLayerPallete_GetIsoLayerBehaviorViewPort(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grtextW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static bool CFxPreferencesPlotSettings_GetOpenPDF(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxView_GetDeviation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_all_toolbars_visibleA(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesSystem_SetPrintDialogQuickPreview(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUserIO_GetPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_AngleToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static void CFxPreferencesOutput_SetPlotStampOnSingleLine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIToolbarItem_SetMovable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressSystemOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetInt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void delete_CFxUIMenuItemCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_ConvertToA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_1(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11)
static void fdt_tablet_recA_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxUnitsFormatter_PointToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_tblobjnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, IntPtr jarg4)
static bool CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUserIO_GetPromptDist(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static Int32 dcl_callback_packetA_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SIZE_T_VECTOR_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxInputPointManager_GetDraggingPreview(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_beginModalState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_dcl_resbuf(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVSTA_DeleteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabaseReactor_cast(HandleRef jarg1)
static void CFxDatabase_setDWGNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxInputContextReactor_BeginGetIntegerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxHistoryObjectArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void fdt_tablet_rec_szTabSectionID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxView_screenRect__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUIMenuItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxRecentFiles_GetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxEntityData_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUITempOverrideKey_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getvarA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxTrackerContext_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr FDT_FLX_INFOW_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINT_EXT_INFO_DevWidth_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void delete_CFxMainFrame(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxsaveasA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void delete_CFxFileData(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOpenSave_GetAutomaticPurgeUnspecifiedData(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr P_OLEOBJ_pReserved2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTracker_DrawDDTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxCommand_Help(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxViewDrawInfo_GetVpNum(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileSavedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputPointManager_SkipCurrentInputPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetDefXLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxTrackerContext_GetFxInputPointManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSettings_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4)
static int CFxAPI_dlg_TileSetFontA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4)
static IntPtr CFxVectorizeDevice_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetTabletMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_GetSSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxDatabase_setSYSCODEPAGE(HandleRef jarg1, int jarg2)
static global::System.IntPtr FDT_FLX_INFOW_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grtextA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3, out int jarg4)
static bool CFxFileData_IsCloudStorageFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIAccelerator_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVSTA_Load(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetLispDebuggerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHitTestInfo_IsFxEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static double kMAX_VALID_DEPTH_RANGE_get()
static void CFxVectorizeDevice_SetPalette(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]UInt32[] jarg2)
static void CFxAppInfo_SetAppName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryObjectArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_AddGrVecsVector(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6)
static bool TRACKER_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_GetOpenDefaultExtension(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_GetGlobalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxProfileStorage_DeleteNode(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxViewDrawInfo_UseTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_LINE(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_RemoveUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_CloudCommenting(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxApplications_GetStartupSuite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDimensionPalette_SetLibraryPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetWindowRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputContextReactor_createObject()
static int CFxUserIO_GetOrient__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxUnitsFormatter_PointToString__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static double CFxHitTestInfo_GetGesturePinchRollAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_CFxVertexData_m_Direction_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr TRACKER_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void GetPaperProperties(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxGeomUtils_GetImageBoundary(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void delete_fdt_binaryA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_IMAGE_LlDevicePoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTitleBlockPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxInputPointManager_desc()
static global::System.IntPtr CFxDatabase_getTARGET(HandleRef jarg1)
static int CFxAPI_fdt_flxnamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndSSGetSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIMenuItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetSmallRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxVectorizeDevice_GetForeground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetQuickInputBkgColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxUI_SetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setSNAPISOPAIR(HandleRef jarg1, Int16 jarg2)
static int CFxUIToolbarItem_GetRows(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_getDWGTITLED(HandleRef jarg1)
static int CFxUnitsFormatter_StringToPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxUserIO_GetDirection__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void CFxPreferencesEntityMove_SetEntityMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxInputContextReactor_queryXSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxPreferencesAutocomplete_GetAutoCorrect(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static int CFxAPI_dcl_get_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5)
static global::System.IntPtr CFxSystemServices_GetAppDataVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getactivedocumentA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionData_GetSpaceId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_SetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static void CFxSelectionSetReactor_OnClearEndedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxLicenseManager_ShowMessage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxPreferencesOutput_SetAutoSavePlotLog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxAppInfo_Load(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDatabase_GetDatabaseHistory(HandleRef jarg1)
static int CFxUserIO_GetInt__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxPreferencesUser_GetToggleLanguages(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListGetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static global::System.IntPtr CFxDatabase_getVSMAX(HandleRef jarg1)
static ushort CFxAPI_fdt_getimagetypeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr new_CFxString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void fdt_VPORT_EXT_INFO_hPalette_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_dictionary_searchW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxPreferencesDisplay_GetGripAlpha(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setPERIMETER(HandleRef jarg1, double jarg2)
static bool ClassPtrArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabase_cast(HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static void CFxPreferencesOutput_SetPlotStampDisplayLayoutName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_GENOUT_LINE_Pnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxPreferencesSystem_SetBeepOnError(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEdInputTracker_EnablePreviewSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIMenuItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetRibbonQuickAccessBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxEdInputTracker_GetWorkingPlaneSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetVisibleRibbonSystemMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_xloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static Int32 CFxPreferencesPlotSettings_GetStdScaleType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_dcl_binary(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxRibbonContextualState_GetData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGeomUtils_GetPixelToModelTransform(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static sbyte CFxDatabase_getDGNFRAME(HandleRef jarg1)
static void delete_CFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetFxCurrentSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCommandContext_IsCommandActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesOutput_GetPlotStampDisplayLoginName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewportSnapShot_GetNumPixelsInUnitSquare(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxHistoryStack_Pop(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insertW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesCloudCommenting_GetFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIAccelerator_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDatabase_setDONUTID(HandleRef jarg1, double jarg2)
static int CFxUnitsFormatter_StringToAngle__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, bool jarg5, int jarg6, double jarg7)
static void CFxFileData_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIDockableWindowCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetOpenPDF(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FileNameRetValArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxPreferencesDesignResources_SetLastBrowsePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxViewDrawInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetApplicationPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr GetFxSystemServices()
static global::System.IntPtr CFxUI_CreateMouseButton__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void ArgonAssertFuncW__SWIG_3([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4)
static void CFxInputContextReactor_BeginGetAngleSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_u_valA_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_Vcs2PrinterPnt(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, out int jarg4, out int jarg5)
static global::System.IntPtr CFxSystemFiles_GetPlotFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrintSpoolExecutable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCSOnUCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_fdt_u_valW(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsKeyboardEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHostAppServices_SetVariablesDefault(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTextureMapPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_file_systimeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8, out int jarg9, out int jarg10)
static bool CFxHitTestInfo_IsMouseEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_50(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr CFxUIGroup_GetRibbonHelpMenuItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeDeactivated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_entmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDisplay_GetLayoutCreateViewport(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetShadePlotCustomDPI(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static String CFxString_wide_strU(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetManaged(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxHistoryItem()
static bool CFxString_equalNoCase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPrintOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxString_arg__SWIG_35(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3)
static void CFxProfileManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_0 delegate0, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_1 delegate1, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_2 delegate2, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_3 delegate3, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_4 delegate4, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_5 delegate5, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_6 delegate6, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_7 delegate7, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_8 delegate8, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_9 delegate9, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_10 delegate10, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_11 delegate11, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_12 delegate12, CFxProfileManagerReactor.SwigDelegateCFxProfileManagerReactor_13 delegate13)
static void CFxViewDrawContext_DrawObject(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void delete_CFxVectorizeDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void CFxProfileManagerReactor_currentProfileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, [MarshalAs(UnmanagedType.LPWStr)]String jarg5)
static int CFxAPI_fdt_tblobjnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static void CFxDatabase_setLOGFILENAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetWorldToEyeMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FileNameRetValArray__SWIG_0()
static bool CFxInputPointManager_OperationAborted(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint ClassPtrArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIGroup_IsBaseGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetRecentlyErased(HandleRef jarg1)
static int CFxString_findOneOf__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxSystemServices_QueueExpr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static void CFxSelectionSet_ClearObjectFilters(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule_CFxEventData__SWIG_0(HandleRef jarg1, int jarg2)
static void CFxProfileManagerReactor_currentProfileResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoSSGet__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void fdt_u_valA_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static IntPtr dlg_callback_packetW_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxProfileManager_ProfileCopy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_dlg_ImageEnd(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxBagFiler(HandleRef jarg1)
static void CFxDatabase_setHPDRAWORDER(HandleRef jarg1, Int16 jarg2)
static Int32 CFxPreferencesDisplay_GetLargeRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static char CFxString_getAtWU(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPackAndGo_SetIncludeUnloadedReferences(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSelectionData_CFxVertexData_m_Direction_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIWorkspace_GetStatusBarVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetPosition(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_GetAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxSelectionData_IsNestedSelection(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_sssetfirst(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static bool CFxPreferencesPlotSettings_GetScaleLineWeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_GENOUT_AREA_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentCreateStarted(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_xdsizeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
static void CFxDatabase_setSNAPUNIT(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setDIASTAT(HandleRef jarg1, Int16 jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3, int jarg4, int jarg5)
static void delete_CFxUIItemDefinitionCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_0 delegate0, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_1 delegate1, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_2 delegate2, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_3 delegate3, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_4 delegate4, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_5 delegate5, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_6 delegate6, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_7 delegate7, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_8 delegate8, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_9 delegate9, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_10 delegate10, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_11 delegate11, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_12 delegate12, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_13 delegate13, CFxDocumentManagerReactor.SwigDelegateCFxDocumentManagerReactor_14 delegate14)
static global::System.IntPtr CFxDatabase_getPLIMMAX(HandleRef jarg1)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaZMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxGeomUtils_GetPolySegment(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDisplayDevice_Redraw(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_compfontW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxUserIO_SetCurrentPrompt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxView_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static short FDT_GENOUT_LINE_nLineType_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_removeW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetDrawSkipped(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_FLX_INFO_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_getfiledW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxAPI_fdt_setosnapinactive(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_tablet_rec_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_SetUserBreak__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_EndGetKeywordSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void KeywordVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetScaleListRstDlgUseSystem(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_dimensions_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, out int jarg4, out int jarg5)
static global::System.IntPtr CFxUI_CreateImageItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUITempOverrideKey_SetKeyDownMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIItemDefinition_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetQuickInputDimLinesColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_copyA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, out int jarg5)
static void CFxDatabase_setVIEWMODE(HandleRef jarg1, Int16 jarg2)
static double CFxVectorizeDevice_GetDeviceWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxViewDrawInfo_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIDoubleClickActionsCollection_GetItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4, int jarg5)
static int FlatShotHL(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static UInt32 CFxTrackerContext_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_RemoveTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxView_SetPanMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesContextualHelp_GetContextualHelpEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDimensionMove_SetDimensionMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUIItemDefinition_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectThreeRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static String CFxCommand_displayName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_VPORT_EXT_INFO_MatVcsToWcs_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetStyleMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_getinputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, uint jarg3)
static global::System.IntPtr new_fdt_tablet_recW()
static global::System.IntPtr CFxString_getAtWW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr dcl_resbuf_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxInputContextReactor_EndGetFileNames(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void FDT_FLX_INFO_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void FxCIPRecordAssertion(string jarg1, int jarg2, string jarg3)
static int CFxUnitsFormatter_PointToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5)
static void SIZE_T_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_activate_progress_barW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void fdt_binaryW_buf_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_xunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static IntPtr CFxHistoryArg_GetData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4)
static bool CFxScriptEngine_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDiscardDuplicatesSettings_SetOptimizePolyline(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static bool CFxPreferencesInputHistory_GetEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPlotSettings_GetCurrentStyleSheet(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_EnableOrthoCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxViewDrawInfo()
static void dcl_callback_packetA_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_grreadW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxUIToolbarItem_GetOnByDefault(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetGraphicsWinModelBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr GetFxUserIO(HandleRef jarg1)
static global::System.IntPtr CFxOtrackPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreviewBitmap_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_dictionary_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static void CFxDocumentManagerReactor_DocumentCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_RemoveWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxGeometryClipper_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxScriptEngine_ResumeScript(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_resbufW_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static global::System.IntPtr SIZE_T_VECTOR_Repeat(uint jarg1, int jarg2)
static int CFxProfileStorage_GetStorageFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_PaperSpaceToEye__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderLandingLine(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxDatabase_getVIEWTWIST(HandleRef jarg1)
static bool CFxViewDrawInfo_IsScalingLineweights(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_AddOtrackBasePoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxScriptEngine_PauseScript(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectAppendedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_u_valW_mnInt64_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void CFxAppInfo_GetGroupNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static short fdt_tablet_recW_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_slide_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, string jarg6)
static void CFxPreferencesSystem_SetShowWarningMessages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_fdt_u_valA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ArgonAssertFuncW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static bool CFxCommandContext_IsMultipleActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxKeywordArray_push_back(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDatabase_setDWFFRAME(HandleRef jarg1, sbyte jarg2)
static bool CFxPreferencesOpenSave_GetFullCRCValidation(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getFRONTZ(HandleRef jarg1)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIGroup_GetMouseClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entupd(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr new_dlg_callback_packetW()
static void CFxProfileManagerReactor_profileResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetCustomPrintScaleNumerator(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxUIMenuItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxPreferences_Hatch(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_GetSystemServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxOsnapPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_delcmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDocument_SWIGUpcast(global::System.IntPtr jarg1)
static void TRACKER_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static UInt32 CFxPreferencesDesignResources_GetContentViewType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int ClassPtrArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButton_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetMenus(global::System.Runtime.InteropServices.HandleRef jarg1)
static void TRACKER_VECTOR_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dlg_DialogDone(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static void CFxSelectionData_CFxVertexData_m_Description_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetHistoryLines(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxIteratorSelectionData_getObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_registry_writeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static void CFxViewDrawInfo_SetScalePixelSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxUITempOverrideKey_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetRibbonWorkspaceVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectEighthLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxAPI_fdt_distance(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static void CFxInputContextReactor_BeginEntselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RedrawEntity__SWIG_1(HandleRef jarg1, int jarg2, int jarg3)
static String CFxDatabase_getCPLOTSTYLE(HandleRef jarg1)
static int CFxAPI_fdt_wmfoutA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg7, int jarg8, int jarg9)
static int CFxUserIO_DoSSGet__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_SIZE_T_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxMainFrame_GetCommandHistoryWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_getSNAPMODE(HandleRef jarg1)
static global::System.IntPtr CFxEdInputTracker_GetNameSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_P_FILL_POLY()
static global::System.IntPtr CFxAppInfo_GetAppDesc(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetMaxArray(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxAppInfo_SetLocalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsRightButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_actcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr new_TRACKER_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetString(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxHitTestInfo_SkipKeyboardInput(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxnewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static uint CFxCommand_GetHelpId(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetLayoutCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int dlg_callback_packetW_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUnitsFormatter(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxLayoutManagerReactor_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxLicenseInfo_DisableDWF(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxTrackerContext_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_IsEager(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_release_grread(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxVectorizeDevice_GetBackground(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_SliderSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8)
static global::System.IntPtr CFxUIDoubleClickActionsCollection_GetItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSystemServices_GetModelerManufacture(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_sizeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] jarg3)
static void CFxUserIO_SetCurrentPrompt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static bool CFxHistoryObjectArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_replaceA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, char jarg3)
static void CFxUIReactor_OnRibbonControlCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesAutocomplete_SetSystemVariable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void P_IMAGE_UrWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryArg_Cast(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetOrientationSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocument_GetFxDisplayDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_recA_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr new_ClassPtrArray__SWIG_0()
static Int16 CFxDatabase_getCMDACTIVE(HandleRef jarg1)
static int CFxLicenseInfo_GetRoamingProductCurrentCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnMenuItemAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_flxsave(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retlistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesUser_SetUseFullPath(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static IntPtr cursordef_cursorpnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxVectorizeDevice_CreateDrawContext(HandleRef jarg1, int jarg2, int jarg3)
static int CFxString_insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr new_KeywordPair__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetGraphicsWinModelBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxString_arg__SWIG_33(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, char jarg4, int jarg5)
static void CFxPreferencesDisplay_SetModelCrosshairColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdt_isalnum(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxViewDrawInfo_SetUseLinetyper(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxViewDrawInfo_SetIsDragging(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CLASS_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimLeft__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr KeywordVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static short cursordef_cursorstyle_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetW_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUIContext_OnCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_resbufW(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxViewportSnapShot()
static global::System.IntPtr CFxAPI_fdt_registry_descendentsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, short jarg3)
static global::System.IntPtr CFxView_GetRealExtents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getactvport(global::System.Runtime.InteropServices.HandleRef jarg1, out short jarg2, out short jarg3)
static bool CFxUI_LoadResourceFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxSelectionData(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getLENSLENGTH(HandleRef jarg1)
static double CFxPreferencesMLeaderSettings_GetLeaderStartAngle(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_tblnextA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static global::System.IntPtr CFxAPI_fdt_registry_readW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxDatabase_setCVPORT(HandleRef jarg1, Int16 jarg2)
static void CFxPreferencesDrafting_SetSheetAnnoautoscaleValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr fdt_u_valW_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetPoint3D__SWIG_0([In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetDefYLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void TRACKER_VECTOR_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxOsnapPoint_GetSubentPath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxModule_CFxEventData_m_pDatabase_set(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxUnitsFormatter_PointToUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxViewDrawInfo_IsDragging(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static double CFxDatabase_getCIRCLERAD(HandleRef jarg1)
static void CFxInputContextReactor_EndGetRealSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static void CFxUIMenuItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSelectionSet_MergeOptions_m_RemoveOptions_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryObjectArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IsEqual__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr dcl_callback_packetW_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentManager_CreateDocumentIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesDisplay_GetStyleMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerList(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRangeDouble(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsFullVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_GetFxScriptEngine(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_activate_progress_barA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesSystem_SetEnableStartupDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxCurvePE(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTempPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetIncludePrintConfigs(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_registry_writeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static void CFxPluginModuleInternal_addGUIDs(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_SIZE_T_VECTOR__SWIG_2(int jarg1)
static double CFxVectorizeDevice_GetDeviceHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_SetActiveDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_NameToString(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUIReactor_OnMenuItemCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxDatabase_getLOGFILENAME(HandleRef jarg1)
static bool CFxInputPointManager_IsCursorSnapping(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getangleA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, out double jarg4)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreWhiteSpace_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesPlotSettings_GetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_UpdatePanelPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIMenuItem_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSelectionData_CFxVertexData_m_Point_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxUIMenuItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetBindXRef(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxView_drawableAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxUserIO_GetPreviousSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3)
static bool CFxView_SetPreviousData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetDefaultOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetSupportPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesUser_GetAutoSaveOnSwitchingWorksapces(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDimensionPalette_SetDimensionPaletteEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxInputPointManager_createObject()
static global::System.IntPtr CFxUIItemDefinition_GetLightIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_file_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static double CFxViewDrawInfo_GetLineweightToDcScaleOverride(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_DoVerb(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIAcceleratorsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxEditorReactor_queryXSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static IntPtr CFxViewDrawContext_GetGiGeometry(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_GetActiveFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsLeftMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxIteratorEntityData_seek(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxFileData_Create__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_PRINT_EXT_INFO(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ClassPtrArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxDocumentManager_GetDocumentByIndex(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2)
static bool CFxHitTestInfo_IsLeftButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxString__SWIG_0()
static void FDT_GENOUT_LINE_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr GetCFxPluginModuleInternal()
static int CFxUserIO_GetKeyword__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_getdesktopcolor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, out short jarg3)
static global::System.IntPtr new_CFxKeywordArray()
static bool CFxUI_CheckEvents(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5)
static void CFxDocumentManagerReactor_DocumentBecameCurrent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButton_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentCreateCanceledSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_entnext(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static int CFxUserIO_GetFileName__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static void CFxPreferencesDiscardDuplicatesSettings_SetTolerance(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_entmod_dbhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_register_funcW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxPicture(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxEvalModeHandler(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocument_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static CFxOsnapPoint.OsnapMode ConvertOsnapMode(Teigha.Core.OsnapMode osnapMode)
static bool CFxViewDrawInfo_UseLineWeights(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetLineweightToDCScaleOverride__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOutput_GetPlotStampDisplayPlotScale(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_format__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static void CFxLayoutManagerReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_0 delegate0, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_1 delegate1, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_2 delegate2, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_3 delegate3, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_4 delegate4, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_5 delegate5, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_6 delegate6, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_7 delegate7, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_8 delegate8, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_9 delegate9, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_10 delegate10, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_11 delegate11, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_12 delegate12, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_13 delegate13, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_14 delegate14, CFxLayoutManagerReactor.SwigDelegateCFxLayoutManagerReactor_15 delegate15)
static void CFxUIImageItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHistoryObjectArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr P_OLEOBJ_LlObjPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getWORLDUCS(HandleRef jarg1)
static int CFxAPI_fdt_flxclose(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIItemDefinition_GetIcon(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxUIDoubleClickActionsCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIDoubleClickAction_GetDxfClassName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrintSettingsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetGraphicsWinLayoutBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxViewportSnapShot(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ArgonVerifyFuncA(bool jarg1, string jarg2, int jarg3, string jarg4, string jarg5)
static int CFxAPI_dlg_SliderGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8)
static void CFxPreferencesOutput_SetPlotStampDisplayPlotStamp(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxSettings_GetType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDocumentManager_PushCadResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIDockableWindow_GetObjectName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ClassPtrArray_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxPreviewBitmap(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_u_valW_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIToolbarItem_GetAliases(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIDoubleClickAction_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr fdt_VPORT_EXT_INFO_hWnd_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_CFxToolBars_SaveState(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxCommand_GetHelpIdSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxInputPointManager_IsSnapCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_mainFrameDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxTracker_m_bAdded_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setVIEWDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesOutput_GetPlotStampDisplayLayoutName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIButtonsCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_fdt_curve_isplanar(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void FileNameRetValArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SIZE_T_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetInt__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4)
static int CFxAPI_fdt_palgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_compfontA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxPreferencesPlotSettings_SetPrintLineweights(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FileNameRetValArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIGroup_GetTabletShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_SliderGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8)
static global::System.IntPtr CFxInputContextReactorExtended_SWIGUpcast(global::System.IntPtr jarg1)
static Int32 dcl_callback_packetW_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetActiveBlockId(HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeDeactivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int TRACKER_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FileNameRetValArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_POINT_nColor_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static int CFxSystemServices_FileDialog__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10)
static global::System.IntPtr CFxUI_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_getprofileslistW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static int CFxAPI_dcl_new_positioned_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, IntPtr jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void FDT_GENOUT_LINE_nLineType_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxPreferencesUser_SetDrawingProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxVectorizeDevice_IsInitialUpdate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDWGTITLED(HandleRef jarg1, bool jarg2)
static void CFxView_LeaveDragMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetPrimaryPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_TileClientDataA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static void CFxRangeDouble_m_Max_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxPreferences_Enterpoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setFRONTZ(HandleRef jarg1, double jarg2)
static short fdt_u_valW_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetLayoutDisplayPaper(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxProfileManagerReactor_profileWillBeSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_initgetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static void CFxPreferencesSystem_SetWebHelpEnable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIDoubleClickAction_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_VPORT_EXT_INFO(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxLicenseInfo_CheckInLicense(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxBagFiler_SWIGUpcast(global::System.IntPtr jarg1)
static void fdt_u_valW_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_filename_mktempA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, int jarg6)
static void CFxTrackerContext_AllowRegenAbort(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_fdt_binaryA()
static bool CFxTracker_DoActionSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUITempOverrideKey_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxInputContextReactor_BeginNentsel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_PRINTREC()
static void delete_FDT_FLX_INFOW(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void FDT_FLX_INFOA_szDrName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxSystemServices_FileDialog__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12)
static void delete_CFxSelectionSet_MergeResult(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesSystem_SetHelpFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxSystemServices_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static void CFxApplications_GetApplicationsByDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDisplayDevice_SetSlideImage(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_cmdW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr IHLData_GetEntity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_VPORT_EXT_INFO_hDc_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_AngleToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5)
static global::System.IntPtr P_LINE_Pnt2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_PopResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CLASS_VECTOR_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetViewDir(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_registry_readA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static IntPtr CFxDatabase_RecoverFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SetRubberLinePoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTrackerContext_DrawDrawable__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4, int jarg5)
static void delete_CFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getininameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static void CFxPreferencesPlotSettings_SetPlotPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static short FDT_GENOUT_AREA_nFlags_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ArgonVerifyFuncW__SWIG_1(bool jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, int jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4, [MarshalAs(UnmanagedType.LPWStr)]String jarg5)
static void CFxPreferencesPlotSettings_SetStdScaleType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static String CFxCommand_displayNameSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetVisiblePixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ClassPtrArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr dlg_callback_packetA_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxViewDrawContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_cmdA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr P_LINE_Pnt1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewportSnapShot_InitializeFromViewInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectSeventhLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetLineTypeShowDetails(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_CreateDrawablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2, UInt32 jarg3, HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_angtosA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, string jarg5, uint jarg6)
static void delete_CFxPreferencesInputHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_nentselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr CFxAPI_fdt_loadedA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectTwoRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIGroup_IsRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoSSGet__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static Int32 CFxPreferencesDisplay_GetPropertiesWindowDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOA_szBem3_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxProfileManager_ProfileGetCurrent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IHLData_IHLOriginal(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabaseHistory_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SIZE_T_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3)
static UInt32 CFxEdInputTracker_subSetAttributes(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static short P_FILL_AREA_nPnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOrthoPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void P_OLEOBJ_UrClipPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDocumentManagerReactor_DocumentActivationModified(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_EndGetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesDiscardDuplicatesSettings_GetIgnorePolylineWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_loadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void dcl_resbuf_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDesignResources_SetContentViewType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxDatabase_setDWGPREFIX(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static IntPtr CFxUnitsFormatter_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVectorizeDevice_InitializeLayout(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxDatabase_getHPSPACE(HandleRef jarg1)
static bool CFxDocumentIterator_Done(HandleRef jarg1)
static void CFxSelectionSet_MergeOptions_m_pFilter_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxHitTestInfo_GetKey(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewportSnapShot_GetEyeVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewportSnapShot_IsViewSettingsValid__SWIG_1(HandleRef jarg1)
static double CFxViewDrawInfo_GetFieldHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_POINT_Pnt_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryObjectArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxDatabase_setFRAME(HandleRef jarg1, Int16 jarg2)
static int CFxAPI_fdt_getpointA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxUserIO_DoEntsel__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, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static IntPtr CFxDocumentManagerReactor_desc()
static int CFxAPI_dlg_TileSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxAPI_fdt_grtextW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxVSTA_SetContext(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5)
static int CFxAPI_fdt_entmod_dbhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreviewBitmap_HasPreview(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_RealToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5)
static int CFxUserIO_GetOrient__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxSystemServices_CFxExpressionParserData_m_bUCS_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_Create__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_findW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static int CFxUnitsFormatter_OrientToString__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8, double jarg9)
static void CFxUI_DestroyTempOverrideKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesUser_SetSCMTimeValue(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static bool CFxPreferencesDisplay_GetRibbonDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_actcmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_filename_directoryA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static global::System.IntPtr CFxUserIO_GetPromptString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_poly2catrom_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, double jarg4)
static IntPtr PRINT_EXT_INFO_UppRiCorn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_SkipCurrentInputPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUserIO_Initget__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesUser_GetHyperlinkDisplayCursor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHitTestInfo_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesEnterpoint_GetPresetRelativePoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetHomeLocation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxBagFiler_createObject()
static int CFxAPI_fdt_curve_getstartparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
static bool CFxUIMenuItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_ContextualHelp(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryArg_SWIGUpcast(global::System.IntPtr jarg1)
static void ClassPtrArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxPreferencesSystem_GetAppCastShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxSettings_HasGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPluginModuleInternal_uninitApp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_setTDINDWG(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_FDT_FLX_INFO()
static int CFxAPI_dcl_start_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr CFxString_vformatA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxGeometryClipper_cast(HandleRef jarg1)
static void CFxInputContextReactor_EndSSGet(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxView_AddViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIToolbarItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr new_CFxEditorReactor()
static void delete_CFxPreferencesDrafting(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setCMDECHO(HandleRef jarg1, Int16 jarg2)
static double CFxPreferencesOutput_GetPlotStampFontSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_QueueExpr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxPreferences_DiscardDuplicatesSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_IMAGE_UrDevicePoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool TRACKER_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_utf8_str(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_cleartextscr(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10)
static void CFxSystemServices_CFxExpressionParserData_m_bUCS_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_ImagePreviewBmpW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static bool CFxSystemServices_CFxExpressionParserData_m_bHiddenCommandAllowed_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr dcl_u_val_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_FILL_AREA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectOneLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_SetCustomFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxViewDrawInfo_GetVisualStyle(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setAREA(HandleRef jarg1, double jarg2)
static void CFxPreferencesDisplay_SetDisplayOptionToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxSelectionSet_MergeResult_m_Found_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIDockableWindowCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPlotSettings_GetPaperImageOrigin(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_GetGeomExtents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxCommand_Execute(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_reverseFindW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesUser_GetHyperlinkDisplayTooltip(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentActivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CLASS_VECTOR_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_menucmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxViewDrawInfo_SetBackClip(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxDatabase_setUSERS5(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxUIWorkspace_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHitTestInfo_GetEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectEighthRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSetReactor_OnObjectRemovedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_AddUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndDragSequenceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxInputContextReactor_BeginGetCornerSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxInputPointManager_IsOtrackPolarCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreviewBitmap_Create()
static int CFxAPI_fdt_setfunhelpA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_setconfintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerListNames(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocument_AttachDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_4(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaXMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_isA(HandleRef jarg1)
static void CFxPreferencesOutput_SetSaveContinuousPlotLog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIReactor_OnRibbonControlCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_AngleToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, bool jarg7)
static void CFxDisplayDevice_SetSceneUpdatingActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_getpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesOutput_GetPlotStampDisplayPlotStamp(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IHLData_IHLOriginal_GetSubEntity(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getUSERS4(HandleRef jarg1)
static int CFxProfileManager_ProfileDelete(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimRightW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void delete_FileNameRetValArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetStringSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr new_ClassPtrArray__SWIG_1(HandleRef jarg1)
static void CFxPreferencesDisplay_SetLayoutShowPlotSetup(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxInputPointManager_IsDrawTrackersActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dcl_callback_packetA_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxVectorizeDevice_SetBackground__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_dlg_ListAddA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void fdt_resbufA_resval_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxVSTA_GetCurrentMacro(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionData_GetPointsCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIDoubleClickActionsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPlotLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDirection__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static global::System.IntPtr CFxString_SplitA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void CFxUI_DestroyRibbonHelpMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_palloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxRangeDouble_m_Min_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static IntPtr CFxUITempOverrideKey_GetKeySequence(HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPaperImageOrigin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxEntityData_GetId(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retvalW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_ssadd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, IntPtr jarg4, bool jarg5)
static global::System.IntPtr CFxPreferencesTablet_GetSectFourLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RedrawStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxVectorizeDevice_GetPixelPerMM(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIDockableWindow_SetShow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CLASS_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxCurvePE_getFilletPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, IntPtr jarg6)
static int CFxHistoryStack_GetStackDepth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_sizeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [global::System.Runtime.InteropServices.Out, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] jarg3)
static int CFxAPI_fdt_register_paramW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_hatch(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static global::System.IntPtr CFxPreferencesOpenSave_GetTempFileExtension(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordPair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_unregisterW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void dcl_callback_packetA_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDatabase_getTEXTSTYLE(HandleRef jarg1)
static int CFxAPI_dlg_ImageSlideW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static double CFxViewDrawInfo_GetVisiblePixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxEdInputTracker_GetFxDocumentSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetLensLength(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxSystemServices_FileDialog__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void delete_cursordef(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIToolbarItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 dcl_u_val_rlong_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxGripPointsPE_SWIGUpcast(global::System.IntPtr jarg1)
static void ClassPtrArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxViewDrawInfo_GetTEXTFILL(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IsNotEqual__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIImageItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxDatabase_getSNAPISOPAIR(HandleRef jarg1)
static int CFxLicenseInfo_IsProductKeyValid(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIImageItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesOutput_GetPlotStampRelativity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCrosshairYAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxDatabase_getVIEWDIR(HandleRef jarg1)
static void CFxDatabase_setEXTMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaZMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxString_findOneOfA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxString_arg__SWIG_27(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxUIToolbarItem_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIImageItem_SetUITitleName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_HeadsUpDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxInputContextReactorExtended(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesUser_GetUseFullPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DEVPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDynamicInputs_SetTooltipsTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxProfileManager_ProfileListNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_GetObjectId(IntPtr jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_poly2bspline(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static double dcl_u_val_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetOptionsToolbarMode(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_setselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxHistoryObjectArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOpenSave_SetAutoAudit(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_gethandle(global::System.Runtime.InteropServices.HandleRef jarg1, out IntPtr jarg2, out IntPtr jarg3)
static bool CFxPreferencesAutocomplete_GetListDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_createObject()
static global::System.IntPtr CFxString_trimLeftA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static int CFxAPI_fdt_setfunhelpW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static bool CFxDatabase_setTDUUPDATE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxAPI_GetPointFDT__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxAPI_fdt_curve_isclosed(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void CFxDocumentManagerReactor_DatabaseAttached(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxLicenseInfo_GetHostID(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputPointManager_ResetAbortOperation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, uint jarg3)
static int CFxUserIO_GetInt__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxEdInputTracker_GetDrawDecorationSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxOsnapPoint_GetOsnapDistance()
static global::System.IntPtr CFxSystemServices_GetObjectManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblpurgeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxAPI_fdt_palopendlg(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CLASS_VECTOR__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_find__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_dcl_get_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5)
static int CFxOsnapPoint_GetMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionData_CFxVertexData_m_Description_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_endModalState(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSettings_Read(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void KeywordVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_P_OLEOBJ()
static void delete_fdt_resbufA(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryCommand_GetNameGlobal(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_desc()
static global::System.IntPtr CFxModule_cast(HandleRef jarg1)
static int CFxAPI_fdt_install_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetOrient__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void CFxPreferencesPlotSettings_SetPrintOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CLASS_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxProfileManager_removeReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxMainFrame_GetCommandWindowInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getrealW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
static void delete_FDT_GENOUT_POINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfile_Flush(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint FileNameRetValArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxView_SetOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUnitsFormatter_StringToPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr CFxMainFrame_GetToolBars(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimRight__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_osnapA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxUIGroup_GetTabletCtrlShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grclear(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetFieldHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dlg_ListEnd(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetLayoutAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetSaveAsType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static bool CFxHitTestInfo_IsMouseWheel(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_DEVPOINT()
static void CFxPreferencesPlotSettings_SetUseLayersPDF(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxViewDrawInfo_GetFieldWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_RealToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6)
static bool CFxPreferencesMLeaderSettings_GetLeaderLandingLine(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_VPORT_EXT_INFO_VportMin_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPackAndGo_GetIncludePrintConfigs(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetColorBookPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxInputPointManager_SetPrimaryPoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void CFxDatabase_setGRIDMODE(HandleRef jarg1, bool jarg2)
static global::System.IntPtr CLASS_VECTOR_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string FDT_FLX_INFOA_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIGroup_GetMouseCtrlClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxOtrackPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocument_CreateSelectionSet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3)
static global::System.IntPtr new_CFxTracker()
static void CFxModule_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxModule.SwigDelegateCFxModule_0 delegate0, CFxModule.SwigDelegateCFxModule_1 delegate1, CFxModule.SwigDelegateCFxModule_2 delegate2, CFxModule.SwigDelegateCFxModule_3 delegate3, CFxModule.SwigDelegateCFxModule_4 delegate4, CFxModule.SwigDelegateCFxModule_5 delegate5, CFxModule.SwigDelegateCFxModule_6 delegate6, CFxModule.SwigDelegateCFxModule_7 delegate7, CFxModule.SwigDelegateCFxModule_8 delegate8)
static global::System.IntPtr CFxDocumentManagerReactor_SWIGUpcast(global::System.IntPtr jarg1)
static int CFxUnitsFormatter_AngleToString__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8, double jarg9)
static global::System.IntPtr CFxSystemServices_GetFxEvalModeHandler(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetProxyImage(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_palunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxProfileManager_ProfileSave(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool ClassPtrArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_TileGetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5)
static void CFxPreferencesUser_SetKeyboardAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr new_CFxDeviceReactor()
static void CFxPreferencesMatrixToolbar_SetExtendedView(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDwgStandards_SetIsAutomaticallyFixedOn(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxView_PointToView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxViewDrawInfo_SetOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr dcl_callback_packetA_tile_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_promptA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxString_format__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr CFxInputPointManager_GetSelectionSetCopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void dcl_callback_packetW_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxSystemServices_GetFxApplications(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_dcl_callback_packetA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_OLEOBJ_UrObjPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocument_ShrinkMemory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetVersion__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectLast(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTrackerContext_DrawDrawable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3, int jarg4)
static global::System.IntPtr CFxEdInputTracker_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_P_POINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_ExecuteStringOnPause__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetAliasPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_SaveFile__SWIG_1(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxIteratorSelectionData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetDestFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static SWIGWStringHelper swigWStringHelper
static bool CFxCommandContext_IsQuiescent(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fxToolBars()
static int CFxAPI_fdt_flxropenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxUserIO_GetCorner__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_GetADSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxString_trimRightA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dcl_mode_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4)
static bool CFxHitTestInfo_IsMiddleButtonClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxModule_CFxEventData_m_DefunCode_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_setcursor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxRangeInt_m_Max_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getUSERS1(HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotViewHandle(global::System.Runtime.InteropServices.HandleRef jarg1, UInt64 jarg2)
static global::System.IntPtr CreateSelectionSet(HandleRef jarg1)
static global::System.IntPtr CFxDocumentIterator_Document(HandleRef jarg1)
static short fdt_u_valA_rint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxViewDrawInfo_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEdInputTracker_subWorldDraw(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static double CFxDatabase_getCDATE(HandleRef jarg1)
static void CLASS_VECTOR_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_wmfoutW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, int jarg4, char jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg7, int jarg8, int jarg9)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaYMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FileNameRetValArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CLASS_VECTOR_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_trimLeftW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static UInt32 CFxPreferencesDisplay_GetTextWinTextColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static string VSTA_CONTEXT_hostID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEvalModeHandler_UndoEvalMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxProfile_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesLayerStateManager_GetViewPortOverrides(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retpoint(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static bool CFxUI_RemoveItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getsnapmodeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out short jarg3)
static uint CFxSelectionSet_MergeResult_m_RemovedOnOffLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_removeall(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdti_ssinc(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUIButton_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUserIO_DoNentsel__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9)
static bool CFxUIToolbarItem_IsAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsOrbitMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getFRAME(HandleRef jarg1)
static int CFxAPI_fdt_getstringA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3, string jarg4, uint jarg5)
static void UseCustomAssert(bool jarg1)
static IntPtr CFxDocumentIterator_createObject()
static global::System.IntPtr new_CFxStringArray__SWIG_0()
static void CFxEditorReactor_gripEditCustomOp(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4)
static void CFxUIImageItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemFiles_SetMenusPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3, int jarg4, ushort jarg5)
static global::System.IntPtr CFxSystemServices_GetFxUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxView_screenWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesSystem_SetAdditionalSupportPaths(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcursor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dlg_TileDimensionsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, out short jarg4, out short jarg5)
static IntPtr CFxInputContextReactor_isASwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectFifthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxSelectionSet_GetCommonBasePEClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rreal_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxUIGroup_GetToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetFrontClip(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndDragSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static uint CFxView_numDrawables(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxEntityData_GetClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_GetLastViewportEntId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesHeadsUpDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_GetClosestPointInFace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_getdistA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, out double jarg4)
static int CFxAPI_fdt_entmakexW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3)
static IntPtr CFxModule_CFxEventData_m_pDatabase_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dlg_callback_packetW_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retvoid(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_findA__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static global::System.IntPtr new_CFxString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmakexA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3)
static global::System.IntPtr CFxSystemFiles_GetAltFontFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxFileData_SetFlxVersion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr dlg_callback_packetW_key_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPackAndGo_SetSearchPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetViewportMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_AutoSplitDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectOneLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static int CFxView_PointToView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxDocumentManager_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CLASS_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_GetPrintExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_draggenA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static IntPtr CFxInputContextReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int dlg_callback_packetA_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxLicenseInfo_GetLicensePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentIterator_desc()
static int CFxUnitsFormatter_PointToString__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static double IMAGE_PNT_3D_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewDrawInfo_SetUseLineWeights(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesSystem_GetStoreSQLIndex(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_GetBEditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_GetBlockedPurge(HandleRef jarg1)
static global::System.IntPtr CLASS_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesDimensionPalette_GetDimensionPaletteEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_getargsA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_ShrinkMemory(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grtextA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static IntPtr CFxAppInfo_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetTempFileExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFO_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_done_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_fdt_redraw(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static bool CFxLicenseInfo_IsDWFSaveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsNetworkConnectionLost(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_TileGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4, int jarg5)
static void CFxPreferencesDesignResources_SetProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSetReactor_OnClearStartedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static bool CFxDocument_IsInsideDragDropSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectAppended(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLargeRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr GetFxScriptEngine()
static void FDT_FLX_INFO_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 CFxPreferencesSystem_GetMaxArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIImageItem_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDiscardDuplicatesSettings_SetIgnoreObjectProperties(global::System.Runtime.InteropServices.HandleRef jarg1, UInt64 jarg2)
static int CFxGripPointsPE_getOsnapPoints(HandleRef jarg1, int jarg2, IntPtr jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static void CFxPreferencesOutput_SetPlotStampPixelOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxGripPointsPE_getObjectCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_getLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetDefaultPlotStyleTable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_newrbW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string FDT_FLX_INFOA_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxView_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabase_RecoverFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_dictionary_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxString_getAllocLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_cvunitW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, out double jarg5)
static int CFxAPI_fdt_file_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxVectorizeDevice_UsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxViewDrawInfo_GetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_beginSaveEx(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static string fdt_tablet_rec_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDwgStandards_GetIsAutomaticallyFixedOn(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPluginModuleInternal_nextGUID__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_BeginGetReal(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxGripPointsPE_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_isdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPackAndGo_SetBindType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static int CFxAPI_dcl_set_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_ssmemb(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaZMin(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxSystemFiles_SetPrintFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_FLX_INFO_szDraftsman_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesTablet_SetSectSeventhRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetPrintStamp(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxPreferencesDisplay(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_cast(HandleRef jarg1)
static global::System.IntPtr CFxGeomUtils_GetTransform__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_0(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static global::System.IntPtr CFxOsnapPoint_GetSubentPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxPreferencesOutput_GetPlotStampOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrintFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_SetActiveDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxProfileManagerReactor_currentProfileLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint KeywordVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_cancelDwgOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getsnapmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out short jarg3)
static void dlg_callback_packetW_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_palshowA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxViewDrawInfo_SetInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEdInputTracker_removeDrawablesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxUserIO_GetNoteEditor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxPreferencesDisplay_GetRibbonCustomizeButtonVisible(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static global::System.IntPtr CFxUIToolbarItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentIterator_Start(HandleRef jarg1)
static bool CFxDatabase_setUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxPreferencesOutput_GetPlotStampUnits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetSmallRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxVectorizeDevice_DestroyLayout(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetLoadMFCUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMatrixToolbar_SetPreferredColumnCount(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxCurvePE_createObject()
static void CFxPreferencesTablet_SetSectFourRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFO_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnMenuItemAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_GetGsView(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsGesturePan(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentCreateCanceled(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CLASS_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxMainFrame_GetFxWidget(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_ShowMatrixToolbarWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxHistoryObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSystemFiles_GetVSTATemplatesPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_usrbrk(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_init_dragmodeA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ClassPtrArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static Int32 CFxPreferencesUser_GetKeepPaperUnits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetAutosavePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IMAGE_PNT_3D_z_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxSystemServices_WriteLine__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static void CFxProfileManagerReactor_profileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxLicenseInfo_GetVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxDocumentIterator_getRealClassName(IntPtr jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectForHatch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesUser_SetHyperlinkDisplayCursor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_TileModeW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4)
static global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string dcl_binary_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_binaryA_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static int CFxCurvePE_getFilletPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static int CFxAPI_fdt_bspline2poly(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxPreferencesMatrixToolbar_GetExtendedView(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxHistoryStack()
static uint CFxSelectionSet_MergeResult_m_Duplicated_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetPortDesignLibraryFolders(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUIGroup_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCLExtensionConstantWithViewport(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_CFxRangeDouble()
static bool CFxHitTestInfo_IsInsideDragSelectSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_DialogTerm(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxDatabase_SetFileData(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputPointManager_AddInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIWorkspace_SetStatusBarVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxAPI_fdt_malloc(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetFileName__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15)
static int CFxUserIO_GetPoint__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_tblmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_FILL_AREA_nPnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxPreferencesOpenSave_GetAutoAudit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dlg_ListSetTabStopsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static bool CFxPreferencesAutocomplete_GetSystemVariable(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getIMAGEFRAME(HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampUserFields(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_cursordef()
static global::System.IntPtr CFxSystemFiles_GetHelpFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_EyeToPaperSpace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_GetCloudStorageData(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileName__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14)
static void delete_CFxSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetShadePlot(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetBEditBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdti_notify_short(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr new_CFxProfileManagerReactor()
static uint CFxSelectionSet_MergeResult_m_Removed_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesPlotSettings_GetPlotWindowAreaXMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDatabaseReactor(HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentDestroyedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_nentselpexW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out int jarg9)
static int CFxAPI_fdt_rtosA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, string jarg5, uint jarg6)
static global::System.IntPtr CFxPreferences_DynamicInputs(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_resbufA_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxHitTestInfo_IsMiddleButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetCorner__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static uint CFxUITempOverrideKeysCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxStringArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetCrosshairTintMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxUITabletMenusCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxIteratorSelectionData_step(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr new_fdt_tablet_recA()
static UInt32 CFxPreferencesDisplay_GetCrosshairZAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_purgeselecthooklist(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_u_valA()
static void CFxPreferencesMLeaderSettings_SetLeaderLandingLineLength(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxPreferencesOutput_SetUseLastPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_catrom2poly_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_putsymW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dcl_new_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUI_CreateUniqueID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_ActivateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaXMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static short PRINT_EXT_INFO_DevHeight_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDocumentManagerReactor_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxDocument_GetFxUserIO(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getprinterpapersizesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesOpenSave_GetForceOpenWithCodepage(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAppInfo_GetLoadReasons(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbar_existsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)
static global::System.IntPtr new_CFxHistoryObjectArray__SWIG_0()
static void CFxUIContext_OnUpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_AddOleDataToClipboard(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static string fdt_binaryA_buf_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CLASS_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxFileData_GetFlxVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetDefaultPlotStyleTable(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoNentsel__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, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9, int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static Int32 CFxPreferencesUser_GetKeyboardAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_GetWorkingPlaneSystem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxPreferencesPlotSettings_SetPlotType(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxPreferencesDisplay_SetColorComboBoxSortMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_dcl_callback_packetW()
static int CFxUserIO_DoSSGet__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static double CFxViewDrawInfo_GetLensLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesDesignResources_GetLastBrowsePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getactivedocumentW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetTextureMapPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetID(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEntityData_IsWholeEntitySelected(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint CFxSelectionSet_GetNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retstrW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxPreferencesTablet_SetSectSixthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxModule_CFxEventData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDisplayDevice_GetDisplayContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetMultilineStylePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndNentselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_file_renameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxInputPointManager_GetWorkPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_getprinterlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetFrozenLayerList(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDisplayDevice_InvalidateAllViewports(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesHatch(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsExtentsCalculationActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_EnableOtrackPolarCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesSystem_GetAdditionalSupportPaths(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetAppDesc(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_IMAGE_LlWorldPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxGeometryClipper_isA(HandleRef jarg1)
static global::System.IntPtr new_WORLDPOINT()
static global::System.IntPtr CFxSystemServices_GetVSTA(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxFileData_IsLocked(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIImageItem_SetRows(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesPlotSettings_SetPlotWindowAreaYMax(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxPreferencesOpenSave_GetUseOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_zoomext(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3)
static global::System.IntPtr CFxDocument_createObject()
static void CFxDatabase_setDBMOD(HandleRef jarg1, Int16 jarg2)
static void CFxPreferencesMLeaderSettings_SetLeaderType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr FileNameRetValArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SIZE_T_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3)
static void CFxDatabase_setUCSVP(HandleRef jarg1, bool jarg2)
static void CFxPreferencesTablet_SetWindowLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr KeywordVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxVectorizeDevice_GetPlotArea__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxTracker_GetNameSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_dictionary_nextW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static void CFxUIReactor_OnInterfaceAboutToReloadSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDisplayDevice_IsSceneUpdatingActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPrinterSpoolAlert(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxDocument_Redraw(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxDocumentManager_OpenDocument__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref OdCodePageId jarg3)
static int CFxAPI_fdt_translateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, uint jarg5)
static int CFxString_findA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static global::System.IntPtr CFxString_replaceW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr dcl_callback_packetW_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryObjectArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesSystem_SetOutputMaxLineCount(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxPreferencesUser_SetHyperlinkDisplayTooltip(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CLASS_VECTOR_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIImageItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FileNameRetValArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxUIWorkspace_SetRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxDatabaseReactor_queryX(HandleRef jarg1, HandleRef jarg2)
static void CFxPreferencesTablet_SetSectEighthLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsCtrlPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getVIEWCTR(HandleRef jarg1)
static void CFxEditorReactor_closeAbortedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxPreferences_InputHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputPointManager_GetLastOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_palloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxHitTestInfo_IsLeftButtonDoubleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIAccelerator_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginDragSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIDoubleClickAction_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIItemDefinition_SetDarkIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxUI_AddWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static short fdt_tablet_recA_TabColumn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setPUCSAll(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxViewDrawInfo_SetInitialActiveAreaByViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static bool CFxPreferencesSystem_GetWebHelpEnable(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesAutocomplete_SetAlias(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_setselecthookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static int CFxAPI_dlg_ListGetA(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, string jarg3, int jarg4)
static void KeywordVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void cursordef_cursorpnt2_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxPreferencesDisplay_GetDisplayPaletteShowDelay(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static global::System.IntPtr CFxApplications_FormatsFilterString(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHitTestInfo_GetGestureState(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxSystemServices_CreateGeometryClipper(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampPixelOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTemplateDWGPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxLicenseManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetDockColumn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxStringArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawContext_ClearBackground(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr CFxPreferences_OLEEditor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetActivePrompt(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_PointToString__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5)
static void dcl_u_val_rbinary_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxFileData_GetPrettyFilename(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreviewBitmap_Read__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_Merge__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dcl_get_list_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5, int jarg6)
static void CFxDatabase_setTARGET(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_BeginQuiescentState(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsMiddleButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4, short jarg5)
static global::System.IntPtr CFxString_trimRightA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static int CFxAPI_GetResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUITabletMenu_GetColumnsNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHitTestInfo_GetWheelDelta(global::System.Runtime.InteropServices.HandleRef jarg1)
static void VSTA_CONTEXT_appName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxSystemFiles_GetMenusPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileWillBeLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetTextFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static bool CFxSelectionSet_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr dlg_callback_packetW_dialog_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ClassPtrArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxViewportSnapShot_ApplyToView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_arg__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2)
static bool CFxGeomUtils_shootRayAgainstArrayObjects__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static global::System.IntPtr new_IMAGE_PNT_3D()
static uint CFxUIImageItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetActiveLocalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_setUSERS1(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxSelectionSet_MergeResult_m_Groups_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxDatabase_setBINDTYPE(HandleRef jarg1, Int16 jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectThreeLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_Output(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesUser_SetToggleLanguages(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetEntitySelectionHighlightThickness(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_dictionary_addW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_isspace(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_fdt_tablet_rec()
static String CFxDatabase_getINSNAME(HandleRef jarg1)
static int CFxUserIO_GetAngle__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static void CFxPreferencesTablet_SetSectSeventhLeft(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_alertW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static IntPtr ClassPtrArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUI_UpdateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_rtosW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6)
static int CFxAPI_fdt_retname(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxProfileManager_ProfileGet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxPreferencesMLeaderSettings_GetLeaderType(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getFILLETRAD3D(HandleRef jarg1)
static void CFxDatabase_setHPSPACE(HandleRef jarg1, double jarg2)
static void delete_CFxPreferencesAdvancedAttEdit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetForceOpenWithCodepage(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxOsnapPoint_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static double IMAGE_PNT_3D_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_xloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void VSTA_CONTEXT_userFolder_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxOsnapPoint_GetCenterSize()
static void CFxView_StartTransaction(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectAll(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetDefaultInternetURL(global::System.Runtime.InteropServices.HandleRef jarg1)
static string FDT_FLX_INFO_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssadd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, IntPtr jarg4)
static int CFxCurvePE_getArea(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, out double jarg3)
static global::System.IntPtr CFxInputPointManager_GetCursorClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_DEVPOINT(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxAPI_dcl_new_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxPreferencesSelection_SetPickGroup(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxUIToolbarItem_IsExpanded(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_RedrawStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_tblsetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxUserIO_GetUserInput__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxView_ViewExtentsWCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_filename_mktempW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, int jarg6)
static int CFxAPI_fdt_curve_getparamatdist(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, out double jarg4)
static void CFxSettings_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxDatabase_queryX(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetTempXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderContentType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxHitTestInfo_IsLeftButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxAppInfo_IsManaged(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxCommandContext_SetTopGroupName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setDISTANCE(HandleRef jarg1, double jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bContinuousCommand_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_filename_extensionW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static UInt32 CFxPreferencesDisplay_GetQuickInputTextColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool CFxLicenseInfo_IsDWFEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static string fdt_tablet_recA_szMacro_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOA_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxVectorizeDevice_Update(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, bool jarg4)
static int CFxAPI_GetResBufFDTW(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, bool jarg5)
static void CFxDocumentManagerReactor_DocumentCreatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_isgraph(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesOutput(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileWillChangeSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetTrueColorImages(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_ismousehook(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_loaded_appsA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_replaceA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void CFxSystemServices_ExitApplication__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setLSPALOAD(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static UInt16 CFxPreferencesPackAndGo_GetDestAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetLispDebuggerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOpenSave_SetPreserveOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_filename_baseA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static UInt32 CFxEdInputTracker_subSetAttributesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void ClassPtrArray_resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxInputContextReactor_BeginDragSequenceSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDiscardDuplicatesSettings_GetCombinePartialOverlap(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxInputContextReactor()
static void CFxDatabase_setLASTANGLE(HandleRef jarg1, double jarg2)
static global::System.IntPtr new_CFxUIStyle()
static int CFxString_compareNoCase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static bool CFxPreferencesEnterpoint_GetAngDistTogether(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setELEVATION(HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxHistoryObjectArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUserIO_GetPromptAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, bool jarg4)
static bool CFxString_equalNoCase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FDT_FLX_INFOA_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillBeLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreviewBitmap_GetBitmapAndPalette(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxAPI_fdt_AddUserImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, IntPtr jarg6)
static bool CFxSelectionSet_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPackAndGo_SetBindXRef(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxViewportSnapShot_GetTarget(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxFileData_GetFilename(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxTrackerContext_GetGiGeometry(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetDestFolder(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxOsnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOsnapPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDiscardDuplicatesSettings_GetMaintainAssociativity(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetDockRow(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentManagerReactor_isASwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static UInt16 CFxPreferencesPackAndGo_GetFilePathOption(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPlotSettings_GetUseLayersPDF(global::System.Runtime.InteropServices.HandleRef jarg1)
static void TRACKER_VECTOR_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void KeywordVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_SaveInterface(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHistoryStack_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxString_EncodeHTML(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxInputContextReactor_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxUI_DestroyAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_right(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_dlg_TileClientDataW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static void CFxInputContextReactor_EndEntselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static string VSTA_CONTEXT_templates_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_DefaultFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_textboxA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxDatabaseHistory_Get(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_atofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
static int CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_SliderSetW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, int jarg5, int jarg6, int jarg7, int jarg8)
static global::System.IntPtr CFxPreferencesTablet_GetSectThreeRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_draggenW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static int CFxSystemServices_GetRibbonTheme(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_getSNAPSTYL(HandleRef jarg1)
static bool CFxViewDrawInfo_IsPerspective(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_key_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dlg_ImageFill(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6)
static void CFxTrackerContext_DrawDrawable__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, bool jarg3)
static void CFxPreferencesOLEEditor_SetInPlaceEditorEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxLicenseInfo_CheckOutLicense(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_KeywordPair__SWIG_0()
static void CFxUIAccelerator_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesPlotSettings_GetUseStandardScale(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesDwgStandards(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxInputPointManager_IsUpdateTrackersActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIButton_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CLASS_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxMainFrame_CFxCommandWindowInfo_visibleMain_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampUpsideDown(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDeviceReactor_UpdateFinished(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxOsnapPoint_Set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIReactor_OnToolbarItemAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxCurvePE_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_namedobjdict(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxCurvePE__getGeneralCurve(HandleRef jarg1, ref IntPtr jarg2, bool jarg3)
static int CFxUnitsFormatter_StringToAngle__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxCurvePE_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxEdInputTracker_removeDrawables(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static IntPtr CFxDatabase_LoadFile__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_getEyeToWorldTransform(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxUIMenuItem_IsSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssgetfirstA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dcl_get_list_stringW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, int jarg6)
static int CFxAPI_fdt_delcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void KeywordVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxDatabase_setUCSXDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string CFxGeometryClipper_getRealClassName(IntPtr jarg1)
static global::System.IntPtr CFxUIDockableWindow_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getclosestpointtoprojection(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static void CFxSystemServices_AuthoriseOEMModule(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_entselA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxDatabase_setPUCSXDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetVSTAHostId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnToolbarItemAboutToDestroy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxInputPointManager_IsOtrackCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetCrosshairTintMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesSystem(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetGlobalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static int CFxAPI_dlg_ImagePreviewBmpA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static int CFxAPI_dlg_ListAddW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr CFxInputPointManager_GetCursorPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_add_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_toolbar_existsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, bool jarg3)
static bool CFxUITabletMenu_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesDimensionMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesUser_GetDrawingProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxMainFrame_CFxToolBars_IsVisible(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxOsnapPoint_ConvertOsnapMode(int jarg1)
static void CFxViewDrawInfo_InitializeOutputSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3)
static void CFxPreferencesAutocomplete_SetListDisplay(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxStatusBar_RefreshCoords__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static bool CFxVectorizeDevice_IsRegeneration(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxBagFiler_cast(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateMouseButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxSystemFiles_GetFontFileMap(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxDatabase_BlockPurge(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static int DEVPOINT_x_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayDate(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_KeywordVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryStack_Push(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxTracker_DoAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dcl_dimensions_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out int jarg4, out int jarg5)
static int CFxAPI_fdt_getrealA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out double jarg3)
static void CFxPreferencesDisplay_SetUseLargeToolbarsButtons(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxDatabase_getElapsedTime(HandleRef jarg1)
static int CFxAPI_dlg_TileModeA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4)
static bool CFxPreferencesOutput_GetPlotStampUpsideDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getHPSCALE(HandleRef jarg1)
static int CFxString_findW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByCrossingWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double fdt_u_valW_rreal_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcornerA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxAPI_fdt_drxloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxUIWorkspace_GetNavigationToolbars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesHatch_SetDefaultGradientColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static void CFxViewReactor_OnWorldToEyeChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFO_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void TRACKER_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_register_paramA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void fdt_u_valA_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxInputContextReactor_EndGetStringSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUIMenuItem_GetAliases(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getAREA(HandleRef jarg1)
static void CFxPreferencesDisplay_SetRibbonWorkspaceVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxCommandContext_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void delete_CFxPreferencesMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint ClassPtrArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinitionCollection_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_grtextA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static bool CFxDatabase_setUCSYDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string FDT_FLX_INFOA_szBem3_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxKeywordArray_sortit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetDistance(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static bool CFxSelectionSet_IsMember__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_DialogLoadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static int CFxAPI_fdt_ssdel_all(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxPreferencesTablet_GetTabletEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLayoutManagerReactor_layoutToBeDeactivated(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr fdt_tablet_recW_szTabMenuID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_osnap_mode(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void delete_CFxPreferencesOpenSave(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_client_data_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_getflxinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, UInt32 jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxUserIO_Write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_sslength(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void CFxProfileManagerReactor_currentProfileWillBeLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUserIO_GetActiveGlobalKeywords(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_VPORT_EXT_INFO_MatWcsToVcs_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIReactor_OnItemDefinitionCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_DialogNewPositionedW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxModule_CFxEventData_m_DefunCode_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetCheckBackBufferIssues(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxStringArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAPI_fdt_push_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetTopLevelMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHistoryArg_Create(HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_4(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static int CFxAPI_GetMatrixFDT(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_delmousehook(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryArg_SetData(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void CFxInputContextReactor_EndGetOrientationSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static int CFxAPI_fdt_wcmatchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void delete_CFxVSTA(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDatabaseReactor_queryXSwigExplicitCFxDatabaseReactor(HandleRef jarg1, HandleRef jarg2)
static int CFxProfileManager_ProfileRename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxPreferencesOpenSave_GetPreserveOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule_CFxEventData__SWIG_1(HandleRef jarg1)
static bool CFxInputPointManager_IsOrthoCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxStringArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetPlotFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_compareNoCase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxView_visibleScreenRectInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetWBLOCKPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxViewDrawInfo_GetDebugMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_AngleToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6)
static double WORLDPOINT_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIImageItem_IsObsolete(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static Int16 CFxDatabase_getDBMOD(HandleRef jarg1)
static int CFxHitTestInfo_SystemCursorDisableCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setERRNO(HandleRef jarg1, Int16 jarg2)
static int CFxAPI_fdt_pcontour(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, IntPtr jarg5)
static void ClassPtrArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesAutoSplitDimensions_SetAutoSplitDimensionsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxHostAppServices_getRawName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_flxopenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static uint CFxHistoryObjectArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_GetPreviousViewSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DatabaseDetachedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDist__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static void delete_CFxPreferencesSelection(global::System.Runtime.InteropServices.HandleRef jarg1)
static short PRINTREC_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesSystem_GetShowWarningMessages(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetLargeToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxSelectionData_CFxVertexData()
static void CFxDatabase_setCMDNAMES(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxEditorReactor_cancelDwgOpenSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_SetInitialDirPath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSystemFiles_GetPlotLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIButton_GetButtonNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxEdInputTracker_GetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesUser_SetAutoSaveOnSwitchingWorksapces(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxGeometryClipper_createObject()
static void delete_CLASS_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLicenseInfo_DisableLisp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxString_find__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr CFxDatabase_getPLIMMIN(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesPackAndGo_GetSearchPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIToolbarItem_GetMovable(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandNames_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxViewDrawInfo_GetScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetAppCastEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_directory_filesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxDatabase_getSNAPANG(HandleRef jarg1)
static void CFxOtrackPoint_Set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_PointFromUCS(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUIGroup_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_reverseFindW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static IntPtr CFxSystemServices_CreateBagFiler__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxPreferencesSystem_SetScaleListFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesDisplay_GetTrueColorImages(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_LoadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesUser_GetSCMTimeValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentDestroyed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxDatabase_getUCSXDIR(HandleRef jarg1)
static void CFxPreferencesTablet_SetSectOneRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesOutput_GetAutoSavePlotLog(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_mid__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void CFxEdInputTracker_setValueFinalSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxSelectionSetReactor_queryXSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void CFxAPI_fdt_failW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxPreferencesDesignResources_GetPreviewVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setHPSCALE(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_flxsaveasW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_ssdbnr(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static string CFxBagFiler_getRealClassName(IntPtr jarg1)
static bool CFxPreferencesDisplay_GetDisplayLayoutTabs(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrinterConfigPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxLayoutManagerReactor_queryX(HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_drxunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr new_VSTA_CONTEXT()
static void CFxPreferencesOpenSave_SetAutomaticPurgeUnspecifiedData(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CLASS_VECTOR_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IMAGE_PNT_3D_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_init_dragmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetRibbonDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemFiles_SetAltFontFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDocumentIterator_Seek(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDouble__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxPreferencesDisplay_GetUseLargeToolbarsButtons(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetDrawingsPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINTREC_Type_set(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void delete_CFxIteratorEntityData(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_Duplicated_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr CFxPreferences_Selection(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUI_LoadResourceFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetZoomScale(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxModule_createObject()
static uint CFxUIButtonsCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFO_First_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetDisplayScrollBars(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemFiles_GetMainDictionary(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_InitializeFromFxView(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_GetResBufDDW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3)
static global::System.IntPtr new_P_FILL_AREA()
static int CFxAPI_fdt_getintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static global::System.IntPtr CFxApplications_CreateAppInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_DesignResources(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxViewDrawInfo_GetDrawImages(global::System.Runtime.InteropServices.HandleRef jarg1)
static void VSTA_CONTEXT_hostID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxView_visibleScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szDrNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_ConvertToW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getbackgroundcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxPreferencesPlotSettings_GetPrintOffsetX(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getDATE(HandleRef jarg1)
static void dlg_callback_packetA_client_data_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static uint CFxEntityData_GetDrawOrder(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesLayerStateManager_GetHideUnusedLayers(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesSystem_GetScaleListFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr P_OLEOBJ_UrClipPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetTextFont(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxOsnapPoint_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToReal__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, bool jarg5)
static int CFxAPI_dlg_ImageWmfA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static void CFxPreferencesCloudCommenting_SetFilter(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxAPI_fdt_flxrnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static bool CFxSelectionSet_IsMember__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawContext_BeginUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDeviceReactor_ViewRemoved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUserIO_IsPending(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_SetCleanScreenState(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2)
static global::System.IntPtr CFxSelectionSet_Merge__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetPoint__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr CFxView_getEyeToScreenMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedOnFrozenLayers_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxDatabase_setSNAPSTYL(HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_DeleteUserImage(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxView_GetFxVectorizeDevice__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static short PRINT_EXT_INFO_DevWidth_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static void CFxSelectionSet_MergeOptions_m_RemoveOptions_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUIReactor_OnItemDefinitionCreatedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxLicenseInfo_GetLicenseHostId(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxHistoryCommand_AddArg(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByView(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxOtrackPoint_GetOtrackLinesCrossColor(bool jarg1)
static global::System.IntPtr new_CFxRangeInt()
static void CFxPreferencesPackAndGo_SetPackageType(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static int CFxAPI_fdt_snvalidA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static bool CFxUI_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_Write__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_ResetTime(HandleRef jarg1)
static bool CFxViewDrawInfo_GetXCLIPFRAME(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getDONUTOD(HandleRef jarg1)
static bool CFxDatabase_getGRIDMODE(HandleRef jarg1)
static global::System.IntPtr fdt_VPORT_EXT_INFO_hPalette_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetVisibleScreenRectInViewCoordinates(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesUser_SetApplyFilterToLayersToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double CFxPreferencesPlotSettings_GetPrintOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxFileData_IsNewFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ClassPtrArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesAutocomplete_SetMidstring(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_getpointW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void CFxCommand_undefineSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxTrackerContext_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxUserIO_GetNoteEditor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)
static void CFxHistoryObjectArray_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxPreferencesDisplay_SetQuickInputDimLinesColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdt_tabletinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDocument_GetCommandWindowHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetVisibleScreenRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_u_valA_rpoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_initdialog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_setselecthookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_transW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6)
static global::System.IntPtr CFxUIWorkspace_GetDockableWindows(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_OLEOBJ_pReserved1_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static bool CFxPreferencesOutput_GetPlotLegacy(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FDT_GENOUT_POINT()
static bool CFxPreferencesSystem_GetWelcomeShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_client_data_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static void CFxInputContextReactor_BeginGetDistance(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setPDFFRAME(HandleRef jarg1, Int16 jarg2)
static int CFxCurvePE_getExtensionPoints__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr CFxSelectionSetReactor_desc()
static void CFxUI_DestroyRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxUITempOverrideKeysCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimLeftW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_Tablet(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_0(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11, global::System.Runtime.InteropServices.HandleRef jarg12)
static global::System.IntPtr CFxProfile_GetStorage(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIAccelerator_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_SetTablesReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_GENOUT_AREA_nLineType_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxViewDrawInfo_SetRenderMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUI_RemoveUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_OrientToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static void CFxInputPointManager_SetOsnapPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxDatabase_SWIGUpcast(global::System.IntPtr jarg1)
static int CFxAPI_fdt_curve_getpointatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxGeomUtils_shootRayToGetMultipleSubEntities__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void CFxUIToolbarItem_SetExpanded(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUITempOverrideKey_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxUIAcceleratorsCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_uninstall_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesOutput_GetPrinterSpoolAlert(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManager_PushResourceHandle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_StopATFBomb(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetSmallRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsInsideDragSelectSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIAccelerator_GetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_relrbW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDocument_IsValid(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxCommand_execute(HandleRef jarg1, HandleRef jarg2)
static void CFxSystemFiles_SetCustomDictionary(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_RemoveOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxCurvePE_getExtensionPoints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, IntPtr jarg6)
static Int32 CFxPreferencesDisplay_GetSmallToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FXAPI()
static int CFxUnitsFormatter_StringToName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxCurvePE__getExtensionPoints__SWIG_0(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static bool CFxApplications_UnloadApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void KeywordPair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_binaryW_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static void CFxPreferencesDisplay_SetCrosshairXAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static bool CFxUIDockableWindow_GetShow(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxViewDrawInfo_SetDrawDecoration(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesSystem_GetTablesReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setPERSPECTIVE(HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_fdt_u_valW()
static void CFxInputPointManager_EnableOsnapCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_CLASS_VECTOR__SWIG_2(int jarg1)
static global::System.IntPtr CFxInputPointManager_WorldToWorkingPlaneMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxModule_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUI_Menucmd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxPreferencesDiscardDuplicatesSettings_GetTolerance(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocument_GetDocumentWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_attrA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, string jarg5, int jarg6)
static global::System.IntPtr CFxUI_GetStartUpWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getorientW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4)
static void CFxAPI_fdt_polar(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, double jarg3, double jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5)
static int CFxProfileManager_ProfileImport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static global::System.IntPtr CFxSystemFiles_GetXRefPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setUSERS3(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static int CFxUserIO_GetPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static int CFxString_findW__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3)
static void delete_CFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDimensionMove_GetDimensionMoveEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getkwordA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, uint jarg4)
static void CFxUI_AddUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesAdvancedAttEdit_SetHideProperties(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr fdt_VPORT_EXT_INFO_MatVcsToWcs_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetLightIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIDockableWindowCollection_UpdateCurrentState(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectSixthRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_Groups_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getHPANG(HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetUserDataPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIMenuItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetDefaultOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr FDT_FLX_INFOW_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetColorComboBoxSortMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDisplayDevice_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferences_DimensionPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getprinterpapersizesA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static IntPtr CFxDocument_GetOverallWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDisplayDevice_AddDrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_purgedbmodhooklist(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getGRIDUNIT(HandleRef jarg1)
static void CFxAPI_ConvertToW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesDisplay_SetGraphicsWinLayoutBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static bool CFxPreferencesDiscardDuplicatesSettings_GetDonotBreakPolyline(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_Write__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxSelectionSet_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetCorner__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_xdsizeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
static global::System.IntPtr CFxUIItemDefinitionCollection_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_OpenSave(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxHitTestInfo_GetFxEventType(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ImageWmfW(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static void CFxAPI_fdt_strfreeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxUnitsFormatter_StringToReal__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static void CFxSystemFiles_SetMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxFileData_SetReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEditorReactor_windowStateChanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxUI_CreateImageItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxAPI_fdt_getargsW(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetPointSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr P_IMAGE_hImage_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_ViewCreatedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoSSGet__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_invokeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesOutput_SetSaveChangesToLayout(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesSystem_GetDisplayOLEScale(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxMainFrame_GetStatusBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxString_DecodeHTML(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocument_GetHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_appinters(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxViewportSnapShot_IsViewExtentsValid(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetPixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retvalA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxSelectionSet_SubentGetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3)
static Int16 CFxDatabase_getPDFFRAME(HandleRef jarg1)
static int CFxUIToolbarItem_GetDefXLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_viewDir(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAppInfo_GetFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_isxdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUIGroup_GetRibbonSystemMenuItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_AddAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string VSTA_CONTEXT_appName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_atofA(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
static void delete_CFxOtrackPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_multiArg(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_0 delegate0, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_1 delegate1, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_2 delegate2, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_3 delegate3, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_4 delegate4, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_5 delegate5, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_6 delegate6, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_7 delegate7, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_8 delegate8, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_9 delegate9, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_10 delegate10, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_11 delegate11, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_12 delegate12, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_13 delegate13, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_14 delegate14, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_15 delegate15, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_16 delegate16, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_17 delegate17, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_18 delegate18, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_19 delegate19, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_20 delegate20, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_21 delegate21, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_22 delegate22, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_23 delegate23, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_24 delegate24, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_25 delegate25, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_26 delegate26, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_27 delegate27, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_28 delegate28, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_29 delegate29, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_30 delegate30, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_31 delegate31, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_32 delegate32, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_33 delegate33, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_34 delegate34, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_35 delegate35, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_36 delegate36, CFxInputContextReactor.SwigDelegateCFxInputContextReactor_37 delegate37)
static global::System.IntPtr new_CFxString__SWIG_5([MarshalAs(UnmanagedType.LPWStr)]String jarg1)
static int CFxAPI_fdt_retreal(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_entdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void dlg_callback_packetW_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxLicenseInfo_IsActivationCodeValid(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetDockedVisibleLines(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static SWIGStringHelper swigStringHelper
static void CFxVectorizeDevice_InvalidateGeometry(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setSNAPBASE(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double CFxView_focalLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_SaveFile__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr CFxLicenseInfo_GetGde(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_FoundNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_compareA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_removeA(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static void CFxUIAccelerator_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsSpacePressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManager_ProfileRegistryKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetReal(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static void CFxUI_RemoveUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetCorner__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, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static bool CFxUIImageItemCollection_Has(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHitTestInfo_GetMousePosition(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr fdt_VPORT_EXT_INFO_VportMax_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPluginModuleInternal(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_tablet_rec_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxPreferencesMLeaderSettings_GetLeaderVertex(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_26(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3)
static void CFxMainFrame_ClearCommandWindow(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesLayerStateManager_SetViewPortOverrides(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxProfileStorage(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_IntToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_fdt_unregisterA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxMainFrame_CFxCommandWindowInfo_visibleSecond_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setdbmodhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static void TRACKER_VECTOR_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileSaved(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void TRACKER_VECTOR_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxEditorReactor_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxSystemServices_AddOutputDevice(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentIterator_Step(HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_hide_progress_bar(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxAPI_fdt_strmallocA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void FDT_FLX_INFOW_szBem1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxStringArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_palhideW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxDatabase_setHPDOUBLE(HandleRef jarg1, Int16 jarg2)
static int CFxUserIO_GetDirection__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static int CFxAPI_fdt_graphscr(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDisplayDevice_GetSlideImage(global::System.Runtime.InteropServices.HandleRef jarg1, CFxView jarg2)
static void KeywordVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxViewDrawContext_EndUpdate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxTrackerContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_24(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, int jarg3, int jarg4, ushort jarg5)
static void CFxSystemServices_DisableUI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5)
static void CFxUIItemDefinition_SetObsolete(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetLargeRibbonBigButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule()
static String CFxDatabase_getHPNAME(HandleRef jarg1)
static void CFxStatusBar_MeterProgress(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxString_makeLower(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewDrawInfo_GetPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_cvunitA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, string jarg3, string jarg4, out double jarg5)
static int CFxOtrackPoint_GetOtrackType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_GetUserIO__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVectorizeDevice_GetPlotArea__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt16 CFxPreferencesHatch_GetDefaultGradientColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_ssnamexW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4)
static global::System.IntPtr CFxInputPointManager_GetPrimaryPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_genout_enamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyRibbonSystemMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 CFxDatabase_getERRNO(HandleRef jarg1)
static int CFxAPI_fdt_exit_dragmode(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDisplay_GetLayoutShowPlotSetup(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_registry_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static bool CFxView_IsOverall(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesDynamicInputs(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileChangedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseManager_IsProductActivated__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetColorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxPreferencesDisplay_SetDynamicHighlightColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void P_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetStartUpGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_SetSystemCodepage(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemFiles_SetVSTAHostId(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_addimage2libW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, ushort jarg5)
static int CFxPreferencesCloudStorage_GetXrefUploadPopup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPrintSpoolExecutable(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetPoint__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, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static int CFxAPI_fdt_entlast(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxUIGroup_GetTabletCtrlClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14)
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxFileData_GetDwgVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsFieldAspectMaintained(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoSSGet__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static ushort CFxAPI_fdt_getimagetypeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static void FileNameRetValArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_delimagefromlibW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static void CFxInputContextReactor_BeginGetScaleFactorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_curve_getarea(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
static global::System.IntPtr CFxUIGroup_GetMouseShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxCommandContext_GetInitdia(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptKeyword__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIButtonsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseInfo_AllowsDongleActivation(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxSystemServices_CFxExpressionParserData_m_bIgnoreMacroSymbols_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SetIgnoreAll(bool jarg1)
static bool CFxViewDrawInfo_GetQTEXTMODE(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getorientA(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, string jarg3, out double jarg4)
static bool CFxHitTestInfo_IsContinuousEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_compare__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetSelectionSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxEdInputTracker()
static int CFxAPI_fdt_all_toolbars_visibleW(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxDatabase_getDIASTAT(HandleRef jarg1)
static bool CFxGeomUtils_GetSegmentAtPoint(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out bool jarg5, out bool jarg6)
static void CFxPluginModuleInternal_addGUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetNoteEditor__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxHitTestInfo_DisableSystemCursorGraphics(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_GetActiveCommandName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginNentselSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxModule_isASwigExplicitCFxModule(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIToolbarItem_GetFlyoutID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetUseStandardScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxEdInputTracker_addDrawables(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_dlg_DialogNewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxSystemServices_CFxExpressionParserData_m_bUseHoverSelection_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxAppInfo_SetLoadReasons(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_EnableGripsCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void fdt_resbufW_restype_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static IntPtr CFxLayoutManagerReactor_queryXSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_tblsearchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static global::System.IntPtr CFxUIGroup_GetMouseButtons(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreviewBitmap_DrawToHDC(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
static global::System.IntPtr new_CFxUIReactor()
static void CFxViewDrawInfo_InitializePalette(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray)]UInt32[] jarg2)
static int CFxAPI_fdt_getconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, uint jarg6)
static bool CFxUIDoubleClickAction_IsRuntime(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxLicenseInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmod_type(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_dictionary_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static bool CFxPreferencesLayerPallete_GetIsolateLayerBehavior(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_fdt_tablet_recA(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxGeometryClipper_SetClipBoundary__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_left(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUI_GetVisibleRibbonHelpMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_tablet_recA_TabRow_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insertW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, char jarg3)
static void CFxProfile_LoadAliases(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillResetSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTracker_OnMainSelectionSetChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ClassPtrArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxStringArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr CFxDocument_GetActiveFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesMLeaderSettings_SetLeaderStartAngle(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxStringArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesOutput_GetSaveContinuousPlotLog(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxHitTestInfo_GetGesturePanOffset(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setDGNFRAME(HandleRef jarg1, sbyte jarg2)
static void delete_OdStaticRxObject_OdDbSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxStringArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_retint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdti_notify(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxString_insertA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static void CFxSelectionSet_AddReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_nentselA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static bool CFxUIToolbarItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesAutocomplete_GetCommandWithAlias(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_ReadDouble__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_getinputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, uint jarg3)
static void CFxProfileManagerReactor_profileLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dcl_vector_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
static IntPtr CFxModule_queryXSwigExplicitCFxModule(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static short FDT_GENOUT_LINE_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxStringArray_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static uint CFxSelectionSet_GetTotalSubents(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxOrthoPoint_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetOrient__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxPreferencesDisplay_SetSelectedEntityColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static void CFxPreferencesEnterpoint_SetRemainOnScreen(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxProfileManager_ProfileGetFixed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesTablet_SetSectTwoRight(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_RemoveReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxInputContextReactor_EndQuiescentState(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr CFxUITabletMenusCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxPreferencesContextualHelp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetUsePlotTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemFiles_GetSmartNewTemplateFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setHPNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxSelectionSetReactor_OnObjectModified(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxRecentFiles_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxHistoryStack_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxHistoryStack.SwigDelegateCFxHistoryStack_0 delegate0, CFxHistoryStack.SwigDelegateCFxHistoryStack_1 delegate1, CFxHistoryStack.SwigDelegateCFxHistoryStack_2 delegate2, CFxHistoryStack.SwigDelegateCFxHistoryStack_3 delegate3, CFxHistoryStack.SwigDelegateCFxHistoryStack_4 delegate4)
static uint FileNameRetValArray_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectEighthRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListSetColumnWidthA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static bool CFxPreferencesSystem_GetBeepOnError(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_systimeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3, out int jarg4, out int jarg5, out int jarg6, out int jarg7, out int jarg8, out int jarg9, out int jarg10)
static global::System.IntPtr CFxAPI_fdt_registry_descendentsW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, short jarg3)
static global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static short FDT_GENOUT_POINT_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesPlotSettings_GetCustomPrintScaleNumerator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxViewDrawInfo_GetCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxKeywordArray_local__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static IntPtr CFxInputPointManager_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static int CFxAPI_fdt_grreadW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxPreferencesSystem_SetTopLevelMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesAutocomplete_GetMidstring(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommandContext_GetFxDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_ShowCommandWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxView_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesAutocomplete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_GetRealExtents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxSelectionSet_SubentGetLength(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr new_fdt_binaryW()
static bool CFxPreferencesOutput_GetPlotStampOnSingleLine(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getininameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxDocumentManager_CloseDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_dictionary_nextA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static global::System.IntPtr CFxUIDockableWindowCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxUIToolbarItem_SetInMatrixToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_setconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxEntityData_CreateIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetFieldWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setCTAB(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetCrosshairXAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getstringW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, uint jarg5)
static int CFxAPI_fdt_setvarA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxString_vformat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxSelectionSet_IsHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSet_SetHighlightEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIReactor_OnItemDefinitionAboutToDestroySwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUIDockableWindow_GetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewportSnapShot_GetPixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxUIToolbarItemCollection_GetCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_RemoveInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_tablet_rec_TabColumn_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxInputPointManager_GetHitTestInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_palshowW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr new_TRACKER_VECTOR__SWIG_0()
static void TRACKER_VECTOR_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxIteratorEntityData_step(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPrompt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxModule_event___SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_tblrenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxAPI_fdt_ssdel(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static global::System.IntPtr KeywordPair_second_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHitTestInfo_IsInsideCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_AdvancedAttEdit(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_getendpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static void CFxEdInputTracker_EnablePreview(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesSystem_SetCheckBackBufferIssues(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxAPI_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static String CFxDatabase_getLOGINNAME(HandleRef jarg1)
static void CFxViewDrawContext_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxInputContextReactor_BeginGetRealSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxPluginModuleInternal_nextGUID__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIMenuItem_GetChildren(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_add_listA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxVSTA_ExecuteMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUnitsFormatter_StringToOrient__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_directory_filesA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxHitTestInfo_GetGesturePinchScaleFactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetTextEditor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_from_utf8_str__SWIG_0(string jarg1)
static void FDT_FLX_INFOA_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutCreateViewport(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void fdt_tablet_recA_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxLicenseInfo_IsTrialExpired(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetPointFDT__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetxA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int fdt_VPORT_EXT_INFO_WinHeight_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesSystem_GetPrintDialogQuickPreview(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxModule_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxPreferencesDisplay_SetDisplayLayoutTabs(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxPreferencesDisplay_GetUseDashedEntitySelection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSelectionSetReactor_OnObjectModifiedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_ssnamexA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4)
static int CFxAPI_dcl_get_attr_stringA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4, int jarg5)
static void delete_CFxPreferencesLayerStateManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxMainFrame_ShowTextWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxHostAppServices_LoadVariables(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxAppInfo_GetLocalCommandNames(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SIZE_T_VECTOR_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static string FDT_FLX_INFO_szDraftsman_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rlong_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxMainFrame_GetInput(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt16 CFxDocument_GetFxNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIAccelerator_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUserIO_SetPreviousSelectionSet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_AllowHardwareTransformations(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxViewDrawInfo_InitializeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void VSTA_CONTEXT_desktop_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxCommandContext_IsScriptActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setSNAPANG(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_tblrenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static bool CFxView_IsPreviousVectorizationAborted(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_28(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3, int jarg4, ushort jarg5)
static global::System.IntPtr CFxUI_GetVisibleRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_GetDocumentByFxNumber(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2)
static bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxDatabase_setPUCSYDIR(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxFileData_SetPrettyFilename(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setviewW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxUI_ResetEvents(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesOpenSave_GetTryRecovery(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static int CFxUserIO_DoSSGet__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxAPI_fdt_invoke_lispA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_CFxSelectionSet_MergeOptions()
static void CFxUIReactor_OnToolbarItemCreated(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int16 CFxDatabase_getCMDECHO(HandleRef jarg1)
static int CFxAPI_fdt_setpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxOsnapPoint_IsEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void CFxUIMenuItem_SetToSeparator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesLayerPallete_SetIsoLayerBehaviorViewPort(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr new_FileNameRetValArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_u_valW_rint_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static UInt32 CFxOsnapPoint_GetCenterColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxInputPointManager_IsGripsCalculationEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_findA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, int jarg3)
static bool CFxPreferencesOutput_GetPlotStampDisplayDate(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetDefYLocation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetWBLOCKPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void TRACKER_VECTOR_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxLayoutManagerReactor_layoutToBeActivated(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ArgonAssertFuncW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr new_FileNameRetValArray__SWIG_2(int jarg1)
static UInt32 CFxViewDrawInfo_GetColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static global::System.IntPtr CFxUIGroup_GetMouseCtrlShiftClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_GetPoints(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_handentA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3)
static IntPtr CFxBagFiler_queryX(HandleRef jarg1, HandleRef jarg2)
static int CFxUnitsFormatter_StringToOrient__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5, double jarg6)
static int CFxAPI_fdt_setenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static bool CFxUITempOverrideKeysCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxPreferencesOpenSave_GetForceOpenWithCtbPrintMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectByCrossingPolygon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_invoke_lispW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxFileData_SetDwgVersion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxProfileManager_ProfileSetCurrent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxMainFrame_CFxCommandWindowInfo()
static global::System.IntPtr CFxString_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_regappW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxInputPointManager_CalculateWCSToSnapMatrix__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxString_deleteChars__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool CFxDatabase_setTDUSRTIMER(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAppInfo_GetAppName(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentManagerReactor_queryXSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxPreferencesAutoSplitDimensions_GetAutoSplitDimensionsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxViewReactor()
static int CFxViewDrawInfo_GetPDFFRAME(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetA_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsLeftButtonUp(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxUIDockableWindow(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxLayoutManagerReactor_layoutToBeActivatedSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_tblmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesUser(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bLispResultWanted_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesOutput_SetPlotStampDisplayDrawingName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUITempOverrideKey_SetKeyUpMacro(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxGeomUtils_GetTransform__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIItemDefinition_GetDarkIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxProfile_GetSystemFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr FDT_FLX_INFOW_szDrName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVSTA_SetCurrentMacro(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_CLASS_VECTOR__SWIG_0()
static global::System.IntPtr CFxString_from_ansi_str__SWIG_0(string jarg1)
static Int32 CFxPreferencesPlotSettings_GetShadePlotResLevel(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_relrbA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxString_AsString(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxHistoryObject_IsArg(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPlotStampFontName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string CFxString_ansi_str(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_KeywordVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUITabletMenu_SetItem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxHostAppServices_getMappedFont__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_BeginGetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUIToolbarItemCollection_InsertAfter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemServices_GetInitialDirPath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxUIToolbarItem_SetDockRow(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxEdInputTracker_IsPreviewEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSystemServices_FileDialog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, out int jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, int jarg12, global::System.Runtime.InteropServices.HandleRef jarg13)
static void CFxDatabase_setPREVCMD(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static int CFxUserIO_MessageBox(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, uint jarg5)
static global::System.IntPtr CFxGeometryClipper_GetClipper(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesDesignResources_GetProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdStaticRxObject_OdDbSelectionSet_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr CFxSystemFiles_GetDriversPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetFxAPI(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxUIReactor.SwigDelegateCFxUIReactor_0 delegate0, CFxUIReactor.SwigDelegateCFxUIReactor_1 delegate1, CFxUIReactor.SwigDelegateCFxUIReactor_2 delegate2, CFxUIReactor.SwigDelegateCFxUIReactor_3 delegate3, CFxUIReactor.SwigDelegateCFxUIReactor_4 delegate4, CFxUIReactor.SwigDelegateCFxUIReactor_5 delegate5, CFxUIReactor.SwigDelegateCFxUIReactor_6 delegate6, CFxUIReactor.SwigDelegateCFxUIReactor_7 delegate7, CFxUIReactor.SwigDelegateCFxUIReactor_8 delegate8, CFxUIReactor.SwigDelegateCFxUIReactor_9 delegate9, CFxUIReactor.SwigDelegateCFxUIReactor_10 delegate10)
static global::System.IntPtr fdt_tablet_recW_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bDisableHistory_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxStringArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxGeometryClipper_SetTransform(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr ACTIVE_DOCUMENT()
static global::System.IntPtr CFxUI_CreateWorkspaceIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRecentlyErased(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_MLeaderSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5)
static void delete_CFxHistoryCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetShadePlotResLevel(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static double CFxView_visibleHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVSTA_GenerateNewMacroName(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_insertA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, char jarg3)
static void CFxSystemFiles_SetProjectFilePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxPreferencesOutput_SetPlotStampDisplayPlotDeviceName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUserIO_GetString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void delete_CFxDatabase(HandleRef jarg1)
static void FDT_GENOUT_POINT_Pnt_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static bool CFxPreferencesOutput_GetUseLastPlotSettings(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginEntsel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetUserInput__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetGeomUtils(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_beginSaveExSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static int CFxAPI_fdt_getkwordW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, uint jarg4)
static bool CFxUIToolbarItemCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetCustomDictionary(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_AREA_nPnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static global::System.IntPtr CFxSystemServices_GetOEMVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetDockedVisibleLines(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_30(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, int jarg3)
static bool CFxLicenseInfo_IsUnregisteredVersion(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_TileDimensionsW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out short jarg4, out short jarg5)
static global::System.IntPtr CFxSystemServices_GetFxNetworkAccessManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getLASTPOINT(HandleRef jarg1)
static void CFxStringArray_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double CFxViewDrawInfo_GetPixelHeight(global::System.Runtime.InteropServices.HandleRef jarg1)
static void P_FILL_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSelectionSet_MergeResult_m_Found_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxPreferencesOutput_GetPlotStampDisplayPaperSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4)
static global::System.IntPtr CFxSystemFiles_GetWorkspacePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr P_FILL_POLY_PolyCounts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxStatusBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_tblnextW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxPreferencesOpenSave_SetFullCRCValidation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxRangeInt_m_Max_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_CFxDocumentIterator(HandleRef jarg1)
static bool CFxPreferencesDesignResources_GetTreeVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_FDT_FLX_INFO(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_createObject()
static void CFxPreferencesDisplay_SetSmallRibbonSmallButtonIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static Int16 CFxDatabase_getWRITESTAT(HandleRef jarg1)
static void CFxUIImageItem_SetColumns(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static IntPtr CFxSystemServices_SendStringToExecute__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, HandleRef jarg4)
static bool CFxSelectionSet_SubentAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxString_equalNoCase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void dcl_callback_packetA_tile_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_nentselpexA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, uint jarg8, out int jarg9)
static global::System.IntPtr CFxDatabase_GetUnitsFormatter(HandleRef jarg1)
static void ClassPtrArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxHostAppServices_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr FDT_FLX_INFOA_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static short fdt_binaryW_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxnamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxSystemFiles_GetPrinterStyleSheetPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxDisplayDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_flxclosevport(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_osnapW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxAPI_fdt_distofA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, out double jarg4)
static IntPtr dcl_callback_packetA_client_data_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUITabletMenu_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static IntPtr CFxGeometryClipper_queryX(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxUIAcceleratorsCollection_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_CFxPreferencesTablet(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDockableWindow_GetAllowDocking(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxVSTA_IsVSTAStarted(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNames__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, out bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, IntPtr jarg7, int jarg8, global::System.Runtime.InteropServices.HandleRef jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, global::System.Runtime.InteropServices.HandleRef jarg11, global::System.Runtime.InteropServices.HandleRef jarg12, out int jarg13, global::System.Runtime.InteropServices.HandleRef jarg14, int jarg15)
static void CFxEditorReactor_mainFrameDestroyedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void TRACKER_VECTOR_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetRibbonCustomizeButtonVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2)
static void CFxSelectionSetReactor_OnSelectionStartedSwigExplicitCFxSelectionSetReactor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetTabletClicks(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_FILL_AREA_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxHistoryItem(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bIgnoreLISP_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxHistoryObjectArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseInfo_IsMFCUIEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3, int jarg4)
static double CFxRangeDouble_m_Min_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetDrawingsPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_flxnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_getdistW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, out double jarg4)
static global::System.IntPtr CFxInputPointManager_GetPrimaryClickPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDirection__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxPreferencesOpenSave_SetUseOriginalFormat(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_ispunct(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUserIO_GetUnitsFormatter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxDatabase_setHPANG(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_file_copyW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, out int jarg5)
static bool CFxUIDoubleClickActionsCollection_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_entselW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static global::System.IntPtr CFxView_WorldToView(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_dlg_callback_packetA()
static IntPtr CFxLayoutManagerReactor_desc()
static int CFxCurvePE_getGeneralCurve__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, ref IntPtr jarg3, bool jarg4)
static global::System.IntPtr CFxUIToolbarItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_PRINTREC(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_resbufW_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxModule_CFxEventData__SWIG_2()
static global::System.IntPtr CFxVectorizeDevice_GetPalette(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_loaded_appsW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxSystemServices_IsOEMModuleAuthorised(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemServices_DisableUI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4)
static int CFxAPI_fdt_remove_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxDocumentManagerReactor_DocumentPreOpenSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static void delete_CFxApplications(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_47(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxPreferences_CloudStorage(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUIDoubleClickActionsCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetTextFontStyle(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr new_dcl_callback_packetA()
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampLogFilePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getCVPORT(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetActiveViewportId__SWIG_1(HandleRef jarg1)
static char CFxString_getAtA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxInputPointManager_GetElevatedUcsPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static UInt32 CFxPreferencesMatrixToolbar_GetPreferredColumnCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxDocumentIterator_cast(HandleRef jarg1)
static bool CFxHitTestInfo_IsInsideDragDropSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getBINDTYPE(HandleRef jarg1)
static global::System.IntPtr CFxPreferences_PackAndGo(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPluginModuleInternal_valid(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetPostScriptPrologFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_RemoveViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void WORLDPOINT_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void delete_CFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_CheckRegenAbortSwigExplicitCFxTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxView_PointToWCS__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr FDT_FLX_INFO_Save_Date_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferences_LayerPallete(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEdInputTracker_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetDouble__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4)
static global::System.IntPtr new_CFxString__SWIG_2([MarshalAs(UnmanagedType.LPWStr)]String jarg1, uint jarg2)
static global::System.IntPtr CFxUI_CreateAccelerator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxSystemFiles_SetDefaultInternetURL(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxLayoutManagerReactor_createObject()
static global::System.IntPtr CFxViewDrawInfo_GetAdjustedViewportMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesAdvancedAttEdit_GetHideProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_vformat__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxString_findW__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxUIImageItem_GetImageLibFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, int jarg6, int jarg7)
static void CFxUIDockableWindow_SetAllowDocking(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int16 CFxInputPointManager_GetCurrentOSMODE(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesPlotSettings_GetShadePlotCustomDPI(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxOrthoPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsLicenseHealthy(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_createObject()
static int CFxAPI_fdt_invokeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxMainFrame_ShowPropertiesWindow(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static void CFxPreferencesDisplay_SetPropertiesWindowDisplayMode(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void FDT_FLX_INFOA_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_capture_grread(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void CFxSelectionSetReactor_OnSelectionEndedSwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxProfileManagerReactor_profileWillBeLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxVectorizeDevice_SetPlotArea(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsRightButtonTrippleClick(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getELEVATION(HandleRef jarg1)
static void delete_IHLData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_GetActiveFxView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_get_tile_keyA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4)
static int CFxAPI_fdt_getenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, int jarg5, [MarshalAs(UnmanagedType.LPWStr)]string jarg6)
static global::System.IntPtr dcl_resbuf_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_DialogUnload(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesOpenSave_GetFullFilePathInTitleBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grreadA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static void CFxDatabase_setCPLOTSTYLE(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxEditorReactor_gripEditCustomOpSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4)
static global::System.IntPtr new_P_POINT()
static void delete_VSTA_CONTEXT(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetPixelWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static string CFxLayoutManagerReactor_getRealClassName(IntPtr jarg1)
static int CFxAPI_fdt_tblsetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static bool CFxPreferencesDisplay_GetDisplayScreenMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static global::System.IntPtr CFxBagFiler_getResBuf(HandleRef jarg1)
static void CFxPreferencesDesignResources_SetPreviewVisibilty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSystemServices_GetFxProfileManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetFileNameStatic_Obsolete__SWIG_1(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9, global::System.Runtime.InteropServices.HandleRef jarg10, int jarg11)
static bool CFxDocument_IsInsideEntsel(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_curve_isperiodic(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static void SIZE_T_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxInputContextReactorExtended_BeginModifier(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIGroup_SetMiddleButtonDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetInitialActiveAreaByEYEContour(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static int CFxAPI_fdt_copyresbufW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxHitTestInfo_SkipNextRightMouseButtonUpEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxEntityData_ContainsSubent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxPreferencesDisplay_GetHistoryLines(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetDist__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9, global::System.Runtime.InteropServices.HandleRef jarg10)
static void CFxPreferencesSystem_SetScaleListRstDlgUseSystem(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_putsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_GetVisibleRibbonTabCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static string dcl_u_val_rstring_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxLayoutManagerReactor_cast(HandleRef jarg1)
static void CFxIteratorEntityData_start(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxViewReactor_OnWorldToEyeChangedSwigExplicitCFxViewReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static String CFxDatabase_getPREVCMD(HandleRef jarg1)
static int CFxAPI_fdt_file_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxUIImageItem_GetColumns(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_SetRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3)
static double CFxPreferencesDisplay_GetEntitySelectionHighlightOpacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUserIO_Initget__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxDatabase_setBACKZ(HandleRef jarg1, double jarg2)
static void delete_CFxSelectionData_CFxVertexData(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxCurvePE_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDocument_IsInsideNEntsel(global::System.Runtime.InteropServices.HandleRef jarg1)
static string FDT_FLX_INFOA_szBem1_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_AddDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcornerW(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static void CFxUI_DestroyRuntimeMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_dcl_binary()
static int CFxAPI_fdt_distofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, out double jarg4)
static void CFxInputPointManager_SetDraggingPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_PointToString__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5, int jarg6, char jarg7)
static void fdt_u_valA_rlname_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_FDT_GENOUT_AREA()
static int CFxLicenseInfo_GetRoamingProductMaxCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyImageItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUnitsFormatter_PointToString__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr GetFxLicenseManager()
static int CFxAPI_fdt_angtosW(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6)
static global::System.IntPtr CFxDocument_GetFxCommandContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsExtendedApiEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt32 CFxPreferencesDisplay_Get3DSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetAltTabletMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHistoryCommand_Create(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static bool CFxMainFrame_CFxCommandWindowInfo_visibleMain_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_0 delegate0, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_1 delegate1, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_2 delegate2, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_3 delegate3, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_4 delegate4, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_5 delegate5, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_6 delegate6, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_7 delegate7, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_8 delegate8, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_9 delegate9, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_10 delegate10, CFxDeviceReactor.SwigDelegateCFxDeviceReactor_11 delegate11)
static void delete_CFxPreferencesAutoSplitDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxViewportSnapShot_GetVisibleRect(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesDwgStandards_GetIsShowIgnoredIssuesOn(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_resbufW()
static void dcl_callback_packetA_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void delete_CFxUserIO(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getOPENFORMATVERSION(HandleRef jarg1)
static void CFxUIWorkspace_SetDescription(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUserIO_SetPromptExplanation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setLIMCHECK(HandleRef jarg1, bool jarg2)
static bool CFxLicenseInfo_IsLicenseCheckedOut(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRibbonContextualState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesDisplay_SetLayoutDisplayMargins(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint CFxSelectionSet_MergeResult_m_RemovedNotInCurrentSpace_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetPrinterStyleSheetPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxEditorReactor_isASwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setTEXTSIZE(HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxProfile_ResolveAlias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesPlotSettings_SetCanonicalMediaName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxCommandContext_isA(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_file_directory_pW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxUIItemDefinition_SetLightIconInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_DoEntsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6, int jarg7, int jarg8)
static global::System.IntPtr CFxView_PaperSpaceToEye__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampUserFields(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static global::System.IntPtr CFxViewDrawInfo_GetFrozenLayerStubs(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxCommand_HelpSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_RealToString__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4)
static int CFxUnitsFormatter_OrientToString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5, int jarg6)
static Int16 CFxDatabase_getVIEWMODE(HandleRef jarg1)
static void CFxProfileManagerReactor_currentProfileWillBeReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxEditorReactor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxEditorReactor.SwigDelegateCFxEditorReactor_0 delegate0, CFxEditorReactor.SwigDelegateCFxEditorReactor_1 delegate1, CFxEditorReactor.SwigDelegateCFxEditorReactor_2 delegate2, CFxEditorReactor.SwigDelegateCFxEditorReactor_3 delegate3, CFxEditorReactor.SwigDelegateCFxEditorReactor_4 delegate4, CFxEditorReactor.SwigDelegateCFxEditorReactor_5 delegate5, CFxEditorReactor.SwigDelegateCFxEditorReactor_6 delegate6, CFxEditorReactor.SwigDelegateCFxEditorReactor_7 delegate7, CFxEditorReactor.SwigDelegateCFxEditorReactor_8 delegate8, CFxEditorReactor.SwigDelegateCFxEditorReactor_9 delegate9, CFxEditorReactor.SwigDelegateCFxEditorReactor_10 delegate10, CFxEditorReactor.SwigDelegateCFxEditorReactor_11 delegate11, CFxEditorReactor.SwigDelegateCFxEditorReactor_12 delegate12, CFxEditorReactor.SwigDelegateCFxEditorReactor_13 delegate13, CFxEditorReactor.SwigDelegateCFxEditorReactor_14 delegate14, CFxEditorReactor.SwigDelegateCFxEditorReactor_15 delegate15, CFxEditorReactor.SwigDelegateCFxEditorReactor_16 delegate16, CFxEditorReactor.SwigDelegateCFxEditorReactor_17 delegate17, CFxEditorReactor.SwigDelegateCFxEditorReactor_18 delegate18, CFxEditorReactor.SwigDelegateCFxEditorReactor_19 delegate19, CFxEditorReactor.SwigDelegateCFxEditorReactor_20 delegate20, CFxEditorReactor.SwigDelegateCFxEditorReactor_21 delegate21, CFxEditorReactor.SwigDelegateCFxEditorReactor_22 delegate22, CFxEditorReactor.SwigDelegateCFxEditorReactor_23 delegate23, CFxEditorReactor.SwigDelegateCFxEditorReactor_24 delegate24, CFxEditorReactor.SwigDelegateCFxEditorReactor_25 delegate25, CFxEditorReactor.SwigDelegateCFxEditorReactor_26 delegate26, CFxEditorReactor.SwigDelegateCFxEditorReactor_27 delegate27, CFxEditorReactor.SwigDelegateCFxEditorReactor_28 delegate28, CFxEditorReactor.SwigDelegateCFxEditorReactor_29 delegate29, CFxEditorReactor.SwigDelegateCFxEditorReactor_30 delegate30, CFxEditorReactor.SwigDelegateCFxEditorReactor_31 delegate31, CFxEditorReactor.SwigDelegateCFxEditorReactor_32 delegate32, CFxEditorReactor.SwigDelegateCFxEditorReactor_33 delegate33, CFxEditorReactor.SwigDelegateCFxEditorReactor_34 delegate34, CFxEditorReactor.SwigDelegateCFxEditorReactor_35 delegate35, CFxEditorReactor.SwigDelegateCFxEditorReactor_36 delegate36, CFxEditorReactor.SwigDelegateCFxEditorReactor_37 delegate37, CFxEditorReactor.SwigDelegateCFxEditorReactor_38 delegate38, CFxEditorReactor.SwigDelegateCFxEditorReactor_39 delegate39, CFxEditorReactor.SwigDelegateCFxEditorReactor_40 delegate40, CFxEditorReactor.SwigDelegateCFxEditorReactor_41 delegate41, CFxEditorReactor.SwigDelegateCFxEditorReactor_42 delegate42, CFxEditorReactor.SwigDelegateCFxEditorReactor_43 delegate43, CFxEditorReactor.SwigDelegateCFxEditorReactor_44 delegate44, CFxEditorReactor.SwigDelegateCFxEditorReactor_45 delegate45, CFxEditorReactor.SwigDelegateCFxEditorReactor_46 delegate46, CFxEditorReactor.SwigDelegateCFxEditorReactor_47 delegate47, CFxEditorReactor.SwigDelegateCFxEditorReactor_48 delegate48, CFxEditorReactor.SwigDelegateCFxEditorReactor_49 delegate49, CFxEditorReactor.SwigDelegateCFxEditorReactor_50 delegate50, CFxEditorReactor.SwigDelegateCFxEditorReactor_51 delegate51, CFxEditorReactor.SwigDelegateCFxEditorReactor_52 delegate52, CFxEditorReactor.SwigDelegateCFxEditorReactor_53 delegate53, CFxEditorReactor.SwigDelegateCFxEditorReactor_54 delegate54, CFxEditorReactor.SwigDelegateCFxEditorReactor_55 delegate55, CFxEditorReactor.SwigDelegateCFxEditorReactor_56 delegate56, CFxEditorReactor.SwigDelegateCFxEditorReactor_57 delegate57, CFxEditorReactor.SwigDelegateCFxEditorReactor_58 delegate58, CFxEditorReactor.SwigDelegateCFxEditorReactor_59 delegate59, CFxEditorReactor.SwigDelegateCFxEditorReactor_60 delegate60, CFxEditorReactor.SwigDelegateCFxEditorReactor_61 delegate61, CFxEditorReactor.SwigDelegateCFxEditorReactor_62 delegate62, CFxEditorReactor.SwigDelegateCFxEditorReactor_63 delegate63, CFxEditorReactor.SwigDelegateCFxEditorReactor_64 delegate64, CFxEditorReactor.SwigDelegateCFxEditorReactor_65 delegate65, CFxEditorReactor.SwigDelegateCFxEditorReactor_66 delegate66, CFxEditorReactor.SwigDelegateCFxEditorReactor_67 delegate67, CFxEditorReactor.SwigDelegateCFxEditorReactor_68 delegate68, CFxEditorReactor.SwigDelegateCFxEditorReactor_69 delegate69, CFxEditorReactor.SwigDelegateCFxEditorReactor_70 delegate70, CFxEditorReactor.SwigDelegateCFxEditorReactor_71 delegate71, CFxEditorReactor.SwigDelegateCFxEditorReactor_72 delegate72, CFxEditorReactor.SwigDelegateCFxEditorReactor_73 delegate73, CFxEditorReactor.SwigDelegateCFxEditorReactor_74 delegate74, CFxEditorReactor.SwigDelegateCFxEditorReactor_75 delegate75, CFxEditorReactor.SwigDelegateCFxEditorReactor_76 delegate76, CFxEditorReactor.SwigDelegateCFxEditorReactor_77 delegate77, CFxEditorReactor.SwigDelegateCFxEditorReactor_78 delegate78, CFxEditorReactor.SwigDelegateCFxEditorReactor_79 delegate79, CFxEditorReactor.SwigDelegateCFxEditorReactor_80 delegate80, CFxEditorReactor.SwigDelegateCFxEditorReactor_81 delegate81, CFxEditorReactor.SwigDelegateCFxEditorReactor_82 delegate82, CFxEditorReactor.SwigDelegateCFxEditorReactor_83 delegate83, CFxEditorReactor.SwigDelegateCFxEditorReactor_84 delegate84, CFxEditorReactor.SwigDelegateCFxEditorReactor_85 delegate85, CFxEditorReactor.SwigDelegateCFxEditorReactor_86 delegate86, CFxEditorReactor.SwigDelegateCFxEditorReactor_87 delegate87, CFxEditorReactor.SwigDelegateCFxEditorReactor_88 delegate88, CFxEditorReactor.SwigDelegateCFxEditorReactor_89 delegate89, CFxEditorReactor.SwigDelegateCFxEditorReactor_90 delegate90, CFxEditorReactor.SwigDelegateCFxEditorReactor_91 delegate91)
static global::System.IntPtr CFxSystemFiles_GetTemplateDWGPath(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_promptW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static bool CFxSystemServices_userBreak(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDesignResources_SetFavorites(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxViewDrawContext_GetViewDrawInfo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_dialog_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr P_FILL_POLY_Pnts_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDocumentManager_GetDocumentByFileName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTracker_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxTracker.SwigDelegateCFxTracker_0 delegate0, CFxTracker.SwigDelegateCFxTracker_1 delegate1, CFxTracker.SwigDelegateCFxTracker_2 delegate2, CFxTracker.SwigDelegateCFxTracker_3 delegate3, CFxTracker.SwigDelegateCFxTracker_4 delegate4, CFxTracker.SwigDelegateCFxTracker_5 delegate5, CFxTracker.SwigDelegateCFxTracker_6 delegate6, CFxTracker.SwigDelegateCFxTracker_7 delegate7)
static global::System.IntPtr CFxInputPointManager_GetRubberLinePoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxCurvePE__getFilletPoints__SWIG_1(HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_getprofileslistA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static bool CFxLicenseManager_IsProductActivated__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDatabase_setUCSICON(HandleRef jarg1, Int16 jarg2)
static int CFxString_deleteChars__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxString_replaceW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2, char jarg3)
static global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_retnil(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentBecameCurrentSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxCommand_GetBuiltInGroupName()
static global::System.IntPtr CFxSystemServices_FindFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, HandleRef jarg4)
static void CFxInputContextReactor_BeginGetKeywordSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxSelectionSet_MergeResult()
static IntPtr CFxSelectionSet_GetFxDatabase(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemFiles_GetAutosavePath(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxView_visibleWidth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setLOGINNAME(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void CFxPreferencesDynamicInputs_SetTooltipsSize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int IHLData_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDocumentManagerReactor_DocumentToBeActivatedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIToolbarItem_SetDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void dlg_callback_packetW_key_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr dcl_u_val_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIWorkspace_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxDatabase_IsModelLayoutActive(HandleRef jarg1)
static void CFxInputContextReactor_EndGetFileName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void CFxSelectionSet_AddObjectFilter(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static void CFxPreferencesSystem_SetAppCastShowDialog(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxUIToolbarItem_SetOnByDefault(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetLargeToolbarsIconSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void CFxSystemFiles_SetWorkspacePath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void P_FILL_POLY_PolyCounts_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static void CFxUIMenuItemCollection_Clear(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUIWorkspace_GetLocalizedName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_AddOtrackBasePoint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void delete_CFxDatabaseHistory(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_nentselpA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxDocumentManagerReactor_DocumentCreateStartedSwigExplicitCFxDocumentManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesOLEEditor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxSystemFiles_SetCustomIconPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxLicenseInfo_GetError(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static void CFxPreferencesPlotSettings_SetCurrentStyleSheet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUITabletMenu_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_formatA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxString_compareNoCaseA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxPreferencesSystem_SetUsePerformanceMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxAPI_fdt_tblsearchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void FDT_FLX_INFO_First_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_AddUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxViewportSnapShot_GetWorldToEyeMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsPrerelease(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxViewDrawInfo_GetBackClip(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxView_PointToSCS__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxVectorizeDevice_GetFxViewByCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1, Int16 jarg2)
static String CFxDatabase_getUSERS2(HandleRef jarg1)
static void CFxDatabase_setUNDOCTL(HandleRef jarg1, Int16 jarg2)
static int CFxUserIO_GetDouble__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, out double jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxUIReactor_OnInterfaceAboutToReload(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDrafting_GetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetKeyword__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, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxPreferencesDisplay_SetDisplayPaletteShowDelay(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxProfileManagerReactor_currentProfileWillChange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_TRACKER_VECTOR(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_delselecthook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_CFxTrace__SWIG_1([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2)
static bool CFxDatabase_getLIMCHECK(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesSystem_GetHelpFileName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_ConvertToW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxHitTestInfo_GetKeyText(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_trimRight__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static Int32 CFxCommand_flags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_selectionSetDestroyedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxInputPointManager_GetOtrackPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_SplitW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr fdt_resbufA_rbnext_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3)
static string FDT_FLX_INFOA_szProjName_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonRowElementItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUITempOverrideKey_SetKeySequence(HandleRef jarg1, HandleRef jarg2)
static void WORLDPOINT_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetxW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_CFxPreferencesLayerPallete(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIImageItem_GetUID(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesSystem_GetLispDebugPort(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_u_val_rstring_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static IntPtr CFxDatabaseReactor_createObject()
static global::System.IntPtr CFxUITempOverrideKey_GetKeyUpMacro(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grdraw(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, int jarg4, int jarg5)
static bool CFxGeomUtils_GetEdgesFromFace(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxDocumentIterator_SWIGUpcast(global::System.IntPtr jarg1)
static bool CFxView_IsZoomMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDrafting_SetDynaSnapMarkerSize(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static global::System.IntPtr CFxSystemFiles_GetTextEditor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxIteratorEntityData_getObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEdInputTracker_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_0 delegate0, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_1 delegate1, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_2 delegate2, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_3 delegate3, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_4 delegate4, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_5 delegate5, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_6 delegate6, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_7 delegate7, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_8 delegate8, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_9 delegate9, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_10 delegate10, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_11 delegate11, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_12 delegate12, CFxEdInputTracker.SwigDelegateCFxEdInputTracker_13 delegate13)
static global::System.IntPtr new_CFxString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesHeadsUpDisplay_GetHeadsUpDisplayEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_FDT_FLX_INFOW()
static int CFxAPI_fdt_xunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_grtextW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3, out int jarg4)
static bool CFxHitTestInfo_IsInsideSelect(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_FLX_INFOW_szProjName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_DoNentsel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, int jarg9, int jarg10)
static void CFxUI_UpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_ListSetColumnWidthW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static global::System.IntPtr CFxSelectionSet_GetId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_dlg_DialogLoadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static void CFxEditorReactor_mainFrameCreatedSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxVectorizeDevice_RemoveDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetRecentPrinterName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint SIZE_T_VECTOR_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static global::System.IntPtr CFxPreferences_DimensionMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_getWorldToEyeTransform(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint SIZE_T_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxString_format__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static IntPtr CFxMainFrame_GetCommandLineWindowHandle(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr PRINT_EXT_INFO_LowLeCorn_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dlg_TileActionW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool CFxInputPointManager_CalculateWCSToSnapMatrix__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, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxSystemFiles_GetEnterpriseMenuFile(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxDatabase_getHPDOUBLE(HandleRef jarg1)
static void CFxPreferencesDisplay_SetPaletteIcons(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxDatabase_setVIEWTWIST(HandleRef jarg1, double jarg2)
static IntPtr CFxSelectionSetReactor_isASwigExplicitCFxSelectionSetReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesAutocomplete_GetAlias(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_set3dview(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg6, double jarg7)
static global::System.IntPtr CFxSystemServices_GetHostAppServices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dlg_callback_packetA_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void dlg_callback_packetW_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_dcl_unload_dialog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_islower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxVectorizeDevice_HitTest(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_curve_getfirstderiv(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxUnitsFormatter_ResBufToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, HandleRef jarg3)
static void CFxVectorizeDevice_AdjustBeforeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static IntPtr CFxInputContextReactor_desc()
static int CFxPreferencesDynamicInputs_GetTooltipsTransparency(global::System.Runtime.InteropServices.HandleRef jarg1)
static UInt16 CFxPreferencesPackAndGo_GetSaveFormat(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_genout(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, short jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxPreferencesSystem_SetLoadMFCUI(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesPackAndGo_SetPurgeDatabase(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxEdInputTracker_setValueFinal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxOtrackPoint_GetOtrackBasePointCrossColor()
static void FDT_FLX_INFOW_szDrNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxEditorReactor_beginModalStateSwigExplicitCFxEditorReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_CFxHistoryObjectArray__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_GetNoteEditor__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxRangeInt_m_Min_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_tblmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxViewDrawInfo_SetEyeToOutput(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint SIZE_T_VECTOR_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxUserIO_GetString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static int CFxUITabletMenu_GetRowsNumber(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setviewA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void CFxDocumentManagerReactor_DocumentPreOpen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static bool CFxView_IsRectangular(global::System.Runtime.InteropServices.HandleRef jarg1)
static void KeywordVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static IntPtr CFxBagFiler_desc()
static int CFxAPI_dcl_new_positioned_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, IntPtr jarg4, int jarg5, int jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static bool CFxSelectionSet_SubentRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxHitTestInfo_GetGesturePinchCenterPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxVectorizeDevice_cast(HandleRef jarg1)
static global::System.IntPtr CFxDatabase_getVSMIN(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getUCSNAME(HandleRef jarg1)
static int CFxAPI_dcl_start_listA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4, int jarg5)
static global::System.IntPtr CFxHostAppServices_getDsName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUserIO_GetPromptPoint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxString_findOneOf__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxProfileManagerReactor_currentProfileLoadedSwigExplicitCFxProfileManagerReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxTracker_DrawTracker(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_P_IMAGE(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_u_valA_rlname_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_InAppleSandbox(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDeviceReactor_UpdateStartedSwigExplicitCFxDeviceReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxDatabase_setPSTYLEMODE(HandleRef jarg1, bool jarg2)
static void FDT_FLX_INFO_szBem2_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool CFxPreferencesOLEEditor_GetInPlaceEditorEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entgetxW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static bool CFxUIImageItemCollection_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static Int32 CFxCommand_flagsSwigExplicitCFxCommand(global::System.Runtime.InteropServices.HandleRef jarg1)
static ushort CFxDocumentManager_GetDocumentCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIItemDefinition_SetCommand(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxDatabase_setVSMIN(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemFiles_SetLinetypesPath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static UInt32 CFxPreferencesDisplay_GetCrosshairYAxisColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void FDT_GENOUT_AREA_Pnts_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsKeyboardPressEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_entmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxLayoutManagerReactor_isASwigExplicitCFxLayoutManagerReactor(HandleRef jarg1)
static double CFxView_Elevation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_EnableSnapCalculation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSelectionSet_SelectByFence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_toolbarstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static int CFxMainFrame_CFxCommandWindowInfo_linesCountMain_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxDatabase_getPERIMETER(HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_Removed_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxSelectionData_GetMethod(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_GetPoint3D__SWIG_1([In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxSystemServices_CFxExpressionParserData_m_bUsePickFirst_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_grreadA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static double CFxPreferencesMLeaderSettings_GetLeaderLandingLineLength(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getcolorindex(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, int jarg4, out int jarg5)
static int CFxAPI_dlg_ImageSlideA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static global::System.IntPtr CFxCurvePE_cast(HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static Int32 CFxPreferencesPlotSettings_GetPlotType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_reason_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static void delete_FDT_FLX_INFOA(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxFileData_IsReadOnly(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUIWorkspace_GetDescription(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PRINT_EXT_INFO_UppRiCorn_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=2)]double[] jarg2)
static int CFxAPI_fdt_file_directory_pA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void CFxGeomUtils_SelectSubentsByPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool CFxDatabase_getPERSPECTIVE(HandleRef jarg1)
static int CFxAPI_fdt_curve_getendparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
static short FDT_GENOUT_AREA_nColor_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesAutocomplete_SetAutoCorrect(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxPreferencesDisplay_SetTextWinBackgrndColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static int CFxAPI_fdt_toolbarstateW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, int jarg4, int jarg5, int jarg6, int jarg7)
static int CFxAPI_fdt_getresourceimageA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxInputContextReactor_EndGetAngleSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static bool CFxScriptEngine_LoadScript(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getcnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, [In, MarshalAs(UnmanagedType.LPArray)]char[] jarg3)
static void CFxPreferencesOutput_SetPlotStampPixelFontSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxCommandContext_SetExpressionToExecute(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static UInt64 CFxPreferencesDiscardDuplicatesSettings_GetIgnoreObjectProperties(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxCommand_GetLISPGroupName(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_ValidateDongle(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_registry_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr CFxPreferencesOutput_GetPlotStampFontName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_fdt_VPORT_EXT_INFO()
static bool CFxPreferencesDisplay_GetPaletteIcons(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUserIO_GetPromptReal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)
static void CFxUIAccelerator_SetKeySequence(HandleRef jarg1, HandleRef jarg2)
static void CFxScriptEngine_Restart(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndNentsel(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxInputPointManager_SWIGUpcast(global::System.IntPtr jarg1)
static void CFxPreferencesDisplay_SetDisplayScreenMenu(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dcl_term_dialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputPointManager_CacheMe(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, int jarg4)
static bool CFxAPI_CheckFilter(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAppInfo_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSystemServices_GetFxGDIDevice(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxVectorizeDevice_SetRegeneration(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_dlg_ImageBmpA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static global::System.IntPtr CFxString_arg__SWIG_15(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxPreferencesPlotSettings_SetScaleLineWeight(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static UInt32 CFxPreferencesDisplay_GetAutoTrackingVecColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr P_IMAGE_LlWorldPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_dictionary_searchA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, int jarg4)
static int CFxUserIO_GetDist__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void fdt_u_valW_rpoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static void CFxDatabase_setCIRCLERAD(HandleRef jarg1, double jarg2)
static int CFxAPI_fdt_getcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static void CFxPreferencesPackAndGo_SetRootFolder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxLayoutManagerReactor_layoutToBeDeactivatedSwigExplicitCFxLayoutManagerReactor(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxPreferencesDisplay_GetCLExtensionConstantWithViewport(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesSystem_GetOutputMaxLineCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxDatabase_setHANDLES(HandleRef jarg1, Int16 jarg2)
static void TRACKER_VECTOR_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxViewDrawInfo_SetExtentsCalculationActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxSelectionSetReactor_SWIGUpcast(global::System.IntPtr jarg1)
static Int32 CFxPreferencesPlotSettings_GetPlotRotation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_TRACKER_VECTOR__SWIG_2(int jarg1)
static int CFxAPI_dcl_end_image(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnInterfaceReloadedSwigExplicitCFxUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxHistoryCommand_GetFlags(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetCorner(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr TRACKER_VECTOR_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxString_arg__SWIG_49(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void CFxPreferencesPackAndGo_SetSaveFormat(global::System.Runtime.InteropServices.HandleRef jarg1, UInt16 jarg2)
static void CFxEditorReactor_appActivated(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxVectorizeDevice_queryX(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool CFxLicenseInfo_IsLispEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_EndGetInteger(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static bool CFxDatabase_SaveFile__SWIG_2(HandleRef jarg1)
static void CFxVSTA_StartMacroRecording(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_resbufW_rbnext_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxView_SetZoomMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_boundingbox(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static bool CFxPreferencesSelection_GetPickGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesInputHistory_SetEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxPreferencesTablet_GetSectSixthLeft(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxTracker_m_bAdded_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxUserIO_GetPoint__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void dcl_binary_clen_set(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2)
static bool CFxSystemServices_CFxExpressionParserData_m_bSuppressCommandOutput_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxLicenseInfo_GetRoamingLicenseMaxDays(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void fdt_tablet_rec_szTabMenuID_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_AddResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxString_compareNoCase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUserIO_GetNoteEditor__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4)
static void CFxViewDrawInfo_SetFrontClip(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void CFxUI_DestroyMouseButton(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxLicenseInfo_IsRoaming(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDisplay_GetOptionsToolbarMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnToolbarVisibilityChanged(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr CFxUI_CreateAccelerator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void FDT_GENOUT_LINE_Pnt1_set(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static bool CFxViewDrawInfo_IsBackClipped(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxPreferencesEntityMove(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3)
static string FDT_FLX_INFOA_szBem2_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_GetViewportInternalRegionWCS(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxFileData_GetType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxEditorReactor_appDeactivated(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_fdt_tablet_rec(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_start_listW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4, int jarg5)
static int CFxRangeInt_m_Min_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxView_IsPanMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int16 CFxView_GetCadWindowId(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxString_find__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIDoubleClickAction_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsLeftButtonDown(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_SplitW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)
static global::System.IntPtr CFxDocumentManager_NewDocument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, [MarshalAs(UnmanagedType.LPWStr)]String jarg4)
static int CFxUserIO_GetNoteEditor__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static int CFxAPI_fdt_remove_support_pathA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static double CFxDatabase_getVIEWSIZE(HandleRef jarg1)
static global::System.IntPtr CFxUITempOverrideKey_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxProfile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIReactor_OnInterfaceReloaded(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxPreferencesOutput_GetRecentPrinterName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetW_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static global::System.IntPtr CFxString_arg__SWIG_51(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static String CFxDatabase_getLSPALOAD(HandleRef jarg1)
static global::System.IntPtr CFxPreferencesTablet_GetSectFifthRight(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseInfo_IsSHPEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static double CFxPreferencesOutput_GetPlotStampOffsetY(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxLayoutManagerReactor(HandleRef jarg1)
static void P_OLEOBJ_pReserved2_set(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxView_GetCorrectionScreenMatrix(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_end_list(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDisplay_SetUseDashedEntitySelection(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxUI_AddGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string fdt_tablet_rec_szTabSectionID_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxApplications_FindApplication(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxDatabase_getUCSYDIR(HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotCfgName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxString_GetCadCodePage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void CFxInputContextReactor_BeginGetColorSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxLicenseInfo_EnableLisp(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_register_funcA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_GetVisibleToolbarCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginSSGet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUIGroup_GetMiddleButtonDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_set_tileW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static global::System.IntPtr CFxTrackerContext_GetFxView__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionData_CFxVertexData_m_Point_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static String CFxDatabase_getDWGPREFIX(HandleRef jarg1)
static void CFxSelectionSet_MergeResult_m_RemovedNotInWorkingSet_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool CFxUIMenuItem_IsAction(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetPlotPlotStyles(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void FDT_FLX_INFOW_Save_Date_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static IntPtr CFxLayoutManagerReactor_isA(HandleRef jarg1)
static int CFxAPI_fdt_isupper(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_curve_getstartpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static bool CFxHitTestInfo_IsMiddleMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_KeywordVector__SWIG_2(int jarg1)
static void CFxUI_DestroyRuntimeToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxLicenseManager_ShowDashboard(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxProfileManager_ProfileReset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPicture_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_StringToAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, out double jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr CFxRecentlyErased_GetObjects(global::System.Runtime.InteropServices.HandleRef jarg1)
static void dcl_callback_packetA_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, Int32 jarg2)
static int CFxUserIO_GetAngle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out double jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, bool jarg9)
static short dcl_binary_clen_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUnitsFormatter_OrientToString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, int jarg4, int jarg5)
static void CFxMainFrame_CFxCommandWindowInfo_linesCountSecond_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool CFxPreferencesSystem_GetCheckForXPressUpdates(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxSelectionSet_SelectByWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_filename_directoryW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxAPI_fdt_tabletinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsRightMouseButtonPressed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_dcl_callback_packetW(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxRecentFiles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_FDT_GENOUT_AREA(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUIToolbarItem_GetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_findfileA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxUserIO_GetNoteEditor__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, ref IntPtr jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static double CFxDatabase_getLASTANGLE(HandleRef jarg1)
static void CFxSystemServices_CFxExpressionParserData_m_bSelectionSetModificationsProhibited_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxProfileManagerReactor_profileLoaded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_tablet_rec_szMacro_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr CFxDocument_CreateSelectionSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxPreferencesEnterpoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_setactvport(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3)
static int CFxAPI_fdt_GetVportExtInfo(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void fdt_VPORT_EXT_INFO_WinHeight_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxSystemFiles_SetFontFileMap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIMenuItem_SetUID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesEnterpoint_SetPresetRelativePoint(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static Int32 dcl_callback_packetW_y_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxFileData_SetCloudStorageData(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxHitTestInfo_IsMouseMoved(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxPreferencesPlotSettings_GetPlotPlotStyles(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxString_arg__SWIG_43(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, ushort jarg4)
static bool CFxHostAppServices_doFullCRCCheck(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getpreferenceW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_isprint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_curve_getclosestpointto(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3, int jarg4, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg5)
static global::System.IntPtr CFxUIGroup_GetDoubleClickActions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxInputContextReactor_BeginGetFileNameSwigExplicitCFxInputContextReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void fdt_VPORT_EXT_INFO_hWnd_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxEdInputTracker_addDrawablesSwigExplicitCFxEdInputTracker(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr CFxAPI_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxTracker_CheckRegenAbort(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxHitTestInfo_GetWheelOrientation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_u_valW_rbinary_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxView_EyeToPaperSpace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesOutput_SetPrinterPaperSizeAlert(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void CFxInputContextReactor_BeginGetColor(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxUserIO_GetFileNamesStatic_Obsolete__SWIG_3(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntPtr jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, out int jarg9)
static global::System.IntPtr CFxString_arg__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, int jarg3, int jarg4)
static void delete_dcl_u_val(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxGeomUtils_shootRayAgainstObject__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, double jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void CFxRecentFiles_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUIItemDefinition_SetID(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxString_from_ansi_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxSelectionData_GetMode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_SetPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesOutput_SetPlotStampUnits(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesDisplay_SetTextWinTextColor(global::System.Runtime.InteropServices.HandleRef jarg1, UInt32 jarg2)
static global::System.IntPtr FileNameRetValArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_fdt_tablet_recW(global::System.Runtime.InteropServices.HandleRef jarg1)
static Int32 CFxPreferencesDrafting_GetSheetDynaSnapMarkerColor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_CFxEntityData(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr fdt_resbufA_resval_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxDatabase_GetActiveViewportId__SWIG_0(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxPreferencesDesignResources(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUIToolbarItem_SetMatrixToolbarIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxPreferencesSystem_SetScaleListIsMetric(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static void CFxUIImageItem_SetImageName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxPreferencesSystem_SetStoreSQLIndex(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static IntPtr CFxDatabaseReactor_isASwigExplicitCFxDatabaseReactor(HandleRef jarg1)
static int CFxAPI_fdt_textscr(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxLicenseManager_StartActivation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesDwgStandards_SetPreferredDwsFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static int CFxAPI_fdt_getconfstringW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4, [MarshalAs(UnmanagedType.LPWStr)]string jarg5, uint jarg6)
static void CFxUI_DestroyRuntimeToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool CFxView_GetGeomExtents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr CFxUnitsFormatter_SWIGUpcast(global::System.IntPtr jarg1)
static int CFxSystemServices_FileDialog__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, IntPtr jarg4, int jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static int CFxUnitsFormatter_StringToPoint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxViewDrawInfo_SetUseTransparency(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void delete_CFxGripPointsPE(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxPreferencesPlotSettings_SetReplacePDFwithPC3(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxVectorizeDevice_GetPaperSpaceOverallView(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_add_listW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static void CFxView_PointToSCS__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxPreferencesDynamicInputs_GetTooltipsSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxUserIO_DoEntsel__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, out bool jarg6)