Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
CFxAPI.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
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16using Teigha.TD;
17
18public class CFxAPI : global::System.IDisposable {
19 private Object locker = new Object();
20 private HandleRef swigCPtr;
21 protected bool swigCMemOwn;
22 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
23 public CFxAPI(IntPtr cPtr, bool cMemoryOwn) {
24 swigCMemOwn = cMemoryOwn;
25 swigCPtr = new HandleRef(this, cPtr);
26 }
27 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
28 public static HandleRef getCPtr(CFxAPI obj) {
29 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
30 }
31
32 ~CFxAPI() {
33 Dispose(false);
34 }
35
36 public void Dispose() {
37 Dispose(true);
38 global::System.GC.SuppressFinalize(this);
39 }
40
41 protected virtual void Dispose(bool disposing) {
42 lock(this) {
43 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
44 if (swigCMemOwn) {
45 swigCMemOwn = false;
47 }
48 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
49 }
50 }
51 }
52
53 public virtual int fdt_regappA(string applic_name) {
54 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_regappA(swigCPtr, applic_name);
56 return ret;
57 }
58
59 public virtual int fdt_regappW(string applic_name) {
60 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_regappW(swigCPtr, applic_name);
62 return ret;
63 }
64
65 public virtual int fdt_registerA(string extfunc, string cfunc) {
66 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_registerA(swigCPtr, extfunc, cfunc);
68 return ret;
69 }
70
71 public virtual int fdt_registerW(string extfunc, string cfunc) {
72 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_registerW(swigCPtr, extfunc, cfunc);
74 return ret;
75 }
76
77 public virtual int fdt_register_paramA(string extfunc, string cfunc, SWIGTYPE_p_uintptr_t param) {
78 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_register_paramA(swigCPtr, extfunc, cfunc, SWIGTYPE_p_uintptr_t.getCPtr(param));
80 return ret;
81 }
82
83 public virtual int fdt_register_paramW(string extfunc, string cfunc, SWIGTYPE_p_uintptr_t param) {
84 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_register_paramW(swigCPtr, extfunc, cfunc, SWIGTYPE_p_uintptr_t.getCPtr(param));
86 return ret;
87 }
88
89 public virtual int fdt_register_funcA(string extfunc, SWIGTYPE_p_f___int cfunc) {
90 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_register_funcA(swigCPtr, extfunc, SWIGTYPE_p_f___int.getCPtr(cfunc));
92 return ret;
93 }
94
95 public virtual int fdt_register_funcW(string extfunc, SWIGTYPE_p_f___int cfunc) {
96 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_register_funcW(swigCPtr, extfunc, SWIGTYPE_p_f___int.getCPtr(cfunc));
98 return ret;
99 }
100
101 public virtual int fdt_unregisterA(string extfunc) {
102 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_unregisterA(swigCPtr, extfunc);
104 return ret;
105 }
106
107 public virtual int fdt_unregisterW(string extfunc) {
108 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_unregisterW(swigCPtr, extfunc);
110 return ret;
111 }
112
113 public virtual int fdt_getcfgA(string App_ProfileStringName, string App_ProfileStringValue, int App_ProfileStringLength) {
114 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcfgA(swigCPtr, App_ProfileStringName, App_ProfileStringValue, App_ProfileStringLength);
116 return ret;
117 }
118
119 public virtual int fdt_getcfgW(string App_ProfileStringName, string App_ProfileStringValue, int App_ProfileStringLength) {
120 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcfgW(swigCPtr, App_ProfileStringName, App_ProfileStringValue, App_ProfileStringLength);
122 return ret;
123 }
124
125 public virtual int fdt_setcfgA(string Profile_name, string Profile_value) {
126 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setcfgA(swigCPtr, Profile_name, Profile_value);
128 return ret;
129 }
130
131 public virtual int fdt_setcfgW(string Profile_name, string Profile_value) {
132 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setcfgW(swigCPtr, Profile_name, Profile_value);
134 return ret;
135 }
136
137 public virtual int fdt_loadA(string lisp_file) {
138 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_loadA(swigCPtr, lisp_file);
140 return ret;
141 }
142
143 public virtual int fdt_loadW(string lisp_file) {
144 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_loadW(swigCPtr, lisp_file);
146 return ret;
147 }
148
149 public virtual int fdt_xloadA(string fdt_app) {
150 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_xloadA(swigCPtr, fdt_app);
152 return ret;
153 }
154
155 public virtual int fdt_xloadW(string fdt_app) {
156 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_xloadW(swigCPtr, fdt_app);
158 return ret;
159 }
160
161 public virtual int fdt_xunloadA(string fdt_app) {
162 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_xunloadA(swigCPtr, fdt_app);
164 return ret;
165 }
166
167 public virtual int fdt_xunloadW(string fdt_app) {
168 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_xunloadW(swigCPtr, fdt_app);
170 return ret;
171 }
172
173 public virtual fdt_resbufA fdt_getargsA() {
174 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_getargsA(swigCPtr);
175 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
177 return ret;
178 }
179
180 public virtual fdt_resbufW fdt_getargsW() {
181 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_getargsW(swigCPtr);
182 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
184 return ret;
185 }
186
187 public virtual int fdt_retint(int value) {
188 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retint(swigCPtr, value);
190 return ret;
191 }
192
193 public virtual int fdt_retreal(double value) {
194 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retreal(swigCPtr, value);
196 return ret;
197 }
198
199 public virtual int fdt_retpoint(double[] /*DOUBLE_FIXED_ARRAY*/ point) {
200 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retpoint(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/);
202 return ret;
203 }
204
205 public virtual int fdt_retnil() {
206 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retnil(swigCPtr);
208 return ret;
209 }
210
211 public virtual int fdt_rett() {
212 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_rett(swigCPtr);
214 return ret;
215 }
216
217 public virtual int fdt_retvoid() {
218 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retvoid(swigCPtr);
220 return ret;
221 }
222
223 public virtual int fdt_retstrA(string string_) {
224 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retstrA(swigCPtr, string_);
226 return ret;
227 }
228
229 public virtual int fdt_retstrW(string string_) {
230 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retstrW(swigCPtr, string_);
232 return ret;
233 }
234
235 public virtual int fdt_retname(ref UInt64[] /*OUT_ARRAY*/ ename) {
236IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
237 try {
238 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retname(swigCPtr, p_ename);
240 return ret;
241 } finally {
242ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
243 }
244 }
245
246 public virtual int fdt_retlistA(fdt_resbufA rbuffer) {
247 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retlistA(swigCPtr, fdt_resbufA.getCPtr(rbuffer));
249 return ret;
250 }
251
252 public virtual int fdt_retlistW(fdt_resbufW rbuffer) {
253 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_retlistW(swigCPtr, fdt_resbufW.getCPtr(rbuffer));
255 return ret;
256 }
257
258 public virtual int fdt_retvalA(fdt_resbufA value) {
261 return ret;
262 }
263
264 public virtual int fdt_retvalW(fdt_resbufW value) {
267 return ret;
268 }
269
270 public virtual int fdt_invokeA(fdt_resbufA arguments, SWIGTYPE_p_p_fdt_resbufA rbuffer) {
271 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_invokeA(swigCPtr, fdt_resbufA.getCPtr(arguments), SWIGTYPE_p_p_fdt_resbufA.getCPtr(rbuffer));
273 return ret;
274 }
275
276 public virtual int fdt_invokeW(fdt_resbufW arguments, SWIGTYPE_p_p_fdt_resbufW rbuffer) {
277 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_invokeW(swigCPtr, fdt_resbufW.getCPtr(arguments), SWIGTYPE_p_p_fdt_resbufW.getCPtr(rbuffer));
279 return ret;
280 }
281
282 public virtual int fdt_invoke_lispA(string LISPExpr, SWIGTYPE_p_p_fdt_resbufA evalresrb) {
283 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_invoke_lispA(swigCPtr, LISPExpr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(evalresrb));
285 return ret;
286 }
287
288 public virtual int fdt_invoke_lispW(string LISPExpr, SWIGTYPE_p_p_fdt_resbufW evalresrb) {
289 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_invoke_lispW(swigCPtr, LISPExpr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(evalresrb));
291 return ret;
292 }
293
294 public virtual fdt_resbufA fdt_loadedA() {
295 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_loadedA(swigCPtr);
296 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
298 return ret;
299 }
300
301 public virtual fdt_resbufW fdt_loadedW() {
302 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_loadedW(swigCPtr);
303 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
305 return ret;
306 }
307
308 public virtual int fdt_drxloadA(string fdt_app) {
309 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_drxloadA(swigCPtr, fdt_app);
311 return ret;
312 }
313
314 public virtual int fdt_drxloadW(string fdt_app) {
315 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_drxloadW(swigCPtr, fdt_app);
317 return ret;
318 }
319
320 public virtual int fdt_drxunloadA(string fdt_app) {
321 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_drxunloadA(swigCPtr, fdt_app);
323 return ret;
324 }
325
326 public virtual int fdt_drxunloadW(string fdt_app) {
327 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_drxunloadW(swigCPtr, fdt_app);
329 return ret;
330 }
331
332 public virtual int fdt_getsymA(string varname, SWIGTYPE_p_p_fdt_resbufA value) {
333 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getsymA(swigCPtr, varname, SWIGTYPE_p_p_fdt_resbufA.getCPtr(value));
335 return ret;
336 }
337
338 public virtual int fdt_getsymW(string varname, SWIGTYPE_p_p_fdt_resbufW value) {
339 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getsymW(swigCPtr, varname, SWIGTYPE_p_p_fdt_resbufW.getCPtr(value));
341 return ret;
342 }
343
344 public virtual int fdt_putsymA(string sym_name, fdt_resbufA value) {
345 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_putsymA(swigCPtr, sym_name, fdt_resbufA.getCPtr(value));
347 return ret;
348 }
349
350 public virtual int fdt_putsymW(string sym_name, fdt_resbufW value) {
351 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_putsymW(swigCPtr, sym_name, fdt_resbufW.getCPtr(value));
353 return ret;
354 }
355
356 public virtual int fdt_getininameA(string lpszIniName, int iIniNameLength) {
357 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getininameA(swigCPtr, lpszIniName, iIniNameLength);
359 return ret;
360 }
361
362 public virtual int fdt_getininameW(string lpszIniName, int iIniNameLength) {
363 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getininameW(swigCPtr, lpszIniName, iIniNameLength);
365 return ret;
366 }
367
368 public virtual int fdt_palgetnameslistA(SWIGTYPE_p_p_fdt_resbufA ListOfPaletteNames) {
369 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palgetnameslistA(swigCPtr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(ListOfPaletteNames));
371 return ret;
372 }
373
374 public virtual int fdt_palgetnameslistW(SWIGTYPE_p_p_fdt_resbufW ListOfPaletteNames) {
375 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palgetnameslistW(swigCPtr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(ListOfPaletteNames));
377 return ret;
378 }
379
380 public virtual int fdt_palloadA(string palfilename) {
381 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palloadA(swigCPtr, palfilename);
383 return ret;
384 }
385
386 public virtual int fdt_palloadW(string palfilename) {
387 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palloadW(swigCPtr, palfilename);
389 return ret;
390 }
391
392 public virtual int fdt_palunloadA(string palname) {
393 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palunloadA(swigCPtr, palname);
395 return ret;
396 }
397
398 public virtual int fdt_palunloadW(string palname) {
399 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palunloadW(swigCPtr, palname);
401 return ret;
402 }
403
404 public virtual int fdt_palshowA(string palname) {
405 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palshowA(swigCPtr, palname);
407 return ret;
408 }
409
410 public virtual int fdt_palshowW(string palname) {
411 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palshowW(swigCPtr, palname);
413 return ret;
414 }
415
416 public virtual int fdt_palhideA(string palname) {
417 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palhideA(swigCPtr, palname);
419 return ret;
420 }
421
422 public virtual int fdt_palhideW(string palname) {
423 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palhideW(swigCPtr, palname);
425 return ret;
426 }
427
428 public virtual int fdt_palopendlg() {
429 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_palopendlg(swigCPtr);
431 return ret;
432 }
433
437 return ret;
438 }
439
443 return ret;
444 }
445
446 public virtual int fdt_toolbarmatrixtoolbaraddA(string toolbar, int index) {
447 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_0(swigCPtr, toolbar, index);
449 return ret;
450 }
451
452 public virtual int fdt_toolbarmatrixtoolbaraddA(string toolbar) {
455 return ret;
456 }
457
458 public virtual int fdt_toolbarmatrixtoolbaraddW(string toolbar, int index) {
459 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_0(swigCPtr, toolbar, index);
461 return ret;
462 }
463
464 public virtual int fdt_toolbarmatrixtoolbaraddW(string toolbar) {
467 return ret;
468 }
469
470 public virtual int fdt_toolbarmatrixtoolbarremoveA(string toolbar) {
473 return ret;
474 }
475
476 public virtual int fdt_toolbarmatrixtoolbarremoveW(string toolbar) {
479 return ret;
480 }
481
482 public virtual int fdt_toolbarmatrixtoolbarstategetA(string toolbar, out int state) {
483 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixtoolbarstategetA(swigCPtr, toolbar, out state);
485 return ret;
486 }
487
488 public virtual int fdt_toolbarmatrixtoolbarstategetW(string toolbar, out int state) {
489 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixtoolbarstategetW(swigCPtr, toolbar, out state);
491 return ret;
492 }
493
494 public virtual int fdt_toolbarmatrixtoolbarstatesetA(string toolbar, int state) {
495 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixtoolbarstatesetA(swigCPtr, toolbar, state);
497 return ret;
498 }
499
500 public virtual int fdt_toolbarmatrixtoolbarstatesetW(string toolbar, int state) {
501 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixtoolbarstatesetW(swigCPtr, toolbar, state);
503 return ret;
504 }
505
506 public virtual int fdt_toolbarstategetA(string toolbar, out int state) {
507 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarstategetA(swigCPtr, toolbar, out state);
509 return ret;
510 }
511
512 public virtual int fdt_toolbarstategetW(string toolbar, out int state) {
513 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarstategetW(swigCPtr, toolbar, out state);
515 return ret;
516 }
517
518 public virtual int fdt_toolbarstatesetA(string toolbar, int state) {
519 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarstatesetA(swigCPtr, toolbar, state);
521 return ret;
522 }
523
524 public virtual int fdt_toolbarstatesetW(string toolbar, int state) {
525 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarstatesetW(swigCPtr, toolbar, state);
527 return ret;
528 }
529
530 public virtual int fdt_toolbarmatrixstategetA(out int state) {
531 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixstategetA(swigCPtr, out state);
533 return ret;
534 }
535
536 public virtual int fdt_toolbarmatrixstategetW(out int state) {
537 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixstategetW(swigCPtr, out state);
539 return ret;
540 }
541
542 public virtual int fdt_toolbarmatrixstatesetA(int state) {
543 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixstatesetA(swigCPtr, state);
545 return ret;
546 }
547
548 public virtual int fdt_toolbarmatrixstatesetW(int state) {
549 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarmatrixstatesetW(swigCPtr, state);
551 return ret;
552 }
553
554 public virtual int fdt_all_toolbars_visibleA(bool visible) {
555 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_all_toolbars_visibleA(swigCPtr, visible);
557 return ret;
558 }
559
560 public virtual int fdt_all_toolbars_visibleW(bool visible) {
561 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_all_toolbars_visibleW(swigCPtr, visible);
563 return ret;
564 }
565
566 public virtual int fdt_toolbar_existsA(string toolbar, bool /*SIMPLETYPE*/ exists) {
567 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbar_existsA(swigCPtr, toolbar, exists /*SIMPLETYPE*/);
569 return ret;
570 }
571
572 public virtual int fdt_toolbar_existsW(string toolbar, bool /*SIMPLETYPE*/ exists) {
573 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbar_existsW(swigCPtr, toolbar, exists /*SIMPLETYPE*/);
575 return ret;
576 }
577
578 public virtual int fdt_toolbarstateA(string toolbar, int state, int x, int y, int number_of_rows, int index_in_toolmatrix) {
579 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarstateA(swigCPtr, toolbar, state, x, y, number_of_rows, index_in_toolmatrix);
581 return ret;
582 }
583
584 public virtual int fdt_toolbarstateW(string toolbar, int state, int x, int y, int number_of_rows, int index_in_toolmatrix) {
585 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toolbarstateW(swigCPtr, toolbar, state, x, y, number_of_rows, index_in_toolmatrix);
587 return ret;
588 }
589
591 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssgetfirstA(swigCPtr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(gripset), SWIGTYPE_p_p_fdt_resbufA.getCPtr(pickset));
593 return ret;
594 }
595
597 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssgetfirstW(swigCPtr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(gripset), SWIGTYPE_p_p_fdt_resbufW.getCPtr(pickset));
599 return ret;
600 }
601
602 public virtual int fdt_sssetfirst(ref UInt64[] /*OUT_ARRAY*/ pickset, ref UInt64[] /*OUT_ARRAY*/ unused) {
603IntPtr p_pickset=Teigha.Core.Helpers.MarshalUInt64FixedArray(pickset);
604IntPtr p_unused=Teigha.Core.Helpers.MarshalUInt64FixedArray(unused);
605 try {
606 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_sssetfirst(swigCPtr, p_pickset, p_unused);
608 return ret;
609 } finally {
610pickset = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_pickset); Marshal.FreeCoTaskMem(p_pickset);
611unused = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_unused); Marshal.FreeCoTaskMem(p_unused);
612 }
613 }
614
615 public virtual int fdt_alertA(string lpszMessage) {
616 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_alertA(swigCPtr, lpszMessage);
618 return ret;
619 }
620
621 public virtual int fdt_alertW(string lpszMessage) {
622 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_alertW(swigCPtr, lpszMessage);
624 return ret;
625 }
626
627 public virtual void fdt_failA(string lpszErrorText) {
628 PCADGlobalsPINVOKE.CFxAPI_fdt_failA(swigCPtr, lpszErrorText);
630 }
631
632 public virtual void fdt_failW(string lpszErrorText) {
633 PCADGlobalsPINVOKE.CFxAPI_fdt_failW(swigCPtr, lpszErrorText);
635 }
636
637 public virtual fdt_resbufA fdt_newrbA(int value) {
638 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_newrbA(swigCPtr, value);
639 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
641 return ret;
642 }
643
644 public virtual fdt_resbufW fdt_newrbW(int value) {
645 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_newrbW(swigCPtr, value);
646 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
648 return ret;
649 }
650
651 public virtual int fdt_copyresbufA(fdt_resbufA source_rb, SWIGTYPE_p_p_fdt_resbufA target_rb) {
652 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_copyresbufA(swigCPtr, fdt_resbufA.getCPtr(source_rb), SWIGTYPE_p_p_fdt_resbufA.getCPtr(target_rb));
654 return ret;
655 }
656
657 public virtual int fdt_copyresbufW(fdt_resbufW source_rb, SWIGTYPE_p_p_fdt_resbufW target_rb) {
658 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_copyresbufW(swigCPtr, fdt_resbufW.getCPtr(source_rb), SWIGTYPE_p_p_fdt_resbufW.getCPtr(target_rb));
660 return ret;
661 }
662
663 public virtual int fdt_relrbA(fdt_resbufA rbuffer) {
664 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_relrbA(swigCPtr, fdt_resbufA.getCPtr(rbuffer));
666 return ret;
667 }
668
669 public virtual int fdt_relrbW(fdt_resbufW rbuffer) {
670 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_relrbW(swigCPtr, fdt_resbufW.getCPtr(rbuffer));
672 return ret;
673 }
674
675 public virtual int fdt_cmdA(fdt_resbufA rb_cmd) {
676 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_cmdA(swigCPtr, fdt_resbufA.getCPtr(rb_cmd));
678 return ret;
679 }
680
681 public virtual int fdt_cmdW(fdt_resbufW rb_cmd) {
682 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_cmdW(swigCPtr, fdt_resbufW.getCPtr(rb_cmd));
684 return ret;
685 }
686
687 public virtual int fdt_initdialog(int show_dlg) {
688 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_initdialog(swigCPtr, show_dlg);
690 return ret;
691 }
692
693 public virtual int fdt_actcmdA(string command_name) {
694 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_actcmdA(swigCPtr, command_name);
696 return ret;
697 }
698
699 public virtual int fdt_actcmdW(string command_name) {
700 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_actcmdW(swigCPtr, command_name);
702 return ret;
703 }
704
705 public virtual int fdt_delcmdA(string command_name) {
706 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_delcmdA(swigCPtr, command_name);
708 return ret;
709 }
710
711 public virtual int fdt_delcmdW(string command_name) {
712 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_delcmdW(swigCPtr, command_name);
714 return ret;
715 }
716
717 public virtual int fdt_getcnameA(string Cmd_Name, char[] /*SIMPLE_REFARRAY*/ Primary_Cmd_Name) {
718 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcnameA(swigCPtr, Cmd_Name, Primary_Cmd_Name);
720 return ret;
721 }
722
723 public virtual int fdt_getcnameW(string Cmd_Name, SWIGTYPE_p_p_wchar_t Primary_Cmd_Name) {
724 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcnameW(swigCPtr, Cmd_Name, SWIGTYPE_p_p_wchar_t.getCPtr(Primary_Cmd_Name));
726 return ret;
727 }
728
729 public virtual int fdt_snvalidA(string Symbol_Name, int Flag) {
730 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_snvalidA(swigCPtr, Symbol_Name, Flag);
732 return ret;
733 }
734
735 public virtual int fdt_snvalidW(string Symbol_Name, int Flag) {
736 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_snvalidW(swigCPtr, Symbol_Name, Flag);
738 return ret;
739 }
740
741 public virtual int fdt_fgetenvA(string path_kword, string path) {
742 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_fgetenvA(swigCPtr, path_kword, path);
744 return ret;
745 }
746
747 public virtual int fdt_fgetenvW(string path_kword, string path) {
748 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_fgetenvW(swigCPtr, path_kword, path);
750 return ret;
751 }
752
753 public virtual int fdt_getenvA(string szVarname, string szIni_section, string szIni_file, int length, string szResult) {
754 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getenvA(swigCPtr, szVarname, szIni_section, szIni_file, length, szResult);
756 return ret;
757 }
758
759 public virtual int fdt_getenvW(string szVarname, string szIni_section, string szIni_file, int length, string szResult) {
760 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getenvW(swigCPtr, szVarname, szIni_section, szIni_file, length, szResult);
762 return ret;
763 }
764
765 public virtual int fdt_setenvA(string szVarname, string szValue) {
766 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setenvA(swigCPtr, szVarname, szValue);
768 return ret;
769 }
770
771 public virtual int fdt_setenvW(string szVarname, string szValue) {
772 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setenvW(swigCPtr, szVarname, szValue);
774 return ret;
775 }
776
777 public virtual string fdt_strmallocA(int length) {
778 string ret = PCADGlobalsPINVOKE.CFxAPI_fdt_strmallocA(swigCPtr, length);
780 return ret;
781 }
782
783 public virtual void fdt_strfreeA(string string_) {
784 PCADGlobalsPINVOKE.CFxAPI_fdt_strfreeA(swigCPtr, string_);
786 }
787
788 public virtual void fdt_strfreeW(string string_) {
789 PCADGlobalsPINVOKE.CFxAPI_fdt_strfreeW(swigCPtr, string_);
791 }
792
793 public virtual IntPtr fdt_malloc(uint length) {
794// test csout
795 /*SIMPLETYPE*/
796 IntPtr ret = PCADGlobalsPINVOKE.CFxAPI_fdt_malloc(swigCPtr, length);
798 return ret;
799 }
800
801 public virtual void fdt_free(IntPtr buffer) {
802 PCADGlobalsPINVOKE.CFxAPI_fdt_free(swigCPtr, buffer);
804 }
805
806 public virtual int fdt_isalpha(int character) {
807 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isalpha(swigCPtr, character);
809 return ret;
810 }
811
812 public virtual int fdt_isupper(int character) {
813 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isupper(swigCPtr, character);
815 return ret;
816 }
817
818 public virtual int fdt_islower(int character) {
819 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_islower(swigCPtr, character);
821 return ret;
822 }
823
824 public virtual int fdt_isdigit(int character) {
825 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isdigit(swigCPtr, character);
827 return ret;
828 }
829
830 public virtual int fdt_isxdigit(int character) {
831 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isxdigit(swigCPtr, character);
833 return ret;
834 }
835
836 public virtual int fdt_isspace(int character) {
837 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isspace(swigCPtr, character);
839 return ret;
840 }
841
842 public virtual int fdt_ispunct(int character) {
843 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ispunct(swigCPtr, character);
845 return ret;
846 }
847
848 public virtual int fdt_isalnum(int character) {
849 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isalnum(swigCPtr, character);
851 return ret;
852 }
853
854 public virtual int fdt_isprint(int character) {
855 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isprint(swigCPtr, character);
857 return ret;
858 }
859
860 public virtual int fdt_isgraph(int character) {
861 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isgraph(swigCPtr, character);
863 return ret;
864 }
865
866 public virtual int fdt_iscntrl(int character) {
867 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_iscntrl(swigCPtr, character);
869 return ret;
870 }
871
872 public virtual int fdt_toupper(int character) {
873 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_toupper(swigCPtr, character);
875 return ret;
876 }
877
878 public virtual int fdt_tolower(int character) {
879 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tolower(swigCPtr, character);
881 return ret;
882 }
883
884 public virtual int fdti_notify(int iReason, string lpszMassage) {
885 int ret = PCADGlobalsPINVOKE.CFxAPI_fdti_notify(swigCPtr, iReason, lpszMassage);
887 return ret;
888 }
889
890 public virtual int fdti_notify_short(int iReason, int iCode) {
891 int ret = PCADGlobalsPINVOKE.CFxAPI_fdti_notify_short(swigCPtr, iReason, iCode);
893 return ret;
894 }
895
896 public virtual int fdt_setvarA(string lpszSysVar, fdt_resbufA pValue) {
897 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setvarA(swigCPtr, lpszSysVar, fdt_resbufA.getCPtr(pValue));
899 return ret;
900 }
901
902 public virtual int fdt_setvarW(string lpszSysVar, fdt_resbufW pValue) {
903 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setvarW(swigCPtr, lpszSysVar, fdt_resbufW.getCPtr(pValue));
905 return ret;
906 }
907
908 public virtual int fdt_getvarA(string lpszSysVar, fdt_resbufA pValue) {
909 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getvarA(swigCPtr, lpszSysVar, fdt_resbufA.getCPtr(pValue));
911 return ret;
912 }
913
914 public virtual int fdt_getvarW(string lpszSysVar, fdt_resbufW pValue) {
915 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getvarW(swigCPtr, lpszSysVar, fdt_resbufW.getCPtr(pValue));
917 return ret;
918 }
919
920 public virtual int fdt_cvunitA(double value, string source_unit, string target_unit, out double result) {
921 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_cvunitA(swigCPtr, value, source_unit, target_unit, out result);
923 return ret;
924 }
925
926 public virtual int fdt_cvunitW(double value, string source_unit, string target_unit, out double result) {
927 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_cvunitW(swigCPtr, value, source_unit, target_unit, out result);
929 return ret;
930 }
931
932 public virtual int fdt_angtosA(double value, int format, int precision, string string_, uint iSize) {
933 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_angtosA(swigCPtr, value, format, precision, string_, iSize);
935 return ret;
936 }
937
938 public virtual int fdt_angtosW(double value, int format, int precision, string string_, uint iSize) {
939 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_angtosW(swigCPtr, value, format, precision, string_, iSize);
941 return ret;
942 }
943
944 public virtual int fdt_rtosA(double value, int format, int precision, string string_, uint iSize) {
945 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_rtosA(swigCPtr, value, format, precision, string_, iSize);
947 return ret;
948 }
949
950 public virtual int fdt_rtosW(double value, int format, int precision, string string_, uint iSize) {
951 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_rtosW(swigCPtr, value, format, precision, string_, iSize);
953 return ret;
954 }
955
956 public virtual int fdt_angtofA(string string_, int format, out double value) {
957 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_angtofA(swigCPtr, string_, format, out value);
959 return ret;
960 }
961
962 public virtual int fdt_angtofW(string string_, int format, out double value) {
963 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_angtofW(swigCPtr, string_, format, out value);
965 return ret;
966 }
967
968 public virtual int fdt_distofA(string string_, int format, out double value) {
969 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_distofA(swigCPtr, string_, format, out value);
971 return ret;
972 }
973
974 public virtual int fdt_distofW(string string_, int format, out double value) {
975 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_distofW(swigCPtr, string_, format, out value);
977 return ret;
978 }
979
980 public virtual int fdt_atofA(string string_, out double value) {
981 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_atofA(swigCPtr, string_, out value);
983 return ret;
984 }
985
986 public virtual int fdt_atofW(string string_, out double value) {
987 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_atofW(swigCPtr, string_, out value);
989 return ret;
990 }
991
992 public virtual int fdt_wcmatchA(string strSource, string strPattern) {
993 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_wcmatchA(swigCPtr, strSource, strPattern);
995 return ret;
996 }
997
998 public virtual int fdt_wcmatchW(string strSource, string strPattern) {
999 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_wcmatchW(swigCPtr, strSource, strPattern);
1001 return ret;
1002 }
1003
1004 public virtual int fdt_promptA(string lpszPrompt) {
1005 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_promptA(swigCPtr, lpszPrompt);
1007 return ret;
1008 }
1009
1010 public virtual int fdt_promptW(string lpszPrompt) {
1011 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_promptW(swigCPtr, lpszPrompt);
1013 return ret;
1014 }
1015
1016 public virtual int fdt_graphscr() {
1017 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_graphscr(swigCPtr);
1019 return ret;
1020 }
1021
1022 public virtual int fdt_textscr() {
1023 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_textscr(swigCPtr);
1025 return ret;
1026 }
1027
1028 public virtual int fdt_textpage() {
1029 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_textpage(swigCPtr);
1031 return ret;
1032 }
1033
1034 public virtual int fdt_cleartextscr() {
1035 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_cleartextscr(swigCPtr);
1037 return ret;
1038 }
1039
1040 public virtual int fdt_activate_progress_barA(string lpszMessage) {
1041 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_activate_progress_barA(swigCPtr, lpszMessage);
1043 return ret;
1044 }
1045
1046 public virtual int fdt_activate_progress_barW(string lpszMessage) {
1047 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_activate_progress_barW(swigCPtr, lpszMessage);
1049 return ret;
1050 }
1051
1052 public virtual int fdt_hide_progress_bar() {
1055 return ret;
1056 }
1057
1058 public virtual int fdt_set_progress_state(int iProgress) {
1059 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_set_progress_state(swigCPtr, iProgress);
1061 return ret;
1062 }
1063
1064 public virtual int fdt_selcheck(ref UInt64[] /*OUT_ARRAY*/ ename) {
1065IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1066 try {
1067 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_selcheck(swigCPtr, p_ename);
1069 return ret;
1070 } finally {
1071ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1072 }
1073 }
1074
1075 public virtual int fdt_ssgetA(string mode, IntPtr /*SIMPLETYPE*/ point1, double[] /*DOUBLE_FIXED_ARRAY*/ pt2, fdt_resbufA filter, ref UInt64[] /*OUT_ARRAY*/ sname) {
1076IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1077 try {
1078 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssgetA(swigCPtr, mode, point1 /*SIMPLETYPE*/, pt2 /*DOUBLE_FIXED_ARRAY*/, fdt_resbufA.getCPtr(filter), p_sname);
1080 return ret;
1081 } finally {
1082sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1083 }
1084 }
1085
1086 public virtual int fdt_ssgetW(string mode, IntPtr /*SIMPLETYPE*/ point1, double[] /*DOUBLE_FIXED_ARRAY*/ pt2, fdt_resbufW filter, ref UInt64[] /*OUT_ARRAY*/ sname) {
1087IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1088 try {
1089 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssgetW(swigCPtr, mode, point1 /*SIMPLETYPE*/, pt2 /*DOUBLE_FIXED_ARRAY*/, fdt_resbufW.getCPtr(filter), p_sname);
1091 return ret;
1092 } finally {
1093sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1094 }
1095 }
1096
1097 public virtual int fdt_ssfree(ref UInt64[] /*OUT_ARRAY*/ sname) {
1098IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1099 try {
1100 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssfree(swigCPtr, p_sname);
1102 return ret;
1103 } finally {
1104sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1105 }
1106 }
1107
1108 public virtual int fdt_sslength(ref UInt64[] /*OUT_ARRAY*/ sname, out int length) {
1109IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1110 try {
1111 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_sslength(swigCPtr, p_sname, out length);
1113 return ret;
1114 } finally {
1115sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1116 }
1117 }
1118
1119 public virtual int fdt_ssadd(ref UInt64[] /*OUT_ARRAY*/ ename, ref UInt64[] /*OUT_ARRAY*/ selset, ref UInt64[] /*OUT_ARRAY*/ sresult, bool check_owner) {
1120IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1121IntPtr p_selset=Teigha.Core.Helpers.MarshalUInt64FixedArray(selset);
1122IntPtr p_sresult=Teigha.Core.Helpers.MarshalUInt64FixedArray(sresult);
1123 try {
1124 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssadd__SWIG_0(swigCPtr, p_ename, p_selset, p_sresult, check_owner);
1126 return ret;
1127 } finally {
1128ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1129selset = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_selset); Marshal.FreeCoTaskMem(p_selset);
1130sresult = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sresult); Marshal.FreeCoTaskMem(p_sresult);
1131 }
1132 }
1133
1134 public virtual int fdt_ssadd(ref UInt64[] /*OUT_ARRAY*/ ename, ref UInt64[] /*OUT_ARRAY*/ selset, ref UInt64[] /*OUT_ARRAY*/ sresult) {
1135IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1136IntPtr p_selset=Teigha.Core.Helpers.MarshalUInt64FixedArray(selset);
1137IntPtr p_sresult=Teigha.Core.Helpers.MarshalUInt64FixedArray(sresult);
1138 try {
1139 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssadd__SWIG_1(swigCPtr, p_ename, p_selset, p_sresult);
1141 return ret;
1142 } finally {
1143ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1144selset = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_selset); Marshal.FreeCoTaskMem(p_selset);
1145sresult = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sresult); Marshal.FreeCoTaskMem(p_sresult);
1146 }
1147 }
1148
1149 public virtual int fdt_ssname(ref UInt64[] /*OUT_ARRAY*/ sname, int n, ref UInt64[] /*OUT_ARRAY*/ ename) {
1150IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1151IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1152 try {
1153 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssname(swigCPtr, p_sname, n, p_ename);
1155 return ret;
1156 } finally {
1157sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1158ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1159 }
1160 }
1161
1162 public virtual int fdt_ssnamexA(SWIGTYPE_p_p_fdt_resbufA rbpp, ref UInt64[] /*OUT_ARRAY*/ ss, int i, uint flags) {
1163IntPtr p_ss=Teigha.Core.Helpers.MarshalUInt64FixedArray(ss);
1164 try {
1165 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssnamexA__SWIG_0(swigCPtr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(rbpp), p_ss, i, flags);
1167 return ret;
1168 } finally {
1169ss = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ss); Marshal.FreeCoTaskMem(p_ss);
1170 }
1171 }
1172
1173 public virtual int fdt_ssnamexA(SWIGTYPE_p_p_fdt_resbufA rbpp, ref UInt64[] /*OUT_ARRAY*/ ss, int i) {
1174IntPtr p_ss=Teigha.Core.Helpers.MarshalUInt64FixedArray(ss);
1175 try {
1176 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssnamexA__SWIG_1(swigCPtr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(rbpp), p_ss, i);
1178 return ret;
1179 } finally {
1180ss = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ss); Marshal.FreeCoTaskMem(p_ss);
1181 }
1182 }
1183
1184 public virtual int fdt_ssnamexW(SWIGTYPE_p_p_fdt_resbufW rbpp, ref UInt64[] /*OUT_ARRAY*/ ss, int i, uint flags) {
1185IntPtr p_ss=Teigha.Core.Helpers.MarshalUInt64FixedArray(ss);
1186 try {
1187 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssnamexW__SWIG_0(swigCPtr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(rbpp), p_ss, i, flags);
1189 return ret;
1190 } finally {
1191ss = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ss); Marshal.FreeCoTaskMem(p_ss);
1192 }
1193 }
1194
1195 public virtual int fdt_ssnamexW(SWIGTYPE_p_p_fdt_resbufW rbpp, ref UInt64[] /*OUT_ARRAY*/ ss, int i) {
1196IntPtr p_ss=Teigha.Core.Helpers.MarshalUInt64FixedArray(ss);
1197 try {
1198 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssnamexW__SWIG_1(swigCPtr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(rbpp), p_ss, i);
1200 return ret;
1201 } finally {
1202ss = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ss); Marshal.FreeCoTaskMem(p_ss);
1203 }
1204 }
1205
1206 public virtual int fdt_ssdbnr(ref UInt64[] /*OUT_ARRAY*/ sname, out int nDbNo) {
1207IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1208 try {
1209 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssdbnr(swigCPtr, p_sname, out nDbNo);
1211 return ret;
1212 } finally {
1213sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1214 }
1215 }
1216
1217 public virtual int fdt_ssmemb(ref UInt64[] /*OUT_ARRAY*/ sname, ref UInt64[] /*OUT_ARRAY*/ ename) {
1218IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1219IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1220 try {
1221 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssmemb(swigCPtr, p_sname, p_ename);
1223 return ret;
1224 } finally {
1225sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1226ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1227 }
1228 }
1229
1230 public virtual int fdt_ssdel(ref UInt64[] /*OUT_ARRAY*/ ename, ref UInt64[] /*OUT_ARRAY*/ sname) {
1231IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1232IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1233 try {
1234 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssdel(swigCPtr, p_ename, p_sname);
1236 return ret;
1237 } finally {
1238ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1239sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1240 }
1241 }
1242
1243 public virtual int fdt_ssdel_all(ref UInt64[] /*OUT_ARRAY*/ ename) {
1244IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1245 try {
1246 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ssdel_all(swigCPtr, p_ename);
1248 return ret;
1249 } finally {
1250ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1251 }
1252 }
1253
1254 public virtual int fdt_xformss(ref UInt64[] /*OUT_ARRAY*/ sname, SWIGTYPE_p_a_4__double matrix) {
1255IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1256 try {
1257 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_xformss(swigCPtr, p_sname, SWIGTYPE_p_a_4__double.getCPtr(matrix));
1259 return ret;
1260 } finally {
1261sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1262 }
1263 }
1264
1265 public virtual int fdt_norm_dxfcode(int dxf_code) {
1266 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_norm_dxfcode(swigCPtr, dxf_code);
1268 return ret;
1269 }
1270
1271 public virtual int fdti_ssinc(ref UInt64[] /*OUT_ARRAY*/ sname) {
1272IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1273 try {
1274 int ret = PCADGlobalsPINVOKE.CFxAPI_fdti_ssinc(swigCPtr, p_sname);
1276 return ret;
1277 } finally {
1278sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1279 }
1280 }
1281
1282 public virtual int fdt_entnext(ref UInt64[] /*OUT_ARRAY*/ ename, ref UInt64[] /*OUT_ARRAY*/ next_ename) {
1283IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1284IntPtr p_next_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(next_ename);
1285 try {
1286 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entnext(swigCPtr, p_ename, p_next_ename);
1288 return ret;
1289 } finally {
1290ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1291next_ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_next_ename); Marshal.FreeCoTaskMem(p_next_ename);
1292 }
1293 }
1294
1295 public virtual int fdt_entpos(fdt_pos position, ref UInt64[] /*OUT_ARRAY*/ ename) {
1296IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1297 try {
1298 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entpos(swigCPtr, (int)position, p_ename);
1300 return ret;
1301 } finally {
1302ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1303 }
1304 }
1305
1306 public virtual int fdt_entlast(ref UInt64[] /*OUT_ARRAY*/ ename) {
1307IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1308 try {
1309 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entlast(swigCPtr, p_ename);
1311 return ret;
1312 } finally {
1313ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1314 }
1315 }
1316
1317 public virtual int fdt_entdel(ref UInt64[] /*OUT_ARRAY*/ ename) {
1318IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1319 try {
1320 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entdel(swigCPtr, p_ename);
1322 return ret;
1323 } finally {
1324ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1325 }
1326 }
1327
1328 public virtual fdt_resbufA fdt_entgetA(ref UInt64[] /*OUT_ARRAY*/ ename, bool openErased) {
1329IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1330 try {
1331 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetA__SWIG_0(swigCPtr, p_ename, openErased);
1332 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
1334 return ret;
1335 } finally {
1336ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1337 }
1338 }
1339
1340 public virtual fdt_resbufA fdt_entgetA(ref UInt64[] /*OUT_ARRAY*/ ename) {
1341IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1342 try {
1343 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetA__SWIG_1(swigCPtr, p_ename);
1344 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
1346 return ret;
1347 } finally {
1348ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1349 }
1350 }
1351
1352 public virtual fdt_resbufW fdt_entgetW(ref UInt64[] /*OUT_ARRAY*/ ename, bool openErased) {
1353IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1354 try {
1355 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetW__SWIG_0(swigCPtr, p_ename, openErased);
1356 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
1358 return ret;
1359 } finally {
1360ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1361 }
1362 }
1363
1364 public virtual fdt_resbufW fdt_entgetW(ref UInt64[] /*OUT_ARRAY*/ ename) {
1365IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1366 try {
1367 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetW__SWIG_1(swigCPtr, p_ename);
1368 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
1370 return ret;
1371 } finally {
1372ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1373 }
1374 }
1375
1376 public virtual fdt_resbufA fdt_entgetxA(ref UInt64[] /*OUT_ARRAY*/ ename, fdt_resbufA applic_name, bool openErased) {
1377IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1378 try {
1379 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetxA__SWIG_0(swigCPtr, p_ename, fdt_resbufA.getCPtr(applic_name), openErased);
1380 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
1382 return ret;
1383 } finally {
1384ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1385 }
1386 }
1387
1388 public virtual fdt_resbufA fdt_entgetxA(ref UInt64[] /*OUT_ARRAY*/ ename, fdt_resbufA applic_name) {
1389IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1390 try {
1391 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetxA__SWIG_1(swigCPtr, p_ename, fdt_resbufA.getCPtr(applic_name));
1392 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
1394 return ret;
1395 } finally {
1396ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1397 }
1398 }
1399
1400 public virtual fdt_resbufW fdt_entgetxW(ref UInt64[] /*OUT_ARRAY*/ ename, fdt_resbufW applic_name, bool openErased) {
1401IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1402 try {
1403 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetxW__SWIG_0(swigCPtr, p_ename, fdt_resbufW.getCPtr(applic_name), openErased);
1404 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
1406 return ret;
1407 } finally {
1408ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1409 }
1410 }
1411
1412 public virtual fdt_resbufW fdt_entgetxW(ref UInt64[] /*OUT_ARRAY*/ ename, fdt_resbufW applic_name) {
1413IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1414 try {
1415 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entgetxW__SWIG_1(swigCPtr, p_ename, fdt_resbufW.getCPtr(applic_name));
1416 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
1418 return ret;
1419 } finally {
1420ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1421 }
1422 }
1423
1424 public virtual int fdt_entmodA(fdt_resbufA rbuffer) {
1425 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entmodA(swigCPtr, fdt_resbufA.getCPtr(rbuffer));
1427 return ret;
1428 }
1429
1430 public virtual int fdt_entmodW(fdt_resbufW rbuffer) {
1431 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entmodW(swigCPtr, fdt_resbufW.getCPtr(rbuffer));
1433 return ret;
1434 }
1435
1436 public virtual int fdt_entmakeA(fdt_resbufA rbuffer) {
1437 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entmakeA(swigCPtr, fdt_resbufA.getCPtr(rbuffer));
1439 return ret;
1440 }
1441
1442 public virtual int fdt_entmakeW(fdt_resbufW rbuffer) {
1443 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entmakeW(swigCPtr, fdt_resbufW.getCPtr(rbuffer));
1445 return ret;
1446 }
1447
1448 public virtual int fdt_entmakexA(fdt_resbufA rbuffer, ref UInt64[] /*OUT_ARRAY*/ ename) {
1449IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1450 try {
1451 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entmakexA(swigCPtr, fdt_resbufA.getCPtr(rbuffer), p_ename);
1453 return ret;
1454 } finally {
1455ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1456 }
1457 }
1458
1459 public virtual int fdt_entmakexW(fdt_resbufW rbuffer, ref UInt64[] /*OUT_ARRAY*/ ename) {
1460IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1461 try {
1462 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entmakexW(swigCPtr, fdt_resbufW.getCPtr(rbuffer), p_ename);
1464 return ret;
1465 } finally {
1466ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1467 }
1468 }
1469
1470 public virtual int fdt_entupd(ref UInt64[] /*OUT_ARRAY*/ ename) {
1471IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1472 try {
1473 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entupd(swigCPtr, p_ename);
1475 return ret;
1476 } finally {
1477ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1478 }
1479 }
1480
1481 public virtual int fdt_entcheck(ref UInt64[] /*OUT_ARRAY*/ ename) {
1482IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1483 try {
1484 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entcheck(swigCPtr, p_ename);
1486 return ret;
1487 } finally {
1488ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1489 }
1490 }
1491
1492 public virtual int fdt_entselA(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
1493IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1494 try {
1495 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entselA(swigCPtr, prompt, p_ename, point /*DOUBLE_FIXED_ARRAY*/);
1497 return ret;
1498 } finally {
1499ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1500 }
1501 }
1502
1503 public virtual int fdt_entselW(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
1504IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1505 try {
1506 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entselW(swigCPtr, prompt, p_ename, point /*DOUBLE_FIXED_ARRAY*/);
1508 return ret;
1509 } finally {
1510ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1511 }
1512 }
1513
1514 public virtual int fdt_nentselA(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufA refents) {
1515IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1516 try {
1517 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_nentselA(swigCPtr, prompt, p_ename, point_rslt /*DOUBLE_FIXED_ARRAY*/, SWIGTYPE_p_a_4__double.getCPtr(matrix), SWIGTYPE_p_p_fdt_resbufA.getCPtr(refents));
1519 return ret;
1520 } finally {
1521ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1522 }
1523 }
1524
1525 public virtual int fdt_nentselW(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufW refents) {
1526IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1527 try {
1528 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_nentselW(swigCPtr, prompt, p_ename, point_rslt /*DOUBLE_FIXED_ARRAY*/, SWIGTYPE_p_a_4__double.getCPtr(matrix), SWIGTYPE_p_p_fdt_resbufW.getCPtr(refents));
1530 return ret;
1531 } finally {
1532ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1533 }
1534 }
1535
1536 public virtual int fdt_nentselpA(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufA refents) {
1537IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1538 try {
1539 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_nentselpA(swigCPtr, prompt, p_ename, point_rslt /*DOUBLE_FIXED_ARRAY*/, flag, SWIGTYPE_p_a_4__double.getCPtr(matrix), SWIGTYPE_p_p_fdt_resbufA.getCPtr(refents));
1541 return ret;
1542 } finally {
1543ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1544 }
1545 }
1546
1547 public virtual int fdt_nentselpW(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufW refents) {
1548IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1549 try {
1550 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_nentselpW(swigCPtr, prompt, p_ename, point_rslt /*DOUBLE_FIXED_ARRAY*/, flag, SWIGTYPE_p_a_4__double.getCPtr(matrix), SWIGTYPE_p_p_fdt_resbufW.getCPtr(refents));
1552 return ret;
1553 } finally {
1554ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1555 }
1556 }
1557
1558 public virtual int fdt_nentselpexA(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufA refents, uint transSpaceFlag, out int gsmarker) {
1559IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1560 try {
1561 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_nentselpexA(swigCPtr, prompt, p_ename, point_rslt /*DOUBLE_FIXED_ARRAY*/, flag, SWIGTYPE_p_a_4__double.getCPtr(matrix), SWIGTYPE_p_p_fdt_resbufA.getCPtr(refents), transSpaceFlag, out gsmarker);
1563 return ret;
1564 } finally {
1565ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1566 }
1567 }
1568
1569 public virtual int fdt_nentselpexW(string prompt, ref UInt64[] /*OUT_ARRAY*/ ename, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufW refents, uint transSpaceFlag, out int gsmarker) {
1570IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1571 try {
1572 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_nentselpexW(swigCPtr, prompt, p_ename, point_rslt /*DOUBLE_FIXED_ARRAY*/, flag, SWIGTYPE_p_a_4__double.getCPtr(matrix), SWIGTYPE_p_p_fdt_resbufW.getCPtr(refents), transSpaceFlag, out gsmarker);
1574 return ret;
1575 } finally {
1576ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1577 }
1578 }
1579
1580 public virtual int fdt_hatch(ref UInt64[] /*OUT_ARRAY*/ sname, ref UInt64[] /*OUT_ARRAY*/ ename) {
1581IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
1582IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1583 try {
1584 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_hatch(swigCPtr, p_sname, p_ename);
1586 return ret;
1587 } finally {
1588sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
1589ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1590 }
1591 }
1592
1593 public virtual fdt_resbufA fdt_tblnextA(string tbl_type, int flag) {
1594 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_tblnextA(swigCPtr, tbl_type, flag);
1595 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
1597 return ret;
1598 }
1599
1600 public virtual fdt_resbufW fdt_tblnextW(string tbl_type, int flag) {
1601 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_tblnextW(swigCPtr, tbl_type, flag);
1602 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
1604 return ret;
1605 }
1606
1607 public virtual fdt_resbufA fdt_tblsearchA(string tbl_type, string item_name, int setnext) {
1608 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_tblsearchA(swigCPtr, tbl_type, item_name, setnext);
1609 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
1611 return ret;
1612 }
1613
1614 public virtual fdt_resbufW fdt_tblsearchW(string tbl_type, string item_name, int setnext) {
1615 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_tblsearchW(swigCPtr, tbl_type, item_name, setnext);
1616 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
1618 return ret;
1619 }
1620
1621 public virtual int fdt_tblobjnameA(string tbl_type, string item_name, ref UInt64[] /*OUT_ARRAY*/ ename) {
1622IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1623 try {
1624 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblobjnameA(swigCPtr, tbl_type, item_name, p_ename);
1626 return ret;
1627 } finally {
1628ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1629 }
1630 }
1631
1632 public virtual int fdt_tblobjnameW(string tbl_type, string item_name, ref UInt64[] /*OUT_ARRAY*/ ename) {
1633IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1634 try {
1635 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblobjnameW(swigCPtr, tbl_type, item_name, p_ename);
1637 return ret;
1638 } finally {
1639ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1640 }
1641 }
1642
1643 public virtual int fdt_tblmodA(fdt_resbufA tbl_record) {
1644 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblmodA(swigCPtr, fdt_resbufA.getCPtr(tbl_record));
1646 return ret;
1647 }
1648
1649 public virtual int fdt_tblmodW(fdt_resbufW tbl_record) {
1650 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblmodW(swigCPtr, fdt_resbufW.getCPtr(tbl_record));
1652 return ret;
1653 }
1654
1655 public virtual int fdt_tblmakeA(fdt_resbufA tbl_record) {
1656 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblmakeA(swigCPtr, fdt_resbufA.getCPtr(tbl_record));
1658 return ret;
1659 }
1660
1661 public virtual int fdt_tblmakeW(fdt_resbufW tbl_record) {
1662 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblmakeW(swigCPtr, fdt_resbufW.getCPtr(tbl_record));
1664 return ret;
1665 }
1666
1667 public virtual int fdt_tblsetA(string tbl_type, string item_name) {
1668 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblsetA(swigCPtr, tbl_type, item_name);
1670 return ret;
1671 }
1672
1673 public virtual int fdt_tblsetW(string tbl_type, string item_name) {
1674 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblsetW(swigCPtr, tbl_type, item_name);
1676 return ret;
1677 }
1678
1679 public virtual int fdt_tblrenA(string tbl_type, string old_name, string new_name) {
1680 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblrenA(swigCPtr, tbl_type, old_name, new_name);
1682 return ret;
1683 }
1684
1685 public virtual int fdt_tblrenW(string tbl_type, string old_name, string new_name) {
1686 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblrenW(swigCPtr, tbl_type, old_name, new_name);
1688 return ret;
1689 }
1690
1691 public virtual int fdt_tbldelA(string tbl_type, string item_name) {
1692 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tbldelA(swigCPtr, tbl_type, item_name);
1694 return ret;
1695 }
1696
1697 public virtual int fdt_tbldelW(string tbl_type, string item_name) {
1698 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tbldelW(swigCPtr, tbl_type, item_name);
1700 return ret;
1701 }
1702
1703 public virtual int fdt_tblpurgeA(string tbl_type, int flag) {
1704 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblpurgeA(swigCPtr, tbl_type, flag);
1706 return ret;
1707 }
1708
1709 public virtual int fdt_tblpurgeW(string tbl_type, int flag) {
1710 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblpurgeW(swigCPtr, tbl_type, flag);
1712 return ret;
1713 }
1714
1715 public virtual int fdt_tblcheckrefA(string tbl_type, string item_name) {
1716 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblcheckrefA(swigCPtr, tbl_type, item_name);
1718 return ret;
1719 }
1720
1721 public virtual int fdt_tblcheckrefW(string tbl_type, string item_name) {
1722 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_tblcheckrefW(swigCPtr, tbl_type, item_name);
1724 return ret;
1725 }
1726
1727 public virtual int fdt_inters(double[] /*DOUBLE_FIXED_ARRAY*/ from_pt1, double[] /*DOUBLE_FIXED_ARRAY*/ to_pt1, double[] /*DOUBLE_FIXED_ARRAY*/ from_pt2, double[] /*DOUBLE_FIXED_ARRAY*/ to_pt2, int flag, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
1728 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_inters(swigCPtr, from_pt1 /*DOUBLE_FIXED_ARRAY*/, to_pt1 /*DOUBLE_FIXED_ARRAY*/, from_pt2 /*DOUBLE_FIXED_ARRAY*/, to_pt2 /*DOUBLE_FIXED_ARRAY*/, flag, point_rslt /*DOUBLE_FIXED_ARRAY*/);
1730 return ret;
1731 }
1732
1733 public virtual double fdt_angle(double[] /*DOUBLE_FIXED_ARRAY*/ point1, double[] /*DOUBLE_FIXED_ARRAY*/ point2) {
1734 double ret = PCADGlobalsPINVOKE.CFxAPI_fdt_angle(swigCPtr, point1 /*DOUBLE_FIXED_ARRAY*/, point2 /*DOUBLE_FIXED_ARRAY*/);
1736 return ret;
1737 }
1738
1739 public virtual double fdt_distance(double[] /*DOUBLE_FIXED_ARRAY*/ point1, double[] /*DOUBLE_FIXED_ARRAY*/ point2) {
1740 double ret = PCADGlobalsPINVOKE.CFxAPI_fdt_distance(swigCPtr, point1 /*DOUBLE_FIXED_ARRAY*/, point2 /*DOUBLE_FIXED_ARRAY*/);
1742 return ret;
1743 }
1744
1745 public virtual void fdt_polar(double[] /*DOUBLE_FIXED_ARRAY*/ point, double angle, double distance, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
1746 PCADGlobalsPINVOKE.CFxAPI_fdt_polar(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, angle, distance, point_rslt /*DOUBLE_FIXED_ARRAY*/);
1748 }
1749
1750 public virtual int fdt_initgetA(int value, string keywords) {
1751 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_initgetA(swigCPtr, value, keywords);
1753 return ret;
1754 }
1755
1756 public virtual int fdt_initgetW(int value, string keywords) {
1757 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_initgetW(swigCPtr, value, keywords);
1759 return ret;
1760 }
1761
1762 public virtual int fdt_getangleA(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, out double angle_rslt) {
1763 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getangleA(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, out angle_rslt);
1765 return ret;
1766 }
1767
1768 public virtual int fdt_getangleW(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, out double angle_rslt) {
1769 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getangleW(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, out angle_rslt);
1771 return ret;
1772 }
1773
1774 public virtual int fdt_getcornerA(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
1775 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcornerA(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, point_rslt /*DOUBLE_FIXED_ARRAY*/);
1777 return ret;
1778 }
1779
1780 public virtual int fdt_getcornerW(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
1781 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcornerW(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, point_rslt /*DOUBLE_FIXED_ARRAY*/);
1783 return ret;
1784 }
1785
1786 public virtual int fdt_getdistA(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, out double distance) {
1787 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getdistA(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, out distance);
1789 return ret;
1790 }
1791
1792 public virtual int fdt_getdistW(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, out double distance) {
1793 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getdistW(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, out distance);
1795 return ret;
1796 }
1797
1798 public virtual int fdt_getorientA(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, out double orientation) {
1799 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getorientA(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, out orientation);
1801 return ret;
1802 }
1803
1804 public virtual int fdt_getorientW(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, out double orientation) {
1805 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getorientW(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, out orientation);
1807 return ret;
1808 }
1809
1810 public virtual int fdt_getpointA(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
1811 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getpointA(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, point_rslt /*DOUBLE_FIXED_ARRAY*/);
1813 return ret;
1814 }
1815
1816 public virtual int fdt_getpointW(double[] /*DOUBLE_FIXED_ARRAY*/ point, string prompt, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
1817 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getpointW(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, prompt, point_rslt /*DOUBLE_FIXED_ARRAY*/);
1819 return ret;
1820 }
1821
1822 public virtual int fdt_getintA(string prompt, out int int_rslt) {
1823 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getintA(swigCPtr, prompt, out int_rslt);
1825 return ret;
1826 }
1827
1828 public virtual int fdt_getintW(string prompt, out int int_rslt) {
1829 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getintW(swigCPtr, prompt, out int_rslt);
1831 return ret;
1832 }
1833
1834 public virtual int fdt_getkwordA(string prompt, string keyword, uint iSize) {
1835 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getkwordA(swigCPtr, prompt, keyword, iSize);
1837 return ret;
1838 }
1839
1840 public virtual int fdt_getkwordW(string prompt, string keyword, uint iSize) {
1841 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getkwordW(swigCPtr, prompt, keyword, iSize);
1843 return ret;
1844 }
1845
1846 public virtual int fdt_getrealA(string prompt, out double real_rslt) {
1847 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getrealA(swigCPtr, prompt, out real_rslt);
1849 return ret;
1850 }
1851
1852 public virtual int fdt_getrealW(string prompt, out double real_rslt) {
1853 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getrealW(swigCPtr, prompt, out real_rslt);
1855 return ret;
1856 }
1857
1858 public virtual int fdt_getinputA(string keyword, uint iSize) {
1859 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getinputA(swigCPtr, keyword, iSize);
1861 return ret;
1862 }
1863
1864 public virtual int fdt_getinputW(string keyword, uint iSize) {
1865 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getinputW(swigCPtr, keyword, iSize);
1867 return ret;
1868 }
1869
1870 public virtual int fdt_getstringA(int flag, string prompt, string string_rslt, uint iSize) {
1871 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getstringA(swigCPtr, flag, prompt, string_rslt, iSize);
1873 return ret;
1874 }
1875
1876 public virtual int fdt_getstringW(int flag, string prompt, string string_rslt, uint iSize) {
1877 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getstringW(swigCPtr, flag, prompt, string_rslt, iSize);
1879 return ret;
1880 }
1881
1882 public virtual void fdt_setosnapinactive() {
1885 }
1886
1887 public virtual int fdt_usrbrk() {
1888 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_usrbrk(swigCPtr);
1890 return ret;
1891 }
1892
1893 public virtual int fdt_menucmdA(string pString) {
1894 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_menucmdA(swigCPtr, pString);
1896 return ret;
1897 }
1898
1899 public virtual int fdt_menucmdW(string pString) {
1900 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_menucmdW(swigCPtr, pString);
1902 return ret;
1903 }
1904
1905 public virtual int fdt_findfileA(string lpszFilename, string lpszResultFilename) {
1906 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_findfileA(swigCPtr, lpszFilename, lpszResultFilename);
1908 return ret;
1909 }
1910
1911 public virtual int fdt_findfileW(string lpszFilename, string lpszResultFilename) {
1912 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_findfileW(swigCPtr, lpszFilename, lpszResultFilename);
1914 return ret;
1915 }
1916
1917 public virtual int fdt_getfiledA(string lpszTitle, string lpszDefault, string lpszExtension, int flags, fdt_resbufA pResultFilename) {
1918 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getfiledA(swigCPtr, lpszTitle, lpszDefault, lpszExtension, flags, fdt_resbufA.getCPtr(pResultFilename));
1920 return ret;
1921 }
1922
1923 public virtual int fdt_getfiledW(string lpszTitle, string lpszDefault, string lpszExtension, int flags, fdt_resbufW pResultFilename) {
1924 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getfiledW(swigCPtr, lpszTitle, lpszDefault, lpszExtension, flags, fdt_resbufW.getCPtr(pResultFilename));
1926 return ret;
1927 }
1928
1929 public virtual int fdt_handentA(string handle, ref UInt64[] /*OUT_ARRAY*/ ename) {
1930IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1931 try {
1932 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_handentA(swigCPtr, handle, p_ename);
1934 return ret;
1935 } finally {
1936ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1937 }
1938 }
1939
1940 public virtual int fdt_handentW(string handle, ref UInt64[] /*OUT_ARRAY*/ ename) {
1941IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1942 try {
1943 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_handentW(swigCPtr, handle, p_ename);
1945 return ret;
1946 } finally {
1947ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1948 }
1949 }
1950
1951 public virtual int fdt_transA(double[] /*DOUBLE_FIXED_ARRAY*/ point, fdt_resbufA origin_cs, fdt_resbufA target_cs, int disp_mode, double[] /*DOUBLE_FIXED_ARRAY*/ rslt_point) {
1952 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_transA(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, fdt_resbufA.getCPtr(origin_cs), fdt_resbufA.getCPtr(target_cs), disp_mode, rslt_point /*DOUBLE_FIXED_ARRAY*/);
1954 return ret;
1955 }
1956
1957 public virtual int fdt_transW(double[] /*DOUBLE_FIXED_ARRAY*/ point, fdt_resbufW origin_cs, fdt_resbufW target_cs, int disp_mode, double[] /*DOUBLE_FIXED_ARRAY*/ rslt_point) {
1958 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_transW(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, fdt_resbufW.getCPtr(origin_cs), fdt_resbufW.getCPtr(target_cs), disp_mode, rslt_point /*DOUBLE_FIXED_ARRAY*/);
1960 return ret;
1961 }
1962
1963 public virtual int fdt_redraw(ref UInt64[] /*OUT_ARRAY*/ ename, int mode) {
1964IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
1965 try {
1966 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_redraw(swigCPtr, p_ename, mode);
1968 return ret;
1969 } finally {
1970ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
1971 }
1972 }
1973
1974 public virtual int fdt_regen() {
1975 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_regen(swigCPtr);
1977 return ret;
1978 }
1979
1980 public virtual int fdt_grreadA(int flag, out int type, fdt_resbufA result, bool bTrack) {
1981 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grreadA__SWIG_0(swigCPtr, flag, out type, fdt_resbufA.getCPtr(result), bTrack);
1983 return ret;
1984 }
1985
1986 public virtual int fdt_grreadA(int flag, out int type, fdt_resbufA result) {
1987 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grreadA__SWIG_1(swigCPtr, flag, out type, fdt_resbufA.getCPtr(result));
1989 return ret;
1990 }
1991
1992 public virtual int fdt_grreadW(int flag, out int type, fdt_resbufW result, bool bTrack) {
1993 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grreadW__SWIG_0(swigCPtr, flag, out type, fdt_resbufW.getCPtr(result), bTrack);
1995 return ret;
1996 }
1997
1998 public virtual int fdt_grreadW(int flag, out int type, fdt_resbufW result) {
1999 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grreadW__SWIG_1(swigCPtr, flag, out type, fdt_resbufW.getCPtr(result));
2001 return ret;
2002 }
2003
2004 public virtual int fdt_capture_grread() {
2007 return ret;
2008 }
2009
2010 public virtual int fdt_release_grread() {
2013 return ret;
2014 }
2015
2016 public virtual int fdt_grdraw(double[] /*DOUBLE_FIXED_ARRAY*/ point1, double[] /*DOUBLE_FIXED_ARRAY*/ point2, int color, int flag) {
2017 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grdraw(swigCPtr, point1 /*DOUBLE_FIXED_ARRAY*/, point2 /*DOUBLE_FIXED_ARRAY*/, color, flag);
2019 return ret;
2020 }
2021
2022 public virtual int fdt_grvecsA(fdt_resbufA vlist, SWIGTYPE_p_a_4__double matrix) {
2023 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grvecsA(swigCPtr, fdt_resbufA.getCPtr(vlist), SWIGTYPE_p_a_4__double.getCPtr(matrix));
2025 return ret;
2026 }
2027
2028 public virtual int fdt_grvecsW(fdt_resbufW vlist, SWIGTYPE_p_a_4__double matrix) {
2029 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grvecsW(swigCPtr, fdt_resbufW.getCPtr(vlist), SWIGTYPE_p_a_4__double.getCPtr(matrix));
2031 return ret;
2032 }
2033
2034 public virtual int fdt_grtextA(string string_, out int pBox, out int pHighlight) {
2035 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grtextA__SWIG_0(swigCPtr, string_, out pBox, out pHighlight);
2037 return ret;
2038 }
2039
2040 public virtual int fdt_grtextA(string string_, out int pBox) {
2041 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grtextA__SWIG_1(swigCPtr, string_, out pBox);
2043 return ret;
2044 }
2045
2046 public virtual int fdt_grtextA(string string_) {
2047 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grtextA__SWIG_2(swigCPtr, string_);
2049 return ret;
2050 }
2051
2052 public virtual int fdt_grtextW(string string_, out int pBox, out int pHighlight) {
2053 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grtextW__SWIG_0(swigCPtr, string_, out pBox, out pHighlight);
2055 return ret;
2056 }
2057
2058 public virtual int fdt_grtextW(string string_, out int pBox) {
2059 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grtextW__SWIG_1(swigCPtr, string_, out pBox);
2061 return ret;
2062 }
2063
2064 public virtual int fdt_grtextW(string string_) {
2065 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grtextW__SWIG_2(swigCPtr, string_);
2067 return ret;
2068 }
2069
2070 public virtual int fdt_grclear() {
2071 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_grclear(swigCPtr);
2073 return ret;
2074 }
2075
2076 public virtual int fdt_osnapA(double[] /*DOUBLE_FIXED_ARRAY*/ point, string osnap_key, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
2077 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_osnapA(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, osnap_key, point_rslt /*DOUBLE_FIXED_ARRAY*/);
2079 return ret;
2080 }
2081
2082 public virtual int fdt_osnapW(double[] /*DOUBLE_FIXED_ARRAY*/ point, string osnap_key, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
2083 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_osnapW(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, osnap_key, point_rslt /*DOUBLE_FIXED_ARRAY*/);
2085 return ret;
2086 }
2087
2088 public virtual int fdt_osnap_mode(double[] /*DOUBLE_FIXED_ARRAY*/ point, int osmode_flag, double[] /*DOUBLE_FIXED_ARRAY*/ point_rslt) {
2089 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_osnap_mode(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/, osmode_flag, point_rslt /*DOUBLE_FIXED_ARRAY*/);
2091 return ret;
2092 }
2093
2094 public virtual int fdt_getsnapmodeA(string osnap_key, out short osmode_flag) {
2095 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getsnapmodeA(swigCPtr, osnap_key, out osmode_flag);
2097 return ret;
2098 }
2099
2100 public virtual int fdt_getsnapmodeW(string osnap_key, out short osmode_flag) {
2101 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getsnapmodeW(swigCPtr, osnap_key, out osmode_flag);
2103 return ret;
2104 }
2105
2106 public virtual int fdt_appinters(double[] /*DOUBLE_FIXED_ARRAY*/ pt1, double[] /*DOUBLE_FIXED_ARRAY*/ pt2, double[] /*DOUBLE_FIXED_ARRAY*/ result) {
2107 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_appinters(swigCPtr, pt1 /*DOUBLE_FIXED_ARRAY*/, pt2 /*DOUBLE_FIXED_ARRAY*/, result /*DOUBLE_FIXED_ARRAY*/);
2109 return ret;
2110 }
2111
2112 public virtual int fdt_textboxA(fdt_resbufA descr_buffer, double[] /*DOUBLE_FIXED_ARRAY*/ corner1, double[] /*DOUBLE_FIXED_ARRAY*/ corner2) {
2113 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_textboxA(swigCPtr, fdt_resbufA.getCPtr(descr_buffer), corner1 /*DOUBLE_FIXED_ARRAY*/, corner2 /*DOUBLE_FIXED_ARRAY*/);
2115 return ret;
2116 }
2117
2118 public virtual int fdt_textboxW(fdt_resbufW descr_buffer, double[] /*DOUBLE_FIXED_ARRAY*/ corner1, double[] /*DOUBLE_FIXED_ARRAY*/ corner2) {
2119 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_textboxW(swigCPtr, fdt_resbufW.getCPtr(descr_buffer), corner1 /*DOUBLE_FIXED_ARRAY*/, corner2 /*DOUBLE_FIXED_ARRAY*/);
2121 return ret;
2122 }
2123
2124 public virtual int fdt_getcurr_mousepos(double[] /*DOUBLE_FIXED_ARRAY*/ point) {
2125 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcurr_mousepos(swigCPtr, point /*DOUBLE_FIXED_ARRAY*/);
2127 return ret;
2128 }
2129
2130 public virtual int fdt_draggenA(ref UInt64[] /*OUT_ARRAY*/ sname, string prompt, int cursor, SWIGTYPE_p_f_a_3__double_a_4__a_4__double__int scanfunc, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
2131IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
2132 try {
2133 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_draggenA(swigCPtr, p_sname, prompt, cursor, SWIGTYPE_p_f_a_3__double_a_4__a_4__double__int.getCPtr(scanfunc), point /*DOUBLE_FIXED_ARRAY*/);
2135 return ret;
2136 } finally {
2137sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
2138 }
2139 }
2140
2141 public virtual int fdt_draggenW(ref UInt64[] /*OUT_ARRAY*/ sname, string prompt, int cursor, SWIGTYPE_p_f_a_3__double_a_4__a_4__double__int scanfunc, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
2142IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
2143 try {
2144 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_draggenW(swigCPtr, p_sname, prompt, cursor, SWIGTYPE_p_f_a_3__double_a_4__a_4__double__int.getCPtr(scanfunc), point /*DOUBLE_FIXED_ARRAY*/);
2146 return ret;
2147 } finally {
2148sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
2149 }
2150 }
2151
2152 public virtual int fdt_init_dragmodeA(int mode, fdt_resbufA params_) {
2153 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_init_dragmodeA(swigCPtr, mode, fdt_resbufA.getCPtr(params_));
2155 return ret;
2156 }
2157
2158 public virtual int fdt_init_dragmodeW(int mode, fdt_resbufW params_) {
2159 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_init_dragmodeW(swigCPtr, mode, fdt_resbufW.getCPtr(params_));
2161 return ret;
2162 }
2163
2164 public virtual int fdt_exit_dragmode() {
2165 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_exit_dragmode(swigCPtr);
2167 return ret;
2168 }
2169
2170 public virtual int fdt_vportsA(SWIGTYPE_p_p_fdt_resbufA viewport_list) {
2171 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_vportsA(swigCPtr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(viewport_list));
2173 return ret;
2174 }
2175
2176 public virtual int fdt_vportsW(SWIGTYPE_p_p_fdt_resbufW viewport_list) {
2177 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_vportsW(swigCPtr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(viewport_list));
2179 return ret;
2180 }
2181
2182 public virtual int fdt_tabletinfoA(fdt_tablet_recA tab_info) {
2185 return ret;
2186 }
2187
2188 public virtual int fdt_tabletinfoW(fdt_tablet_recW tab_info) {
2191 return ret;
2192 }
2193
2194 public virtual int fdt_flxnewA(string filename, string template_filename) {
2195 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxnewA(swigCPtr, filename, template_filename);
2197 return ret;
2198 }
2199
2200 public virtual int fdt_flxnewW(string filename, string template_filename) {
2201 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxnewW(swigCPtr, filename, template_filename);
2203 return ret;
2204 }
2205
2206 public virtual int fdt_flxrnewA(string filename, string template_filename) {
2207 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxrnewA(swigCPtr, filename, template_filename);
2209 return ret;
2210 }
2211
2212 public virtual int fdt_flxrnewW(string filename, string template_filename) {
2213 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxrnewW(swigCPtr, filename, template_filename);
2215 return ret;
2216 }
2217
2218 public virtual int fdt_flxopenA(string filename, int ro_flag) {
2219 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxopenA(swigCPtr, filename, ro_flag);
2221 return ret;
2222 }
2223
2224 public virtual int fdt_flxopenW(string filename, int ro_flag) {
2225 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxopenW(swigCPtr, filename, ro_flag);
2227 return ret;
2228 }
2229
2230 public virtual int fdt_flxropenA(string filename, int ro_flag) {
2231 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxropenA(swigCPtr, filename, ro_flag);
2233 return ret;
2234 }
2235
2236 public virtual int fdt_flxropenW(string filename, int ro_flag) {
2237 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxropenW(swigCPtr, filename, ro_flag);
2239 return ret;
2240 }
2241
2242 public virtual int fdt_flxsave() {
2243 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxsave(swigCPtr);
2245 return ret;
2246 }
2247
2248 public virtual int fdt_flxsaveasA(string filename) {
2249 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxsaveasA(swigCPtr, filename);
2251 return ret;
2252 }
2253
2254 public virtual int fdt_flxsaveasW(string filename) {
2255 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxsaveasW(swigCPtr, filename);
2257 return ret;
2258 }
2259
2260 public virtual int fdt_flxclose(int save_mode) {
2261 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxclose(swigCPtr, save_mode);
2263 return ret;
2264 }
2265
2266 public virtual int fdt_flxclosevport() {
2267 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxclosevport(swigCPtr);
2269 return ret;
2270 }
2271
2272 public virtual int fdt_flxnamesA(SWIGTYPE_p_p_fdt_resbufA names) {
2273 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxnamesA(swigCPtr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(names));
2275 return ret;
2276 }
2277
2278 public virtual int fdt_flxnamesW(SWIGTYPE_p_p_fdt_resbufW names) {
2279 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_flxnamesW(swigCPtr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(names));
2281 return ret;
2282 }
2283
2284 public virtual int fdt_getflxinfoA(string FileName, FDT_FLX_INFOA FileInfo, UInt32 /*SIMPLETYPE*/ BMPSize, SWIGTYPE_p_HGLOBAL BMPHandle) {
2285 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getflxinfoA(swigCPtr, FileName, FDT_FLX_INFOA.getCPtr(FileInfo), BMPSize /*SIMPLETYPE*/, SWIGTYPE_p_HGLOBAL.getCPtr(BMPHandle));
2287 return ret;
2288 }
2289
2290 public virtual int fdt_getflxinfoW(string FileName, FDT_FLX_INFOW FileInfo, UInt32 /*SIMPLETYPE*/ BMPSize, SWIGTYPE_p_HGLOBAL BMPHandle) {
2291 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getflxinfoW(swigCPtr, FileName, FDT_FLX_INFOW.getCPtr(FileInfo), BMPSize /*SIMPLETYPE*/, SWIGTYPE_p_HGLOBAL.getCPtr(BMPHandle));
2293 return ret;
2294 }
2295
2296 public virtual int fdt_setflxinfoA(string FileName, FDT_FLX_INFOA FileInfo) {
2297 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setflxinfoA(swigCPtr, FileName, FDT_FLX_INFOA.getCPtr(FileInfo));
2299 return ret;
2300 }
2301
2302 public virtual int fdt_setflxinfoW(string FileName, FDT_FLX_INFOW FileInfo) {
2303 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setflxinfoW(swigCPtr, FileName, FDT_FLX_INFOW.getCPtr(FileInfo));
2305 return ret;
2306 }
2307
2308 public virtual int fdt_getpreviewbitmapA(string FileName, SWIGTYPE_p_FxBitmap PrevBitmap, SWIGTYPE_p_FxPalette BmpPalette) {
2309 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getpreviewbitmapA(swigCPtr, FileName, SWIGTYPE_p_FxBitmap.getCPtr(PrevBitmap), SWIGTYPE_p_FxPalette.getCPtr(BmpPalette));
2311 return ret;
2312 }
2313
2314 public virtual int fdt_getpreviewbitmapW(string FileName, SWIGTYPE_p_FxBitmap PrevBitmap, SWIGTYPE_p_FxPalette BmpPalette) {
2315 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getpreviewbitmapW(swigCPtr, FileName, SWIGTYPE_p_FxBitmap.getCPtr(PrevBitmap), SWIGTYPE_p_FxPalette.getCPtr(BmpPalette));
2317 return ret;
2318 }
2319
2320 public virtual int fdt_getcolorindex(IntPtr /*SIMPLETYPE*/ parent_window, int default_value, int mode_flag, out int int_result) {
2321 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcolorindex(swigCPtr, parent_window /*SIMPLETYPE*/, default_value, mode_flag, out int_result);
2323 return ret;
2324 }
2325
2327 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getbackgroundcolorref(swigCPtr, SWIGTYPE_p_FxColorRef.getCPtr(colorref));
2329 return ret;
2330 }
2331
2332 public virtual int fdt_getcolorref(int colorindex, SWIGTYPE_p_FxColorRef colorref) {
2333 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcolorref(swigCPtr, colorindex, SWIGTYPE_p_FxColorRef.getCPtr(colorref));
2335 return ret;
2336 }
2337
2338 public virtual int fdt_setcolorref(int colorindex, SWIGTYPE_p_FxColorRef new_colorref, SWIGTYPE_p_FxColorRef old_colorref) {
2339 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setcolorref(swigCPtr, colorindex, SWIGTYPE_p_FxColorRef.getCPtr(new_colorref), SWIGTYPE_p_FxColorRef.getCPtr(old_colorref));
2341 return ret;
2342 }
2343
2344 public virtual int fdt_getdesktopcolor(short iDescElement, out short iColorIndex) {
2345 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getdesktopcolor(swigCPtr, iDescElement, out iColorIndex);
2347 return ret;
2348 }
2349
2350 public virtual int fdt_setdesktopcolor(short iDescElement, short iColorIndex) {
2351 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setdesktopcolor(swigCPtr, iDescElement, iColorIndex);
2353 return ret;
2354 }
2355
2356 public virtual uint fdt_getrgb(int colorIndex) {
2357 uint ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getrgb(swigCPtr, colorIndex);
2359 return ret;
2360 }
2361
2365 return ret;
2366 }
2367
2371 return ret;
2372 }
2373
2374 public virtual int fdt_set3dview(int nDbNo, int nWndNo, double[] /*DOUBLE_FIXED_ARRAY*/ ZDir, double[] /*DOUBLE_FIXED_ARRAY*/ XDir, double[] /*DOUBLE_FIXED_ARRAY*/ Center_Point, double Height) {
2375 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_set3dview(swigCPtr, nDbNo, nWndNo, ZDir /*DOUBLE_FIXED_ARRAY*/, XDir /*DOUBLE_FIXED_ARRAY*/, Center_Point /*DOUBLE_FIXED_ARRAY*/, Height);
2377 return ret;
2378 }
2379
2380 public virtual int fdt_setviewA(fdt_resbufA View_deflist, int Vport_id) {
2381 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setviewA(swigCPtr, fdt_resbufA.getCPtr(View_deflist), Vport_id);
2383 return ret;
2384 }
2385
2386 public virtual int fdt_setviewW(fdt_resbufW View_deflist, int Vport_id) {
2387 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setviewW(swigCPtr, fdt_resbufW.getCPtr(View_deflist), Vport_id);
2389 return ret;
2390 }
2391
2392 public virtual int fdt_getactvport(out short nDbNo, out short nVpNo) {
2393 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getactvport(swigCPtr, out nDbNo, out nVpNo);
2395 return ret;
2396 }
2397
2398 public virtual int fdt_setactvport(short nDbNo, short nVpNo) {
2399 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setactvport(swigCPtr, nDbNo, nVpNo);
2401 return ret;
2402 }
2403
2404 public virtual int fdt_zoomext(short nDbNo, short nVpNo) {
2405 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_zoomext(swigCPtr, nDbNo, nVpNo);
2407 return ret;
2408 }
2409
2410 public virtual int fdt_gethandle(out IntPtr /*SIMPLETYPE*/ frame_hwnd, out IntPtr /*SIMPLETYPE*/ client_hwnd) {
2411 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_gethandle(swigCPtr, out frame_hwnd, out client_hwnd);
2413 return ret;
2414 }
2415
2416 public virtual int fdt_compfontA(string source_file, string target_file) {
2417 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_compfontA(swigCPtr, source_file, target_file);
2419 return ret;
2420 }
2421
2422 public virtual int fdt_compfontW(string source_file, string target_file) {
2423 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_compfontW(swigCPtr, source_file, target_file);
2425 return ret;
2426 }
2427
2428 public virtual int fdt_setcursor(short nDbNo, cursordef cursor_style) {
2429 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setcursor(swigCPtr, nDbNo, cursordef.getCPtr(cursor_style));
2431 return ret;
2432 }
2433
2434 public virtual int fdt_getcursor(short nDbNo, cursordef cursor_style) {
2435 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getcursor(swigCPtr, nDbNo, cursordef.getCPtr(cursor_style));
2437 return ret;
2438 }
2439
2440 public virtual int fdt_poly2bspline(ref UInt64[] /*OUT_ARRAY*/ ename, int steps) {
2441IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2442 try {
2443 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_poly2bspline(swigCPtr, p_ename, steps);
2445 return ret;
2446 } finally {
2447ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2448 }
2449 }
2450
2451 public virtual int fdt_bspline2poly(ref UInt64[] /*OUT_ARRAY*/ ename) {
2452IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2453 try {
2454 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_bspline2poly(swigCPtr, p_ename);
2456 return ret;
2457 } finally {
2458ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2459 }
2460 }
2461
2462 public virtual int fdt_poly2catrom_2d(ref UInt64[] /*OUT_ARRAY*/ ename, int steps, double tension) {
2463IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2464 try {
2465 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_poly2catrom_2d(swigCPtr, p_ename, steps, tension);
2467 return ret;
2468 } finally {
2469ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2470 }
2471 }
2472
2473 public virtual int fdt_catrom2poly_2d(ref UInt64[] /*OUT_ARRAY*/ ename) {
2474IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2475 try {
2476 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_catrom2poly_2d(swigCPtr, p_ename);
2478 return ret;
2479 } finally {
2480ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2481 }
2482 }
2483
2484 public virtual fdt_resbufA fdt_inputA(string Prompt, int FilterFlag) {
2485 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_inputA(swigCPtr, Prompt, FilterFlag);
2486 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
2488 return ret;
2489 }
2490
2491 public virtual fdt_resbufW fdt_inputW(string Prompt, int FilterFlag) {
2492 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_inputW(swigCPtr, Prompt, FilterFlag);
2493 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
2495 return ret;
2496 }
2497
2498 public virtual int fdt_boundingbox(ref UInt64[] /*OUT_ARRAY*/ name, double[] /*DOUBLE_FIXED_ARRAY*/ min, double[] /*DOUBLE_FIXED_ARRAY*/ max) {
2499IntPtr p_name=Teigha.Core.Helpers.MarshalUInt64FixedArray(name);
2500 try {
2501 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_boundingbox(swigCPtr, p_name, min /*DOUBLE_FIXED_ARRAY*/, max /*DOUBLE_FIXED_ARRAY*/);
2503 return ret;
2504 } finally {
2505name = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_name); Marshal.FreeCoTaskMem(p_name);
2506 }
2507 }
2508
2509 public virtual int fdt_pcontour(ref UInt64[] /*OUT_ARRAY*/ ssname, int mode, double[] /*DOUBLE_FIXED_ARRAY*/ inner_pnt, ref UInt64[] /*OUT_ARRAY*/ resname) {
2510IntPtr p_ssname=Teigha.Core.Helpers.MarshalUInt64FixedArray(ssname);
2511IntPtr p_resname=Teigha.Core.Helpers.MarshalUInt64FixedArray(resname);
2512 try {
2513 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_pcontour(swigCPtr, p_ssname, mode, inner_pnt /*DOUBLE_FIXED_ARRAY*/, p_resname);
2515 return ret;
2516 } finally {
2517ssname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ssname); Marshal.FreeCoTaskMem(p_ssname);
2518resname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_resname); Marshal.FreeCoTaskMem(p_resname);
2519 }
2520 }
2521
2522 public virtual int fdt_wmfoutA(string szFileName, int nDbNo, int nWndNo, char Mode, double[] /*DOUBLE_FIXED_ARRAY*/ PntMin, double[] /*DOUBLE_FIXED_ARRAY*/ PntMax, int nGroundColor, int nEntityColor) {
2523 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_wmfoutA(swigCPtr, szFileName, nDbNo, nWndNo, Mode, PntMin /*DOUBLE_FIXED_ARRAY*/, PntMax /*DOUBLE_FIXED_ARRAY*/, nGroundColor, nEntityColor);
2525 return ret;
2526 }
2527
2528 public virtual int fdt_wmfoutW(string szFileName, int nDbNo, int nWndNo, char Mode, double[] /*DOUBLE_FIXED_ARRAY*/ PntMin, double[] /*DOUBLE_FIXED_ARRAY*/ PntMax, int nGroundColor, int nEntityColor) {
2529 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_wmfoutW(swigCPtr, szFileName, nDbNo, nWndNo, Mode, PntMin /*DOUBLE_FIXED_ARRAY*/, PntMax /*DOUBLE_FIXED_ARRAY*/, nGroundColor, nEntityColor);
2531 return ret;
2532 }
2533
2534 public virtual int fdt_setselecthookA(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnSelHook, string lpszAppName) {
2535 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setselecthookA(swigCPtr, SWIGTYPE_p_f_a_2__q_const__uintptr_t__int.getCPtr(fnSelHook), lpszAppName);
2537 return ret;
2538 }
2539
2540 public virtual int fdt_setselecthookW(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnSelHook, string lpszAppName) {
2541 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setselecthookW(swigCPtr, SWIGTYPE_p_f_a_2__q_const__uintptr_t__int.getCPtr(fnSelHook), lpszAppName);
2543 return ret;
2544 }
2545
2549 return ret;
2550 }
2551
2555 return ret;
2556 }
2557
2558 public virtual int fdt_delselecthookex() {
2561 return ret;
2562 }
2563
2564 public virtual int fdt_purgeselecthooklist() {
2567 return ret;
2568 }
2569
2573 return ret;
2574 }
2575
2576 public virtual int fdt_delmousehook() {
2577 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_delmousehook(swigCPtr);
2579 return ret;
2580 }
2581
2582 public virtual int fdt_setdbmodhookA(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnDbModHook, string lpszAppName) {
2583 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setdbmodhookA(swigCPtr, SWIGTYPE_p_f_a_2__q_const__uintptr_t__int.getCPtr(fnDbModHook), lpszAppName);
2585 return ret;
2586 }
2587
2588 public virtual int fdt_setdbmodhookW(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnDbModHook, string lpszAppName) {
2589 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setdbmodhookW(swigCPtr, SWIGTYPE_p_f_a_2__q_const__uintptr_t__int.getCPtr(fnDbModHook), lpszAppName);
2591 return ret;
2592 }
2593
2597 return ret;
2598 }
2599
2600 public virtual int fdt_purgedbmodhooklist() {
2603 return ret;
2604 }
2605
2606 public virtual int fdt_entnext_dbhook(ref UInt64[] /*OUT_ARRAY*/ ename, ref UInt64[] /*OUT_ARRAY*/ next_ename) {
2607IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2608IntPtr p_next_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(next_ename);
2609 try {
2610 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entnext_dbhook(swigCPtr, p_ename, p_next_ename);
2612 return ret;
2613 } finally {
2614ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2615next_ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_next_ename); Marshal.FreeCoTaskMem(p_next_ename);
2616 }
2617 }
2618
2619 public virtual fdt_resbufA fdt_entget_dbhookA(ref UInt64[] /*OUT_ARRAY*/ ename, bool openErased) {
2620IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2621 try {
2622 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entget_dbhookA__SWIG_0(swigCPtr, p_ename, openErased);
2623 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
2625 return ret;
2626 } finally {
2627ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2628 }
2629 }
2630
2631 public virtual fdt_resbufA fdt_entget_dbhookA(ref UInt64[] /*OUT_ARRAY*/ ename) {
2632IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2633 try {
2634 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entget_dbhookA__SWIG_1(swigCPtr, p_ename);
2635 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
2637 return ret;
2638 } finally {
2639ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2640 }
2641 }
2642
2643 public virtual fdt_resbufW fdt_entget_dbhookW(ref UInt64[] /*OUT_ARRAY*/ ename, bool openErased) {
2644IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2645 try {
2646 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entget_dbhookW__SWIG_0(swigCPtr, p_ename, openErased);
2647 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
2649 return ret;
2650 } finally {
2651ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2652 }
2653 }
2654
2655 public virtual fdt_resbufW fdt_entget_dbhookW(ref UInt64[] /*OUT_ARRAY*/ ename) {
2656IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2657 try {
2658 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_entget_dbhookW__SWIG_1(swigCPtr, p_ename);
2659 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
2661 return ret;
2662 } finally {
2663ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2664 }
2665 }
2666
2667 public virtual int fdt_entmod_dbhookA(fdt_resbufA rbuffer) {
2670 return ret;
2671 }
2672
2673 public virtual int fdt_entmod_dbhookW(fdt_resbufW rbuffer) {
2676 return ret;
2677 }
2678
2679 public virtual int fdt_entmod_type() {
2680 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_entmod_type(swigCPtr);
2682 return ret;
2683 }
2684
2685 public virtual int fdt_isselecthook() {
2686 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isselecthook(swigCPtr);
2688 return ret;
2689 }
2690
2691 public virtual int fdt_isdbmodhook() {
2692 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_isdbmodhook(swigCPtr);
2694 return ret;
2695 }
2696
2697 public virtual int fdt_ismousehook() {
2698 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_ismousehook(swigCPtr);
2700 return ret;
2701 }
2702
2703 public virtual int fdt_setfunhelpA(string szName, string szHelpFile, string szHelpTopic) {
2704 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setfunhelpA(swigCPtr, szName, szHelpFile, szHelpTopic);
2706 return ret;
2707 }
2708
2709 public virtual int fdt_setfunhelpW(string szName, string szHelpFile, string szHelpTopic) {
2710 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setfunhelpW(swigCPtr, szName, szHelpFile, szHelpTopic);
2712 return ret;
2713 }
2714
2715 public virtual int fdt_addimage2libA(string szLibName, string szImageString, string szImagePath, ushort wType) {
2716 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_addimage2libA(swigCPtr, szLibName, szImageString, szImagePath, wType);
2718 return ret;
2719 }
2720
2721 public virtual int fdt_addimage2libW(string szLibName, string szImageString, string szImagePath, ushort wType) {
2722 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_addimage2libW(swigCPtr, szLibName, szImageString, szImagePath, wType);
2724 return ret;
2725 }
2726
2727 public virtual ushort fdt_getimagetypeA(string szLibName, string szImageString) {
2728 ushort ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getimagetypeA(swigCPtr, szLibName, szImageString);
2730 return ret;
2731 }
2732
2733 public virtual ushort fdt_getimagetypeW(string szLibName, string szImageString) {
2734 ushort ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getimagetypeW(swigCPtr, szLibName, szImageString);
2736 return ret;
2737 }
2738
2739 public virtual int fdt_delimagefromlibA(string szLibName, string szImageString) {
2740 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_delimagefromlibA(swigCPtr, szLibName, szImageString);
2742 return ret;
2743 }
2744
2745 public virtual int fdt_delimagefromlibW(string szLibName, string szImageString) {
2746 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_delimagefromlibW(swigCPtr, szLibName, szImageString);
2748 return ret;
2749 }
2750
2751 public virtual int fdt_remove(ref UInt64[] /*OUT_ARRAY*/ ssname) {
2752IntPtr p_ssname=Teigha.Core.Helpers.MarshalUInt64FixedArray(ssname);
2753 try {
2754 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_remove(swigCPtr, p_ssname);
2756 return ret;
2757 } finally {
2758ssname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ssname); Marshal.FreeCoTaskMem(p_ssname);
2759 }
2760 }
2761
2762 public virtual int fdt_removeall() {
2763 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_removeall(swigCPtr);
2765 return ret;
2766 }
2767
2768 public virtual int fdt_remdelall() {
2769 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_remdelall(swigCPtr);
2771 return ret;
2772 }
2773
2774 public virtual int fdt_setpreselect(ref UInt64[] /*OUT_ARRAY*/ selset) {
2775IntPtr p_selset=Teigha.Core.Helpers.MarshalUInt64FixedArray(selset);
2776 try {
2777 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setpreselect(swigCPtr, p_selset);
2779 return ret;
2780 } finally {
2781selset = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_selset); Marshal.FreeCoTaskMem(p_selset);
2782 }
2783 }
2784
2785 public virtual int fdt_getprofileslistA(string CurrentProfileName, SWIGTYPE_p_p_fdt_resbufA ListOfProfiles, uint size) {
2786 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getprofileslistA(swigCPtr, CurrentProfileName, SWIGTYPE_p_p_fdt_resbufA.getCPtr(ListOfProfiles), size);
2788 return ret;
2789 }
2790
2791 public virtual int fdt_getprofileslistW(string CurrentProfileName, SWIGTYPE_p_p_fdt_resbufW ListOfProfiles, uint size) {
2792 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getprofileslistW(swigCPtr, CurrentProfileName, SWIGTYPE_p_p_fdt_resbufW.getCPtr(ListOfProfiles), size);
2794 return ret;
2795 }
2796
2797 public virtual int fdt_genout(ref UInt64[] /*OUT_ARRAY*/ ename, short mode, IntPtr /*SIMPLETYPE*/ UserData, SWIGTYPE_p_f_p_FDT_GENOUTREC_p_void__short CallBackFunction) {
2798IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
2799 try {
2800 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_genout(swigCPtr, p_ename, mode, UserData /*SIMPLETYPE*/, SWIGTYPE_p_f_p_FDT_GENOUTREC_p_void__short.getCPtr(CallBackFunction));
2802 return ret;
2803 } finally {
2804ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
2805 }
2806 }
2807
2811 return ret;
2812 }
2813
2817 return ret;
2818 }
2819
2820 public virtual IntPtr fdt_AddUserImage(WORLDPOINT LowerLeft, WORLDPOINT UpperRight, int iSpace, SWIGTYPE_p_f_p_void_HDC_devpoint_devpoint_worldpoint_worldpoint_worldpoint_worldpoint_int_int_p_void__void pImageProc, IntPtr /*SIMPLETYPE*/ pUser) {
2821// test csout
2822 /*SIMPLETYPE*/
2825 return ret;
2826 }
2827
2828 public virtual int fdt_DeleteUserImage(IntPtr /*SIMPLETYPE*/ hImage) {
2829 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_DeleteUserImage(swigCPtr, hImage /*SIMPLETYPE*/);
2831 return ret;
2832 }
2833
2837 return ret;
2838 }
2839
2840 public virtual void fdt_DelRedrawHook(short arg0) {
2843 }
2844
2845 public virtual int fdt_GetVportExtInfo(short arg0, short arg1, fdt_VPORT_EXT_INFO arg2) {
2846 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_GetVportExtInfo(swigCPtr, arg0, arg1, fdt_VPORT_EXT_INFO.getCPtr(arg2));
2848 return ret;
2849 }
2850
2851 public virtual int fdt_SetPrintHook(SWIGTYPE_p_f_p_PRINTREC__int PrintHook) {
2852 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_SetPrintHook(swigCPtr, SWIGTYPE_p_f_p_PRINTREC__int.getCPtr(PrintHook));
2854 return ret;
2855 }
2856
2857 public virtual void fdt_DelPrintHook() {
2860 }
2861
2862 public virtual int fdt_GetPrintExtInfo(PRINT_EXT_INFO PrintExtInfo) {
2863 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_GetPrintExtInfo(swigCPtr, PRINT_EXT_INFO.getCPtr(PrintExtInfo));
2865 return ret;
2866 }
2867
2868 public virtual int fdt_Vcs2PrinterPnt(double arg0, double arg1, out int arg2, out int arg3) {
2869 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_Vcs2PrinterPnt(swigCPtr, arg0, arg1, out arg2, out arg3);
2871 return ret;
2872 }
2873
2874 public virtual int fdt_GetLastViewportEntId() {
2877 return ret;
2878 }
2879
2880 public virtual int fdt_getconfstringA(string lpAppName, string lpKeyName, string lpDefault, string lpReturnedString, uint nSize) {
2881 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getconfstringA(swigCPtr, lpAppName, lpKeyName, lpDefault, lpReturnedString, nSize);
2883 return ret;
2884 }
2885
2886 public virtual int fdt_getconfstringW(string lpAppName, string lpKeyName, string lpDefault, string lpReturnedString, uint nSize) {
2887 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getconfstringW(swigCPtr, lpAppName, lpKeyName, lpDefault, lpReturnedString, nSize);
2889 return ret;
2890 }
2891
2892 public virtual int fdt_getconfintA(string lpAppName, string lpKeyName, int nDefault) {
2893 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getconfintA(swigCPtr, lpAppName, lpKeyName, nDefault);
2895 return ret;
2896 }
2897
2898 public virtual int fdt_getconfintW(string lpAppName, string lpKeyName, int nDefault) {
2899 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getconfintW(swigCPtr, lpAppName, lpKeyName, nDefault);
2901 return ret;
2902 }
2903
2904 public virtual int fdt_setconfstringA(string lpAppName, string lpKeyName, string lpString) {
2905 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setconfstringA(swigCPtr, lpAppName, lpKeyName, lpString);
2907 return ret;
2908 }
2909
2910 public virtual int fdt_setconfstringW(string lpAppName, string lpKeyName, string lpString) {
2911 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setconfstringW(swigCPtr, lpAppName, lpKeyName, lpString);
2913 return ret;
2914 }
2915
2916 public virtual int fdt_setconfintA(string lpAppName, string lpKeyName, int nValue) {
2917 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setconfintA(swigCPtr, lpAppName, lpKeyName, nValue);
2919 return ret;
2920 }
2921
2922 public virtual int fdt_setconfintW(string lpAppName, string lpKeyName, int nValue) {
2923 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setconfintW(swigCPtr, lpAppName, lpKeyName, nValue);
2925 return ret;
2926 }
2927
2928 public virtual int fdt_registry_deleteA(string lpKey, string lpName) {
2929 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_deleteA(swigCPtr, lpKey, lpName);
2931 return ret;
2932 }
2933
2934 public virtual int fdt_registry_deleteW(string lpKey, string lpName) {
2935 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_deleteW(swigCPtr, lpKey, lpName);
2937 return ret;
2938 }
2939
2940 public virtual fdt_resbufA fdt_registry_descendentsA(string lpKey, short values) {
2941 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_descendentsA(swigCPtr, lpKey, values);
2942 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
2944 return ret;
2945 }
2946
2947 public virtual fdt_resbufW fdt_registry_descendentsW(string lpKey, short values) {
2948 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_descendentsW(swigCPtr, lpKey, values);
2949 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
2951 return ret;
2952 }
2953
2954 public virtual fdt_resbufA fdt_registry_readA(string lpKey, string lpName) {
2955 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_readA(swigCPtr, lpKey, lpName);
2956 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
2958 return ret;
2959 }
2960
2961 public virtual fdt_resbufW fdt_registry_readW(string lpKey, string lpName) {
2962 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_readW(swigCPtr, lpKey, lpName);
2963 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
2965 return ret;
2966 }
2967
2968 public virtual int fdt_registry_writeA(string lpKey, string lpName, string lpValue) {
2969 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_writeA(swigCPtr, lpKey, lpName, lpValue);
2971 return ret;
2972 }
2973
2974 public virtual int fdt_registry_writeW(string lpKey, string lpName, string lpValue) {
2975 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_registry_writeW(swigCPtr, lpKey, lpName, lpValue);
2977 return ret;
2978 }
2979
2980 public virtual int fdt_file_deleteA(string lpFile) {
2981 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_deleteA(swigCPtr, lpFile);
2983 return ret;
2984 }
2985
2986 public virtual int fdt_file_deleteW(string lpFile) {
2987 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_deleteW(swigCPtr, lpFile);
2989 return ret;
2990 }
2991
2992 public virtual int fdt_file_copyA(string lpSource, string lpDest, int iAppend, out int iSize) {
2993 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_copyA(swigCPtr, lpSource, lpDest, iAppend, out iSize);
2995 return ret;
2996 }
2997
2998 public virtual int fdt_file_copyW(string lpSource, string lpDest, int iAppend, out int iSize) {
2999 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_copyW(swigCPtr, lpSource, lpDest, iAppend, out iSize);
3001 return ret;
3002 }
3003
3004 public virtual int fdt_file_renameA(string lpSource, string lpDest) {
3005 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_renameA(swigCPtr, lpSource, lpDest);
3007 return ret;
3008 }
3009
3010 public virtual int fdt_file_renameW(string lpSource, string lpDest) {
3011 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_renameW(swigCPtr, lpSource, lpDest);
3013 return ret;
3014 }
3015
3016 public virtual int fdt_file_sizeA(string lpFile, int[] lpValue) {
3017 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_sizeA(swigCPtr, lpFile, lpValue);
3019 return ret;
3020 }
3021
3022 public virtual int fdt_file_sizeW(string lpfile, int[] lpValue) {
3023 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_sizeW(swigCPtr, lpfile, lpValue);
3025 return ret;
3026 }
3027
3028 public virtual int fdt_file_systimeA(string lpFile, out int iYear, out int iMonth, out int iWeekDay, out int iMonthDay, out int iHour, out int iMinute, out int iSecond, out int iMilliSecond) {
3029 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_systimeA(swigCPtr, lpFile, out iYear, out iMonth, out iWeekDay, out iMonthDay, out iHour, out iMinute, out iSecond, out iMilliSecond);
3031 return ret;
3032 }
3033
3034 public virtual int fdt_file_systimeW(string lpfile, out int iYear, out int iMonth, out int iWeekDay, out int iMonthDay, out int iHour, out int iMinute, out int iSecond, out int iMilliSecond) {
3035 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_systimeW(swigCPtr, lpfile, out iYear, out iMonth, out iWeekDay, out iMonthDay, out iHour, out iMinute, out iSecond, out iMilliSecond);
3037 return ret;
3038 }
3039
3040 public virtual int fdt_file_directory_pA(string lpFile) {
3041 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_directory_pA(swigCPtr, lpFile);
3043 return ret;
3044 }
3045
3046 public virtual int fdt_file_directory_pW(string lpFile) {
3047 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_file_directory_pW(swigCPtr, lpFile);
3049 return ret;
3050 }
3051
3052 public virtual int fdt_directory_filesA(string lpDirectory, string lpFilter, int mode, SWIGTYPE_p_p_fdt_resbufA lpResult) {
3053 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_directory_filesA(swigCPtr, lpDirectory, lpFilter, mode, SWIGTYPE_p_p_fdt_resbufA.getCPtr(lpResult));
3055 return ret;
3056 }
3057
3058 public virtual int fdt_directory_filesW(string lpDirectory, string lpFilter, int mode, SWIGTYPE_p_p_fdt_resbufW lpResult) {
3059 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_directory_filesW(swigCPtr, lpDirectory, lpFilter, mode, SWIGTYPE_p_p_fdt_resbufW.getCPtr(lpResult));
3061 return ret;
3062 }
3063
3064 public virtual int fdt_filename_directoryA(string lpFile, string lpDir, int iCount) {
3065 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_directoryA(swigCPtr, lpFile, lpDir, iCount);
3067 return ret;
3068 }
3069
3070 public virtual int fdt_filename_directoryW(string lpFile, string lpDir, int iCount) {
3071 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_directoryW(swigCPtr, lpFile, lpDir, iCount);
3073 return ret;
3074 }
3075
3076 public virtual int fdt_filename_baseA(string lpFile, string lpDir, int iCount) {
3077 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_baseA(swigCPtr, lpFile, lpDir, iCount);
3079 return ret;
3080 }
3081
3082 public virtual int fdt_filename_baseW(string lpFile, string lpDir, int iCount) {
3083 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_baseW(swigCPtr, lpFile, lpDir, iCount);
3085 return ret;
3086 }
3087
3088 public virtual int fdt_filename_extensionA(string lpFile, string lpDir, int iCount) {
3089 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_extensionA(swigCPtr, lpFile, lpDir, iCount);
3091 return ret;
3092 }
3093
3094 public virtual int fdt_filename_extensionW(string lpFile, string lpDir, int iCount) {
3095 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_extensionW(swigCPtr, lpFile, lpDir, iCount);
3097 return ret;
3098 }
3099
3100 public virtual int fdt_filename_mktempA(string lpPattern, string lpDirectory, string lpExt, string lpFile, int iCount) {
3101 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_mktempA(swigCPtr, lpPattern, lpDirectory, lpExt, lpFile, iCount);
3103 return ret;
3104 }
3105
3106 public virtual int fdt_filename_mktempW(string lpPattern, string lpDirectory, string lpExt, string lpFile, int iCount) {
3107 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_filename_mktempW(swigCPtr, lpPattern, lpDirectory, lpExt, lpFile, iCount);
3109 return ret;
3110 }
3111
3112 public virtual int fdt_dictionary_addA(ref UInt64[] /*OUT_ARRAY*/ dict, string lpName, ref UInt64[] /*OUT_ARRAY*/ object_) {
3113IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3114IntPtr p_object_=Teigha.Core.Helpers.MarshalUInt64FixedArray(object_);
3115 try {
3116 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_addA(swigCPtr, p_dict, lpName, p_object_);
3118 return ret;
3119 } finally {
3120dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3121object_ = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_object_); Marshal.FreeCoTaskMem(p_object_);
3122 }
3123 }
3124
3125 public virtual int fdt_dictionary_addW(ref UInt64[] /*OUT_ARRAY*/ dict, string lpName, ref UInt64[] /*OUT_ARRAY*/ object_) {
3126IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3127IntPtr p_object_=Teigha.Core.Helpers.MarshalUInt64FixedArray(object_);
3128 try {
3129 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_addW(swigCPtr, p_dict, lpName, p_object_);
3131 return ret;
3132 } finally {
3133dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3134object_ = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_object_); Marshal.FreeCoTaskMem(p_object_);
3135 }
3136 }
3137
3138 public virtual int fdt_dictionary_deleteA(ref UInt64[] /*OUT_ARRAY*/ dict, string lpName, ref UInt64[] /*OUT_ARRAY*/ object_) {
3139IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3140IntPtr p_object_=Teigha.Core.Helpers.MarshalUInt64FixedArray(object_);
3141 try {
3142 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_deleteA(swigCPtr, p_dict, lpName, p_object_);
3144 return ret;
3145 } finally {
3146dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3147object_ = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_object_); Marshal.FreeCoTaskMem(p_object_);
3148 }
3149 }
3150
3151 public virtual int fdt_dictionary_deleteW(ref UInt64[] /*OUT_ARRAY*/ dict, string lpName, ref UInt64[] /*OUT_ARRAY*/ object_) {
3152IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3153IntPtr p_object_=Teigha.Core.Helpers.MarshalUInt64FixedArray(object_);
3154 try {
3155 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_deleteW(swigCPtr, p_dict, lpName, p_object_);
3157 return ret;
3158 } finally {
3159dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3160object_ = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_object_); Marshal.FreeCoTaskMem(p_object_);
3161 }
3162 }
3163
3164 public virtual fdt_resbufA fdt_dictionary_nextA(ref UInt64[] /*OUT_ARRAY*/ dict, int flag) {
3165IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3166 try {
3167 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_nextA(swigCPtr, p_dict, flag);
3168 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
3170 return ret;
3171 } finally {
3172dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3173 }
3174 }
3175
3176 public virtual fdt_resbufW fdt_dictionary_nextW(ref UInt64[] /*OUT_ARRAY*/ dict, int flag) {
3177IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3178 try {
3179 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_nextW(swigCPtr, p_dict, flag);
3180 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
3182 return ret;
3183 } finally {
3184dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3185 }
3186 }
3187
3188 public virtual fdt_resbufA fdt_dictionary_searchA(ref UInt64[] /*OUT_ARRAY*/ dict, string lpName, int iSetNext) {
3189IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3190 try {
3191 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_searchA(swigCPtr, p_dict, lpName, iSetNext);
3192 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
3194 return ret;
3195 } finally {
3196dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3197 }
3198 }
3199
3200 public virtual fdt_resbufW fdt_dictionary_searchW(ref UInt64[] /*OUT_ARRAY*/ dict, string lpName, int iSetNext) {
3201IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3202 try {
3203 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_searchW(swigCPtr, p_dict, lpName, iSetNext);
3204 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
3206 return ret;
3207 } finally {
3208dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3209 }
3210 }
3211
3212 public virtual int fdt_dictionary_renameA(ref UInt64[] /*OUT_ARRAY*/ dict, string lpNameOld, string lpNameNew) {
3213IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3214 try {
3215 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_renameA(swigCPtr, p_dict, lpNameOld, lpNameNew);
3217 return ret;
3218 } finally {
3219dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3220 }
3221 }
3222
3223 public virtual int fdt_dictionary_renameW(ref UInt64[] /*OUT_ARRAY*/ dict, string lpNameOld, string lpNameNew) {
3224IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3225 try {
3226 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_dictionary_renameW(swigCPtr, p_dict, lpNameOld, lpNameNew);
3228 return ret;
3229 } finally {
3230dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3231 }
3232 }
3233
3234 public virtual int fdt_namedobjdict(ref UInt64[] /*OUT_ARRAY*/ dict) {
3235IntPtr p_dict=Teigha.Core.Helpers.MarshalUInt64FixedArray(dict);
3236 try {
3237 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_namedobjdict(swigCPtr, p_dict);
3239 return ret;
3240 } finally {
3241dict = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_dict); Marshal.FreeCoTaskMem(p_dict);
3242 }
3243 }
3244
3245 public virtual int fdt_curve_getarea(ref UInt64[] /*OUT_ARRAY*/ curve, out double value) {
3246IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3247 try {
3248 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getarea(swigCPtr, p_curve, out value);
3250 return ret;
3251 } finally {
3252curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3253 }
3254 }
3255
3256 public virtual int fdt_curve_getclosestpointto(ref UInt64[] /*OUT_ARRAY*/ curve, double[] /*DOUBLE_FIXED_ARRAY*/ point, int iExtend, double[] /*DOUBLE_FIXED_ARRAY*/ retvalue) {
3257IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3258 try {
3259 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getclosestpointto(swigCPtr, p_curve, point /*DOUBLE_FIXED_ARRAY*/, iExtend, retvalue /*DOUBLE_FIXED_ARRAY*/);
3261 return ret;
3262 } finally {
3263curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3264 }
3265 }
3266
3267 public virtual int fdt_curve_getclosestpointtoprojection(ref UInt64[] /*OUT_ARRAY*/ curve, double[] /*DOUBLE_FIXED_ARRAY*/ point, double[] /*DOUBLE_FIXED_ARRAY*/ normal, int iExtend, double[] /*DOUBLE_FIXED_ARRAY*/ retvalue) {
3268IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3269 try {
3270 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getclosestpointtoprojection(swigCPtr, p_curve, point /*DOUBLE_FIXED_ARRAY*/, normal /*DOUBLE_FIXED_ARRAY*/, iExtend, retvalue /*DOUBLE_FIXED_ARRAY*/);
3272 return ret;
3273 } finally {
3274curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3275 }
3276 }
3277
3278 public virtual int fdt_curve_getdistatparam(ref UInt64[] /*OUT_ARRAY*/ curve, double param, out double value) {
3279IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3280 try {
3281 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getdistatparam(swigCPtr, p_curve, param, out value);
3283 return ret;
3284 } finally {
3285curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3286 }
3287 }
3288
3289 public virtual int fdt_curve_getdistatpoint(ref UInt64[] /*OUT_ARRAY*/ curve, double[] /*DOUBLE_FIXED_ARRAY*/ point, out double value) {
3290IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3291 try {
3292 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getdistatpoint(swigCPtr, p_curve, point /*DOUBLE_FIXED_ARRAY*/, out value);
3294 return ret;
3295 } finally {
3296curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3297 }
3298 }
3299
3300 public virtual int fdt_curve_getendparam(ref UInt64[] /*OUT_ARRAY*/ curve, out double param) {
3301IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3302 try {
3303 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getendparam(swigCPtr, p_curve, out param);
3305 return ret;
3306 } finally {
3307curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3308 }
3309 }
3310
3311 public virtual int fdt_curve_getendpoint(ref UInt64[] /*OUT_ARRAY*/ curve, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
3312IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3313 try {
3314 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getendpoint(swigCPtr, p_curve, point /*DOUBLE_FIXED_ARRAY*/);
3316 return ret;
3317 } finally {
3318curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3319 }
3320 }
3321
3322 public virtual int fdt_curve_getstartparam(ref UInt64[] /*OUT_ARRAY*/ curve, out double param) {
3323IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3324 try {
3325 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getstartparam(swigCPtr, p_curve, out param);
3327 return ret;
3328 } finally {
3329curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3330 }
3331 }
3332
3333 public virtual int fdt_curve_getstartpoint(ref UInt64[] /*OUT_ARRAY*/ curve, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
3334IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3335 try {
3336 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getstartpoint(swigCPtr, p_curve, point /*DOUBLE_FIXED_ARRAY*/);
3338 return ret;
3339 } finally {
3340curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3341 }
3342 }
3343
3344 public virtual int fdt_curve_getparamatdist(ref UInt64[] /*OUT_ARRAY*/ curve, double dist, out double param) {
3345IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3346 try {
3347 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getparamatdist(swigCPtr, p_curve, dist, out param);
3349 return ret;
3350 } finally {
3351curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3352 }
3353 }
3354
3355 public virtual int fdt_curve_getpointatdist(ref UInt64[] /*OUT_ARRAY*/ curve, double dist, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
3356IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3357 try {
3358 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getpointatdist(swigCPtr, p_curve, dist, point /*DOUBLE_FIXED_ARRAY*/);
3360 return ret;
3361 } finally {
3362curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3363 }
3364 }
3365
3366 public virtual int fdt_curve_getpointatparam(ref UInt64[] /*OUT_ARRAY*/ curve, double param, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
3367IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3368 try {
3369 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getpointatparam(swigCPtr, p_curve, param, point /*DOUBLE_FIXED_ARRAY*/);
3371 return ret;
3372 } finally {
3373curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3374 }
3375 }
3376
3377 public virtual int fdt_curve_getparamatpoint(ref UInt64[] /*OUT_ARRAY*/ curve, double[] /*DOUBLE_FIXED_ARRAY*/ point, out double param) {
3378IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3379 try {
3380 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getparamatpoint(swigCPtr, p_curve, point /*DOUBLE_FIXED_ARRAY*/, out param);
3382 return ret;
3383 } finally {
3384curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3385 }
3386 }
3387
3388 public virtual int fdt_curve_getfirstderiv(ref UInt64[] /*OUT_ARRAY*/ curve, double param, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
3389IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3390 try {
3391 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getfirstderiv(swigCPtr, p_curve, param, point /*DOUBLE_FIXED_ARRAY*/);
3393 return ret;
3394 } finally {
3395curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3396 }
3397 }
3398
3399 public virtual int fdt_curve_getsecondderiv(ref UInt64[] /*OUT_ARRAY*/ curve, double param, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
3400IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3401 try {
3402 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_getsecondderiv(swigCPtr, p_curve, param, point /*DOUBLE_FIXED_ARRAY*/);
3404 return ret;
3405 } finally {
3406curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3407 }
3408 }
3409
3410 public virtual int fdt_curve_isclosed(ref UInt64[] /*OUT_ARRAY*/ curve, out int iBool) {
3411IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3412 try {
3413 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_isclosed(swigCPtr, p_curve, out iBool);
3415 return ret;
3416 } finally {
3417curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3418 }
3419 }
3420
3421 public virtual int fdt_curve_isperiodic(ref UInt64[] /*OUT_ARRAY*/ curve, out int iBool) {
3422IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3423 try {
3424 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_isperiodic(swigCPtr, p_curve, out iBool);
3426 return ret;
3427 } finally {
3428curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3429 }
3430 }
3431
3432 public virtual int fdt_curve_isplanar(ref UInt64[] /*OUT_ARRAY*/ curve, out int iBool) {
3433IntPtr p_curve=Teigha.Core.Helpers.MarshalUInt64FixedArray(curve);
3434 try {
3435 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_curve_isplanar(swigCPtr, p_curve, out iBool);
3437 return ret;
3438 } finally {
3439curve = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_curve); Marshal.FreeCoTaskMem(p_curve);
3440 }
3441 }
3442
3443 public virtual int fdt_translateA(string context, string string_, string result, uint size) {
3444 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_translateA(swigCPtr, context, string_, result, size);
3446 return ret;
3447 }
3448
3449 public virtual int fdt_translateW(string context, string string_, string result, uint size) {
3450 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_translateW(swigCPtr, context, string_, result, size);
3452 return ret;
3453 }
3454
3455 public virtual int fdt_xdsizeW(fdt_resbufW rbuffer, out int size) {
3456 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_xdsizeW(swigCPtr, fdt_resbufW.getCPtr(rbuffer), out size);
3458 return ret;
3459 }
3460
3461 public virtual int fdt_xdsizeA(fdt_resbufA rbuffer, out int size) {
3462 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_xdsizeA(swigCPtr, fdt_resbufA.getCPtr(rbuffer), out size);
3464 return ret;
3465 }
3466
3467 public virtual int dlg_DialogLoadA(string dlg_file, out int dlg_id) {
3468 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogLoadA(swigCPtr, dlg_file, out dlg_id);
3470 return ret;
3471 }
3472
3473 public virtual int dlg_DialogLoadW(string dlg_file, out int dlg_id) {
3474 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogLoadW(swigCPtr, dlg_file, out dlg_id);
3476 return ret;
3477 }
3478
3479 public virtual int dlg_DialogUnload(int dlg_id) {
3480 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogUnload(swigCPtr, dlg_id);
3482 return ret;
3483 }
3484
3485 public virtual int dlg_DialogNewA(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void def_callback, SWIGTYPE_p_p_void hdlg) {
3486 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogNewA(swigCPtr, dlg_name, dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void.getCPtr(def_callback), SWIGTYPE_p_p_void.getCPtr(hdlg));
3488 return ret;
3489 }
3490
3491 public virtual int dlg_DialogNewW(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void def_callback, SWIGTYPE_p_p_void hdlg) {
3492 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogNewW(swigCPtr, dlg_name, dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void.getCPtr(def_callback), SWIGTYPE_p_p_void.getCPtr(hdlg));
3494 return ret;
3495 }
3496
3497 public virtual int dlg_DialogNewPositionedA(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void def_callback, int x, int y, SWIGTYPE_p_p_void hdlg) {
3498 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogNewPositionedA(swigCPtr, dlg_name, dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void.getCPtr(def_callback), x, y, SWIGTYPE_p_p_void.getCPtr(hdlg));
3500 return ret;
3501 }
3502
3503 public virtual int dlg_DialogNewPositionedW(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void def_callback, int x, int y, SWIGTYPE_p_p_void hdlg) {
3504 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogNewPositionedW(swigCPtr, dlg_name, dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void.getCPtr(def_callback), x, y, SWIGTYPE_p_p_void.getCPtr(hdlg));
3506 return ret;
3507 }
3508
3509 public virtual int dlg_DialogStart(IntPtr /*SIMPLETYPE*/ hdlg, out int status, SWIGTYPE_p_f_p_void_p_void__void init_dialog_callback) {
3510 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogStart(swigCPtr, hdlg /*SIMPLETYPE*/, out status, SWIGTYPE_p_f_p_void_p_void__void.getCPtr(init_dialog_callback));
3512 return ret;
3513 }
3514
3515 public virtual int dlg_DialogDone(IntPtr /*SIMPLETYPE*/ hdlg, int status) {
3516 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogDone(swigCPtr, hdlg /*SIMPLETYPE*/, status);
3518 return ret;
3519 }
3520
3521 public virtual int dlg_DialogDonePositioned(IntPtr /*SIMPLETYPE*/ hdlg, int status, out int x_result, out int y_result) {
3522 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogDonePositioned(swigCPtr, hdlg /*SIMPLETYPE*/, status, out x_result, out y_result);
3524 return ret;
3525 }
3526
3527 public virtual int dlg_DialogTerm() {
3528 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_DialogTerm(swigCPtr);
3530 return ret;
3531 }
3532
3533 public virtual int dlg_TileActionA(IntPtr /*SIMPLETYPE*/ hdlg, string key, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void tilefunc) {
3534 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileActionA(swigCPtr, hdlg /*SIMPLETYPE*/, key, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void.getCPtr(tilefunc));
3536 return ret;
3537 }
3538
3539 public virtual int dlg_TileActionW(IntPtr /*SIMPLETYPE*/ hdlg, string key, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void tilefunc) {
3540 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileActionW(swigCPtr, hdlg /*SIMPLETYPE*/, key, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void.getCPtr(tilefunc));
3542 return ret;
3543 }
3544
3545 public virtual int dlg_TileSetA(IntPtr /*SIMPLETYPE*/ hdlg, string key, string value) {
3546 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileSetA(swigCPtr, hdlg /*SIMPLETYPE*/, key, value);
3548 return ret;
3549 }
3550
3551 public virtual int dlg_TileSetW(IntPtr /*SIMPLETYPE*/ hdlg, string key, string value) {
3552 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileSetW(swigCPtr, hdlg /*SIMPLETYPE*/, key, value);
3554 return ret;
3555 }
3556
3557 public virtual int dlg_TileGetA(IntPtr /*SIMPLETYPE*/ hdlg, string key, string value, int maxlen) {
3558 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileGetA(swigCPtr, hdlg /*SIMPLETYPE*/, key, value, maxlen);
3560 return ret;
3561 }
3562
3563 public virtual int dlg_TileGetW(IntPtr /*SIMPLETYPE*/ hdlg, string key, string value, int maxlen) {
3564 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileGetW(swigCPtr, hdlg /*SIMPLETYPE*/, key, value, maxlen);
3566 return ret;
3567 }
3568
3569 public virtual int dlg_TileClientDataA(IntPtr /*SIMPLETYPE*/ hdlg, string key, IntPtr /*SIMPLETYPE*/ clientdata) {
3570 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileClientDataA(swigCPtr, hdlg /*SIMPLETYPE*/, key, clientdata /*SIMPLETYPE*/);
3572 return ret;
3573 }
3574
3575 public virtual int dlg_TileClientDataW(IntPtr /*SIMPLETYPE*/ hdlg, string key, IntPtr /*SIMPLETYPE*/ clientdata) {
3576 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileClientDataW(swigCPtr, hdlg /*SIMPLETYPE*/, key, clientdata /*SIMPLETYPE*/);
3578 return ret;
3579 }
3580
3581 public virtual int dlg_TileModeA(IntPtr /*SIMPLETYPE*/ hdlg, string key, short mode) {
3582 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileModeA(swigCPtr, hdlg /*SIMPLETYPE*/, key, mode);
3584 return ret;
3585 }
3586
3587 public virtual int dlg_TileModeW(IntPtr /*SIMPLETYPE*/ hdlg, string key, short mode) {
3588 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileModeW(swigCPtr, hdlg /*SIMPLETYPE*/, key, mode);
3590 return ret;
3591 }
3592
3593 public virtual int dlg_TileDimensionsA(IntPtr /*SIMPLETYPE*/ hdlg, string key, out short cx, out short cy) {
3594 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileDimensionsA(swigCPtr, hdlg /*SIMPLETYPE*/, key, out cx, out cy);
3596 return ret;
3597 }
3598
3599 public virtual int dlg_TileDimensionsW(IntPtr /*SIMPLETYPE*/ hdlg, string key, out short cx, out short cy) {
3600 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileDimensionsW(swigCPtr, hdlg /*SIMPLETYPE*/, key, out cx, out cy);
3602 return ret;
3603 }
3604
3605 public virtual int dlg_TileSetFontA(IntPtr /*SIMPLETYPE*/ hdlg, string key, short font) {
3606 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileSetFontA(swigCPtr, hdlg /*SIMPLETYPE*/, key, font);
3608 return ret;
3609 }
3610
3611 public virtual int dlg_TileSetFontW(IntPtr /*SIMPLETYPE*/ hdlg, string key, short font) {
3612 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_TileSetFontW(swigCPtr, hdlg /*SIMPLETYPE*/, key, font);
3614 return ret;
3615 }
3616
3617 public virtual int dlg_ListStartA(IntPtr /*SIMPLETYPE*/ hdlg, string key, short operation, short index) {
3618 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListStartA(swigCPtr, hdlg /*SIMPLETYPE*/, key, operation, index);
3620 return ret;
3621 }
3622
3623 public virtual int dlg_ListStartW(IntPtr /*SIMPLETYPE*/ hdlg, string key, short operation, short index) {
3624 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListStartW(swigCPtr, hdlg /*SIMPLETYPE*/, key, operation, index);
3626 return ret;
3627 }
3628
3629 public virtual int dlg_ListAddA(string item) {
3630 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListAddA(swigCPtr, item);
3632 return ret;
3633 }
3634
3635 public virtual int dlg_ListAddW(string item) {
3636 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListAddW(swigCPtr, item);
3638 return ret;
3639 }
3640
3641 public virtual int dlg_ListGetA(out int nPos, string szBuffer, int maxlen) {
3642 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListGetA(swigCPtr, out nPos, szBuffer, maxlen);
3644 return ret;
3645 }
3646
3647 public virtual int dlg_ListGetW(out int nPos, string szBuffer, int maxlen) {
3648 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListGetW(swigCPtr, out nPos, szBuffer, maxlen);
3650 return ret;
3651 }
3652
3653 public virtual int dlg_ListEnd() {
3654 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListEnd(swigCPtr);
3656 return ret;
3657 }
3658
3659 public virtual int dlg_ListSetTabStopsA(IntPtr /*SIMPLETYPE*/ hdlg, string key, string tabstops) {
3660 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListSetTabStopsA(swigCPtr, hdlg /*SIMPLETYPE*/, key, tabstops);
3662 return ret;
3663 }
3664
3665 public virtual int dlg_ListSetTabStopsW(IntPtr /*SIMPLETYPE*/ hdlg, string key, string tabstops) {
3666 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListSetTabStopsW(swigCPtr, hdlg /*SIMPLETYPE*/, key, tabstops);
3668 return ret;
3669 }
3670
3671 public virtual int dlg_ListSetColumnWidthA(IntPtr /*SIMPLETYPE*/ hdlg, string key, string columnwidth) {
3672 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListSetColumnWidthA(swigCPtr, hdlg /*SIMPLETYPE*/, key, columnwidth);
3674 return ret;
3675 }
3676
3677 public virtual int dlg_ListSetColumnWidthW(IntPtr /*SIMPLETYPE*/ hdlg, string key, string columnwidth) {
3678 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ListSetColumnWidthW(swigCPtr, hdlg /*SIMPLETYPE*/, key, columnwidth);
3680 return ret;
3681 }
3682
3683 public virtual int dlg_SliderGetA(IntPtr /*SIMPLETYPE*/ hdlg, string key, out int nCurPos, out int nMinPos, out int nMaxPos, out int nSmallInc, out int nBigInc) {
3684 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_SliderGetA(swigCPtr, hdlg /*SIMPLETYPE*/, key, out nCurPos, out nMinPos, out nMaxPos, out nSmallInc, out nBigInc);
3686 return ret;
3687 }
3688
3689 public virtual int dlg_SliderGetW(IntPtr /*SIMPLETYPE*/ hdlg, string key, out int nCurPos, out int nMinPos, out int nMaxPos, out int nSmallInc, out int nBigInc) {
3690 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_SliderGetW(swigCPtr, hdlg /*SIMPLETYPE*/, key, out nCurPos, out nMinPos, out nMaxPos, out nSmallInc, out nBigInc);
3692 return ret;
3693 }
3694
3695 public virtual int dlg_SliderSetA(IntPtr /*SIMPLETYPE*/ hdlg, string key, int nCurPos, int nMinPos, int nMaxPos, int nSmallInc, int nBigInc) {
3696 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_SliderSetA(swigCPtr, hdlg /*SIMPLETYPE*/, key, nCurPos, nMinPos, nMaxPos, nSmallInc, nBigInc);
3698 return ret;
3699 }
3700
3701 public virtual int dlg_SliderSetW(IntPtr /*SIMPLETYPE*/ hdlg, string key, int nCurPos, int nMinPos, int nMaxPos, int nSmallInc, int nBigInc) {
3702 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_SliderSetW(swigCPtr, hdlg /*SIMPLETYPE*/, key, nCurPos, nMinPos, nMaxPos, nSmallInc, nBigInc);
3704 return ret;
3705 }
3706
3707 public virtual int dlg_ImageStartA(IntPtr /*SIMPLETYPE*/ hdlg, string key) {
3708 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageStartA(swigCPtr, hdlg /*SIMPLETYPE*/, key);
3710 return ret;
3711 }
3712
3713 public virtual int dlg_ImageStartW(IntPtr /*SIMPLETYPE*/ hdlg, string key) {
3714 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageStartW(swigCPtr, hdlg /*SIMPLETYPE*/, key);
3716 return ret;
3717 }
3718
3719 public virtual int dlg_ImageEnd() {
3720 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageEnd(swigCPtr);
3722 return ret;
3723 }
3724
3725 public virtual int dlg_ImageVector(short x1, short y1, short x2, short y2, short color) {
3726 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageVector(swigCPtr, x1, y1, x2, y2, color);
3728 return ret;
3729 }
3730
3731 public virtual int dlg_ImageFill(short x1, short y1, short x2, short y2, short color) {
3732 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageFill(swigCPtr, x1, y1, x2, y2, color);
3734 return ret;
3735 }
3736
3737 public virtual int dlg_ImageBmpA(short x1, short y1, short x2, short y2, string szBmpPath) {
3738 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageBmpA(swigCPtr, x1, y1, x2, y2, szBmpPath);
3740 return ret;
3741 }
3742
3743 public virtual int dlg_ImageBmpW(short x1, short y1, short x2, short y2, string szBmpPath) {
3744 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageBmpW(swigCPtr, x1, y1, x2, y2, szBmpPath);
3746 return ret;
3747 }
3748
3749 public virtual int dlg_ImagePreviewBmpA(short x1, short y1, short x2, short y2, string szDrawingPath) {
3750 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImagePreviewBmpA(swigCPtr, x1, y1, x2, y2, szDrawingPath);
3752 return ret;
3753 }
3754
3755 public virtual int dlg_ImagePreviewBmpW(short x1, short y1, short x2, short y2, string szDrawingPath) {
3756 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImagePreviewBmpW(swigCPtr, x1, y1, x2, y2, szDrawingPath);
3758 return ret;
3759 }
3760
3761 public virtual int dlg_ImageWmfA(short x1, short y1, short x2, short y2, string szWmfPath) {
3762 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageWmfA(swigCPtr, x1, y1, x2, y2, szWmfPath);
3764 return ret;
3765 }
3766
3767 public virtual int dlg_ImageWmfW(short x1, short y1, short x2, short y2, string szWmfPath) {
3768 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageWmfW(swigCPtr, x1, y1, x2, y2, szWmfPath);
3770 return ret;
3771 }
3772
3773 public virtual int dlg_ImageSlideA(short x1, short y1, short x2, short y2, string szDrawingPath) {
3774 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageSlideA(swigCPtr, x1, y1, x2, y2, szDrawingPath);
3776 return ret;
3777 }
3778
3779 public virtual int dlg_ImageSlideW(short x1, short y1, short x2, short y2, string szDrawingPath) {
3780 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageSlideW(swigCPtr, x1, y1, x2, y2, szDrawingPath);
3782 return ret;
3783 }
3784
3785 public virtual int dlg_ImageLibraryA(short x1, short y1, short x2, short y2, string szImageName, string szLibPath) {
3786 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageLibraryA(swigCPtr, x1, y1, x2, y2, szImageName, szLibPath);
3788 return ret;
3789 }
3790
3791 public virtual int dlg_ImageLibraryW(short x1, short y1, short x2, short y2, string szImageName, string szLibPath) {
3792 int ret = PCADGlobalsPINVOKE.CFxAPI_dlg_ImageLibraryW(swigCPtr, x1, y1, x2, y2, szImageName, szLibPath);
3794 return ret;
3795 }
3796
3797 public virtual int dcl_new_dialogA(string szDialogName, int nDialogFileID, IntPtr /*SIMPLETYPE*/ pfnDef_Callback, SWIGTYPE_p_p__dcl_hdlg hDialog) {
3798 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_new_dialogA(swigCPtr, szDialogName, nDialogFileID, pfnDef_Callback /*SIMPLETYPE*/, SWIGTYPE_p_p__dcl_hdlg.getCPtr(hDialog));
3800 return ret;
3801 }
3802
3803 public virtual int dcl_new_dialogW(string szDialogName, int nDialogFileID, IntPtr /*SIMPLETYPE*/ pfnDef_Callback, SWIGTYPE_p_p__dcl_hdlg hDialog) {
3804 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_new_dialogW(swigCPtr, szDialogName, nDialogFileID, pfnDef_Callback /*SIMPLETYPE*/, SWIGTYPE_p_p__dcl_hdlg.getCPtr(hDialog));
3806 return ret;
3807 }
3808
3809 public virtual int dcl_load_dialogA(string szFileToLoad, out int nDialogFileID) {
3810 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_load_dialogA(swigCPtr, szFileToLoad, out nDialogFileID);
3812 return ret;
3813 }
3814
3815 public virtual int dcl_load_dialogW(string szFileToLoad, out int nDialogFileID) {
3816 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_load_dialogW(swigCPtr, szFileToLoad, out nDialogFileID);
3818 return ret;
3819 }
3820
3821 public virtual int dcl_unload_dialog(int nDialogFileID) {
3822 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_unload_dialog(swigCPtr, nDialogFileID);
3824 return ret;
3825 }
3826
3827 public virtual int dcl_start_dialog(SWIGTYPE_p__dcl_hdlg hDialog, out int nMessage) {
3828 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_start_dialog(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), out nMessage);
3830 return ret;
3831 }
3832
3833 public virtual int dcl_done_dialog(SWIGTYPE_p__dcl_hdlg hDialog, int nMessage) {
3834 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_done_dialog(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), nMessage);
3836 return ret;
3837 }
3838
3839 public virtual int dcl_new_positioned_dialogA(string szDialogName, int nDialogFileID, IntPtr /*SIMPLETYPE*/ pfnDef_Callback, int nXPos, int nYPos, SWIGTYPE_p_p__dcl_hdlg hDialog) {
3840 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_new_positioned_dialogA(swigCPtr, szDialogName, nDialogFileID, pfnDef_Callback /*SIMPLETYPE*/, nXPos, nYPos, SWIGTYPE_p_p__dcl_hdlg.getCPtr(hDialog));
3842 return ret;
3843 }
3844
3845 public virtual int dcl_new_positioned_dialogW(string szDialogName, int nDialogFileID, IntPtr /*SIMPLETYPE*/ pfnDef_Callback, int nXPos, int nYPos, SWIGTYPE_p_p__dcl_hdlg hDialog) {
3846 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_new_positioned_dialogW(swigCPtr, szDialogName, nDialogFileID, pfnDef_Callback /*SIMPLETYPE*/, nXPos, nYPos, SWIGTYPE_p_p__dcl_hdlg.getCPtr(hDialog));
3848 return ret;
3849 }
3850
3851 public virtual int dcl_done_positioned_dialog(SWIGTYPE_p__dcl_hdlg hDialog, int nMessage, out int nXPos, out int nYPos) {
3852 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_done_positioned_dialog(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), nMessage, out nXPos, out nYPos);
3854 return ret;
3855 }
3856
3857 public virtual int dcl_term_dialog() {
3858 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_term_dialog(swigCPtr);
3860 return ret;
3861 }
3862
3863 public virtual int dcl_start_listA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nChangeAddNew, int nWhichItem) {
3864 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_start_listA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, nChangeAddNew, nWhichItem);
3866 return ret;
3867 }
3868
3869 public virtual int dcl_start_listW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nChangeAddNew, int nWhichItem) {
3870 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_start_listW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, nChangeAddNew, nWhichItem);
3872 return ret;
3873 }
3874
3875 public virtual int dcl_add_listA(string szAddToList) {
3876 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_add_listA(swigCPtr, szAddToList);
3878 return ret;
3879 }
3880
3881 public virtual int dcl_add_listW(string szAddToList) {
3882 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_add_listW(swigCPtr, szAddToList);
3884 return ret;
3885 }
3886
3887 public virtual int dcl_get_list_stringA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szListString, int nStringLength, int nWhichItem) {
3888 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_list_stringA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szListString, nStringLength, nWhichItem);
3890 return ret;
3891 }
3892
3893 public virtual int dcl_get_list_stringW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szListString, int nStringLength, int nWhichItem) {
3894 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_list_stringW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szListString, nStringLength, nWhichItem);
3896 return ret;
3897 }
3898
3899 public virtual int dcl_end_list() {
3900 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_end_list(swigCPtr);
3902 return ret;
3903 }
3904
3905 public virtual int dcl_get_attrA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szAttribName, string szAttribInfo, int lInfoMaxLength) {
3906 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_attrA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szAttribName, szAttribInfo, lInfoMaxLength);
3908 return ret;
3909 }
3910
3911 public virtual int dcl_get_attrW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szAttribName, string szAttribInfo, int lInfoMaxLength) {
3912 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_attrW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szAttribName, szAttribInfo, lInfoMaxLength);
3914 return ret;
3915 }
3916
3917 public virtual int dcl_get_attr_stringA(SWIGTYPE_p__dcl_htile hControl, string szAttribName, string szAttribInfo, int lInfoMaxLength) {
3918 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_attr_stringA(swigCPtr, SWIGTYPE_p__dcl_htile.getCPtr(hControl), szAttribName, szAttribInfo, lInfoMaxLength);
3920 return ret;
3921 }
3922
3923 public virtual int dcl_get_attr_stringW(SWIGTYPE_p__dcl_htile hControl, string szAttribName, string szAttribInfo, int lInfoMaxLength) {
3924 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_attr_stringW(swigCPtr, SWIGTYPE_p__dcl_htile.getCPtr(hControl), szAttribName, szAttribInfo, lInfoMaxLength);
3926 return ret;
3927 }
3928
3929 public virtual int dcl_get_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo, int lInfoMaxLength) {
3930 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_tileA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szControlInfo, lInfoMaxLength);
3932 return ret;
3933 }
3934
3935 public virtual int dcl_get_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo, int lInfoMaxLength) {
3936 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_tileW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szControlInfo, lInfoMaxLength);
3938 return ret;
3939 }
3940
3941 public virtual int dcl_set_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo) {
3942 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_set_tileA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szControlInfo);
3944 return ret;
3945 }
3946
3947 public virtual int dcl_set_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo) {
3948 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_set_tileW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, szControlInfo);
3950 return ret;
3951 }
3952
3953 public virtual int dcl_action_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr /*SIMPLETYPE*/ pfnControlFunc) {
3954 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_action_tileA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, pfnControlFunc /*SIMPLETYPE*/);
3956 return ret;
3957 }
3958
3959 public virtual int dcl_action_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr /*SIMPLETYPE*/ pfnControlFunc) {
3960 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_action_tileW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, pfnControlFunc /*SIMPLETYPE*/);
3962 return ret;
3963 }
3964
3965 public virtual int dcl_mode_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nTileState) {
3966 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_mode_tileA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, nTileState);
3968 return ret;
3969 }
3970
3971 public virtual int dcl_mode_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nTileState) {
3972 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_mode_tileW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, nTileState);
3974 return ret;
3975 }
3976
3977 public virtual int dcl_dimensions_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, out int nWidthLess1, out int nHeightLess1) {
3978 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_dimensions_tileA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, out nWidthLess1, out nHeightLess1);
3980 return ret;
3981 }
3982
3983 public virtual int dcl_dimensions_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, out int nWidthLess1, out int nHeightLess1) {
3984 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_dimensions_tileW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, out nWidthLess1, out nHeightLess1);
3986 return ret;
3987 }
3988
3989 public virtual int dcl_start_imageA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey) {
3990 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_start_imageA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey);
3992 return ret;
3993 }
3994
3995 public virtual int dcl_start_imageW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey) {
3996 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_start_imageW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey);
3998 return ret;
3999 }
4000
4001 public virtual int dcl_fill_image(int nULCornerX, int nULCornerY, int nWidthLess1, int nHeightLess1, int nColor) {
4002 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_fill_image(swigCPtr, nULCornerX, nULCornerY, nWidthLess1, nHeightLess1, nColor);
4004 return ret;
4005 }
4006
4007 public virtual int dcl_slide_imageA(int nULCornerX, int nULCornerY, int nWidthLess1, int nHeightLess1, string szSnapshotName) {
4008 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_slide_imageA(swigCPtr, nULCornerX, nULCornerY, nWidthLess1, nHeightLess1, szSnapshotName);
4010 return ret;
4011 }
4012
4013 public virtual int dcl_slide_imageW(int nULCornerX, int nULCornerY, int nWidthLess1, int nHeightLess1, string szSnapshotName) {
4014 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_slide_imageW(swigCPtr, nULCornerX, nULCornerY, nWidthLess1, nHeightLess1, szSnapshotName);
4016 return ret;
4017 }
4018
4019 public virtual int dcl_vector_image(int nXVectStart, int nYVectStart, int nXVectEnd, int nYVectEnd, int nColor) {
4020 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_vector_image(swigCPtr, nXVectStart, nYVectStart, nXVectEnd, nYVectEnd, nColor);
4022 return ret;
4023 }
4024
4025 public virtual int dcl_end_image() {
4026 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_end_image(swigCPtr);
4028 return ret;
4029 }
4030
4031 public virtual int dcl_client_data_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr /*SIMPLETYPE*/ pApplicationData) {
4032 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_client_data_tileA(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, pApplicationData /*SIMPLETYPE*/);
4034 return ret;
4035 }
4036
4037 public virtual int dcl_client_data_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr /*SIMPLETYPE*/ pApplicationData) {
4038 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_client_data_tileW(swigCPtr, SWIGTYPE_p__dcl_hdlg.getCPtr(hDialog), szControlKey, pApplicationData /*SIMPLETYPE*/);
4040 return ret;
4041 }
4042
4043 public virtual int dcl_get_tile_keyA(SWIGTYPE_p__dcl_htile hTile, string szControlKey, int lControlKeyLength) {
4044 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_tile_keyA(swigCPtr, SWIGTYPE_p__dcl_htile.getCPtr(hTile), szControlKey, lControlKeyLength);
4046 return ret;
4047 }
4048
4049 public virtual int dcl_get_tile_keyW(SWIGTYPE_p__dcl_htile hTile, string szControlKey, int lControlKeyLength) {
4050 int ret = PCADGlobalsPINVOKE.CFxAPI_dcl_get_tile_keyW(swigCPtr, SWIGTYPE_p__dcl_htile.getCPtr(hTile), szControlKey, lControlKeyLength);
4052 return ret;
4053 }
4054
4058 }
4059
4060 public virtual void fdt_pop_resource_handle() {
4063 }
4064
4066 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_install_modeless_hook(swigCPtr, SWIGTYPE_p_HWND.getCPtr(hWnd), SWIGTYPE_p_HINSTANCE.getCPtr(hInst));
4068 return ret;
4069 }
4070
4074 return ret;
4075 }
4076
4077 public virtual int fdt_add_support_pathA(string szSupportPath) {
4078 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_add_support_pathA(swigCPtr, szSupportPath);
4080 return ret;
4081 }
4082
4083 public virtual int fdt_add_support_pathW(string szSupportPath) {
4084 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_add_support_pathW(swigCPtr, szSupportPath);
4086 return ret;
4087 }
4088
4089 public virtual int fdt_remove_support_pathA(string szSupportPath) {
4090 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_remove_support_pathA(swigCPtr, szSupportPath);
4092 return ret;
4093 }
4094
4095 public virtual int fdt_remove_support_pathW(string szSupportPath) {
4096 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_remove_support_pathW(swigCPtr, szSupportPath);
4098 return ret;
4099 }
4100
4101 public virtual int fdt_loaded_appsA(int mode, SWIGTYPE_p_p_fdt_resbufA modules_list) {
4102 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_loaded_appsA(swigCPtr, mode, SWIGTYPE_p_p_fdt_resbufA.getCPtr(modules_list));
4104 return ret;
4105 }
4106
4107 public virtual int fdt_loaded_appsW(int mode, SWIGTYPE_p_p_fdt_resbufW modules_list) {
4108 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_loaded_appsW(swigCPtr, mode, SWIGTYPE_p_p_fdt_resbufW.getCPtr(modules_list));
4110 return ret;
4111 }
4112
4113 public virtual int fdt_getprinterlistA(SWIGTYPE_p_p_fdt_resbufA printerList) {
4114 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getprinterlistA(swigCPtr, SWIGTYPE_p_p_fdt_resbufA.getCPtr(printerList));
4116 return ret;
4117 }
4118
4119 public virtual int fdt_getprinterlistW(SWIGTYPE_p_p_fdt_resbufW printerList) {
4120 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getprinterlistW(swigCPtr, SWIGTYPE_p_p_fdt_resbufW.getCPtr(printerList));
4122 return ret;
4123 }
4124
4125 public virtual int fdt_getprinterpapersizesA(string printer, SWIGTYPE_p_p_fdt_resbufA paperSizes) {
4126 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getprinterpapersizesA(swigCPtr, printer, SWIGTYPE_p_p_fdt_resbufA.getCPtr(paperSizes));
4128 return ret;
4129 }
4130
4131 public virtual int fdt_getprinterpapersizesW(string printer, SWIGTYPE_p_p_fdt_resbufW paperSizes) {
4132 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getprinterpapersizesW(swigCPtr, printer, SWIGTYPE_p_p_fdt_resbufW.getCPtr(paperSizes));
4134 return ret;
4135 }
4136
4137 public virtual int fdt_getresourceimageA(string filename, SWIGTYPE_p_HBITMAP image) {
4138 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getresourceimageA(swigCPtr, filename, SWIGTYPE_p_HBITMAP.getCPtr(image));
4140 return ret;
4141 }
4142
4143 public virtual int fdt_getresourceimageW(string filename, SWIGTYPE_p_HBITMAP image) {
4144 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getresourceimageW(swigCPtr, filename, SWIGTYPE_p_HBITMAP.getCPtr(image));
4146 return ret;
4147 }
4148
4149 public virtual int fdt_getpreferenceA(string group, string name_pref, SWIGTYPE_p_p_fdt_resbufA value) {
4150 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getpreferenceA(swigCPtr, group, name_pref, SWIGTYPE_p_p_fdt_resbufA.getCPtr(value));
4152 return ret;
4153 }
4154
4155 public virtual int fdt_getpreferenceW(string group, string name_pref, SWIGTYPE_p_p_fdt_resbufW value) {
4156 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_getpreferenceW(swigCPtr, group, name_pref, SWIGTYPE_p_p_fdt_resbufW.getCPtr(value));
4158 return ret;
4159 }
4160
4161 public virtual int fdt_setpreferenceA(string group, string name_pref, fdt_resbufA value) {
4162 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setpreferenceA(swigCPtr, group, name_pref, fdt_resbufA.getCPtr(value));
4164 return ret;
4165 }
4166
4167 public virtual int fdt_setpreferenceW(string group, string name_pref, fdt_resbufW value) {
4168 int ret = PCADGlobalsPINVOKE.CFxAPI_fdt_setpreferenceW(swigCPtr, group, name_pref, fdt_resbufW.getCPtr(value));
4170 return ret;
4171 }
4172
4173 public static int GetADSName(OdDbObjectId id, ref UInt64[] /*OUT_ARRAY*/ name) {
4174IntPtr p_name=Teigha.Core.Helpers.MarshalUInt64FixedArray(name);
4175 try {
4178 return ret;
4179 } finally {
4180name = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_name); Marshal.FreeCoTaskMem(p_name);
4181 }
4182 }
4183
4184 public static int GetObjectId(ref UInt64[] /*OUT_ARRAY*/ name, OdDbObjectId id) {
4185IntPtr p_name=Teigha.Core.Helpers.MarshalUInt64FixedArray(name);
4186 try {
4189 return ret;
4190 } finally {
4191name = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_name); Marshal.FreeCoTaskMem(p_name);
4192 }
4193 }
4194
4195 public static int GetSSName(CFxSelectionSet pSS, ref UInt64[] /*OUT_ARRAY*/ sname) {
4196IntPtr p_sname=Teigha.Core.Helpers.MarshalUInt64FixedArray(sname);
4197 try {
4200 return ret;
4201 } finally {
4202sname = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_sname); Marshal.FreeCoTaskMem(p_sname);
4203 }
4204 }
4205
4206 public static CFxSelectionSet GetSSPtr(ref UInt64[] /*OUT_ARRAY*/ name) {
4207IntPtr p_name=Teigha.Core.Helpers.MarshalUInt64FixedArray(name);
4208 try {
4209 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_GetSSPtr(p_name);
4210 CFxSelectionSet ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxSelectionSet(cPtr, false);
4212 return ret;
4213 } finally {
4214name = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_name); Marshal.FreeCoTaskMem(p_name);
4215 }
4216 }
4217
4218 public static int GetPoint3D(double[] /*DOUBLE_FIXED_ARRAY*/ point, OdGePoint3d gePoint) {
4219 int ret = PCADGlobalsPINVOKE.CFxAPI_GetPoint3D__SWIG_0(point /*DOUBLE_FIXED_ARRAY*/, OdGePoint3d.getCPtr(gePoint));
4221 return ret;
4222 }
4223
4224 public static int GetPoint3D(double[] /*DOUBLE_FIXED_ARRAY*/ point, OdGeVector3d gePoint) {
4225 int ret = PCADGlobalsPINVOKE.CFxAPI_GetPoint3D__SWIG_1(point /*DOUBLE_FIXED_ARRAY*/, OdGeVector3d.getCPtr(gePoint));
4227 return ret;
4228 }
4229
4230 public static int GetPointFDT(OdGePoint3d gePoint, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
4231 int ret = PCADGlobalsPINVOKE.CFxAPI_GetPointFDT__SWIG_0(OdGePoint3d.getCPtr(gePoint), point /*DOUBLE_FIXED_ARRAY*/);
4233 return ret;
4234 }
4235
4236 public static int GetPointFDT(OdGeVector3d gePoint, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
4237 int ret = PCADGlobalsPINVOKE.CFxAPI_GetPointFDT__SWIG_1(OdGeVector3d.getCPtr(gePoint), point /*DOUBLE_FIXED_ARRAY*/);
4239 return ret;
4240 }
4241
4242 public static int GetPointFDT(OdGePoint2d gePoint, double[] /*DOUBLE_FIXED_ARRAY*/ point) {
4243 int ret = PCADGlobalsPINVOKE.CFxAPI_GetPointFDT__SWIG_2(OdGePoint2d.getCPtr(gePoint), point /*DOUBLE_FIXED_ARRAY*/);
4245 return ret;
4246 }
4247
4248 public static int GetMatrix3D(SWIGTYPE_p_a_4__double matrix, OdGeMatrix3d geMatrix) {
4251 return ret;
4252 }
4253
4254 public static int GetMatrixFDT(OdGeMatrix3d geMatrix, SWIGTYPE_p_a_4__double matrix) {
4257 return ret;
4258 }
4259
4260 public virtual int GetResBufFDTW(OdResBuf pRB, SWIGTYPE_p_p_fdt_resbufW pRBResult, bool bAddXData, bool bAddMinus3) {
4261 int ret = PCADGlobalsPINVOKE.CFxAPI_GetResBufFDTW(swigCPtr, OdResBuf.getCPtr(pRB), SWIGTYPE_p_p_fdt_resbufW.getCPtr(pRBResult), bAddXData, bAddMinus3);
4263 return ret;
4264 }
4265
4266 public virtual int GetResBufDDW(fdt_resbufW rbuffer, ref OdResBuf /*OUT_PARAM for SMARTPTR*/ pRBResult, int iDepth) {
4267 /*OUT_PARAM for SMARTPTR pre*/ IntPtr tmp_pRBResult = pRBResult == null ? IntPtr.Zero : OdResBuf.getCPtr(pRBResult).Handle;
4268 IntPtr saved_pRBResult = tmp_pRBResult;
4269 /*OUT_PARAM for SMARTPTR pre*/
4270 try {
4271 int ret = PCADGlobalsPINVOKE.CFxAPI_GetResBufDDW__SWIG_0(swigCPtr, fdt_resbufW.getCPtr(rbuffer), ref tmp_pRBResult /*OUT_PARAM for SMARTPTR*/, iDepth);
4273 return ret;
4274 } finally {
4275if(tmp_pRBResult == IntPtr.Zero) pRBResult = null;
4276 if(tmp_pRBResult != IntPtr.Zero && tmp_pRBResult != saved_pRBResult)
4277 {
4278 MemoryTransaction mTrans_pRBResult = MemoryManager.GetMemoryManager().GetCurrentTransaction();
4279 if(mTrans_pRBResult != null)
4280 mTrans_pRBResult.AddObject(Teigha.Core.Helpers.odCreateObjectInternal<OdResBuf>(typeof(OdResBuf), tmp_pRBResult, true));
4281 pRBResult = Teigha.Core.Helpers.odCreateObjectInternal<OdResBuf>(typeof(OdResBuf), tmp_pRBResult, mTrans_pRBResult == null);
4282 /*OUT_PARAM for SMARTPTR*/
4283 }
4284 }
4285 }
4286
4287 public virtual int GetResBufDDW(fdt_resbufW rbuffer, ref OdResBuf /*OUT_PARAM for SMARTPTR*/ pRBResult) {
4288 /*OUT_PARAM for SMARTPTR pre*/ IntPtr tmp_pRBResult = pRBResult == null ? IntPtr.Zero : OdResBuf.getCPtr(pRBResult).Handle;
4289 IntPtr saved_pRBResult = tmp_pRBResult;
4290 /*OUT_PARAM for SMARTPTR pre*/
4291 try {
4292 int ret = PCADGlobalsPINVOKE.CFxAPI_GetResBufDDW__SWIG_1(swigCPtr, fdt_resbufW.getCPtr(rbuffer), ref tmp_pRBResult /*OUT_PARAM for SMARTPTR*/);
4294 return ret;
4295 } finally {
4296if(tmp_pRBResult == IntPtr.Zero) pRBResult = null;
4297 if(tmp_pRBResult != IntPtr.Zero && tmp_pRBResult != saved_pRBResult)
4298 {
4299 MemoryTransaction mTrans_pRBResult = MemoryManager.GetMemoryManager().GetCurrentTransaction();
4300 if(mTrans_pRBResult != null)
4301 mTrans_pRBResult.AddObject(Teigha.Core.Helpers.odCreateObjectInternal<OdResBuf>(typeof(OdResBuf), tmp_pRBResult, true));
4302 pRBResult = Teigha.Core.Helpers.odCreateObjectInternal<OdResBuf>(typeof(OdResBuf), tmp_pRBResult, mTrans_pRBResult == null);
4303 /*OUT_PARAM for SMARTPTR*/
4304 }
4305 }
4306 }
4307
4308 public static int GetResBuf(fdt_resbufW pResBuf, int iType, SWIGTYPE_p_p_fdt_resbufW pRB) {
4309 int ret = PCADGlobalsPINVOKE.CFxAPI_GetResBuf(fdt_resbufW.getCPtr(pResBuf), iType, SWIGTYPE_p_p_fdt_resbufW.getCPtr(pRB));
4311 return ret;
4312 }
4313
4314 public virtual int AddResBuf(fdt_resbufW pResBuf, int iType, fdt_u_valW value) {
4315 int ret = PCADGlobalsPINVOKE.CFxAPI_AddResBuf(swigCPtr, fdt_resbufW.getCPtr(pResBuf), iType, fdt_u_valW.getCPtr(value));
4317 return ret;
4318 }
4319
4320 public virtual CFxDocument GetFxDocument() {
4321 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_GetFxDocument(swigCPtr);
4322 CFxDocument ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxDocument(cPtr, false);
4324 return ret;
4325 }
4326
4327 public virtual CFxDatabase GetFxDatabase() {
4328 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_GetFxDatabase__SWIG_0(swigCPtr);
4329 CFxDatabase ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxDatabase(cPtr, false);
4331 return ret;
4332 }
4333
4334 public virtual CFxUserIO GetUserIO() {
4335 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_GetUserIO__SWIG_0(swigCPtr);
4336 CFxUserIO ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUserIO(cPtr, false);
4338 return ret;
4339 }
4340
4341 public virtual CFxView GetActiveFxView() {
4342 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_GetActiveFxView(swigCPtr);
4343 CFxView ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxView(cPtr, false);
4345 return ret;
4346 }
4347
4348 public virtual bool CheckFilter(ref UInt64[] /*OUT_ARRAY*/ ename, fdt_resbufW entmask) {
4349IntPtr p_ename=Teigha.Core.Helpers.MarshalUInt64FixedArray(ename);
4350 try {
4351 bool ret = PCADGlobalsPINVOKE.CFxAPI_CheckFilter(swigCPtr, p_ename, fdt_resbufW.getCPtr(entmask));
4353 return ret;
4354 } finally {
4355ename = Teigha.Core.Helpers.UnMarshalUInt64FixedArray(p_ename); Marshal.FreeCoTaskMem(p_ename);
4356 }
4357 }
4358
4360 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_GetFXImages(swigCPtr);
4361 SWIGTYPE_p_CFxImages ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxImages(cPtr, false);
4363 return ret;
4364 }
4365
4366 public virtual fdt_resbufW ConvertToW(fdt_resbufA rbuffer, int iDepth) {
4367 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_ConvertToW__SWIG_0(swigCPtr, fdt_resbufA.getCPtr(rbuffer), iDepth);
4368 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
4370 return ret;
4371 }
4372
4373 public virtual fdt_resbufW ConvertToW(fdt_resbufA rbuffer) {
4374 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_ConvertToW__SWIG_1(swigCPtr, fdt_resbufA.getCPtr(rbuffer));
4375 fdt_resbufW ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufW(cPtr, false);
4377 return ret;
4378 }
4379
4380 public virtual fdt_resbufA ConvertToA(fdt_resbufW rbuffer, int iDepth) {
4381 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_ConvertToA__SWIG_0(swigCPtr, fdt_resbufW.getCPtr(rbuffer), iDepth);
4382 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
4384 return ret;
4385 }
4386
4387 public virtual fdt_resbufA ConvertToA(fdt_resbufW rbuffer) {
4388 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxAPI_ConvertToA__SWIG_1(swigCPtr, fdt_resbufW.getCPtr(rbuffer));
4389 fdt_resbufA ret = (cPtr == global::System.IntPtr.Zero) ? null : new fdt_resbufA(cPtr, false);
4391 return ret;
4392 }
4393
4394 public virtual void ConvertToW(fdt_resbufA rbufferA, fdt_resbufW rbufferW) {
4397 }
4398
4399 public virtual void ConvertToA(fdt_resbufW rbufferW, fdt_resbufA rbufferA) {
4402 }
4403
4404}
4405
4406}
virtual int GetResBufFDTW(OdResBuf pRB, SWIGTYPE_p_p_fdt_resbufW pRBResult, bool bAddXData, bool bAddMinus3)
Definition: CFxAPI.cs:4260
virtual int fdt_compfontA(string source_file, string target_file)
Definition: CFxAPI.cs:2416
virtual int dlg_ImageWmfA(short x1, short y1, short x2, short y2, string szWmfPath)
Definition: CFxAPI.cs:3761
virtual fdt_resbufA fdt_entgetxA(ref UInt64[] ename, fdt_resbufA applic_name)
Definition: CFxAPI.cs:1388
virtual int dlg_ListEnd()
Definition: CFxAPI.cs:3653
virtual int fdt_grtextW(string string_)
Definition: CFxAPI.cs:2064
virtual int fdt_getfiledA(string lpszTitle, string lpszDefault, string lpszExtension, int flags, fdt_resbufA pResultFilename)
Definition: CFxAPI.cs:1917
virtual int dcl_get_attrA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szAttribName, string szAttribInfo, int lInfoMaxLength)
Definition: CFxAPI.cs:3905
virtual fdt_resbufW fdt_registry_descendentsW(string lpKey, short values)
Definition: CFxAPI.cs:2947
virtual int fdt_dictionary_renameA(ref UInt64[] dict, string lpNameOld, string lpNameNew)
Definition: CFxAPI.cs:3212
virtual int fdt_toolbarmatrixtoolbaraddA(string toolbar)
Definition: CFxAPI.cs:452
virtual int fdt_getprinterlistW(SWIGTYPE_p_p_fdt_resbufW printerList)
Definition: CFxAPI.cs:4119
virtual int fdt_toolbarstatesetA(string toolbar, int state)
Definition: CFxAPI.cs:518
virtual int dcl_mode_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nTileState)
Definition: CFxAPI.cs:3965
virtual int fdt_entmakeA(fdt_resbufA rbuffer)
Definition: CFxAPI.cs:1436
virtual int dlg_TileSetW(IntPtr hdlg, string key, string value)
Definition: CFxAPI.cs:3551
virtual int fdt_all_toolbars_visibleA(bool visible)
Definition: CFxAPI.cs:554
virtual int fdt_wmfoutW(string szFileName, int nDbNo, int nWndNo, char Mode, double[] PntMin, double[] PntMax, int nGroundColor, int nEntityColor)
Definition: CFxAPI.cs:2528
virtual int fdt_regappA(string applic_name)
Definition: CFxAPI.cs:53
virtual int fdt_ssgetA(string mode, IntPtr point1, double[] pt2, fdt_resbufA filter, ref UInt64[] sname)
Definition: CFxAPI.cs:1075
virtual int dcl_done_dialog(SWIGTYPE_p__dcl_hdlg hDialog, int nMessage)
Definition: CFxAPI.cs:3833
virtual int fdt_catrom2poly_2d(ref UInt64[] ename)
Definition: CFxAPI.cs:2473
virtual int fdt_rett()
Definition: CFxAPI.cs:211
virtual int fdt_dictionary_deleteW(ref UInt64[] dict, string lpName, ref UInt64[] object_)
Definition: CFxAPI.cs:3151
virtual int fdt_getresourceimageA(string filename, SWIGTYPE_p_HBITMAP image)
Definition: CFxAPI.cs:4137
virtual int fdt_file_renameW(string lpSource, string lpDest)
Definition: CFxAPI.cs:3010
virtual int fdt_nentselpexA(string prompt, ref UInt64[] ename, double[] point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufA refents, uint transSpaceFlag, out int gsmarker)
Definition: CFxAPI.cs:1558
virtual int fdt_curve_getdistatparam(ref UInt64[] curve, double param, out double value)
Definition: CFxAPI.cs:3278
virtual int fdt_getprinterpapersizesW(string printer, SWIGTYPE_p_p_fdt_resbufW paperSizes)
Definition: CFxAPI.cs:4131
virtual int fdt_textscr()
Definition: CFxAPI.cs:1022
virtual int fdt_entmakeW(fdt_resbufW rbuffer)
Definition: CFxAPI.cs:1442
virtual int fdt_cvunitA(double value, string source_unit, string target_unit, out double result)
Definition: CFxAPI.cs:920
virtual int fdt_flxsaveasA(string filename)
Definition: CFxAPI.cs:2248
virtual int fdt_invoke_lispW(string LISPExpr, SWIGTYPE_p_p_fdt_resbufW evalresrb)
Definition: CFxAPI.cs:288
virtual int fdt_flxclosevport()
Definition: CFxAPI.cs:2266
virtual int fdt_getconfstringA(string lpAppName, string lpKeyName, string lpDefault, string lpReturnedString, uint nSize)
Definition: CFxAPI.cs:2880
virtual int dcl_get_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo, int lInfoMaxLength)
Definition: CFxAPI.cs:3929
virtual int fdt_deldbmodhook(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnDbModHook)
Definition: CFxAPI.cs:2594
virtual int fdt_curve_isclosed(ref UInt64[] curve, out int iBool)
Definition: CFxAPI.cs:3410
virtual int fdt_toolbar_existsA(string toolbar, bool exists)
Definition: CFxAPI.cs:566
virtual int fdt_nentselW(string prompt, ref UInt64[] ename, double[] point_rslt, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufW refents)
Definition: CFxAPI.cs:1525
virtual int fdt_registerW(string extfunc, string cfunc)
Definition: CFxAPI.cs:71
virtual int fdt_toupper(int character)
Definition: CFxAPI.cs:872
virtual int fdt_toolbarstateW(string toolbar, int state, int x, int y, int number_of_rows, int index_in_toolmatrix)
Definition: CFxAPI.cs:584
virtual int fdt_dictionary_renameW(ref UInt64[] dict, string lpNameOld, string lpNameNew)
Definition: CFxAPI.cs:3223
virtual int fdt_sssetfirst(ref UInt64[] pickset, ref UInt64[] unused)
Definition: CFxAPI.cs:602
virtual int dcl_get_list_stringA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szListString, int nStringLength, int nWhichItem)
Definition: CFxAPI.cs:3887
virtual int fdt_grdraw(double[] point1, double[] point2, int color, int flag)
Definition: CFxAPI.cs:2016
virtual int fdt_palloadA(string palfilename)
Definition: CFxAPI.cs:380
virtual int dlg_TileSetFontA(IntPtr hdlg, string key, short font)
Definition: CFxAPI.cs:3605
virtual int dcl_dimensions_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, out int nWidthLess1, out int nHeightLess1)
Definition: CFxAPI.cs:3983
virtual int dlg_TileActionA(IntPtr hdlg, string key, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void tilefunc)
Definition: CFxAPI.cs:3533
virtual int fdt_menucmdW(string pString)
Definition: CFxAPI.cs:1899
virtual int fdt_grtextW(string string_, out int pBox)
Definition: CFxAPI.cs:2058
virtual int fdt_toolbarmatrixtoolbarstategetA(string toolbar, out int state)
Definition: CFxAPI.cs:482
static int GetMatrixFDT(OdGeMatrix3d geMatrix, SWIGTYPE_p_a_4__double matrix)
Definition: CFxAPI.cs:4254
virtual int fdt_isgraph(int character)
Definition: CFxAPI.cs:860
virtual int fdt_sslength(ref UInt64[] sname, out int length)
Definition: CFxAPI.cs:1108
static int GetObjectId(ref UInt64[] name, OdDbObjectId id)
Definition: CFxAPI.cs:4184
virtual int fdt_capture_grread()
Definition: CFxAPI.cs:2004
virtual int fdt_toolbarmatrixtoolbarremoveA(string toolbar)
Definition: CFxAPI.cs:470
virtual int fdt_filename_directoryW(string lpFile, string lpDir, int iCount)
Definition: CFxAPI.cs:3070
virtual fdt_resbufA fdt_dictionary_nextA(ref UInt64[] dict, int flag)
Definition: CFxAPI.cs:3164
virtual int fdt_getvarW(string lpszSysVar, fdt_resbufW pValue)
Definition: CFxAPI.cs:914
virtual int fdt_registry_writeW(string lpKey, string lpName, string lpValue)
Definition: CFxAPI.cs:2974
virtual int dlg_ImageBmpA(short x1, short y1, short x2, short y2, string szBmpPath)
Definition: CFxAPI.cs:3737
virtual int fdt_getrealA(string prompt, out double real_rslt)
Definition: CFxAPI.cs:1846
virtual int fdt_setvarW(string lpszSysVar, fdt_resbufW pValue)
Definition: CFxAPI.cs:902
virtual int fdt_removeall()
Definition: CFxAPI.cs:2762
virtual int fdt_setenvW(string szVarname, string szValue)
Definition: CFxAPI.cs:771
virtual int fdt_setpreferenceW(string group, string name_pref, fdt_resbufW value)
Definition: CFxAPI.cs:4167
virtual int fdt_flxrnewA(string filename, string template_filename)
Definition: CFxAPI.cs:2206
virtual fdt_resbufA fdt_tblsearchA(string tbl_type, string item_name, int setnext)
Definition: CFxAPI.cs:1607
virtual int fdt_toolbarmatrixtoolbaraddW(string toolbar, int index)
Definition: CFxAPI.cs:458
virtual int fdt_retvalW(fdt_resbufW value)
Definition: CFxAPI.cs:264
virtual fdt_resbufW fdt_inputW(string Prompt, int FilterFlag)
Definition: CFxAPI.cs:2491
virtual int fdt_cmdW(fdt_resbufW rb_cmd)
Definition: CFxAPI.cs:681
virtual int fdt_init_dragmodeW(int mode, fdt_resbufW params_)
Definition: CFxAPI.cs:2158
virtual int dcl_get_attr_stringA(SWIGTYPE_p__dcl_htile hControl, string szAttribName, string szAttribInfo, int lInfoMaxLength)
Definition: CFxAPI.cs:3917
virtual int fdt_redraw(ref UInt64[] ename, int mode)
Definition: CFxAPI.cs:1963
virtual int fdt_getrealW(string prompt, out double real_rslt)
Definition: CFxAPI.cs:1852
virtual fdt_resbufW fdt_entgetxW(ref UInt64[] ename, fdt_resbufW applic_name, bool openErased)
Definition: CFxAPI.cs:1400
virtual int dcl_action_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr pfnControlFunc)
Definition: CFxAPI.cs:3959
virtual fdt_resbufA fdt_inputA(string Prompt, int FilterFlag)
Definition: CFxAPI.cs:2484
virtual fdt_resbufA fdt_getargsA()
Definition: CFxAPI.cs:173
virtual int fdt_curve_getparamatdist(ref UInt64[] curve, double dist, out double param)
Definition: CFxAPI.cs:3344
virtual int dlg_TileDimensionsA(IntPtr hdlg, string key, out short cx, out short cy)
Definition: CFxAPI.cs:3593
virtual int fdt_retpoint(double[] point)
Definition: CFxAPI.cs:199
virtual int dlg_TileGetA(IntPtr hdlg, string key, string value, int maxlen)
Definition: CFxAPI.cs:3557
virtual int fdt_getdistA(double[] point, string prompt, out double distance)
Definition: CFxAPI.cs:1786
virtual int fdt_getsnapmodeW(string osnap_key, out short osmode_flag)
Definition: CFxAPI.cs:2100
virtual int fdt_setconfstringA(string lpAppName, string lpKeyName, string lpString)
Definition: CFxAPI.cs:2904
virtual int fdt_curve_isplanar(ref UInt64[] curve, out int iBool)
Definition: CFxAPI.cs:3432
virtual fdt_resbufW fdt_registry_readW(string lpKey, string lpName)
Definition: CFxAPI.cs:2961
virtual int fdt_activate_progress_barA(string lpszMessage)
Definition: CFxAPI.cs:1040
virtual int fdt_grtextW(string string_, out int pBox, out int pHighlight)
Definition: CFxAPI.cs:2052
virtual int fdt_loaded_appsW(int mode, SWIGTYPE_p_p_fdt_resbufW modules_list)
Definition: CFxAPI.cs:4107
virtual int fdt_putsymW(string sym_name, fdt_resbufW value)
Definition: CFxAPI.cs:350
virtual int fdt_ssdel(ref UInt64[] ename, ref UInt64[] sname)
Definition: CFxAPI.cs:1230
virtual int fdt_xdsizeW(fdt_resbufW rbuffer, out int size)
Definition: CFxAPI.cs:3455
virtual int fdt_entnext_dbhook(ref UInt64[] ename, ref UInt64[] next_ename)
Definition: CFxAPI.cs:2606
virtual fdt_resbufW fdt_entgetxW(ref UInt64[] ename, fdt_resbufW applic_name)
Definition: CFxAPI.cs:1412
virtual int fdt_flxnamesW(SWIGTYPE_p_p_fdt_resbufW names)
Definition: CFxAPI.cs:2278
virtual int fdt_file_sizeW(string lpfile, int[] lpValue)
Definition: CFxAPI.cs:3022
virtual int fdt_ssmemb(ref UInt64[] sname, ref UInt64[] ename)
Definition: CFxAPI.cs:1217
virtual int fdt_getflxinfoW(string FileName, FDT_FLX_INFOW FileInfo, UInt32 BMPSize, SWIGTYPE_p_HGLOBAL BMPHandle)
Definition: CFxAPI.cs:2290
virtual int fdt_getintW(string prompt, out int int_rslt)
Definition: CFxAPI.cs:1828
virtual int fdt_islower(int character)
Definition: CFxAPI.cs:818
virtual int fdt_setselecthookA(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnSelHook, string lpszAppName)
Definition: CFxAPI.cs:2534
virtual int fdt_getorientA(double[] point, string prompt, out double orientation)
Definition: CFxAPI.cs:1798
virtual int fdt_getpointA(double[] point, string prompt, double[] point_rslt)
Definition: CFxAPI.cs:1810
virtual int fdt_tblpurgeA(string tbl_type, int flag)
Definition: CFxAPI.cs:1703
virtual int fdt_angtofW(string string_, int format, out double value)
Definition: CFxAPI.cs:962
virtual int dcl_get_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo, int lInfoMaxLength)
Definition: CFxAPI.cs:3935
virtual int fdt_exit_dragmode()
Definition: CFxAPI.cs:2164
virtual int fdt_textpage()
Definition: CFxAPI.cs:1028
virtual int fdt_getcornerA(double[] point, string prompt, double[] point_rslt)
Definition: CFxAPI.cs:1774
virtual int dlg_ListSetColumnWidthW(IntPtr hdlg, string key, string columnwidth)
Definition: CFxAPI.cs:3677
virtual int fdt_entnext(ref UInt64[] ename, ref UInt64[] next_ename)
Definition: CFxAPI.cs:1282
virtual int fdt_getpreferenceW(string group, string name_pref, SWIGTYPE_p_p_fdt_resbufW value)
Definition: CFxAPI.cs:4155
virtual int fdt_entmakexA(fdt_resbufA rbuffer, ref UInt64[] ename)
Definition: CFxAPI.cs:1448
virtual int fdt_draggenW(ref UInt64[] sname, string prompt, int cursor, SWIGTYPE_p_f_a_3__double_a_4__a_4__double__int scanfunc, double[] point)
Definition: CFxAPI.cs:2141
virtual void fdt_polar(double[] point, double angle, double distance, double[] point_rslt)
Definition: CFxAPI.cs:1745
virtual int fdt_delcmdA(string command_name)
Definition: CFxAPI.cs:705
virtual int dlg_TileClientDataA(IntPtr hdlg, string key, IntPtr clientdata)
Definition: CFxAPI.cs:3569
virtual int fdt_tblobjnameW(string tbl_type, string item_name, ref UInt64[] ename)
Definition: CFxAPI.cs:1632
virtual int fdt_getactivedocumentW(SWIGTYPE_p_p_fdt_resbufW data)
Definition: CFxAPI.cs:2368
virtual int fdt_getstringA(int flag, string prompt, string string_rslt, uint iSize)
Definition: CFxAPI.cs:1870
virtual int dlg_ListStartA(IntPtr hdlg, string key, short operation, short index)
Definition: CFxAPI.cs:3617
virtual int fdt_isupper(int character)
Definition: CFxAPI.cs:812
virtual fdt_resbufA fdt_loadedA()
Definition: CFxAPI.cs:294
virtual int fdt_getpointW(double[] point, string prompt, double[] point_rslt)
Definition: CFxAPI.cs:1816
virtual int fdt_setfunhelpW(string szName, string szHelpFile, string szHelpTopic)
Definition: CFxAPI.cs:2709
virtual int fdt_initgetW(int value, string keywords)
Definition: CFxAPI.cs:1756
virtual void ConvertToW(fdt_resbufA rbufferA, fdt_resbufW rbufferW)
Definition: CFxAPI.cs:4394
virtual int fdt_ssadd(ref UInt64[] ename, ref UInt64[] selset, ref UInt64[] sresult)
Definition: CFxAPI.cs:1134
virtual int fdt_initdialog(int show_dlg)
Definition: CFxAPI.cs:687
virtual int fdt_toolbarmatrixtoolbarstatesetA(string toolbar, int state)
Definition: CFxAPI.cs:494
virtual int fdt_grreadA(int flag, out int type, fdt_resbufA result, bool bTrack)
Definition: CFxAPI.cs:1980
virtual int fdt_entmod_dbhookA(fdt_resbufA rbuffer)
Definition: CFxAPI.cs:2667
virtual int fdt_palhideA(string palname)
Definition: CFxAPI.cs:416
virtual int dlg_DialogNewPositionedA(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void def_callback, int x, int y, SWIGTYPE_p_p_void hdlg)
Definition: CFxAPI.cs:3497
virtual int dcl_get_list_stringW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szListString, int nStringLength, int nWhichItem)
Definition: CFxAPI.cs:3893
virtual int fdt_appinters(double[] pt1, double[] pt2, double[] result)
Definition: CFxAPI.cs:2106
virtual int fdt_wcmatchA(string strSource, string strPattern)
Definition: CFxAPI.cs:992
virtual fdt_resbufA fdt_entgetA(ref UInt64[] ename, bool openErased)
Definition: CFxAPI.cs:1328
virtual int fdt_set_progress_state(int iProgress)
Definition: CFxAPI.cs:1058
virtual int fdt_palunloadA(string palname)
Definition: CFxAPI.cs:392
virtual int dcl_vector_image(int nXVectStart, int nYVectStart, int nXVectEnd, int nYVectEnd, int nColor)
Definition: CFxAPI.cs:4019
virtual int fdti_notify(int iReason, string lpszMassage)
Definition: CFxAPI.cs:884
virtual int fdt_delcmdW(string command_name)
Definition: CFxAPI.cs:711
virtual int fdt_file_renameA(string lpSource, string lpDest)
Definition: CFxAPI.cs:3004
virtual int fdt_remove_support_pathA(string szSupportPath)
Definition: CFxAPI.cs:4089
virtual int fdt_remove(ref UInt64[] ssname)
Definition: CFxAPI.cs:2751
virtual int fdt_setmousehook(SWIGTYPE_p_f_int_a_3__q_const__double_a_3__q_const__double__int fnMouseHook, short MouseButton)
Definition: CFxAPI.cs:2570
virtual int fdt_getcolorref(int colorindex, SWIGTYPE_p_FxColorRef colorref)
Definition: CFxAPI.cs:2332
virtual int fdt_file_directory_pW(string lpFile)
Definition: CFxAPI.cs:3046
virtual int fdt_file_sizeA(string lpFile, int[] lpValue)
Definition: CFxAPI.cs:3016
virtual int dcl_load_dialogW(string szFileToLoad, out int nDialogFileID)
Definition: CFxAPI.cs:3815
virtual int dcl_new_dialogA(string szDialogName, int nDialogFileID, IntPtr pfnDef_Callback, SWIGTYPE_p_p__dcl_hdlg hDialog)
Definition: CFxAPI.cs:3797
virtual int GetResBufDDW(fdt_resbufW rbuffer, ref OdResBuf pRBResult)
Definition: CFxAPI.cs:4287
virtual int fdt_fgetenvA(string path_kword, string path)
Definition: CFxAPI.cs:741
virtual int fdt_copyresbufA(fdt_resbufA source_rb, SWIGTYPE_p_p_fdt_resbufA target_rb)
Definition: CFxAPI.cs:651
virtual int fdt_snvalidW(string Symbol_Name, int Flag)
Definition: CFxAPI.cs:735
virtual int fdt_delimagefromlibW(string szLibName, string szImageString)
Definition: CFxAPI.cs:2745
virtual int fdt_register_paramA(string extfunc, string cfunc, SWIGTYPE_p_uintptr_t param)
Definition: CFxAPI.cs:77
virtual int dlg_DialogUnload(int dlg_id)
Definition: CFxAPI.cs:3479
virtual int fdt_filename_directoryA(string lpFile, string lpDir, int iCount)
Definition: CFxAPI.cs:3064
virtual int dcl_client_data_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr pApplicationData)
Definition: CFxAPI.cs:4037
virtual int fdt_setcfgW(string Profile_name, string Profile_value)
Definition: CFxAPI.cs:131
virtual int fdt_transA(double[] point, fdt_resbufA origin_cs, fdt_resbufA target_cs, int disp_mode, double[] rslt_point)
Definition: CFxAPI.cs:1951
virtual int dcl_get_attr_stringW(SWIGTYPE_p__dcl_htile hControl, string szAttribName, string szAttribInfo, int lInfoMaxLength)
Definition: CFxAPI.cs:3923
virtual int fdt_addimage2libW(string szLibName, string szImageString, string szImagePath, ushort wType)
Definition: CFxAPI.cs:2721
virtual int fdt_drxloadA(string fdt_app)
Definition: CFxAPI.cs:308
virtual int fdt_SetPrintHook(SWIGTYPE_p_f_p_PRINTREC__int PrintHook)
Definition: CFxAPI.cs:2851
virtual int fdt_retvalA(fdt_resbufA value)
Definition: CFxAPI.cs:258
virtual void fdt_strfreeA(string string_)
Definition: CFxAPI.cs:783
virtual int dlg_ImageSlideA(short x1, short y1, short x2, short y2, string szDrawingPath)
Definition: CFxAPI.cs:3773
virtual CFxDatabase GetFxDatabase()
Definition: CFxAPI.cs:4327
virtual int fdt_palshowW(string palname)
Definition: CFxAPI.cs:410
virtual int fdt_getprinterlistA(SWIGTYPE_p_p_fdt_resbufA printerList)
Definition: CFxAPI.cs:4113
virtual int dlg_ImageSlideW(short x1, short y1, short x2, short y2, string szDrawingPath)
Definition: CFxAPI.cs:3779
virtual int fdt_poly2bspline(ref UInt64[] ename, int steps)
Definition: CFxAPI.cs:2440
virtual int dcl_start_dialog(SWIGTYPE_p__dcl_hdlg hDialog, out int nMessage)
Definition: CFxAPI.cs:3827
virtual int dcl_new_dialogW(string szDialogName, int nDialogFileID, IntPtr pfnDef_Callback, SWIGTYPE_p_p__dcl_hdlg hDialog)
Definition: CFxAPI.cs:3803
virtual fdt_resbufW fdt_entgetW(ref UInt64[] ename, bool openErased)
Definition: CFxAPI.cs:1352
virtual int fdt_file_copyA(string lpSource, string lpDest, int iAppend, out int iSize)
Definition: CFxAPI.cs:2992
virtual int fdt_invoke_lispA(string LISPExpr, SWIGTYPE_p_p_fdt_resbufA evalresrb)
Definition: CFxAPI.cs:282
virtual int fdt_set3dview(int nDbNo, int nWndNo, double[] ZDir, double[] XDir, double[] Center_Point, double Height)
Definition: CFxAPI.cs:2374
virtual int dlg_DialogNewPositionedW(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void def_callback, int x, int y, SWIGTYPE_p_p_void hdlg)
Definition: CFxAPI.cs:3503
virtual int fdt_registerA(string extfunc, string cfunc)
Definition: CFxAPI.cs:65
virtual fdt_resbufW fdt_tblnextW(string tbl_type, int flag)
Definition: CFxAPI.cs:1600
virtual int fdt_delimagefromlibA(string szLibName, string szImageString)
Definition: CFxAPI.cs:2739
virtual int fdt_retstrA(string string_)
Definition: CFxAPI.cs:223
virtual int fdt_file_deleteA(string lpFile)
Definition: CFxAPI.cs:2980
virtual int fdt_file_directory_pA(string lpFile)
Definition: CFxAPI.cs:3040
virtual int dlg_ImageEnd()
Definition: CFxAPI.cs:3719
virtual IntPtr fdt_AddUserImage(WORLDPOINT LowerLeft, WORLDPOINT UpperRight, int iSpace, SWIGTYPE_p_f_p_void_HDC_devpoint_devpoint_worldpoint_worldpoint_worldpoint_worldpoint_int_int_p_void__void pImageProc, IntPtr pUser)
Definition: CFxAPI.cs:2820
virtual int fdt_toolbarmatrixstategetW(out int state)
Definition: CFxAPI.cs:536
static int GetPointFDT(OdGePoint3d gePoint, double[] point)
Definition: CFxAPI.cs:4230
virtual void fdt_DelRedrawHook(short arg0)
Definition: CFxAPI.cs:2840
virtual int fdt_palshowA(string palname)
Definition: CFxAPI.cs:404
static int GetMatrix3D(SWIGTYPE_p_a_4__double matrix, OdGeMatrix3d geMatrix)
Definition: CFxAPI.cs:4248
virtual int fdt_grvecsA(fdt_resbufA vlist, SWIGTYPE_p_a_4__double matrix)
Definition: CFxAPI.cs:2022
virtual fdt_resbufA fdt_entgetxA(ref UInt64[] ename, fdt_resbufA applic_name, bool openErased)
Definition: CFxAPI.cs:1376
virtual int fdt_getdesktopcolor(short iDescElement, out short iColorIndex)
Definition: CFxAPI.cs:2344
virtual int fdt_curve_getstartparam(ref UInt64[] curve, out double param)
Definition: CFxAPI.cs:3322
virtual int fdt_nentselpexW(string prompt, ref UInt64[] ename, double[] point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufW refents, uint transSpaceFlag, out int gsmarker)
Definition: CFxAPI.cs:1569
virtual int dlg_TileSetFontW(IntPtr hdlg, string key, short font)
Definition: CFxAPI.cs:3611
virtual void ConvertToA(fdt_resbufW rbufferW, fdt_resbufA rbufferA)
Definition: CFxAPI.cs:4399
virtual int fdt_ssname(ref UInt64[] sname, int n, ref UInt64[] ename)
Definition: CFxAPI.cs:1149
virtual int fdt_graphscr()
Definition: CFxAPI.cs:1016
virtual int dlg_TileSetA(IntPtr hdlg, string key, string value)
Definition: CFxAPI.cs:3545
virtual int fdt_regappW(string applic_name)
Definition: CFxAPI.cs:59
virtual int dlg_ListGetA(out int nPos, string szBuffer, int maxlen)
Definition: CFxAPI.cs:3641
virtual int fdt_directory_filesW(string lpDirectory, string lpFilter, int mode, SWIGTYPE_p_p_fdt_resbufW lpResult)
Definition: CFxAPI.cs:3058
virtual int fdt_nentselpW(string prompt, ref UInt64[] ename, double[] point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufW refents)
Definition: CFxAPI.cs:1547
virtual int fdt_setfunhelpA(string szName, string szHelpFile, string szHelpTopic)
Definition: CFxAPI.cs:2703
virtual int fdt_getkwordA(string prompt, string keyword, uint iSize)
Definition: CFxAPI.cs:1834
virtual int fdt_handentA(string handle, ref UInt64[] ename)
Definition: CFxAPI.cs:1929
virtual int dlg_SliderSetA(IntPtr hdlg, string key, int nCurPos, int nMinPos, int nMaxPos, int nSmallInc, int nBigInc)
Definition: CFxAPI.cs:3695
virtual int dcl_get_attrW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szAttribName, string szAttribInfo, int lInfoMaxLength)
Definition: CFxAPI.cs:3911
virtual int fdt_vportsA(SWIGTYPE_p_p_fdt_resbufA viewport_list)
Definition: CFxAPI.cs:2170
virtual int fdt_filename_mktempA(string lpPattern, string lpDirectory, string lpExt, string lpFile, int iCount)
Definition: CFxAPI.cs:3100
virtual int dlg_ListStartW(IntPtr hdlg, string key, short operation, short index)
Definition: CFxAPI.cs:3623
virtual int fdt_setviewW(fdt_resbufW View_deflist, int Vport_id)
Definition: CFxAPI.cs:2386
virtual int fdt_getorientW(double[] point, string prompt, out double orientation)
Definition: CFxAPI.cs:1804
virtual int dlg_DialogTerm()
Definition: CFxAPI.cs:3527
virtual int fdt_menucmdA(string pString)
Definition: CFxAPI.cs:1893
virtual int fdt_registry_deleteA(string lpKey, string lpName)
Definition: CFxAPI.cs:2928
virtual int fdt_add_support_pathA(string szSupportPath)
Definition: CFxAPI.cs:4077
virtual int fdt_nentselpA(string prompt, ref UInt64[] ename, double[] point_rslt, int flag, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufA refents)
Definition: CFxAPI.cs:1536
virtual int fdt_flxopenA(string filename, int ro_flag)
Definition: CFxAPI.cs:2218
virtual int dcl_fill_image(int nULCornerX, int nULCornerY, int nWidthLess1, int nHeightLess1, int nColor)
Definition: CFxAPI.cs:4001
virtual int fdt_isalnum(int character)
Definition: CFxAPI.cs:848
virtual int fdt_draggenA(ref UInt64[] sname, string prompt, int cursor, SWIGTYPE_p_f_a_3__double_a_4__a_4__double__int scanfunc, double[] point)
Definition: CFxAPI.cs:2130
virtual int fdt_ispunct(int character)
Definition: CFxAPI.cs:842
virtual int fdt_entselA(string prompt, ref UInt64[] ename, double[] point)
Definition: CFxAPI.cs:1492
virtual int fdt_distofW(string string_, int format, out double value)
Definition: CFxAPI.cs:974
virtual int fdt_ssnamexA(SWIGTYPE_p_p_fdt_resbufA rbpp, ref UInt64[] ss, int i, uint flags)
Definition: CFxAPI.cs:1162
virtual int fdt_getconfintW(string lpAppName, string lpKeyName, int nDefault)
Definition: CFxAPI.cs:2898
virtual int fdt_entlast(ref UInt64[] ename)
Definition: CFxAPI.cs:1306
virtual int dlg_SliderSetW(IntPtr hdlg, string key, int nCurPos, int nMinPos, int nMaxPos, int nSmallInc, int nBigInc)
Definition: CFxAPI.cs:3701
void Dispose()
Definition: CFxAPI.cs:36
virtual int fdt_getcornerW(double[] point, string prompt, double[] point_rslt)
Definition: CFxAPI.cs:1780
virtual int fdt_register_funcA(string extfunc, SWIGTYPE_p_f___int cfunc)
Definition: CFxAPI.cs:89
virtual int fdt_toolbarmatrixtoolbarstatesetW(string toolbar, int state)
Definition: CFxAPI.cs:500
virtual int fdt_retstrW(string string_)
Definition: CFxAPI.cs:229
virtual int dcl_set_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo)
Definition: CFxAPI.cs:3941
virtual fdt_resbufW fdt_entget_dbhookW(ref UInt64[] ename)
Definition: CFxAPI.cs:2655
virtual int fdt_actcmdA(string command_name)
Definition: CFxAPI.cs:693
virtual int fdt_register_paramW(string extfunc, string cfunc, SWIGTYPE_p_uintptr_t param)
Definition: CFxAPI.cs:83
virtual int fdt_findfileA(string lpszFilename, string lpszResultFilename)
Definition: CFxAPI.cs:1905
virtual fdt_resbufA fdt_tblnextA(string tbl_type, int flag)
Definition: CFxAPI.cs:1593
virtual int fdt_entselW(string prompt, ref UInt64[] ename, double[] point)
Definition: CFxAPI.cs:1503
virtual int dlg_ListAddA(string item)
Definition: CFxAPI.cs:3629
virtual int fdt_flxnewA(string filename, string template_filename)
Definition: CFxAPI.cs:2194
virtual int fdt_toolbarmatrixstategetA(out int state)
Definition: CFxAPI.cs:530
virtual int dcl_start_imageA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey)
Definition: CFxAPI.cs:3989
virtual void fdt_strfreeW(string string_)
Definition: CFxAPI.cs:788
virtual int fdt_init_dragmodeA(int mode, fdt_resbufA params_)
Definition: CFxAPI.cs:2152
virtual int fdt_palloadW(string palfilename)
Definition: CFxAPI.cs:386
virtual int fdt_tblsetW(string tbl_type, string item_name)
Definition: CFxAPI.cs:1673
virtual int fdt_copyresbufW(fdt_resbufW source_rb, SWIGTYPE_p_p_fdt_resbufW target_rb)
Definition: CFxAPI.cs:657
virtual int dlg_ImageStartW(IntPtr hdlg, string key)
Definition: CFxAPI.cs:3713
static int GetResBuf(fdt_resbufW pResBuf, int iType, SWIGTYPE_p_p_fdt_resbufW pRB)
Definition: CFxAPI.cs:4308
virtual int fdt_atofW(string string_, out double value)
Definition: CFxAPI.cs:986
virtual int dcl_dimensions_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, out int nWidthLess1, out int nHeightLess1)
Definition: CFxAPI.cs:3977
virtual int fdt_textboxW(fdt_resbufW descr_buffer, double[] corner1, double[] corner2)
Definition: CFxAPI.cs:2118
virtual int fdt_getangleW(double[] point, string prompt, out double angle_rslt)
Definition: CFxAPI.cs:1768
virtual int fdt_rtosA(double value, int format, int precision, string string_, uint iSize)
Definition: CFxAPI.cs:944
virtual int dcl_mode_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nTileState)
Definition: CFxAPI.cs:3971
virtual int fdt_tblsetA(string tbl_type, string item_name)
Definition: CFxAPI.cs:1667
virtual int fdt_xunloadW(string fdt_app)
Definition: CFxAPI.cs:167
virtual CFxDocument GetFxDocument()
Definition: CFxAPI.cs:4320
virtual int fdt_file_systimeW(string lpfile, out int iYear, out int iMonth, out int iWeekDay, out int iMonthDay, out int iHour, out int iMinute, out int iSecond, out int iMilliSecond)
Definition: CFxAPI.cs:3034
virtual fdt_resbufW fdt_getargsW()
Definition: CFxAPI.cs:180
virtual int fdt_toolbarmatrixtoolbaraddA(string toolbar, int index)
Definition: CFxAPI.cs:446
virtual int fdt_flxsaveasW(string filename)
Definition: CFxAPI.cs:2254
virtual int fdt_isdbmodhook()
Definition: CFxAPI.cs:2691
virtual int fdt_curve_getclosestpointto(ref UInt64[] curve, double[] point, int iExtend, double[] retvalue)
Definition: CFxAPI.cs:3256
virtual int dlg_ImageVector(short x1, short y1, short x2, short y2, short color)
Definition: CFxAPI.cs:3725
virtual int dcl_end_list()
Definition: CFxAPI.cs:3899
virtual int dlg_SliderGetA(IntPtr hdlg, string key, out int nCurPos, out int nMinPos, out int nMaxPos, out int nSmallInc, out int nBigInc)
Definition: CFxAPI.cs:3683
virtual int fdt_transW(double[] point, fdt_resbufW origin_cs, fdt_resbufW target_cs, int disp_mode, double[] rslt_point)
Definition: CFxAPI.cs:1957
virtual int fdt_delselecthook(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnSelHook)
Definition: CFxAPI.cs:2552
virtual int fdt_curve_getclosestpointtoprojection(ref UInt64[] curve, double[] point, double[] normal, int iExtend, double[] retvalue)
Definition: CFxAPI.cs:3267
virtual int fdt_getinputW(string keyword, uint iSize)
Definition: CFxAPI.cs:1864
virtual int fdt_retnil()
Definition: CFxAPI.cs:205
virtual int fdt_getactivedocumentA(SWIGTYPE_p_p_fdt_resbufA data)
Definition: CFxAPI.cs:2362
virtual int fdt_toolbarmatrixgetnameslistW(SWIGTYPE_p_p_fdt_resbufW toolbars)
Definition: CFxAPI.cs:440
virtual int fdt_getcnameW(string Cmd_Name, SWIGTYPE_p_p_wchar_t Primary_Cmd_Name)
Definition: CFxAPI.cs:723
virtual int fdt_invokeA(fdt_resbufA arguments, SWIGTYPE_p_p_fdt_resbufA rbuffer)
Definition: CFxAPI.cs:270
virtual fdt_resbufW fdt_tblsearchW(string tbl_type, string item_name, int setnext)
Definition: CFxAPI.cs:1614
virtual int fdt_cleartextscr()
Definition: CFxAPI.cs:1034
virtual uint fdt_getrgb(int colorIndex)
Definition: CFxAPI.cs:2356
virtual int fdt_getcolorindex(IntPtr parent_window, int default_value, int mode_flag, out int int_result)
Definition: CFxAPI.cs:2320
virtual int fdt_nentselA(string prompt, ref UInt64[] ename, double[] point_rslt, SWIGTYPE_p_a_4__double matrix, SWIGTYPE_p_p_fdt_resbufA refents)
Definition: CFxAPI.cs:1514
virtual int fdt_entupd(ref UInt64[] ename)
Definition: CFxAPI.cs:1470
virtual int fdt_retint(int value)
Definition: CFxAPI.cs:187
virtual int fdt_hide_progress_bar()
Definition: CFxAPI.cs:1052
virtual int fdt_tblpurgeW(string tbl_type, int flag)
Definition: CFxAPI.cs:1709
virtual int fdt_getsymW(string varname, SWIGTYPE_p_p_fdt_resbufW value)
Definition: CFxAPI.cs:338
virtual int fdt_setdesktopcolor(short iDescElement, short iColorIndex)
Definition: CFxAPI.cs:2350
virtual int dlg_DialogNewW(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void def_callback, SWIGTYPE_p_p_void hdlg)
Definition: CFxAPI.cs:3491
virtual int dcl_get_tile_keyA(SWIGTYPE_p__dcl_htile hTile, string szControlKey, int lControlKeyLength)
Definition: CFxAPI.cs:4043
virtual int fdt_isspace(int character)
Definition: CFxAPI.cs:836
virtual int fdt_curve_isperiodic(ref UInt64[] curve, out int iBool)
Definition: CFxAPI.cs:3421
virtual int fdt_isxdigit(int character)
Definition: CFxAPI.cs:830
virtual fdt_resbufA fdt_entget_dbhookA(ref UInt64[] ename)
Definition: CFxAPI.cs:2631
virtual int dcl_load_dialogA(string szFileToLoad, out int nDialogFileID)
Definition: CFxAPI.cs:3809
virtual int fdt_getininameA(string lpszIniName, int iIniNameLength)
Definition: CFxAPI.cs:356
virtual int fdt_dictionary_deleteA(ref UInt64[] dict, string lpName, ref UInt64[] object_)
Definition: CFxAPI.cs:3138
virtual int fdt_toolbarstateA(string toolbar, int state, int x, int y, int number_of_rows, int index_in_toolmatrix)
Definition: CFxAPI.cs:578
static CFxSelectionSet GetSSPtr(ref UInt64[] name)
Definition: CFxAPI.cs:4206
virtual int fdt_setconfintA(string lpAppName, string lpKeyName, int nValue)
Definition: CFxAPI.cs:2916
virtual int fdt_tblcheckrefA(string tbl_type, string item_name)
Definition: CFxAPI.cs:1715
virtual fdt_resbufW ConvertToW(fdt_resbufA rbuffer)
Definition: CFxAPI.cs:4373
virtual int fdt_tblmakeW(fdt_resbufW tbl_record)
Definition: CFxAPI.cs:1661
virtual int fdt_getininameW(string lpszIniName, int iIniNameLength)
Definition: CFxAPI.cs:362
virtual int dcl_term_dialog()
Definition: CFxAPI.cs:3857
static int GetSSName(CFxSelectionSet pSS, ref UInt64[] sname)
Definition: CFxAPI.cs:4195
virtual int fdt_xformss(ref UInt64[] sname, SWIGTYPE_p_a_4__double matrix)
Definition: CFxAPI.cs:1254
virtual int dcl_start_listA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nChangeAddNew, int nWhichItem)
Definition: CFxAPI.cs:3863
virtual int fdt_getintA(string prompt, out int int_rslt)
Definition: CFxAPI.cs:1822
virtual int fdt_retvoid()
Definition: CFxAPI.cs:217
virtual int fdt_snvalidA(string Symbol_Name, int Flag)
Definition: CFxAPI.cs:729
virtual int fdt_file_deleteW(string lpFile)
Definition: CFxAPI.cs:2986
virtual int fdt_directory_filesA(string lpDirectory, string lpFilter, int mode, SWIGTYPE_p_p_fdt_resbufA lpResult)
Definition: CFxAPI.cs:3052
virtual int fdt_boundingbox(ref UInt64[] name, double[] min, double[] max)
Definition: CFxAPI.cs:2498
virtual int fdt_entdel(ref UInt64[] ename)
Definition: CFxAPI.cs:1317
static int GetPointFDT(OdGeVector3d gePoint, double[] point)
Definition: CFxAPI.cs:4236
virtual void fdt_push_resource_handle(SWIGTYPE_p_HINSTANCE hInst)
Definition: CFxAPI.cs:4055
virtual int dcl_slide_imageW(int nULCornerX, int nULCornerY, int nWidthLess1, int nHeightLess1, string szSnapshotName)
Definition: CFxAPI.cs:4013
virtual ushort fdt_getimagetypeA(string szLibName, string szImageString)
Definition: CFxAPI.cs:2727
virtual int dlg_DialogDonePositioned(IntPtr hdlg, int status, out int x_result, out int y_result)
Definition: CFxAPI.cs:3521
virtual int fdt_translateA(string context, string string_, string result, uint size)
Definition: CFxAPI.cs:3443
virtual int fdt_setflxinfoW(string FileName, FDT_FLX_INFOW FileInfo)
Definition: CFxAPI.cs:2302
virtual int fdt_ssnamexA(SWIGTYPE_p_p_fdt_resbufA rbpp, ref UInt64[] ss, int i)
Definition: CFxAPI.cs:1173
virtual int fdt_vportsW(SWIGTYPE_p_p_fdt_resbufW viewport_list)
Definition: CFxAPI.cs:2176
virtual int fdt_flxropenW(string filename, int ro_flag)
Definition: CFxAPI.cs:2236
virtual int dcl_end_image()
Definition: CFxAPI.cs:4025
virtual int fdt_curve_getpointatdist(ref UInt64[] curve, double dist, double[] point)
Definition: CFxAPI.cs:3355
virtual int fdt_bspline2poly(ref UInt64[] ename)
Definition: CFxAPI.cs:2451
virtual int fdt_delmousehook()
Definition: CFxAPI.cs:2576
virtual int fdt_setconfintW(string lpAppName, string lpKeyName, int nValue)
Definition: CFxAPI.cs:2922
virtual int dlg_TileClientDataW(IntPtr hdlg, string key, IntPtr clientdata)
Definition: CFxAPI.cs:3575
virtual void fdt_failW(string lpszErrorText)
Definition: CFxAPI.cs:632
virtual int dlg_DialogDone(IntPtr hdlg, int status)
Definition: CFxAPI.cs:3515
virtual double fdt_distance(double[] point1, double[] point2)
Definition: CFxAPI.cs:1739
virtual int fdt_pcontour(ref UInt64[] ssname, int mode, double[] inner_pnt, ref UInt64[] resname)
Definition: CFxAPI.cs:2509
virtual int fdt_toolbarmatrixtoolbarremoveW(string toolbar)
Definition: CFxAPI.cs:476
virtual int fdt_unregisterW(string extfunc)
Definition: CFxAPI.cs:107
virtual string fdt_strmallocA(int length)
Definition: CFxAPI.cs:777
virtual int fdt_curve_getdistatpoint(ref UInt64[] curve, double[] point, out double value)
Definition: CFxAPI.cs:3289
virtual int dlg_ImageLibraryW(short x1, short y1, short x2, short y2, string szImageName, string szLibPath)
Definition: CFxAPI.cs:3791
virtual int fdt_flxclose(int save_mode)
Definition: CFxAPI.cs:2260
virtual int fdt_setconfstringW(string lpAppName, string lpKeyName, string lpString)
Definition: CFxAPI.cs:2910
virtual int fdt_tblrenA(string tbl_type, string old_name, string new_name)
Definition: CFxAPI.cs:1679
virtual int fdt_palgetnameslistW(SWIGTYPE_p_p_fdt_resbufW ListOfPaletteNames)
Definition: CFxAPI.cs:374
virtual fdt_resbufA fdt_registry_descendentsA(string lpKey, short values)
Definition: CFxAPI.cs:2940
virtual int fdt_inters(double[] from_pt1, double[] to_pt1, double[] from_pt2, double[] to_pt2, int flag, double[] point_rslt)
Definition: CFxAPI.cs:1727
virtual int dlg_DialogNewA(string dlg_name, int dlg_id, SWIGTYPE_p_f_p_dlg_callback_packetA_p_void__void def_callback, SWIGTYPE_p_p_void hdlg)
Definition: CFxAPI.cs:3485
virtual int fdt_textboxA(fdt_resbufA descr_buffer, double[] corner1, double[] corner2)
Definition: CFxAPI.cs:2112
virtual int fdt_dictionary_addA(ref UInt64[] dict, string lpName, ref UInt64[] object_)
Definition: CFxAPI.cs:3112
virtual int fdt_tblrenW(string tbl_type, string old_name, string new_name)
Definition: CFxAPI.cs:1685
virtual int fdt_setcursor(short nDbNo, cursordef cursor_style)
Definition: CFxAPI.cs:2428
virtual int fdt_xloadA(string fdt_app)
Definition: CFxAPI.cs:149
virtual int fdt_curve_getpointatparam(ref UInt64[] curve, double param, double[] point)
Definition: CFxAPI.cs:3366
virtual int fdt_putsymA(string sym_name, fdt_resbufA value)
Definition: CFxAPI.cs:344
virtual int fdt_drxunloadW(string fdt_app)
Definition: CFxAPI.cs:326
virtual int fdt_entmodA(fdt_resbufA rbuffer)
Definition: CFxAPI.cs:1424
virtual int fdt_hatch(ref UInt64[] sname, ref UInt64[] ename)
Definition: CFxAPI.cs:1580
virtual int fdti_notify_short(int iReason, int iCode)
Definition: CFxAPI.cs:890
virtual int fdt_tbldelA(string tbl_type, string item_name)
Definition: CFxAPI.cs:1691
virtual int fdt_getfiledW(string lpszTitle, string lpszDefault, string lpszExtension, int flags, fdt_resbufW pResultFilename)
Definition: CFxAPI.cs:1923
virtual int fdt_tblmodW(fdt_resbufW tbl_record)
Definition: CFxAPI.cs:1649
virtual int fdt_angtosA(double value, int format, int precision, string string_, uint iSize)
Definition: CFxAPI.cs:932
virtual int fdt_flxropenA(string filename, int ro_flag)
Definition: CFxAPI.cs:2230
virtual int fdt_xloadW(string fdt_app)
Definition: CFxAPI.cs:155
virtual int dlg_ListSetColumnWidthA(IntPtr hdlg, string key, string columnwidth)
Definition: CFxAPI.cs:3671
virtual int dlg_ImageStartA(IntPtr hdlg, string key)
Definition: CFxAPI.cs:3707
virtual int fdt_getactvport(out short nDbNo, out short nVpNo)
Definition: CFxAPI.cs:2392
virtual int fdt_setactvport(short nDbNo, short nVpNo)
Definition: CFxAPI.cs:2398
virtual int fdt_toolbarstategetW(string toolbar, out int state)
Definition: CFxAPI.cs:512
virtual int fdt_osnapW(double[] point, string osnap_key, double[] point_rslt)
Definition: CFxAPI.cs:2082
virtual int fdt_filename_extensionA(string lpFile, string lpDir, int iCount)
Definition: CFxAPI.cs:3088
virtual int fdt_purgedbmodhooklist()
Definition: CFxAPI.cs:2600
virtual int fdt_cmdA(fdt_resbufA rb_cmd)
Definition: CFxAPI.cs:675
virtual int fdt_getcursor(short nDbNo, cursordef cursor_style)
Definition: CFxAPI.cs:2434
virtual int fdt_regen()
Definition: CFxAPI.cs:1974
virtual int fdt_curve_getstartpoint(ref UInt64[] curve, double[] point)
Definition: CFxAPI.cs:3333
virtual int fdt_getprofileslistA(string CurrentProfileName, SWIGTYPE_p_p_fdt_resbufA ListOfProfiles, uint size)
Definition: CFxAPI.cs:2785
virtual int fdt_toolbar_existsW(string toolbar, bool exists)
Definition: CFxAPI.cs:572
virtual int fdt_retname(ref UInt64[] ename)
Definition: CFxAPI.cs:235
virtual int fdt_grreadW(int flag, out int type, fdt_resbufW result, bool bTrack)
Definition: CFxAPI.cs:1992
virtual int fdt_remove_support_pathW(string szSupportPath)
Definition: CFxAPI.cs:4095
virtual void fdt_failA(string lpszErrorText)
Definition: CFxAPI.cs:627
virtual int dcl_start_listW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, int nChangeAddNew, int nWhichItem)
Definition: CFxAPI.cs:3869
virtual int dlg_ImagePreviewBmpW(short x1, short y1, short x2, short y2, string szDrawingPath)
Definition: CFxAPI.cs:3755
virtual int fdt_getpreviewbitmapA(string FileName, SWIGTYPE_p_FxBitmap PrevBitmap, SWIGTYPE_p_FxPalette BmpPalette)
Definition: CFxAPI.cs:2308
virtual fdt_resbufA fdt_entgetA(ref UInt64[] ename)
Definition: CFxAPI.cs:1340
virtual int fdt_tabletinfoA(fdt_tablet_recA tab_info)
Definition: CFxAPI.cs:2182
virtual int dlg_ListSetTabStopsA(IntPtr hdlg, string key, string tabstops)
Definition: CFxAPI.cs:3659
virtual int fdt_tolower(int character)
Definition: CFxAPI.cs:878
virtual int fdt_tbldelW(string tbl_type, string item_name)
Definition: CFxAPI.cs:1697
virtual int fdt_getenvW(string szVarname, string szIni_section, string szIni_file, int length, string szResult)
Definition: CFxAPI.cs:759
virtual int fdt_entpos(fdt_pos position, ref UInt64[] ename)
Definition: CFxAPI.cs:1295
virtual int fdt_atofA(string string_, out double value)
Definition: CFxAPI.cs:980
virtual int fdt_selcheck(ref UInt64[] ename)
Definition: CFxAPI.cs:1064
virtual int fdt_loadA(string lisp_file)
Definition: CFxAPI.cs:137
static int GetPoint3D(double[] point, OdGeVector3d gePoint)
Definition: CFxAPI.cs:4224
virtual int fdt_getpreviewbitmapW(string FileName, SWIGTYPE_p_FxBitmap PrevBitmap, SWIGTYPE_p_FxPalette BmpPalette)
Definition: CFxAPI.cs:2314
virtual bool CheckFilter(ref UInt64[] ename, fdt_resbufW entmask)
Definition: CFxAPI.cs:4348
virtual int fdt_genout(ref UInt64[] ename, short mode, IntPtr UserData, SWIGTYPE_p_f_p_FDT_GENOUTREC_p_void__short CallBackFunction)
Definition: CFxAPI.cs:2797
virtual int fdt_setflxinfoA(string FileName, FDT_FLX_INFOA FileInfo)
Definition: CFxAPI.cs:2296
virtual int fdt_setcolorref(int colorindex, SWIGTYPE_p_FxColorRef new_colorref, SWIGTYPE_p_FxColorRef old_colorref)
Definition: CFxAPI.cs:2338
static int GetPointFDT(OdGePoint2d gePoint, double[] point)
Definition: CFxAPI.cs:4242
virtual int fdt_uninstall_modeless_hook(SWIGTYPE_p_HWND hWnd)
Definition: CFxAPI.cs:4071
virtual int dlg_TileModeA(IntPtr hdlg, string key, short mode)
Definition: CFxAPI.cs:3581
virtual int fdt_grvecsW(fdt_resbufW vlist, SWIGTYPE_p_a_4__double matrix)
Definition: CFxAPI.cs:2028
virtual int fdt_toolbarmatrixtoolbaraddW(string toolbar)
Definition: CFxAPI.cs:464
virtual int fdt_SetRedrawHook(SWIGTYPE_p_f_short_short_short_short__int arg0, short arg1)
Definition: CFxAPI.cs:2834
virtual int dlg_DialogStart(IntPtr hdlg, out int status, SWIGTYPE_p_f_p_void_p_void__void init_dialog_callback)
Definition: CFxAPI.cs:3509
virtual fdt_resbufW fdt_entgetW(ref UInt64[] ename)
Definition: CFxAPI.cs:1364
virtual int fdt_curve_getendparam(ref UInt64[] curve, out double param)
Definition: CFxAPI.cs:3300
virtual int fdt_wmfoutA(string szFileName, int nDbNo, int nWndNo, char Mode, double[] PntMin, double[] PntMax, int nGroundColor, int nEntityColor)
Definition: CFxAPI.cs:2522
virtual int fdt_norm_dxfcode(int dxf_code)
Definition: CFxAPI.cs:1265
virtual int fdt_ssnamexW(SWIGTYPE_p_p_fdt_resbufW rbpp, ref UInt64[] ss, int i)
Definition: CFxAPI.cs:1195
virtual int dcl_get_tile_keyW(SWIGTYPE_p__dcl_htile hTile, string szControlKey, int lControlKeyLength)
Definition: CFxAPI.cs:4049
virtual int fdt_retreal(double value)
Definition: CFxAPI.cs:193
virtual void fdt_setosnapinactive()
Definition: CFxAPI.cs:1882
virtual int dlg_ImagePreviewBmpA(short x1, short y1, short x2, short y2, string szDrawingPath)
Definition: CFxAPI.cs:3749
virtual fdt_resbufA fdt_registry_readA(string lpKey, string lpName)
Definition: CFxAPI.cs:2954
virtual int dcl_set_tileW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, string szControlInfo)
Definition: CFxAPI.cs:3947
virtual int dcl_unload_dialog(int nDialogFileID)
Definition: CFxAPI.cs:3821
virtual CFxView GetActiveFxView()
Definition: CFxAPI.cs:4341
virtual int dlg_ListAddW(string item)
Definition: CFxAPI.cs:3635
virtual int fdt_DeleteUserImage(IntPtr hImage)
Definition: CFxAPI.cs:2828
virtual int fdt_promptA(string lpszPrompt)
Definition: CFxAPI.cs:1004
virtual int fdt_activate_progress_barW(string lpszMessage)
Definition: CFxAPI.cs:1046
virtual int fdt_alertA(string lpszMessage)
Definition: CFxAPI.cs:615
virtual int fdt_ssgetfirstA(SWIGTYPE_p_p_fdt_resbufA gripset, SWIGTYPE_p_p_fdt_resbufA pickset)
Definition: CFxAPI.cs:590
virtual int dlg_DialogLoadW(string dlg_file, out int dlg_id)
Definition: CFxAPI.cs:3473
virtual int fdt_getenvA(string szVarname, string szIni_section, string szIni_file, int length, string szResult)
Definition: CFxAPI.cs:753
virtual int fdt_loaded_appsA(int mode, SWIGTYPE_p_p_fdt_resbufA modules_list)
Definition: CFxAPI.cs:4101
virtual fdt_resbufW fdt_newrbW(int value)
Definition: CFxAPI.cs:644
virtual fdt_resbufA ConvertToA(fdt_resbufW rbuffer)
Definition: CFxAPI.cs:4387
virtual int fdt_getcfgW(string App_ProfileStringName, string App_ProfileStringValue, int App_ProfileStringLength)
Definition: CFxAPI.cs:119
virtual int fdt_getcurr_mousepos(double[] point)
Definition: CFxAPI.cs:2124
virtual int fdt_genout_enamesW(SWIGTYPE_p_p_fdt_resbufW rb)
Definition: CFxAPI.cs:2814
virtual fdt_resbufW ConvertToW(fdt_resbufA rbuffer, int iDepth)
Definition: CFxAPI.cs:4366
virtual void Dispose(bool disposing)
Definition: CFxAPI.cs:41
virtual int fdt_angtofA(string string_, int format, out double value)
Definition: CFxAPI.cs:956
virtual int fdt_getangleA(double[] point, string prompt, out double angle_rslt)
Definition: CFxAPI.cs:1762
virtual int fdt_angtosW(double value, int format, int precision, string string_, uint iSize)
Definition: CFxAPI.cs:938
virtual int dlg_TileModeW(IntPtr hdlg, string key, short mode)
Definition: CFxAPI.cs:3587
virtual int fdt_setselecthookW(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnSelHook, string lpszAppName)
Definition: CFxAPI.cs:2540
virtual int fdt_cvunitW(double value, string source_unit, string target_unit, out double result)
Definition: CFxAPI.cs:926
virtual int fdt_getconfstringW(string lpAppName, string lpKeyName, string lpDefault, string lpReturnedString, uint nSize)
Definition: CFxAPI.cs:2886
virtual int dcl_action_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr pfnControlFunc)
Definition: CFxAPI.cs:3953
virtual int fdt_flxopenW(string filename, int ro_flag)
Definition: CFxAPI.cs:2224
virtual int fdt_relrbA(fdt_resbufA rbuffer)
Definition: CFxAPI.cs:663
virtual int fdt_palunloadW(string palname)
Definition: CFxAPI.cs:398
virtual int fdt_usrbrk()
Definition: CFxAPI.cs:1887
virtual fdt_resbufW fdt_loadedW()
Definition: CFxAPI.cs:301
virtual int fdt_zoomext(short nDbNo, short nVpNo)
Definition: CFxAPI.cs:2404
virtual int fdt_entmod_type()
Definition: CFxAPI.cs:2679
virtual int fdt_findfileW(string lpszFilename, string lpszResultFilename)
Definition: CFxAPI.cs:1911
virtual int fdt_getconfintA(string lpAppName, string lpKeyName, int nDefault)
Definition: CFxAPI.cs:2892
virtual int fdt_drxloadW(string fdt_app)
Definition: CFxAPI.cs:314
virtual int fdt_tabletinfoW(fdt_tablet_recW tab_info)
Definition: CFxAPI.cs:2188
virtual int fdt_ssadd(ref UInt64[] ename, ref UInt64[] selset, ref UInt64[] sresult, bool check_owner)
Definition: CFxAPI.cs:1119
virtual int fdt_setselecthookex(SWIGTYPE_p_f_a_2__uintptr_t__int fnSelHook, SWIGTYPE_p_p_f_a_2__uintptr_t__int fnOldProc)
Definition: CFxAPI.cs:2546
virtual int dlg_TileDimensionsW(IntPtr hdlg, string key, out short cx, out short cy)
Definition: CFxAPI.cs:3599
virtual void fdt_DelPrintHook()
Definition: CFxAPI.cs:2857
static HandleRef getCPtr(CFxAPI obj)
Definition: CFxAPI.cs:28
virtual int fdt_flxrnewW(string filename, string template_filename)
Definition: CFxAPI.cs:2212
virtual int fdt_unregisterA(string extfunc)
Definition: CFxAPI.cs:101
virtual int fdt_toolbarstategetA(string toolbar, out int state)
Definition: CFxAPI.cs:506
virtual int fdt_getprofileslistW(string CurrentProfileName, SWIGTYPE_p_p_fdt_resbufW ListOfProfiles, uint size)
Definition: CFxAPI.cs:2791
virtual int fdt_setcfgA(string Profile_name, string Profile_value)
Definition: CFxAPI.cs:125
virtual int dcl_done_positioned_dialog(SWIGTYPE_p__dcl_hdlg hDialog, int nMessage, out int nXPos, out int nYPos)
Definition: CFxAPI.cs:3851
virtual fdt_resbufA fdt_dictionary_searchA(ref UInt64[] dict, string lpName, int iSetNext)
Definition: CFxAPI.cs:3188
virtual int fdt_getcnameA(string Cmd_Name, char[] Primary_Cmd_Name)
Definition: CFxAPI.cs:717
virtual int fdt_toolbarmatrixgetnameslistA(SWIGTYPE_p_p_fdt_resbufA toolbars)
Definition: CFxAPI.cs:434
virtual int dlg_SliderGetW(IntPtr hdlg, string key, out int nCurPos, out int nMinPos, out int nMaxPos, out int nSmallInc, out int nBigInc)
Definition: CFxAPI.cs:3689
virtual fdt_resbufA fdt_newrbA(int value)
Definition: CFxAPI.cs:637
virtual int fdt_curve_getarea(ref UInt64[] curve, out double value)
Definition: CFxAPI.cs:3245
virtual int dlg_TileGetW(IntPtr hdlg, string key, string value, int maxlen)
Definition: CFxAPI.cs:3563
virtual int fdt_filename_baseW(string lpFile, string lpDir, int iCount)
Definition: CFxAPI.cs:3082
virtual int fdt_remdelall()
Definition: CFxAPI.cs:2768
virtual int fdt_file_copyW(string lpSource, string lpDest, int iAppend, out int iSize)
Definition: CFxAPI.cs:2998
virtual int dlg_ImageBmpW(short x1, short y1, short x2, short y2, string szBmpPath)
Definition: CFxAPI.cs:3743
virtual int fdt_translateW(string context, string string_, string result, uint size)
Definition: CFxAPI.cs:3449
virtual int fdt_ismousehook()
Definition: CFxAPI.cs:2697
virtual int fdt_palopendlg()
Definition: CFxAPI.cs:428
virtual int fdt_purgeselecthooklist()
Definition: CFxAPI.cs:2564
virtual int fdt_drxunloadA(string fdt_app)
Definition: CFxAPI.cs:320
virtual int fdt_setenvA(string szVarname, string szValue)
Definition: CFxAPI.cs:765
virtual int fdt_setdbmodhookA(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnDbModHook, string lpszAppName)
Definition: CFxAPI.cs:2582
virtual fdt_resbufA fdt_entget_dbhookA(ref UInt64[] ename, bool openErased)
Definition: CFxAPI.cs:2619
CFxAPI(IntPtr cPtr, bool cMemoryOwn)
Definition: CFxAPI.cs:23
virtual int fdt_grclear()
Definition: CFxAPI.cs:2070
virtual void fdt_free(IntPtr buffer)
Definition: CFxAPI.cs:801
virtual int fdt_toolbarmatrixtoolbarstategetW(string toolbar, out int state)
Definition: CFxAPI.cs:488
virtual int fdt_genout_enamesA(SWIGTYPE_p_p_fdt_resbufA rb)
Definition: CFxAPI.cs:2808
virtual int dcl_new_positioned_dialogA(string szDialogName, int nDialogFileID, IntPtr pfnDef_Callback, int nXPos, int nYPos, SWIGTYPE_p_p__dcl_hdlg hDialog)
Definition: CFxAPI.cs:3839
virtual int fdt_getsymA(string varname, SWIGTYPE_p_p_fdt_resbufA value)
Definition: CFxAPI.cs:332
virtual int fdt_tblmodA(fdt_resbufA tbl_record)
Definition: CFxAPI.cs:1643
virtual int fdt_retlistW(fdt_resbufW rbuffer)
Definition: CFxAPI.cs:252
virtual int fdt_isdigit(int character)
Definition: CFxAPI.cs:824
virtual int fdt_grtextA(string string_, out int pBox, out int pHighlight)
Definition: CFxAPI.cs:2034
virtual int dlg_ImageFill(short x1, short y1, short x2, short y2, short color)
Definition: CFxAPI.cs:3731
virtual int fdt_toolbarmatrixstatesetW(int state)
Definition: CFxAPI.cs:548
virtual int fdt_getdistW(double[] point, string prompt, out double distance)
Definition: CFxAPI.cs:1792
virtual int fdt_setdbmodhookW(SWIGTYPE_p_f_a_2__q_const__uintptr_t__int fnDbModHook, string lpszAppName)
Definition: CFxAPI.cs:2588
virtual int fdt_flxnewW(string filename, string template_filename)
Definition: CFxAPI.cs:2200
virtual int fdt_GetVportExtInfo(short arg0, short arg1, fdt_VPORT_EXT_INFO arg2)
Definition: CFxAPI.cs:2845
virtual int fdt_getresourceimageW(string filename, SWIGTYPE_p_HBITMAP image)
Definition: CFxAPI.cs:4143
virtual int fdt_entmodW(fdt_resbufW rbuffer)
Definition: CFxAPI.cs:1430
virtual int fdt_filename_mktempW(string lpPattern, string lpDirectory, string lpExt, string lpFile, int iCount)
Definition: CFxAPI.cs:3106
virtual int fdt_xunloadA(string fdt_app)
Definition: CFxAPI.cs:161
virtual int fdt_getprinterpapersizesA(string printer, SWIGTYPE_p_p_fdt_resbufA paperSizes)
Definition: CFxAPI.cs:4125
virtual int fdt_ssdel_all(ref UInt64[] ename)
Definition: CFxAPI.cs:1243
virtual int dlg_TileActionW(IntPtr hdlg, string key, SWIGTYPE_p_f_p_dlg_callback_packetW_p_void__void tilefunc)
Definition: CFxAPI.cs:3539
virtual ushort fdt_getimagetypeW(string szLibName, string szImageString)
Definition: CFxAPI.cs:2733
virtual int fdt_ssgetfirstW(SWIGTYPE_p_p_fdt_resbufW gripset, SWIGTYPE_p_p_fdt_resbufW pickset)
Definition: CFxAPI.cs:596
virtual int fdti_ssinc(ref UInt64[] sname)
Definition: CFxAPI.cs:1271
virtual int fdt_wcmatchW(string strSource, string strPattern)
Definition: CFxAPI.cs:998
virtual fdt_resbufA ConvertToA(fdt_resbufW rbuffer, int iDepth)
Definition: CFxAPI.cs:4380
virtual int fdt_setviewA(fdt_resbufA View_deflist, int Vport_id)
Definition: CFxAPI.cs:2380
virtual int fdt_toolbarstatesetW(string toolbar, int state)
Definition: CFxAPI.cs:524
virtual int fdt_file_systimeA(string lpFile, out int iYear, out int iMonth, out int iWeekDay, out int iMonthDay, out int iHour, out int iMinute, out int iSecond, out int iMilliSecond)
Definition: CFxAPI.cs:3028
virtual int fdt_getkwordW(string prompt, string keyword, uint iSize)
Definition: CFxAPI.cs:1840
virtual int fdt_ssfree(ref UInt64[] sname)
Definition: CFxAPI.cs:1097
virtual double fdt_angle(double[] point1, double[] point2)
Definition: CFxAPI.cs:1733
virtual int fdt_getsnapmodeA(string osnap_key, out short osmode_flag)
Definition: CFxAPI.cs:2094
virtual int fdt_palgetnameslistA(SWIGTYPE_p_p_fdt_resbufA ListOfPaletteNames)
Definition: CFxAPI.cs:368
virtual int fdt_curve_getendpoint(ref UInt64[] curve, double[] point)
Definition: CFxAPI.cs:3311
virtual int fdt_handentW(string handle, ref UInt64[] ename)
Definition: CFxAPI.cs:1940
virtual int fdt_entcheck(ref UInt64[] ename)
Definition: CFxAPI.cs:1481
virtual int fdt_xdsizeA(fdt_resbufA rbuffer, out int size)
Definition: CFxAPI.cs:3461
virtual int fdt_isprint(int character)
Definition: CFxAPI.cs:854
static int GetADSName(OdDbObjectId id, ref UInt64[] name)
Definition: CFxAPI.cs:4173
virtual int fdt_osnapA(double[] point, string osnap_key, double[] point_rslt)
Definition: CFxAPI.cs:2076
virtual int fdt_initgetA(int value, string keywords)
Definition: CFxAPI.cs:1750
virtual int fdt_add_support_pathW(string szSupportPath)
Definition: CFxAPI.cs:4083
virtual int dlg_ImageWmfW(short x1, short y1, short x2, short y2, string szWmfPath)
Definition: CFxAPI.cs:3767
virtual fdt_resbufW fdt_dictionary_searchW(ref UInt64[] dict, string lpName, int iSetNext)
Definition: CFxAPI.cs:3200
virtual int dcl_client_data_tileA(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey, IntPtr pApplicationData)
Definition: CFxAPI.cs:4031
virtual int fdt_flxnamesA(SWIGTYPE_p_p_fdt_resbufA names)
Definition: CFxAPI.cs:2272
virtual int fdt_osnap_mode(double[] point, int osmode_flag, double[] point_rslt)
Definition: CFxAPI.cs:2088
static int GetPoint3D(double[] point, OdGePoint3d gePoint)
Definition: CFxAPI.cs:4218
virtual int fdt_curve_getfirstderiv(ref UInt64[] curve, double param, double[] point)
Definition: CFxAPI.cs:3388
virtual int dlg_ImageLibraryA(short x1, short y1, short x2, short y2, string szImageName, string szLibPath)
Definition: CFxAPI.cs:3785
virtual int dcl_start_imageW(SWIGTYPE_p__dcl_hdlg hDialog, string szControlKey)
Definition: CFxAPI.cs:3995
virtual int fdt_entmakexW(fdt_resbufW rbuffer, ref UInt64[] ename)
Definition: CFxAPI.cs:1459
virtual int fdt_release_grread()
Definition: CFxAPI.cs:2010
virtual int fdt_registry_deleteW(string lpKey, string lpName)
Definition: CFxAPI.cs:2934
virtual int dlg_ListSetTabStopsW(IntPtr hdlg, string key, string tabstops)
Definition: CFxAPI.cs:3665
virtual int fdt_register_funcW(string extfunc, SWIGTYPE_p_f___int cfunc)
Definition: CFxAPI.cs:95
virtual int fdt_compfontW(string source_file, string target_file)
Definition: CFxAPI.cs:2422
virtual int fdt_getflxinfoA(string FileName, FDT_FLX_INFOA FileInfo, UInt32 BMPSize, SWIGTYPE_p_HGLOBAL BMPHandle)
Definition: CFxAPI.cs:2284
virtual int dcl_add_listA(string szAddToList)
Definition: CFxAPI.cs:3875
virtual int fdt_entmod_dbhookW(fdt_resbufW rbuffer)
Definition: CFxAPI.cs:2673
virtual int fdt_promptW(string lpszPrompt)
Definition: CFxAPI.cs:1010
virtual int fdt_Vcs2PrinterPnt(double arg0, double arg1, out int arg2, out int arg3)
Definition: CFxAPI.cs:2868
virtual int fdt_poly2catrom_2d(ref UInt64[] ename, int steps, double tension)
Definition: CFxAPI.cs:2462
virtual int fdt_addimage2libA(string szLibName, string szImageString, string szImagePath, ushort wType)
Definition: CFxAPI.cs:2715
virtual int fdt_distofA(string string_, int format, out double value)
Definition: CFxAPI.cs:968
virtual int fdt_getvarA(string lpszSysVar, fdt_resbufA pValue)
Definition: CFxAPI.cs:908
virtual int fdt_ssgetW(string mode, IntPtr point1, double[] pt2, fdt_resbufW filter, ref UInt64[] sname)
Definition: CFxAPI.cs:1086
virtual int fdt_filename_extensionW(string lpFile, string lpDir, int iCount)
Definition: CFxAPI.cs:3094
virtual int fdt_retlistA(fdt_resbufA rbuffer)
Definition: CFxAPI.cs:246
virtual int fdt_getbackgroundcolorref(SWIGTYPE_p_FxColorRef colorref)
Definition: CFxAPI.cs:2326
virtual int fdt_getpreferenceA(string group, string name_pref, SWIGTYPE_p_p_fdt_resbufA value)
Definition: CFxAPI.cs:4149
virtual int fdt_palhideW(string palname)
Definition: CFxAPI.cs:422
virtual int fdt_all_toolbars_visibleW(bool visible)
Definition: CFxAPI.cs:560
virtual int fdt_getcfgA(string App_ProfileStringName, string App_ProfileStringValue, int App_ProfileStringLength)
Definition: CFxAPI.cs:113
virtual int dcl_new_positioned_dialogW(string szDialogName, int nDialogFileID, IntPtr pfnDef_Callback, int nXPos, int nYPos, SWIGTYPE_p_p__dcl_hdlg hDialog)
Definition: CFxAPI.cs:3845
virtual int fdt_grtextA(string string_, out int pBox)
Definition: CFxAPI.cs:2040
virtual int fdt_install_modeless_hook(SWIGTYPE_p_HWND hWnd, SWIGTYPE_p_HINSTANCE hInst)
Definition: CFxAPI.cs:4065
virtual int fdt_iscntrl(int character)
Definition: CFxAPI.cs:866
virtual int fdt_tblcheckrefW(string tbl_type, string item_name)
Definition: CFxAPI.cs:1721
virtual int AddResBuf(fdt_resbufW pResBuf, int iType, fdt_u_valW value)
Definition: CFxAPI.cs:4314
virtual int fdt_loadW(string lisp_file)
Definition: CFxAPI.cs:143
virtual int fdt_ssdbnr(ref UInt64[] sname, out int nDbNo)
Definition: CFxAPI.cs:1206
virtual int fdt_setvarA(string lpszSysVar, fdt_resbufA pValue)
Definition: CFxAPI.cs:896
virtual IntPtr fdt_malloc(uint length)
Definition: CFxAPI.cs:793
virtual int fdt_setpreselect(ref UInt64[] selset)
Definition: CFxAPI.cs:2774
virtual int fdt_isselecthook()
Definition: CFxAPI.cs:2685
virtual int fdt_grreadW(int flag, out int type, fdt_resbufW result)
Definition: CFxAPI.cs:1998
virtual int fdt_grreadA(int flag, out int type, fdt_resbufA result)
Definition: CFxAPI.cs:1986
virtual CFxUserIO GetUserIO()
Definition: CFxAPI.cs:4334
virtual int fdt_filename_baseA(string lpFile, string lpDir, int iCount)
Definition: CFxAPI.cs:3076
virtual int fdt_relrbW(fdt_resbufW rbuffer)
Definition: CFxAPI.cs:669
virtual int fdt_namedobjdict(ref UInt64[] dict)
Definition: CFxAPI.cs:3234
virtual int fdt_curve_getsecondderiv(ref UInt64[] curve, double param, double[] point)
Definition: CFxAPI.cs:3399
virtual int fdt_actcmdW(string command_name)
Definition: CFxAPI.cs:699
virtual int fdt_curve_getparamatpoint(ref UInt64[] curve, double[] point, out double param)
Definition: CFxAPI.cs:3377
virtual int fdt_grtextA(string string_)
Definition: CFxAPI.cs:2046
virtual SWIGTYPE_p_CFxImages GetFXImages()
Definition: CFxAPI.cs:4359
virtual int dcl_slide_imageA(int nULCornerX, int nULCornerY, int nWidthLess1, int nHeightLess1, string szSnapshotName)
Definition: CFxAPI.cs:4007
virtual int fdt_setpreferenceA(string group, string name_pref, fdt_resbufA value)
Definition: CFxAPI.cs:4161
virtual int fdt_tblobjnameA(string tbl_type, string item_name, ref UInt64[] ename)
Definition: CFxAPI.cs:1621
virtual int dcl_add_listW(string szAddToList)
Definition: CFxAPI.cs:3881
virtual int fdt_ssnamexW(SWIGTYPE_p_p_fdt_resbufW rbpp, ref UInt64[] ss, int i, uint flags)
Definition: CFxAPI.cs:1184
virtual int fdt_invokeW(fdt_resbufW arguments, SWIGTYPE_p_p_fdt_resbufW rbuffer)
Definition: CFxAPI.cs:276
virtual int GetResBufDDW(fdt_resbufW rbuffer, ref OdResBuf pRBResult, int iDepth)
Definition: CFxAPI.cs:4266
virtual int dlg_DialogLoadA(string dlg_file, out int dlg_id)
Definition: CFxAPI.cs:3467
virtual int fdt_registry_writeA(string lpKey, string lpName, string lpValue)
Definition: CFxAPI.cs:2968
virtual void fdt_pop_resource_handle()
Definition: CFxAPI.cs:4060
virtual int fdt_gethandle(out IntPtr frame_hwnd, out IntPtr client_hwnd)
Definition: CFxAPI.cs:2410
virtual int fdt_toolbarmatrixstatesetA(int state)
Definition: CFxAPI.cs:542
virtual fdt_resbufW fdt_entget_dbhookW(ref UInt64[] ename, bool openErased)
Definition: CFxAPI.cs:2643
virtual int fdt_getstringW(int flag, string prompt, string string_rslt, uint iSize)
Definition: CFxAPI.cs:1876
virtual int fdt_fgetenvW(string path_kword, string path)
Definition: CFxAPI.cs:747
virtual int fdt_flxsave()
Definition: CFxAPI.cs:2242
virtual int fdt_GetPrintExtInfo(PRINT_EXT_INFO PrintExtInfo)
Definition: CFxAPI.cs:2862
virtual int fdt_tblmakeA(fdt_resbufA tbl_record)
Definition: CFxAPI.cs:1655
virtual int fdt_GetLastViewportEntId()
Definition: CFxAPI.cs:2874
virtual int dlg_ListGetW(out int nPos, string szBuffer, int maxlen)
Definition: CFxAPI.cs:3647
virtual int fdt_getinputA(string keyword, uint iSize)
Definition: CFxAPI.cs:1858
virtual int fdt_isalpha(int character)
Definition: CFxAPI.cs:806
virtual int fdt_dictionary_addW(ref UInt64[] dict, string lpName, ref UInt64[] object_)
Definition: CFxAPI.cs:3125
virtual int fdt_rtosW(double value, int format, int precision, string string_, uint iSize)
Definition: CFxAPI.cs:950
virtual int fdt_delselecthookex()
Definition: CFxAPI.cs:2558
virtual int fdt_alertW(string lpszMessage)
Definition: CFxAPI.cs:621
virtual fdt_resbufW fdt_dictionary_nextW(ref UInt64[] dict, int flag)
Definition: CFxAPI.cs:3176
static HandleRef getCPtr(CFxSelectionSet obj)
static HandleRef getCPtr(FDT_FLX_INFOA obj)
static HandleRef getCPtr(FDT_FLX_INFOW obj)
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 int CFxAPI_fdt_vportsA(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 int CFxAPI_fdt_set_progress_state(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
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 int CFxAPI_fdt_tbldelA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_selcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_getenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, int jarg5, string jarg6)
static int CFxAPI_fdt_getsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_filename_extensionA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static global::System.IntPtr CFxAPI_GetSSPtr(IntPtr jarg1)
static int CFxAPI_fdt_ssfree(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_flxropenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxAPI_fdt_curve_getdistatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, out double jarg4)
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 int CFxAPI_fdt_filename_baseW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
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 int CFxAPI_fdt_getconfintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static int CFxAPI_fdt_isalpha(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
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 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 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 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 int CFxAPI_fdt_xformss(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_palunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_drxloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_setdbmodhookW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static uint CFxAPI_fdt_getrgb(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
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 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 int CFxAPI_fdt_tblpurgeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxAPI_dcl_fill_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
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 int CFxAPI_dlg_TileSetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_findfileW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_setenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_deldbmodhook(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 CFxAPI_fdt_tbldelW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_retlistA(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 global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxAPI_fdt_inputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
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 int CFxAPI_fdt_regappA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
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 int CFxAPI_fdt_remove(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
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 int CFxAPI_fdt_tblcheckrefW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
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 CFxAPI_fdt_addimage2libA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, ushort jarg5)
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 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 int CFxAPI_dlg_TileActionA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_handentW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, IntPtr jarg3)
static int CFxAPI_fdt_flxopenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxAPI_fdt_toolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
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 int CFxAPI_fdt_tblcheckrefA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_wcmatchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
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 int CFxAPI_dlg_DialogDonePositioned(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, out int jarg4, out int jarg5)
static int CFxAPI_fdt_fgetenvA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
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 CFxAPI_fdt_DelPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_toolbarmatrixtoolbarremoveA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_GetResBufDDW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3, int jarg4)
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 void CFxAPI_ConvertToA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_tolower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_snvalidW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxAPI_fdt_loadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_getcurr_mousepos(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxAPI_fdt_norm_dxfcode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_toolbarmatrixgetnameslistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_isselecthook(global::System.Runtime.InteropServices.HandleRef jarg1)
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 int CFxAPI_fdt_delimagefromlibA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
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 int CFxAPI_fdt_regen(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_remdelall(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 int CFxAPI_fdt_toolbarmatrixtoolbarremoveW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_angtofA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, out double jarg4)
static global::System.IntPtr CFxAPI_fdt_inputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxAPI_dlg_ListStartA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4, short jarg5)
static global::System.IntPtr CFxAPI_fdt_newrbA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
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 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 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 int CFxAPI_fdt_toolbarmatrixtoolbaraddW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_dcl_action_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, IntPtr jarg4)
static void CFxAPI_fdt_free(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static global::System.IntPtr CFxAPI_fdt_loadedW(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 int CFxAPI_fdt_ssgetfirstW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 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 void CFxAPI_fdt_pop_resource_handle(global::System.Runtime.InteropServices.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 int CFxAPI_dlg_ImageLibraryA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6, string jarg7)
static int CFxAPI_fdt_setflxinfoW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 int CFxAPI_fdt_alertA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dlg_TileSetFontW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4)
static int CFxAPI_fdt_grvecsW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_dlg_ListSetTabStopsA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_drxunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
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 int CFxAPI_fdt_palgetnameslistW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 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 int CFxAPI_GetPointFDT__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxAPI_fdt_initgetW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
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 CFxAPI_dcl_load_dialogA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static int CFxAPI_fdt_textpage(global::System.Runtime.InteropServices.HandleRef jarg1)
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 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 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 int CFxAPI_fdt_setmousehook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3)
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 global::System.IntPtr CFxAPI_ConvertToA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 int CFxAPI_fdt_fgetenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_dictionary_addA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_getintA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
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 CFxAPI_GetFXImages(global::System.Runtime.InteropServices.HandleRef jarg1)
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 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 int CFxAPI_dlg_ImageVector(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6)
static int CFxAPI_dcl_load_dialogW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
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 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 CFxAPI_fdt_setcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_rett(global::System.Runtime.InteropServices.HandleRef jarg1)
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 CFxAPI_fdt_entgetxA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
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 int CFxAPI_fdt_grtextW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
static int CFxAPI_fdt_all_toolbars_visibleA(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxAPI_ConvertToA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_fdt_tblobjnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_getvarA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_flxsaveasA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dlg_TileSetFontA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4)
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 int CFxAPI_fdt_grtextA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3, out int jarg4)
static int CFxAPI_fdt_flxnamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 int CFxAPI_fdt_getactivedocumentA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_entgetW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
static int CFxAPI_dlg_ListGetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
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 CFxAPI_fdt_dictionary_searchW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxAPI_fdt_xloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_Vcs2PrinterPnt(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, out int jarg4, out int jarg5)
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 int CFxAPI_fdt_entmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_tblobjnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr jarg4)
static int CFxAPI_dlg_ImageEnd(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_sssetfirst(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
static int CFxAPI_fdt_xdsizeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
static int CFxAPI_fdt_compfontW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
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 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 int CFxAPI_fdt_file_copyA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, out int jarg5)
static int CFxAPI_fdt_getconfintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxAPI_fdt_getinputA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, uint jarg3)
static int CFxAPI_fdt_activate_progress_barW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_xunloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
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 int CFxAPI_fdt_dictionary_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_toolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxAPI_dcl_slide_imageA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, string jarg6)
static int CFxAPI_fdt_entupd(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_delcmdA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dlg_DialogDone(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
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 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 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 global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_actcmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_flxnewA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_release_grread(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 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 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 int CFxAPI_fdt_isalnum(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxAPI_fdt_registry_descendentsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, short jarg3)
static int CFxAPI_fdt_getactvport(global::System.Runtime.InteropServices.HandleRef jarg1, out short jarg2, out short jarg3)
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 int CFxAPI_GetPoint3D__SWIG_0([In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_activate_progress_barA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_registry_writeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
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 int CFxAPI_fdt_file_renameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static global::System.IntPtr CFxAPI_GetActiveFxView(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_getdesktopcolor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, out short jarg3)
static int CFxAPI_fdt_entnext(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3)
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 int CFxAPI_fdt_flxclose(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
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 int CFxAPI_fdt_curve_isplanar(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
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 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 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 int CFxAPI_dlg_TileClientDataA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, IntPtr jarg4)
static int CFxAPI_fdt_initgetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static int CFxAPI_fdt_filename_mktempA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, int jarg6)
static int CFxAPI_fdt_entcheck(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_cmdW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxAPI_fdt_registry_readA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_getininameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
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 int CFxAPI_fdt_angtosA(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3, int jarg4, string jarg5, uint jarg6)
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 int CFxAPI_fdt_getcolorref(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_loadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string 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 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 int CFxAPI_fdt_entmod_dbhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 int CFxAPI_fdt_poly2catrom_2d(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3, double jarg4)
static int CFxAPI_fdt_curve_getstartparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
static int CFxAPI_dcl_start_imageW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_cleartextscr(global::System.Runtime.InteropServices.HandleRef jarg1)
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 int CFxAPI_fdt_menucmdW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
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 int CFxAPI_fdt_getpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_entmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_ListAddA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_palloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
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 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 int CFxAPI_fdt_unregisterW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
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 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 int CFxAPI_fdt_setselecthookex(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_gethandle(global::System.Runtime.InteropServices.HandleRef jarg1, out IntPtr jarg2, out IntPtr jarg3)
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 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 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 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 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 CFxAPI_fdt_getrealW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
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 int CFxAPI_fdt_grclear(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 int CFxAPI_fdt_palunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string 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 int CFxAPI_fdt_promptA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_flxropenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxAPI_GetADSName(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_dcl_mode_tileA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, int jarg4)
static int CFxAPI_fdt_setcursor(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 int CFxAPI_fdt_retpoint(global::System.Runtime.InteropServices.HandleRef jarg1, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg2)
static int CFxAPI_fdt_getsnapmodeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out short jarg3)
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 int CFxAPI_fdt_getstringA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3, string jarg4, uint jarg5)
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 int CFxAPI_fdt_GetLastViewportEntId(global::System.Runtime.InteropServices.HandleRef jarg1)
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 int CFxAPI_fdt_retvoid(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 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 global::System.IntPtr CFxAPI_fdt_getargsA(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_grtextA__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
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 int CFxAPI_dlg_TileGetA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4, int jarg5)
static global::System.IntPtr CFxAPI_fdt_newrbW(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 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 int CFxAPI_fdt_isdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int 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 int CFxAPI_fdt_getsnapmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out short jarg3)
static int CFxAPI_fdt_palshowA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
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 int CFxAPI_dlg_TileModeW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4)
static int CFxAPI_fdt_bspline2poly(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_tblmodA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_dlg_DialogTerm(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr CFxAPI_fdt_malloc(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int CFxAPI_fdt_tblmodW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef 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 int CFxAPI_fdti_notify_short(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int 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 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 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 int CFxAPI_fdt_getprinterpapersizesW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_toolbar_existsA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)
static int CFxAPI_fdt_getactivedocumentW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_retstrW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_file_renameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_getprinterlistA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_zoomext(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3)
static global::System.IntPtr CFxAPI_fdt_dictionary_nextW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static int CFxAPI_fdt_translateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, uint jarg5)
static int CFxAPI_fdt_palloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string 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 global::System.IntPtr CFxAPI_fdt_entgetA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool 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 int CFxAPI_dlg_ListStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, short jarg4, short jarg5)
static int CFxAPI_GetResBuf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 int CFxAPI_fdt_alertW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
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 int CFxAPI_fdt_xloadW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_ssadd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, IntPtr jarg3, IntPtr jarg4)
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 int CFxAPI_fdt_tblsetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
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 int CFxAPI_fdt_filename_extensionW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, int jarg4)
static int CFxAPI_GetResBufFDTW(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, bool jarg5)
static int CFxAPI_fdt_isgraph(global::System.Runtime.InteropServices.HandleRef jarg1, int 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 int CFxAPI_fdt_filename_baseA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
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 global::System.IntPtr CFxAPI_fdt_entget_dbhookA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_dlg_TileClientDataW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, IntPtr 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 int CFxAPI_fdt_atofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
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 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 CFxAPI_dlg_ImageFill(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, short jarg6)
static int CFxAPI_fdt_namedobjdict(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
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 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 int CFxAPI_fdt_entselA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
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 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 int CFxAPI_fdt_toolbarmatrixtoolbaraddA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string 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 int CFxAPI_dlg_TileModeA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, short jarg4)
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 int CFxAPI_fdt_register_paramA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int CFxAPI_fdt_grtextA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
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 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 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 int CFxAPI_fdt_sslength(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
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 void CFxAPI_fdt_push_resource_handle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 int CFxAPI_fdt_wcmatchW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_setpreferenceA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
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 int CFxAPI_fdt_flxopenW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxAPI_dlg_ImageStartW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
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 void CFxAPI_fdt_failW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string 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 int CFxAPI_fdt_drxunloadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_init_dragmodeW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_GetResBufDDW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ref IntPtr jarg3)
static int CFxAPI_fdt_getintW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out int jarg3)
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 int CFxAPI_dlg_ImageWmfA(global::System.Runtime.InteropServices.HandleRef jarg1, short jarg2, short jarg3, short jarg4, short jarg5, string jarg6)
static int CFxAPI_fdt_flxrnewW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_toolbarmatrixstategetW(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2)
static int CFxAPI_fdt_DeleteUserImage(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static int CFxAPI_fdt_snvalidA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
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 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 CFxAPI_fdt_tabletinfoA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 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 int CFxAPI_fdt_curve_getpointatparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, double jarg3, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg4)
static int CFxAPI_fdt_uninstall_modeless_hook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_relrbW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_toolbarmatrixstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
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 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 CFxAPI_fdt_getkwordA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, uint jarg4)
static int CFxAPI_fdt_getprinterpapersizesA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_purgedbmodhooklist(global::System.Runtime.InteropServices.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 int CFxAPI_fdt_xdsizeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3)
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 global::System.IntPtr CFxAPI_fdt_getargsW(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_invokeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 int CFxAPI_fdt_retvalA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_isxdigit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int CFxAPI_fdt_atofA(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, out double jarg3)
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 int CFxAPI_fdt_getcnameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_unregisterA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_setdbmodhookA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
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 int CFxAPI_fdt_palhideW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_graphscr(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 global::System.IntPtr CFxAPI_GetUserIO__SWIG_0(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 int CFxAPI_fdt_genout_enamesW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_exit_dragmode(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_registry_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
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 CFxAPI_fdt_entlast(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
static ushort CFxAPI_fdt_getimagetypeA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_delimagefromlibW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_curve_getarea(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
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 int CFxAPI_fdt_all_toolbars_visibleW(global::System.Runtime.InteropServices.HandleRef jarg1, bool 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 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 int CFxAPI_fdt_getconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5, uint jarg6)
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 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 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 int CFxAPI_fdt_getinputW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, uint jarg3)
static int CFxAPI_dcl_vector_image(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6)
static int CFxAPI_dlg_ListSetColumnWidthA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, string jarg4)
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 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 int CFxAPI_fdt_getininameW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static global::System.IntPtr CFxAPI_fdt_dictionary_nextA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, int jarg3)
static int CFxAPI_fdt_setconfstringA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
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 int CFxAPI_fdt_palshowW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
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 int CFxAPI_fdt_curve_getendpoint(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg3)
static global::System.IntPtr CFxAPI_GetFxDocument(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_dcl_add_listA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
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 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 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 int CFxAPI_fdt_tblrenA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)
static int CFxAPI_fdt_setviewW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int CFxAPI_fdt_invoke_lispA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 int CFxAPI_fdt_handentA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, IntPtr jarg3)
static int CFxAPI_fdt_setenvW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_fdt_invoke_lispW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_regappW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_tblmakeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_relrbA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_getkwordW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, uint jarg4)
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 CFxAPI_fdt_tblnextW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
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 int CFxAPI_fdt_flxnamesA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 int CFxAPI_fdt_toolbarmatrixstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, out int 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 int CFxAPI_fdt_ispunct(global::System.Runtime.InteropServices.HandleRef jarg1, int 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 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 int CFxAPI_fdt_loaded_appsW(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_remove_support_pathW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_toolbarstateA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, int jarg5, int jarg6, int jarg7)
static int CFxAPI_fdt_invokeW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_toolbarmatrixtoolbarstatesetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)
static int CFxAPI_fdt_capture_grread(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 int CFxAPI_dlg_DialogUnload(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
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 int CFxAPI_fdt_tblsetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
static int CFxAPI_fdt_curve_isperiodic(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out int jarg3)
static int CFxAPI_fdt_copyresbufW(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_putsymA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int CFxAPI_fdt_file_deleteA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_SetRedrawHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, short jarg3)
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 int CFxAPI_fdt_distofW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3, out double jarg4)
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 int CFxAPI_fdt_file_directory_pW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstategetA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static int CFxAPI_fdt_promptW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static int CFxAPI_fdt_getprofileslistA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, uint jarg4)
static int CFxAPI_fdt_retnil(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxAPI_fdt_entget_dbhookW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2)
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 global::System.IntPtr CFxAPI_fdt_tblsearchA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static int CFxAPI_fdt_delselecthook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
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 CFxAPI_fdt_entgetxW__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 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 int CFxAPI_dlg_ListSetColumnWidthW(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3, [MarshalAs(UnmanagedType.LPWStr)]string jarg4)
static int CFxAPI_dlg_DialogLoadA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, out int jarg3)
static int CFxAPI_fdt_toolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
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 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 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 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 CFxAPI_fdt_genout(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, short jarg3, IntPtr jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int CFxAPI_fdt_tblmakeA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_setviewA(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
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 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 CFxAPI_fdt_entgetxW__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)
static int CFxAPI_fdt_entmakeA(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 CFxAPI_GetPoint3D__SWIG_1([In, MarshalAs(UnmanagedType.LPArray, SizeConst=3)]double[] jarg1, global::System.Runtime.InteropServices.HandleRef 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 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 int CFxAPI_fdt_file_directory_pA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_fdt_curve_getendparam(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, out double jarg3)
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 int CFxAPI_fdt_getcnameA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, [In, MarshalAs(UnmanagedType.LPArray)]char[] jarg3)
static int CFxAPI_fdt_registry_deleteW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, [MarshalAs(UnmanagedType.LPWStr)]string jarg3)
static int CFxAPI_dcl_term_dialog(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxAPI_CheckFilter(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
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 CFxAPI_fdt_dictionary_searchA(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, string jarg3, int jarg4)
static int CFxAPI_fdt_getcfgA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)
static int CFxAPI_dcl_end_image(global::System.Runtime.InteropServices.HandleRef jarg1)
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 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 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 CFxAPI_fdt_remove_support_pathA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int CFxAPI_dcl_end_list(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 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 CFxAPI_fdt_entget_dbhookA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, IntPtr jarg2, bool jarg3)
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 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 int CFxAPI_fdt_findfileA(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)
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 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 CFxAPI_GetFxDatabase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int CFxAPI_fdt_SetPrintHook(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxAPI_fdt_toolbarmatrixtoolbarstatesetW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2, int jarg3)
static int CFxAPI_fdt_textscr(global::System.Runtime.InteropServices.HandleRef jarg1)
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 int CFxAPI_dcl_add_listW(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]string jarg2)
static HandleRef getCPtr(PRINT_EXT_INFO obj)
static HandleRef getCPtr(WORLDPOINT obj)
Definition: WORLDPOINT.cs:28
static HandleRef getCPtr(cursordef obj)
Definition: cursordef.cs:28
static HandleRef getCPtr(fdt_VPORT_EXT_INFO obj)
static HandleRef getCPtr(fdt_resbufA obj)
Definition: fdt_resbufA.cs:28
static HandleRef getCPtr(fdt_resbufW obj)
Definition: fdt_resbufW.cs:28
static HandleRef getCPtr(fdt_tablet_recA obj)
static HandleRef getCPtr(fdt_tablet_recW obj)
static HandleRef getCPtr(fdt_u_valW obj)
Definition: fdt_u_valW.cs:28
static HandleRef getCPtr(OdGeMatrix3d obj)
Definition: OdGeMatrix3d.cs:26
static HandleRef getCPtr(OdGePoint2d obj)
Definition: OdGePoint2d.cs:26
static HandleRef getCPtr(OdGePoint3d obj)
Definition: OdGePoint3d.cs:26
static HandleRef getCPtr(OdGeVector3d obj)
Definition: OdGeVector3d.cs:26
static HandleRef getCPtr(OdDbObjectId obj)
Definition: OdDbObjectId.cs:27
static HandleRef getCPtr(OdResBuf obj)
Definition: OdResBuf.cs:26