-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_cars60.py
4074 lines (4073 loc) · 133 KB
/
_cars60.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# generated by 'xml2py'
# flags '-ksdet -l arapi60.dll ar.xml'
from ctypes import Structure, Union, POINTER, c_long, c_ulong, c_uint, c_int, \
c_double, c_ubyte, c_char, c_char_p, c_void_p, \
sizeof, alignment
# ar.h 3590
class ARDataMappingInfoStruct(Structure):
pass
ARNameType = c_char * 255
# ar.h 240
class ARInternalIdList(Structure):
pass
ARInternalId = c_ulong
ARInternalIdList._fields_ = [
# ar.h 240
('numItems', c_uint),
('internalIdList', POINTER(ARInternalId)),
]
ARDataMappingInfoStruct._fields_ = [
# ar.h 3590
('id', c_uint),
('name', ARNameType),
('primaryKeyIndexName', ARNameType),
('foreignKeyFieldIdList', ARInternalIdList),
('opMask', c_uint),
('readOrder', c_uint),
('writeOrder', c_uint),
]
AR_DPROP_PROMPT_PANE_VISIBILITY = 164 # Variable c_int
AR_MAX_MENU_ITEMS = 199 # Variable c_int
AR_DPROP_NAMED_SEARCHES = 212 # Variable c_int
AR_NOTIFY_NONE = 0 # Variable c_int
ARREF_APP_FORMACTION_FIELDS = 32832 # Variable c_int
AR_CURRENT_TRAN_TAG = '*' # Variable c_char_p
AR_LOCAL_TEXT_ACT_LINK_MESSAGE = 1 # Variable c_int
AR_CLIENT_TYPE_DISPATCHER = 4001 # Variable c_int
AR_SERVER_STAT_SQL_DB_TIME = 53 # Variable c_int
AR_WORKFLOW_CONN_NONE = 0 # Variable c_int
# ar.h 3644
class ARStatisticsStruct(Structure):
pass
# ar.h 751
class ARFieldValueOrArithStruct(Structure):
pass
# ar.h 741
class N25ARFieldValueOrArithStruct4DOLLAR_47E(Union):
pass
# ar.h 554
class ARValueStruct(Structure):
pass
# ar.h 536
class N13ARValueStruct4DOLLAR_27E(Union):
pass
ARTimestamp = c_long
ARTime = c_long
# ar.h 296
class ARByteList(Structure):
pass
# ar.h 505
class ARAttachStruct(Structure):
pass
# ar.h 480
class ARCoordList(Structure):
pass
# ar.h 525
class ARCurrencyStruct(Structure):
pass
N13ARValueStruct4DOLLAR_27E._fields_ = [
# ar.h 536
('keyNum', c_uint),
('intVal', c_long),
('realVal', c_double),
('charVal', c_char_p),
('diaryVal', c_char_p),
('enumVal', c_ulong),
('timeVal', ARTimestamp),
('maskVal', c_ulong),
('timeOfDayVal', ARTime),
('byteListVal', POINTER(ARByteList)),
('decimalVal', c_char_p),
('attachVal', POINTER(ARAttachStruct)),
('ulongVal', c_ulong),
('coordListVal', POINTER(ARCoordList)),
('dateVal', c_int),
('currencyVal', POINTER(ARCurrencyStruct)),
]
ARValueStruct._fields_ = [
# ar.h 554
('dataType', c_uint),
('u', N13ARValueStruct4DOLLAR_27E),
]
# ar.h 760
class ARArithOpStruct(Structure):
pass
# ar.h 668
class ARStatHistoryValue(Structure):
pass
ARStatHistoryValue._fields_ = [
# ar.h 668
('enumVal', c_ulong),
('userOrTime', c_uint),
]
# ar.h 559
class ARValueList(Structure):
pass
ARValueList._fields_ = [
# ar.h 559
('numItems', c_uint),
('valueList', POINTER(ARValueStruct)),
]
# ar.h 682
class ARQueryValueStruct(Structure):
pass
# ar.h 696
class ARCurrencyPartStruct(Structure):
pass
N25ARFieldValueOrArithStruct4DOLLAR_47E._fields_ = [
# ar.h 741
('fieldId', ARInternalId),
('value', ARValueStruct),
('arithOp', POINTER(ARArithOpStruct)),
('statHistory', ARStatHistoryValue),
('valueSet', ARValueList),
('variable', c_uint),
('queryValue', POINTER(ARQueryValueStruct)),
('currencyField', POINTER(ARCurrencyPartStruct)),
]
ARFieldValueOrArithStruct._fields_ = [
# ar.h 751
('tag', c_uint),
('u', N25ARFieldValueOrArithStruct4DOLLAR_47E),
]
ARStatisticsStruct._fields_ = [
# ar.h 3644
('operation', c_uint),
('field', ARFieldValueOrArithStruct),
]
AR_CURRENT_SCHEMA_TAG = '@' # Variable c_char_p
AR_SERVER_STAT_FILTER_FIELDS_FLTAPI = 70 # Variable c_int
AR_NOTIFY_VIA_EMAIL = 2 # Variable c_int
AR_FUNCTION_MAX = 26 # Variable c_int
AR_DATA_TYPE_REAL = 3 # Variable c_int
# ar.h 2341
class ARLicenseValidStruct(Structure):
pass
ARBoolean = c_ubyte
# ar.h 2316
class ARLicenseDateStruct(Structure):
pass
ARLicenseDateStruct._fields_ = [
# ar.h 2316
('month', c_int),
('day', c_int),
('year', c_int),
]
ARLicenseValidStruct._fields_ = [
# ar.h 2341
('numLicenses', c_int),
('isDemo', ARBoolean),
('expireDate', ARLicenseDateStruct),
('tokenList', c_char_p),
]
AR_SERVER_INFO_FTEXT_FLOAT = 36 # Variable c_int
AR_IMPORT_OPT_HANDLE_CONFLICT_ERROR = 16 # Variable c_int
# ar.h 809
class ARQualifierList(Structure):
pass
# ar.h 793
class ARQualifierStruct(Structure):
pass
ARQualifierList._fields_ = [
# ar.h 809
('numItems', c_uint),
('qualifierList', POINTER(ARQualifierStruct)),
]
AR_STRUCT_ITEM_APP = 16 # Variable c_int
AR_SERVER_STAT_ESCL_FIELDP = 60 # Variable c_int
AR_FUNCTION_RPADC = 44 # Variable c_int
AR_MAX_RELATED_SIZE = 128 # Variable c_int
AR_DVAL_TABLE_SELROWS_DISABLE_YES = 1 # Variable c_int
AR_JOIN_DELOPTION_NONE = 0 # Variable c_int
AR_OPROP_WINDOW_OPEN_IF_SAMPLE_SERVER_SCHEMA = 60016 # Variable c_int
AR_ACTIVE_LINK_ACTION_OPEN_DSPLY_LST = 6 # Variable c_int
AR_DPROP_AUTO_FIELD_ORDER = 249 # Variable c_int
AR_STRUCT_ITEM_SCHEMA_MAIL = 4 # Variable c_int
AR_SVR_EVENT_USER_DELETED = 2 # Variable c_int
AR_IMPORT_OPT_HANDLE_CONFLICT_NO_ACTION = 48 # Variable c_int
AR_STRUCT_ITEM_SCHEMA_VIEW_MIN = 11 # Variable c_int
AR_CLIENT_TYPE_LABEL = 4010 # Variable c_int
AR_FILTER_ACTION_NOTIFY = 1 # Variable c_int
AR_SERVER_STAT_IDLE_TIME = 57 # Variable c_int
AR_OPERATION_CREATE = 4 # Variable c_int
AR_DATA_TYPE_INTEGER = 2 # Variable c_int
AR_FUNCTION_RTRIM = 20 # Variable c_int
AR_EXPORT_FORMAT_AR_DEF = 1 # Variable c_int
AR_SERVER_INFO_SCC_ENABLED = 103 # Variable c_int
AR_DPROP_DETAIL_PANE_COLOR = 166 # Variable c_int
# ar.h 3937
class ARReferenceList(Structure):
pass
# ar.h 3930
class ARReferenceStruct(Structure):
pass
ARReferenceList._fields_ = [
# ar.h 3937
('numItems', c_uint),
('referenceList', POINTER(ARReferenceStruct)),
]
AR_DVAL_COLOR_BG = 'bg' # Variable c_char_p
AR_MERGE_NO_WORKFLOW_FIRED = 4096 # Variable c_int
AR_SMOPROP_ENTRYPOINT_DEFAULT_SEARCH_ORDER = 90006 # Variable c_int
AR_DPROP_TAB_NEXT = 150 # Variable c_int
AR_ARCHIVE_NO_DIARY = 64 # Variable c_int
AR_MAX_BUFFER_SIZE = 352 # Variable c_int
AR_SERVER_INFO_ESCALATION_LOG_FILE = 31 # Variable c_int
AR_CLIENT_TYPE_WEB_SERVER = 8 # Variable c_int
# ar.h 4122
class ARFieldInfoStruct(Structure):
pass
AR_DVAL_IMAGE_CENTER = 0 # Variable c_int
AR_CLIENT_TYPE_UNPRODUCTIZED_START = 4000 # Variable c_int
# ar.h 3999
class ARWorkflowConnectStruct(Structure):
pass
# ar.h 3351
class ARFullTextInfoList(Structure):
pass
# ar.h 3346
class ARFullTextInfoStruct(Structure):
pass
ARFullTextInfoList._fields_ = [
# ar.h 3351
('numItems', c_uint),
('fullTextInfoList', POINTER(ARFullTextInfoStruct)),
]
AR_ACTIVE_LINK_ACTION_SQL = 8 # Variable c_int
# ar.h 614
class ARFieldValueList(Structure):
pass
# ar.h 609
class ARFieldValueStruct(Structure):
pass
ARFieldValueList._fields_ = [
# ar.h 614
('numItems', c_uint),
('fieldValueList', POINTER(ARFieldValueStruct)),
]
AR_FUNCTION_DATENAME = 34 # Variable c_int
# ar.h 4450
class ARComplexEntrySet(Structure):
pass
AR_SERVER_INFO_SCC_PROVIDER_NAME = 104 # Variable c_int
ARREF_APPLICATION_HELP_INDEX_EXT = 32780 # Variable c_int
AR_SERVER_STAT_RESTRUCT_TIME = 15 # Variable c_int
AR_DSO_TRANSFER_DUP_ERROR = 0 # Variable c_int
AR_CURRENCY_FLD_CURRENT = 56 # Variable c_int
AR_DVAL_AUTO_FIELD_LEVEL1 = 0 # Variable c_int
AR_TIMEMARK_END_OF_MONTH = 31 # Variable c_int
AR_SMOPROP_NO_APP_STATS_LOGGING = 90007 # Variable c_int
AR_DPROP_TITLE_BAR_ICON_IMAGE = 200 # Variable c_int
AR_SMOPROP_MAX = 119999 # Variable c_int
AR_MENU_APPEND = 1 # Variable c_int
AR_DVAL_TABLE_SELROWS_MULTI_SELECT = 0 # Variable c_int
AR_MAX_SVR_EVENT_USED = 15 # Variable c_int
AR_NO_MAX_LIST_RETRIEVE = 0 # Variable c_int
AR_LIST_SCHEMA_JOIN = 2 # Variable c_int
# ar.h 4306
class ARDateStruct(Structure):
pass
ARDateStruct._fields_ = [
# ar.h 4306
('year', c_int),
('month', c_int),
('day', c_int),
]
AR_EXECUTE_ON_AFTER_SUBMIT = 4096 # Variable c_int
AR_SERVER_INFO_MAX_L_DAEMONS = 30 # Variable c_int
AR_REPORT_ATTR_SERVERNAME = 25 # Variable c_long
# ar.h 2269
class ARGroupInfoStruct(Structure):
pass
# ar.h 260
class ARAccessNameList(Structure):
pass
ARAccessNameType = c_char * 31
ARAccessNameList._fields_ = [
# ar.h 260
('numItems', c_uint),
('nameList', POINTER(ARAccessNameType)),
]
ARGroupInfoStruct._fields_ = [
# ar.h 2269
('groupId', ARInternalId),
('groupType', c_uint),
('groupName', ARAccessNameList),
('groupCategory', c_uint),
]
# ar.h 270
class ARTextStringList(Structure):
pass
ARTextStringList._fields_ = [
# ar.h 270
('numItems', c_uint),
('stringList', POINTER(c_char_p)),
]
AR_DPROP_TAB_ORDER = 143 # Variable c_int
AR_SERVER_STAT_GETLIST_E_TIME = 29 # Variable c_int
AR_CLIENT_TYPE_FLASHBOARDS_MID_TIER = 12 # Variable c_int
AR_REL_OP_LIKE = 7 # Variable c_int
AR_DATA_TYPE_BYTES = 9 # Variable c_int
AR_DVAL_SORT_DIR_DESCENDING = 1 # Variable c_int
AR_DVAL_SECTOR_NONE = 0 # Variable c_int
AR_SIGNAL_GROUP_CACHE_CHANGED = 2 # Variable c_int
AR_DVAL_RADIO_RADIO = 1 # Variable c_int
AR_KEYWORD_DATABASE = 12 # Variable c_int
AR_DVAL_PAGE_DISPLAY_NONE = 4 # Variable c_int
AR_XML_FORM_MAP_TYPE_EMBEDDED = 1 # Variable c_int
AR_STRUCT_ITEM_XML_FIELD = 1073741839 # Variable c_int
AR_DPROP_AUTO_FIELD_ALIGN = 259 # Variable c_int
AR_SERVER_STAT_NUMBER_BLOCKED = 50 # Variable c_int
# ar.h 4477
class ARXMLValueInfoList(Structure):
pass
# ar.h 4471
class ARXMLValueInfoStruct(Structure):
pass
ARXMLValueInfoList._fields_ = [
# ar.h 4477
('numItems', c_int),
('infoList', POINTER(ARXMLValueInfoStruct)),
]
AR_DATEPARTS_DAY = 3 # Variable c_int
AR_OPROP_VENDOR_NAME = 60001 # Variable c_int
# ar.h 4462
class ARComplexEntryOptions(Structure):
pass
AR_SERVER_INFO_SERVER_LICENSE = 2 # Variable c_int
AR_SERVER_INFO_DB_PASSWORD = 10 # Variable c_int
AR_STRUCT_ITEM_SCHEMA_DEFN = 2 # Variable c_int
AR_OPERATION_SET = 2 # Variable c_int
AR_ARITHMETIC = 3 # Variable c_int
AR_DATEPARTS_MONTH = 2 # Variable c_int
AR_MAX_CURRENCY_CODE_SIZE = 3 # Variable c_int
MAXHOSTNAMELEN = 255 # Variable c_int
AR_DPROP_PANE_VISIBILITY_OPTION = 214 # Variable c_int
AR_SCHEMA_NONE = 0 # Variable c_int
AR_ARITH_OP_DIVIDE = 4 # Variable c_int
AR_STRUCT_ITEM_XML_SCHEMA_DATA = 1073741854 # Variable c_int
AR_FULLTEXTINFO_HOMEDIR = 7 # Variable c_int
ARCON_ALL = 0 # Variable c_int
AR_CHAR_MENU_SS = 5 # Variable c_int
AR_SERVER_INFO_API_LOG_FILE = 34 # Variable c_int
AR_DVAL_PANE_VISIBILITY_USER_CHOICE = 0 # Variable c_int
AR_ACTIVE_LINK_ACTION_NONE = 0 # Variable c_int
AR_DPROP_LABEL_POS_SECTOR = 27 # Variable c_int
AR_SERVER_INFO_ADMIN_TCP_PORT = 60 # Variable c_int
# ar.h 3906
class ARContainerOwnerObjIdList(Structure):
pass
AR_SERVER_INFO_DEBUG_MODE = 8 # Variable c_int
AR_FUNCTION_DATEADD = 32 # Variable c_int
ARCurrencyCodeType = c_char * 4
# ar.h 515
class ARFuncCurrencyList(Structure):
pass
# ar.h 510
class ARFuncCurrencyStruct(Structure):
pass
ARFuncCurrencyList._fields_ = [
# ar.h 515
('numItems', c_uint),
('funcCurrencyList', POINTER(ARFuncCurrencyStruct)),
]
ARCurrencyStruct._fields_ = [
# ar.h 525
('value', c_char_p),
('currencyCode', ARCurrencyCodeType),
('conversionDate', ARTimestamp),
('funcList', ARFuncCurrencyList),
]
AR_OPERATION_GET = 1 # Variable c_int
AR_DPROP_SORT_SEQ = 222 # Variable c_int
AR_DPROP_PROMPT = 13 # Variable c_int
AR_MAX_INDEX_FIELDS = 16 # Variable c_int
AR_KEY_OPERATION_CREATE = 'CREATE' # Variable c_char_p
# ar.h 2679
class ARCharMenuStruct(Structure):
pass
ARREF_APP_OBJECT_VERSION = 32839 # Variable c_int
AR_DVAL_JOINT_MAX_SMOOTH = 4 # Variable c_int
# ar.h 3372
class ARDiaryStruct(Structure):
pass
ARDiaryStruct._fields_ = [
# ar.h 3372
('user', ARAccessNameType),
('timeVal', ARTimestamp),
('value', c_char_p),
]
AR_REL_OP_NOT_EQUAL = 6 # Variable c_int
AR_SERVER_INFO_ALERT_OUTBOUND_PORT = 148 # Variable c_int
AR_FIELD_CURRENT = 99 # Variable c_int
AR_KEYWORD_USER = 1 # Variable c_int
AR_DATA_TYPE_MAX_TYPE = 43 # Variable c_int
AR_SERVER_STAT_ESCL_LOG = 45 # Variable c_int
AR_DVAL_AUTO_FIELD_SPACER_ON = 1 # Variable c_int
AR_OPROP_SCC_LOCATION = 60010 # Variable c_int
AR_RETURN_WARNING = 1 # Variable c_int
ARREF_WS_ARXML_MAPPING = 32799 # Variable c_int
AR_DPROP_BUTTON_SCALE_IMAGE = 113 # Variable c_int
AR_SERVER_INFO_U_CACHE_CHANGE = 51 # Variable c_int
AR_SERVER_INFO_APPLICATION_AUDIT = 114 # Variable c_int
AR_SVR_EVENT_CHG_FILTER = 4 # Variable c_int
# ar.h 4024
class ARLocalizedRequestList(Structure):
pass
# ar.h 4011
class ARLocalizedRequestStruct(Structure):
pass
ARLocalizedRequestList._fields_ = [
# ar.h 4024
('numItems', c_uint),
('localizedRequestList', POINTER(ARLocalizedRequestStruct)),
]
# ar.h 1734
class ARCOMMethodList(Structure):
pass
# ar.h 1729
class ARCOMMethodStruct(Structure):
pass
ARCOMMethodList._fields_ = [
# ar.h 1734
('numItems', c_uint),
('methodList', POINTER(ARCOMMethodStruct)),
]
AR_DATA_TYPE_TIME = 7 # Variable c_int
AR_SERVER_INFO_AP_DEFN_CHECK = 94 # Variable c_int
AR_DPROP_VIEW_GRID_BBOX = 160 # Variable c_int
AR_LOCAL_TEXT_FIELD_HELP = 5 # Variable c_int
AR_FIELD_MAPPING_PRIMARY = 0 # Variable c_int
AR_DVAL_AUTO_FIELD_SPACER_OFF = 0 # Variable c_int
AR_SMOPROP_APP_LIC_DESCRIPTOR = 90009 # Variable c_int
# ar.h 2078
class ARActiveLinkMacroStruct(Structure):
pass
# ar.h 2072
class ARMacroParmList(Structure):
pass
# ar.h 2067
class ARMacroParmStruct(Structure):
pass
ARMacroParmList._fields_ = [
# ar.h 2072
('numItems', c_uint),
('parms', POINTER(ARMacroParmStruct)),
]
ARActiveLinkMacroStruct._fields_ = [
# ar.h 2078
('macroName', ARNameType),
('macroText', c_char_p),
('macroParms', ARMacroParmList),
]
AR_STRUCT_ITEM_SCHEMA = 1 # Variable c_int
AR_STRUCT_ITEM_VUI = 14 # Variable c_int
AR_SERVER_STAT_FILTER_LOG = 37 # Variable c_int
AR_DATA_TYPE_NULL = 0 # Variable c_int
AR_EXECUTE_ON_DISPLAY = 16 # Variable c_int
AR_MAX_SERVER_SIZE = 64 # Variable c_int
AR_DVAL_PANE_VISIBLE = 1 # Variable c_int
AR_SERVER_INFO_DSO_TARGET_CONNECTION = 135 # Variable c_int
AR_DVAL_TABLE_SELINIT_SELNOFIRE = 1 # Variable c_int
AR_SERVER_INFO_DSO_RPCPROG_NUM = 172 # Variable c_int
AR_SERVER_INFO_ACTLINK_DIR = 97 # Variable c_int
AR_OPROP_SCC_DATA_LOCATION = 60015 # Variable c_int
AR_MAX_DDE_NAME = 64 # Variable c_int
# ar.h 3986
class ARSignalList(Structure):
pass
# ar.h 3981
class ARSignalStruct(Structure):
pass
ARSignalList._fields_ = [
# ar.h 3986
('numItems', c_uint),
('signalList', POINTER(ARSignalStruct)),
]
AR_FILTER_ACTION_NONE = 0 # Variable c_int
AR_DPROP_FORMACTION_FLDS_EXCLUDE = 261 # Variable c_int
AR_SVR_EVENT_CHG_ESCAL = 7 # Variable c_int
AR_DVAL_VIEWFIELD_BORDERS_DEFAULT = 0 # Variable c_int
AR_LICENSE_TAG_WRITE = 1 # Variable c_int
AR_ACTIVE_LINK_ACTION_GOTOACTION = 17 # Variable c_int
AR_STRUCT_ITEM_XML_APP = 1073741840 # Variable c_int
AR_SERVER_INFO_PLUGIN_ALIAS = 162 # Variable c_int
# ar.h 3569
class ARVendorSchema(Structure):
pass
ARVendorSchema._fields_ = [
# ar.h 3569
('vendorName', ARNameType),
('tableName', c_char * 256),
]
AR_ACTIVE_LINK_ACTION_EXITGUIDE = 14 # Variable c_int
# ar.h 4283
class ARXMLParserHandle(Structure):
pass
# ar.h 642
class ARFieldValueListList(Structure):
pass
ARFieldValueListList._fields_ = [
# ar.h 642
('numItems', c_uint),
('valueListList', POINTER(ARFieldValueList)),
]
AR_DPROP_TABLE_SELREFRESH = 5004 # Variable c_int
AR_SERVER_INFO_DISABLE_ESCALATIONS = 143 # Variable c_int
ARREF_APPLICATION_HELP_INDEX_EXT3 = 32811 # Variable c_int
AR_GROUP_CATEGORY_REGULAR = 0 # Variable c_int
AR_SAVE_LOGIN_USER_OPTION = 0 # Variable c_int
AR_ARCHIVE_NONE = 0 # Variable c_int
AR_SERVER_INFO_SVR_SEC_CACHE = 117 # Variable c_int
AR_IMPORT_OPT_NOT_DELETE_FIELD = 64 # Variable c_int
AR_DVAL_TABLE_SELREFRESH_RETFIRE = 0 # Variable c_int
AR_SERVER_STAT_CPU = 51 # Variable c_int
AR_SVR_EVENT_CHG_SCHEMA = 1 # Variable c_int
AR_CHAR_MENU_DD_FORMAT_DOLLARSL = 8 # Variable c_int
AR_NO_MATCH_SUBMIT = 4 # Variable c_int
AR_SERVER_INFO_DSO_USER_PASSWD = 151 # Variable c_int
AR_CHAR_MENU_DD_DB_NAME = 0 # Variable c_int
AR_NO_LICENSE_DB_COUNT = 2000 # Variable c_int
AR_DPROP_ATTACH_FILESIZE_TITLE = 238 # Variable c_int
AR_SVR_EVENT_ARCHIVE_DELETE = 2 # Variable c_int
AR_SIGNAL_LICENSE_CHANGED = 3 # Variable c_int
AR_DVAL_VIEWFIELD_SCROLLBARS_AUTO = 0 # Variable c_int
AR_FULLTEXT_FTS_MATCH_UNCHANGED = 4 # Variable c_int
AR_ACTIVE_LINK_ACTION_DDE = 6 # Variable c_int
AR_EXECUTE_ON_UNDISPLAY = 65536 # Variable c_int
AR_DVAL_SORT_DIR_ASCENDING = 0 # Variable c_int
AR_SMOPROP_APP_OWNER = 90002 # Variable c_int
# ar.h 4006
class ARWorkflowConnectList(Structure):
pass
AR_SERVER_INFO_PER_THREAD_LOGS = 197 # Variable c_int
AR_SERVER_INFO_MULTI_SERVER = 24 # Variable c_int
# ar.h 2304
class ARUserLicenseList(Structure):
pass
# ar.h 2299
class ARUserLicenseStruct(Structure):
pass
ARUserLicenseList._fields_ = [
# ar.h 2304
('numItems', c_uint),
('licenseList', POINTER(ARUserLicenseStruct)),
]
# ar.h 3634
class ARSupportFileInfoList(Structure):
pass
AR_LOCK_TYPE_MAX = 2 # Variable c_int
# ar.h 333
class ARStatusStruct(Structure):
pass
ARStatusStruct._fields_ = [
# ar.h 333
('messageType', c_uint),
('messageNum', c_long),
('messageText', c_char_p),
('appendedText', c_char_p),
]
AR_CLIENT_TYPE_IMPORT_CMD = 19 # Variable c_int
# ar.h 4444
class ARComplexEntrySetList(Structure):
pass
ARComplexEntrySetList._fields_ = [
# ar.h 4444
('numItems', c_int),
('list', POINTER(ARComplexEntrySet)),
]
AR_DVAL_ENDCAP_ROUND = 0 # Variable c_int
AR_SCHEMA_SET_DELETE_FIELDS_WITH_MAPPING = 1 # Variable c_int
AR_SERVER_INFO_REM_SERV_ID = 23 # Variable c_int
# ar.h 2585
class ARCharMenuItemStruct(Structure):
pass
# ar.h 2580
class N20ARCharMenuItemStruct5DOLLAR_150E(Union):
pass
N20ARCharMenuItemStruct5DOLLAR_150E._fields_ = [
# ar.h 2580
('menuValue', c_char_p),
('childMenu', POINTER(ARCharMenuStruct)),
]
ARCharMenuItemStruct._fields_ = [
# ar.h 2585
('menuLabel', ARNameType),
('menuType', c_uint),
('u', N20ARCharMenuItemStruct5DOLLAR_150E),
]
ARREF_APP_DATA_MERGE_IMP_OPTION = 32842 # Variable c_int
AR_SIGNAL_ARCHIVE_CHANGED = 8 # Variable c_int
AR_CHAR_MENU_DD_FIELD = 2 # Variable c_int
AR_FILTER_ACTION_SQL = 7 # Variable c_int
AR_FUNCTION_ENCRYPT = 47 # Variable c_int
AR_SERVER_STAT_SET_E_TIME = 21 # Variable c_int
AR_REPORT_LOCATION_REPORTING_FORM = 2 # Variable c_int
AR_SERVER_INFO_SSTABLE_CHUNK_SIZE = 199 # Variable c_int
AR_EXECUTE_ON_SUBMIT = 4 # Variable c_int
AR_USER_LIST_CURRENT = 2 # Variable c_int
AR_SERVER_STAT_API_TIME = 13 # Variable c_int
AR_DVAL_TRIM_TEXT = 3 # Variable c_int
AR_DPROP_DETAIL_PANE_VISIBILITY = 163 # Variable c_int
AR_SERVER_INFO_G_CACHE_CHANGE = 52 # Variable c_int
AR_SESS_API_RES_LOG = 16 # Variable c_int
AR_DVAL_JUSTIFY_DEFAULT = 0 # Variable c_int
AR_PATTERN_KEY_ALNUM = 103 # Variable c_int
AR_MAX_FULL_FILENAME = 255 # Variable c_int
# ar.h 3896
class ARContainerOwnerObjListList(Structure):
pass
# ar.h 3891
class ARContainerOwnerObjList(Structure):
pass
ARContainerOwnerObjListList._fields_ = [
# ar.h 3896
('numItems', c_uint),
('ownerObjListList', POINTER(ARContainerOwnerObjList)),
]
AR_SVR_STATS_RECMODE_CUMUL_ONLY = 1 # Variable c_int
AR_DVAL_DATETIME_DATE = 2 # Variable c_int
AR_SERVER_INFO_SERVER_IDENT = 41 # Variable c_int
AR_REPORT_ATTR_LAYOUT = 1 # Variable c_long
AR_SERVER_STAT_ENTRY_TIME = 14 # Variable c_int
AR_REPORT_REC_SEP = 17 # Variable c_long
AR_DATA_TYPE_VIEW = 42 # Variable c_int
AR_SIGNAL_CONFIG_CHANGED = 1 # Variable c_int
AR_DDE_POKE = 2 # Variable c_int
AR_PERMISSIONS_NONE = 0 # Variable c_int
AR_UNICODE_ENCRYPTION = '1' # Variable c_char
# ar.h 830
class ARSortListList(Structure):
pass
# ar.h 825
class ARSortList(Structure):
pass
ARSortListList._fields_ = [
# ar.h 830
('numItems', c_uint),
('sortListList', POINTER(ARSortList)),
]
ARREF_ABOUT_BOX_IMAGE = 32772 # Variable c_int
ARREF_WS_PUBLISHING_LOC = 32802 # Variable c_int
AR_FIELD_OPEN_AT_CREATE = 1 # Variable c_int
AR_DPROP_HTML_TEXT = 83 # Variable c_int
AR_DIRECTORY_FILE = 'ar' # Variable c_char_p
AR_MAX_LICENSE_KEY_SIZE = 30 # Variable c_int
ARREF_FLASH_DATA_SOURCE_DEF = 32795 # Variable c_int
AR_REPORT_ATTR_TITLE_SEP_CHAR = 16 # Variable c_long
# ar.h 2786
class ARStructItemStruct(Structure):
pass
# ar.h 255
class ARNameList(Structure):
pass
ARNameList._fields_ = [
# ar.h 255
('numItems', c_uint),
('nameList', POINTER(ARNameType)),
]
ARStructItemStruct._fields_ = [
# ar.h 2786
('type', c_uint),
('name', ARNameType),
('selectedElements', ARNameList),
]
AR_DVAL_FIXED_TABLE_HEADERS_DISABLE = 0 # Variable c_int
ARREF_APP_DEFAULT_OBJ_PERMS = 32835 # Variable c_int
AR_FULLTEXT_OPTIONS_NONE = 0 # Variable c_int
# ar.h 338
class ARStatusList(Structure):
pass
ARStatusList._fields_ = [
# ar.h 338
('numItems', c_uint),
('statusList', POINTER(ARStatusStruct)),
]
# ar.h 1666
class ARAssignFieldStruct(Structure):
pass
# ar.h 795
class N17ARQualifierStruct4DOLLAR_49E(Union):
pass
# ar.h 796
class N17ARQualifierStruct4DOLLAR_494DOLLAR_50E(Structure):
pass
N17ARQualifierStruct4DOLLAR_494DOLLAR_50E._fields_ = [
# ar.h 796
('operandLeft', POINTER(ARQualifierStruct)),
('operandRight', POINTER(ARQualifierStruct)),
]
# ar.h 779
class ARRelOpStruct(Structure):
pass
N17ARQualifierStruct4DOLLAR_49E._fields_ = [
# ar.h 795
('andor', N17ARQualifierStruct4DOLLAR_494DOLLAR_50E),
('notQual', POINTER(ARQualifierStruct)),
('relOp', POINTER(ARRelOpStruct)),
('fieldId', ARInternalId),
]
ARQualifierStruct._fields_ = [
# ar.h 793
('operation', c_uint),
('u', N17ARQualifierStruct4DOLLAR_49E),
]
# ar.h 1659
class N19ARAssignFieldStruct4DOLLAR_70E(Union):
pass
N19ARAssignFieldStruct4DOLLAR_70E._fields_ = [
# ar.h 1659
('fieldId', ARInternalId),
('statHistory', ARStatHistoryValue),
('currencyField', POINTER(ARCurrencyPartStruct)),
]
ARAssignFieldStruct._fields_ = [
# ar.h 1666
('server', c_char * 65),
('schema', ARNameType),
('qualifier', ARQualifierStruct),
('tag', c_uint),
('u', N19ARAssignFieldStruct4DOLLAR_70E),
('noMatchOption', c_uint),
('multiMatchOption', c_uint),
]
# ar.h 576
class AREntryListFieldStruct(Structure):
pass
AREntryListFieldStruct._fields_ = [
# ar.h 576
('fieldId', ARInternalId),
('columnWidth', c_uint),
('separator', c_char * 10),
]
# ar.h 820
class ARSortStruct(Structure):
pass
ARSortList._fields_ = [
# ar.h 825
('numItems', c_uint),
('sortList', POINTER(ARSortStruct)),
]
AR_STRUCT_ITEM_XML_VUI = 1073741838 # Variable c_int
AR_ENC_RC4_KEY_LEN_2048 = 3 # Variable c_int
AR_CLIENT_TYPE_ALERT = 21 # Variable c_int
AR_DPROP_DATA_ROWS = 60 # Variable c_int
AR_FIELD_TRAN = 50 # Variable c_int
AR_DISPLAY_TYPE_BUTTON = 6 # Variable c_int
AR_MAX_ACTIONS = 25 # Variable c_int
AR_STAT_OP_MINIMUM = 4 # Variable c_int
AR_KEYWORD_SCHEMA = 5 # Variable c_int
AREntryIdType = c_char * 16
AR_CURRENCY_FLD_DB = 55 # Variable c_int
AR_MENU_FILE_CLIENT = 2 # Variable c_int
AR_SMOPROP_OBJECT_VERSION = 90001 # Variable c_int
AR_REPORT_ATTR_SCHEMANAME = 24 # Variable c_long
AR_FUNCTION_LEFT = 17 # Variable c_int
AR_FILTER_ACTION_LOG = 3 # Variable c_int
AR_MAX_FILENAME_SIZE = 12 # Variable c_int
AR_ALERT_USER_BROADCAST = '*' # Variable c_char_p
AR_STAT_OP_COUNT = 1 # Variable c_int
# ar.h 3462
class ARFieldMappingStruct(Structure):
pass
AR_SERVER_INFO_TCD_TCP_PORT = 65 # Variable c_int
AR_DVAL_TABLE_SELROWS_SINGLE_SELECT = 2 # Variable c_int
ARLocaleType = c_char * 16
AR_SERVER_STAT_MERGE_E_TIME = 27 # Variable c_int
AR_HOME_DB_CONFIGFILE = 'ardb.cfg' # Variable c_char_p
# ar.h 4408
class ARComplexEntryGetOutList(Structure):
pass
AR_DVAL_RADIO_CHECKBOX = 2 # Variable c_int
AR_MENU_REFRESH_CONNECT = 1 # Variable c_int
AR_FULLTEXT_STATE_OFF = 0 # Variable c_int
AR_DPROP_DATA_EXPAND_BBOX = 66 # Variable c_int
AR_MAX_FUNC_CURRENCY_LIMIT_TEXT_SIZE = 20 # Variable c_int
AR_MAX_FLATFILE_LIMIT = 10000000 # Variable c_int
# ar.h 2127
class ARWaitStruct(Structure):
pass
ARWaitStruct._fields_ = [
# ar.h 2127
('continueButtonTitle', c_char_p),
]
# ar.h 3564
class ARViewSchema(Structure):
pass
AR_REPORT_ATTR_COL_SEP = 13 # Variable c_long
AR_MAX_DECIMAL_SIZE = 64 # Variable c_int
# ar.h 235
class AREntryIdList(Structure):
pass
AREntryIdList._fields_ = [
# ar.h 235
('numItems', c_uint),
('entryIdList', POINTER(AREntryIdType)),
]
AR_DPROP_ATTACH_DISPLAY_LABEL = 234 # Variable c_int
# ar.h 1770
class ARAssignFilterApiStruct(Structure):
pass
# ar.h 1768
class ARAssignStruct(Structure):
pass
ARAssignFilterApiStruct._fields_ = [
# ar.h 1770
('serviceName', ARNameType),
('numItems', c_uint),
('inputValues', POINTER(ARAssignStruct)),
('valueIndex', c_uint),
]
AR_DVAL_AUTO_FIELD_GROUPTITLE = 3 # Variable c_int
# ar.h 4270
class ARXMLOutputDoc(Structure):
pass
# ar.h 4272
class N14ARXMLOutputDoc5DOLLAR_190E(Union):
pass
N14ARXMLOutputDoc5DOLLAR_190E._fields_ = [
# ar.h 4272
('charBuffer', c_char_p),
('fileName', c_char_p),
('fileHandle', c_uint),
]
ARXMLOutputDoc._fields_ = [
# ar.h 4270
('docType', c_uint),
('u', N14ARXMLOutputDoc5DOLLAR_190E),
]
AR_DPROP_TABLE_SELINIT = 5003 # Variable c_int
AR_LICENSE_TYPE_RESTRICTED_READ = 3 # Variable c_int
AR_CURRENT_API_VERSION = 10 # Variable c_int
AR_SERVER_STAT_NET_RESP_TIME = 58 # Variable c_int
ARREF_APPLICATION_HELP_FILE4 = 32815 # Variable c_int
AR_DSO_MAP_BY_CUSTOM = 1 # Variable c_int
AR_DEBUG_SERVER_PLUGIN = 131072 # Variable c_int
# ar.h 946
class ARDisplayInstanceList(Structure):
pass
# ar.h 929
class ARPropList(Structure):
pass
# ar.h 924
class ARPropStruct(Structure):
pass
ARPropList._fields_ = [
# ar.h 929
('numItems', c_uint),
('props', POINTER(ARPropStruct)),
]
# ar.h 939
class ARDisplayInstanceStruct(Structure):
pass
ARDisplayInstanceList._fields_ = [
# ar.h 946
('commonProps', ARPropList),
('numItems', c_uint),
('dInstanceList', POINTER(ARDisplayInstanceStruct)),
]
AR_DVAL_EXPAND_BOX_SHOW = 2 # Variable c_int
ARREF_WS_PROPERTIES = 32797 # Variable c_int
AR_DVAL_VIEWFIELD_SCROLLBARS_ON = 1 # Variable c_int
AR_SERVER_INFO_SCC_TARGET_DIR = 105 # Variable c_int
AR_SERVER_INFO_ENC_DATA_ENCR_ALG = 132 # Variable c_int
AR_DPROP_DEPTH_AMOUNT = 10 # Variable c_int
AR_DPROP_LABEL_JUSTIFY = 25 # Variable c_int
AR_FULLTEXTINFO_FTS_MATCH_OP = 6 # Variable c_int
AR_DPROP_TABLE_SELECT_ALL = 5013 # Variable c_int
AR_STRUCT_ITEM_CONTAINER = 12 # Variable c_int
ARREF_ENTRYPOINT_ORDER = 32829 # Variable c_int
AR_SERVER_INFO_RESERV1_C = 40 # Variable c_int
ARREF_APP_FORMACTION_RESULTS_LIST_FIXED_HEADER = 32837 # Variable c_int
AR_SERVER_STAT_GETLIST_E_COUNT = 28 # Variable c_int
# ar.h 2791
class ARStructItemList(Structure):
pass
ARStructItemList._fields_ = [
# ar.h 2791
('numItems', c_uint),
('structItemList', POINTER(ARStructItemStruct)),
]
AR_FIELD_TYPE_ALL = 511 # Variable c_int
AR_DVAL_AUTO_FIELD_ALIGN_LEFT = 0 # Variable c_int
AR_DPROP_DRILL_DOWN = 224 # Variable c_int
AR_SERVER_INFO_DB_TYPE = 1 # Variable c_int
AR_CURRENCY_PART_VALUE = 1 # Variable c_int
# ar.h 3617
class ARSchemaInheritanceListList(Structure):
pass
# ar.h 3612
class ARSchemaInheritanceList(Structure):
pass
ARSchemaInheritanceListList._fields_ = [
# ar.h 3617
('numItems', c_uint),
('schemaInheritanceListList', POINTER(ARSchemaInheritanceList)),
]
AR_DPROP_BUTTON_TEXT = 110 # Variable c_int
# ar.h 4430
class ARComplexEntryCreate(Structure):
pass
ARREF_APPLICATION_HELP_LABEL4 = 32826 # Variable c_int
AR_SERVER_INFO_DB_CONNECTION_RETRIES = 184 # Variable c_int
AR_SERVER_INFO_SHARED_CACHE = 75 # Variable c_int
# ar.h 4394
class ARComplexEntryGetIn(Structure):
pass
AR_DPROP_TABLE_DESELECT_ALL = 5014 # Variable c_int
AR_SERVER_INFO_MAX_AUDIT_LOG_FILE_SIZE = 120 # Variable c_int
AR_SERVER_INFO_SCC_COMMENT_CHECKOUT = 107 # Variable c_int
AR_OPROP_GUIDE_PARAMETERS = 60035 # Variable c_int
AR_FIELD_INHERITANCE = 5 # Variable c_int
AR_SERVER_INFO_EMAIL_FROM = 16 # Variable c_int
# ar.h 4146
class ARVuiInfoStruct(Structure):
pass
ARVuiInfoStruct._fields_ = [
# ar.h 4146
('vuiId', ARInternalId),
('vuiName', ARNameType),
('timestamp', ARTimestamp),
('props', ARPropList),
('owner', ARAccessNameType),
('locale', ARLocaleType),
('vuiType', c_uint),
('lastChanged', ARAccessNameType),
('helpText', c_char_p),
('changeDiary', c_char_p),
]
AR_DPROP_LABEL = 20 # Variable c_int
AR_LOCAL_TEXT_LIST_MENU_DEFN = 7 # Variable c_int
ARREF_APPLICATION_HELP_FILE = 32776 # Variable c_int
AR_DVAL_COLOR_EDIT_FG = 'edit_fg' # Variable c_char_p
ARREF_SCHEMA = 2 # Variable c_int
AR_STRUCT_ITEM_ESCALATION = 9 # Variable c_int
AR_SERVER_INFO_SCC_INTEGRATION_MODE = 108 # Variable c_int
AR_DPROP_ENDCAP_START = 44 # Variable c_int
AR_FILTER_ACTION_EXITGUIDE = 10 # Variable c_int
AR_OPROP_SCC_DATA_LOCKED_BY = 60011 # Variable c_int
AR_DPROP_COLOR_FILL = 8 # Variable c_int
AR_REPORT_ATTR_FILENAME = 22 # Variable c_long
AR_KEYWORD_ROWSELECTED = 24 # Variable c_int
AR_DPROP_MENU_POS = 121 # Variable c_int
AR_DSO_MAP_BY_FIELD_NAMES = 2 # Variable c_int
AR_ENC_SEC_POLICY_ENCRYPT_REQUIRED = 1 # Variable c_int
AR_FUNCTION_LEFTC = 41 # Variable c_int
AR_ACTIVE_LINK_ACTION_SET_CHAR = 5 # Variable c_int
# ar.h 2625
class ARCharMenuSSStruct(Structure):
pass
ARCharMenuSSStruct._fields_ = [
# ar.h 2625
('menuName', ARNameType),
('keywordList', ARFieldValueList),
('parameterList', ARFieldValueList),
('externList', ARQualifierList),
('server', c_char_p),
('schema', c_char_p),
]
ARREF_ICON = 32768 # Variable c_int
AR_CLIENT_TYPE_DRIVER = 4000 # Variable c_int
AR_ATTACH_FIELD_TYPE_LINK = 2 # Variable c_int
AR_DVAL_IMAGE_LEFT = 1 # Variable c_int
AR_DATA_TYPE_ULONG = 40 # Variable c_int
AR_MAX_SUBJECT_SIZE = 255 # Variable c_int
COLUMN_LIMIT_DATASOURCE_DATA_FIELD = 0 # Variable c_int
AR_MAX_EMAIL_ADDR = 255 # Variable c_int
AR_CLIENT_TYPE_PALM_PILOT = 10 # Variable c_int
ARREF_FILTER = 3 # Variable c_int
AR_REPORT_ATTR_TOP = 8 # Variable c_long
AR_DVAL_COLOR_NONE = 'none' # Variable c_char_p
AR_SERVER_INFO_SERVERGROUP_INTERVAL = 195 # Variable c_int
AR_DPROP_ALIAS_PLURAL = 207 # Variable c_int
AR_LOC_BUFFER = 2 # Variable c_int
AR_DPROP_ZERO_SIZE_WHEN_HIDDEN = 243 # Variable c_int
AR_SERVER_INFO_DFLT_FUNC_CURRENCIES = 179 # Variable c_int
AR_DVAL_PANE_HIDDEN = 0 # Variable c_int
AR_SERVER_INFO_ALLOW_BACKQUOTE_IN_PROCESS = 183 # Variable c_int
AR_SCHEMA_VIEW = 3 # Variable c_int
AR_SERVER_INFO_FLASH_DAEMON = 58 # Variable c_int
AR_REL_OP_LESS = 4 # Variable c_int
AR_CHAR_MENU_DD_FORMAT_QUOTESL = 7 # Variable c_int
AR_PATTERN_KEY_DIGIT = 101 # Variable c_int
AR_SERVER_INFO_DFLT_ALLOW_CURRENCIES = 174 # Variable c_int
AR_ALERT_SOURCE_FIRST = 3 # Variable c_int
AR_ACTIVE_LINK_ACTION_OPEN_REPORT = 9 # Variable c_int
AR_KEYWORD_GUIDE = 19 # Variable c_int
AR_DVAL_AUTO_FIELD_ACTION = 2 # Variable c_int
AR_FUNCTION_LPADC = 43 # Variable c_int
AR_DVAL_CNTL_A_MENU = 5 # Variable c_int
# ar.h 3443