-
Notifications
You must be signed in to change notification settings - Fork 1
/
RestDWServer.drc
2727 lines (2724 loc) · 183 KB
/
RestDWServer.drc
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
/* VER330
Generated by the Embarcadero Delphi Pascal Compiler
because -GD or --drc was supplied to the compiler.
This file contains compiler-generated resources that
were bound to the executable.
If this file is empty, then no compiler-generated
resources were bound to the produced executable.
*/
#define Data_DBXCommonResStrs_SDBXErrVendorError 64176
#define Data_DBXCommonResStrs_SDBXErrUnrecognizedCommandType 64177
#define Data_DBXCommonResStrs_SDBXErrSchemaNameUnspecified 64178
#define Data_DBXCommonResStrs_SDBXErrDatabaseUnspecified 64179
#define Data_DBXCommonResStrs_SDBXErrLibraryNameUnspecified 64180
#define Data_DBXCommonResStrs_SDBXErrGetDriverFuncUnspecified 64181
#define Data_DBXCommonResStrs_SDBXErrVendorLibUnspecified 64182
#define Data_DBXCommonResStrs_sReaderNotSupported 64183
#define Data_DBXCommonResStrs_sWriterNotSupported 64184
#define Data_DBXCommonResStrs_SDBXErrInvalidIsolationLevel 64192
#define Data_DBXCommonResStrs_SDBXErrInvalidTransactionId 64193
#define Data_DBXCommonResStrs_SDBXErrDuplicateTransactionId 64194
#define Data_DBXCommonResStrs_SDBXErrDriverRestricted 64195
#define Data_DBXCommonResStrs_SDBXErrTransactionActive 64196
#define Data_DBXCommonResStrs_SDBXErrMultipleTransactionNotEnabled 64197
#define Data_DBXCommonResStrs_SDBXErrConnectionFailed 64198
#define Data_DBXCommonResStrs_SDBXErrDriverInitFailed 64199
#define Data_DBXCommonResStrs_SDBXErrOptimisticLockFailed 64200
#define Data_DBXCommonResStrs_SDBXErrInvalidReference 64201
#define Data_DBXCommonResStrs_SDBXErrNoTable 64202
#define Data_DBXCommonResStrs_SDBXErrMissingParameterMarker 64203
#define Data_DBXCommonResStrs_SDBXErrNotImplemented 64204
#define Data_DBXCommonResStrs_SDBXErrDriverIncompatible 64205
#define Data_DBXCommonResStrs_SDBXErrInvalidArgument 64206
#define Data_DBXCommonResStrs_SDBXErrNoData 64207
#define Data_DBXCommonResStrs_SNotDefinedIn 64208
#define Data_DBXCommonResStrs_SDBXErrNone 64209
#define Data_DBXCommonResStrs_SDBXErrWarning 64210
#define Data_DBXCommonResStrs_SDBXErrNoMemory 64211
#define Data_DBXCommonResStrs_SDBXErrUnsupportedFieldType 64212
#define Data_DBXCommonResStrs_SDBXErrInvalidHandle 64213
#define Data_DBXCommonResStrs_SDBXErrNotSupported 64214
#define Data_DBXCommonResStrs_SDBXErrInvalidTime 64215
#define Data_DBXCommonResStrs_SDBXErrInvalidType 64216
#define Data_DBXCommonResStrs_SDBXErrInvalidOrdinal 64217
#define Data_DBXCommonResStrs_SDBXErrInvalidParameter 64218
#define Data_DBXCommonResStrs_SDBXErrEOF 64219
#define Data_DBXCommonResStrs_SDBXErrParameterNotSet 64220
#define Data_DBXCommonResStrs_SDBXErrInvalidUserOrPassword 64221
#define Data_DBXCommonResStrs_SDBXErrInvalidPrecision 64222
#define Data_DBXCommonResStrs_SDBXErrInvalidLength 64223
#define Data_DBXCommonResStrs_SReaderClosed 64224
#define Data_DBXCommonResStrs_SReadOnlyType 64225
#define Data_DBXCommonResStrs_SSetSingletonOnce 64226
#define Data_DBXCommonResStrs_SConnectionFactoryInitFailed 64227
#define Data_DBXCommonResStrs_SInvalidDelegationDepth 64228
#define Data_DBXCommonResStrs_SInvalidOrdinal 64229
#define Data_DBXCommonResStrs_SDefaultErrorMessage 64230
#define Data_DBXCommonResStrs_SErrorCode 64231
#define Data_DBXCommonResStrs_SAlreadyPrepared 64232
#define Data_DBXCommonResStrs_SInvalidTypeAccess 64233
#define Data_DBXCommonResStrs_SConnectionClosed 64234
#define Data_DBXCommonResStrs_SMetaDataLoadError 64235
#define Data_DBXCommonResStrs_SJSONByteStream 64236
#define Data_DBXCommonResStrs_SNoStatementToExecute 64237
#define Data_DBXCommonResStrs_SUnexpectedDataType 64238
#define Data_DBXCommonResStrs_SDriverAlreadyRegistered 64239
#define System_JSONConsts_SJSONPathEndedOpenBracket 64240
#define System_JSONConsts_SJSONPathEndedOpenString 64241
#define System_JSONConsts_SJSONPathInvalidArrayIndex 64242
#define System_JSONConsts_SJSONPathUnexpectedIndexedChar 64243
#define System_JSONConsts_SJSONPathDotsEmptyName 64244
#define Data_DBXCommonResStrs_SBadVariantType 64245
#define Data_DBXCommonResStrs_SAlreadyRegistered 64246
#define Data_DBXCommonResStrs_SNotRegistered 64247
#define Data_DBXCommonResStrs_SInvalidClassRegister 64248
#define Data_DBXCommonResStrs_SCannotFreeClassRegistry 64249
#define Data_DBXCommonResStrs_SUnknownDriver 64250
#define Data_DBXCommonResStrs_SInvalidArgument 64251
#define Data_DBXCommonResStrs_SInvalidTransaction 64252
#define Data_DBXCommonResStrs_SNotImplemented 64253
#define Data_DBXCommonResStrs_SRequiredProperty 64254
#define Data_DBXCommonResStrs_SReaderNew 64255
#define System_JSONConsts_SUnexpectedTokenDate 64256
#define System_JSONConsts_SUnexpectedTokenDateConstructorExpEnd 64257
#define System_JSONConsts_SUnexpectedTokenDateConstructorExpInt 64258
#define System_JSONConsts_SUnexpectedTokenDouble 64259
#define System_JSONConsts_SUnexpectedTokenInteger 64260
#define System_JSONConsts_SUnexpectedTokenReadBytes 64261
#define System_JSONConsts_SUnexpectedTokenString 64262
#define System_JSONConsts_SUnexpectedTypeOnEnd 64263
#define System_JSONConsts_SUnexpectedUnicodeCharEnd 64264
#define System_JSONConsts_SUnexpectedUnquotedPropertyEnd 64265
#define System_JSONConsts_SUnknowContainerType 64266
#define System_JSONConsts_SUnsupportedType 64267
#define System_JSONConsts_SUnterminatedString 64268
#define System_JSONConsts_SWhitespaceOnly 64269
#define System_JSONConsts_SUnexpectedExtJSONToken 64270
#define System_JSONConsts_SJSONPathUnexpectedRootChar 64271
#define System_JSONConsts_SParseErrorPositiveInfinity 64272
#define System_JSONConsts_SParseErrorUndefined 64273
#define System_JSONConsts_SReaderAdditionalText 64274
#define System_JSONConsts_SReaderMaxDepthExceeded 64275
#define System_JSONConsts_STokenInStateInvalid 64276
#define System_JSONConsts_SUnexpecteCharAfterValue 64277
#define System_JSONConsts_SUnexpectedBytesEnd 64278
#define System_JSONConsts_SUnexpectedCharConstructor 64279
#define System_JSONConsts_SUnexpectedCharNumber 64280
#define System_JSONConsts_SUnexpectedCharValue 64281
#define System_JSONConsts_SUnexpectedCommentEnd 64282
#define System_JSONConsts_SUnexpectedConstructorEnd 64283
#define System_JSONConsts_SUnexpectedEnd 64284
#define System_JSONConsts_SUnexpectedEndConstructorDate 64285
#define System_JSONConsts_SUnexpectedJsonContent 64286
#define System_JSONConsts_SUnexpectedState 64287
#define System_JSONConsts_SInvalidCharacterAfterProperty 64288
#define System_JSONConsts_SInvalidCloseToken 64289
#define System_JSONConsts_SInvalidJavascriptProperty 64290
#define System_JSONConsts_SInvalidJavascriptQuote 64291
#define System_JSONConsts_SInvalidJsonToken 64292
#define System_JSONConsts_SInvalidObjectId 64293
#define System_JSONConsts_SInvalidPropertyCharacter 64294
#define System_JSONConsts_SInvalidState 64295
#define System_JSONConsts_SInvalidTokenForContainer 64296
#define System_JSONConsts_SNoTokenForType 64297
#define System_JSONConsts_SNoTokenToClose 64298
#define System_JSONConsts_SParseErrorBoolean 64299
#define System_JSONConsts_SParseErrorComment 64300
#define System_JSONConsts_SParseErrorNan 64301
#define System_JSONConsts_SParseErrorNegativeInfinity 64302
#define System_JSONConsts_SParseErrorNull 64303
#define System_JSONConsts_SUTF8InvalidHeaderByte 64304
#define System_JSONConsts_SJSONSyntaxError 64305
#define System_JSONConsts_SJSONLocation 64306
#define System_JSONConsts_STooMuchNesting 64307
#define System_JSONConsts_SValueNotFound 64308
#define System_JSONConsts_SCannotAddJSONValue 64309
#define System_JSONConsts_SBadEscapeSequence 64310
#define System_JSONConsts_SErrorConvertStringToDatetime 64311
#define System_JSONConsts_SErrorConvertStringToDouble 64312
#define System_JSONConsts_SErrorConvertStringToInteger 64313
#define System_JSONConsts_SFormatMessageLinePos 64314
#define System_JSONConsts_SFormatMessagePath 64315
#define System_JSONConsts_SIdentationGreaterThanZero 64316
#define System_JSONConsts_SInputInvalidDouble 64317
#define System_JSONConsts_SInputInvalidInteger 64318
#define System_JSONConsts_SInputInvalidNumber 64319
#define Datasnap_MidConst_SFieldConstFail 64320
#define Datasnap_MidConst_SDefExprFail 64321
#define Datasnap_MidConst_SArrayElementError 64322
#define Datasnap_MidConst_SNoTableName 64323
#define Datasnap_MidConst_SNoEditsAllowed 64324
#define Datasnap_MidConst_SNoDeletesAllowed 64325
#define Datasnap_MidConst_SNoInsertsAllowed 64326
#define Datasnap_MidConst_SCannotChangeCommandText 64327
#define Datasnap_MidConst_SConnectionMissing 64328
#define Datasnap_MidConst_SNoCircularConnection 64329
#define Datasnap_MidConst_SClassNotAvailable 64330
#define Datasnap_MidConst_SOutOfMemory 64331
#define Datasnap_MidConst_SInvalidArg 64332
#define Datasnap_MidConst_SUnableToLoadICU 64333
#define System_JSONConsts_SUTF8Start 64334
#define System_JSONConsts_SUTF8UnexpectedByte 64335
#define Datasnap_MidConst_SAggsNoSuchLevel 64336
#define Datasnap_MidConst_SNoCircularReference 64337
#define Datasnap_MidConst_SErrorLoadingMidas 64338
#define Datasnap_MidConst_SCannotCreateDataSet 64339
#define Datasnap_MidConst_SNoConnectToBroker 64340
#define Datasnap_MidConst_SNoParentConnection 64341
#define Datasnap_MidConst_SInvalidResponse 64342
#define Datasnap_MidConst_STooManyRecordsModified 64343
#define Datasnap_MidConst_SInvalidOptParamType 64344
#define Datasnap_MidConst_SMissingDataSet 64345
#define Datasnap_MidConst_SConstraintFailed 64346
#define Datasnap_MidConst_SField 64347
#define Datasnap_MidConst_SReadOnlyProvider 64348
#define Datasnap_MidConst_SNoKeySpecified 64349
#define Datasnap_MidConst_SNoDataSets 64350
#define Datasnap_MidConst_SRecConstFail 64351
#define uDWDataset_SDuplicateFieldName 64352
#define uDWDataset_SInvalidColor 64353
#define uDWDataset_SIllegalFileVersion 64354
#define uDWDataset_SCorruptedFileHeader 64355
#define uDWDataset_SCorruptedDefinitions 64356
#define uDWDataset_SWarnNextDefinitions 64357
#define uDWDataset_SInvalidRecord 64358
#define uDWDataset_SNotSupported 64359
#define uDWDataset_SBookmarkDNotFound 64360
#define uDWDataset_SUnsupportedTypeField 64361
#define uDWDataset_SInitFieldsDefsNoType 64362
#define uDWDataset_SInitFieldsDefsNoName 64363
#define uDWDataset_SLengthOutOfBounds 64364
#define Datasnap_MidConst_SNoDataProvider 64365
#define Datasnap_MidConst_SInvalidDataPacket 64366
#define Datasnap_MidConst_SRefreshError 64367
#define IdResourceStringsSSPI_RSHTTPSSPINoRenegotiation 64368
#define IdResourceStringsSSPI_RSHTTPSSPINoContext 64369
#define IdResourceStringsSSPI_RSHTTPSSPIPKU2UCertFailure 64370
#define IdResourceStringsSSPI_RSHTTPSSPIMutualAuthFailed 64371
#define IdResourceStringsSSPI_RSHTTPSSPIUnknwonError 64372
#define IdResourceStringsSSPI_RSHTTPSSPIErrorMsg 64373
#define IdResourceStringsSSPI_RSHTTPSSPIInterfaceInitFailed 64374
#define IdResourceStringsSSPI_RSHTTPSSPINoPkgInfoSpecified 64375
#define IdResourceStringsSSPI_RSHTTPSSPINoCredentialHandle 64376
#define IdResourceStringsSSPI_RSHTTPSSPICanNotChangeCredentials 64377
#define IdResourceStringsSSPI_RSHTTPSSPIUnknwonCredentialUse 64378
#define IdResourceStringsSSPI_RSHTTPSSPIDoAuquireCredentialHandle 64379
#define IdResourceStringsSSPI_RSHTTPSSPICompleteTokenNotSupported 64380
#define uDWDataset_SIntListCapacityError 64381
#define uDWDataset_SIntListCountError 64382
#define uDWDataset_SIntListIndexError 64383
#define IdResourceStringsSSPI_RSHTTPSSPIDowngradeDetected 64384
#define IdResourceStringsSSPI_RSHTTPSSPISmartcardCertRevoked 64385
#define IdResourceStringsSSPI_RSHTTPSSPIIssuingCAUntrusted 64386
#define IdResourceStringsSSPI_RSHTTPSSPIRevocationOffline 64387
#define IdResourceStringsSSPI_RSHTTPSSPIPKInitClientFailure 64388
#define IdResourceStringsSSPI_RSHTTPSSPISmartcardExpired 64389
#define IdResourceStringsSSPI_RSHTTPSSPINoS4UProtSupport 64390
#define IdResourceStringsSSPI_RSHTTPSSPICrossRealmDeligationFailure 64391
#define IdResourceStringsSSPI_RSHTTPSSPIRevocationOfflineKDC 64392
#define IdResourceStringsSSPI_RSHTTPSSPICAUntrustedKDC 64393
#define IdResourceStringsSSPI_RSHTTPSSPIKDCCertExpired 64394
#define IdResourceStringsSSPI_RSHTTPSSPIKDCCertRevoked 64395
#define IdResourceStringsSSPI_RSHTTPSSPISignatureNeeded 64396
#define IdResourceStringsSSPI_RSHTTPSSPIInvalidParameter 64397
#define IdResourceStringsSSPI_RSHTTPSSPIDeligationPolicy 64398
#define IdResourceStringsSSPI_RSHTTPSSPIPolicyNTLMOnly 64399
#define IdResourceStringsSSPI_RSHTTPSSPIMustBeKDC 64400
#define IdResourceStringsSSPI_RSHTTPSSPIStrongCryptoNotSupported 64401
#define IdResourceStringsSSPI_RSHTTPSSPIKDCReplyTooManyPrincipals 64402
#define IdResourceStringsSSPI_RSHTTPSSPINoPAData 64403
#define IdResourceStringsSSPI_RSHTTPSSPIPKInitNameMismatch 64404
#define IdResourceStringsSSPI_RSHTTPSSPISmartcardLogonReq 64405
#define IdResourceStringsSSPI_RSHTTPSSPISysShutdownInProg 64406
#define IdResourceStringsSSPI_RSHTTPSSPIKDCInvalidRequest 64407
#define IdResourceStringsSSPI_RSHTTPSSPIKDCUnableToRefer 64408
#define IdResourceStringsSSPI_RSHTTPSSPIKDCETypeUnknown 64409
#define IdResourceStringsSSPI_RSHTTPSSPIUnsupPreauth 64410
#define IdResourceStringsSSPI_RSHTTPSSPIDeligationReq 64411
#define IdResourceStringsSSPI_RSHTTPSSPIBadBindings 64412
#define IdResourceStringsSSPI_RSHTTPSSPIMultipleAccounts 64413
#define IdResourceStringsSSPI_RSHTTPSSPINoKerbKey 64414
#define IdResourceStringsSSPI_RSHTTPSSPICertWrongUsage 64415
#define IdResourceStringsSSPI_RSHTTPSSPINoLSACode 64416
#define IdResourceStringsSSPI_RSHTTPSSPITimeScew 64417
#define IdResourceStringsSSPI_RSHTTPSSPIUntrustedRoot 64418
#define IdResourceStringsSSPI_RSHTTPSSPIIllegalMessage 64419
#define IdResourceStringsSSPI_RSHTTPSSPICertUnknown 64420
#define IdResourceStringsSSPI_RSHTTPSSPICertExpired 64421
#define IdResourceStringsSSPI_RSHTTPSSPIEncryptionFailure 64422
#define IdResourceStringsSSPI_RSHTTPSSPIDecryptionFailure 64423
#define IdResourceStringsSSPI_RSHTTPSSPIAlgorithmMismatch 64424
#define IdResourceStringsSSPI_RSHTTPSSPISecurityQOSFailure 64425
#define IdResourceStringsSSPI_RSHTTPSSPISecCtxWasDelBeforeUpdated 64426
#define IdResourceStringsSSPI_RSHTTPSSPIClientNoTGTReply 64427
#define IdResourceStringsSSPI_RSHTTPSSPILocalNoIPAddr 64428
#define IdResourceStringsSSPI_RSHTTPSSPIWrongCredHandle 64429
#define IdResourceStringsSSPI_RSHTTPSSPICryptoSysInvalid 64430
#define IdResourceStringsSSPI_RSHTTPSSPIMaxTicketRef 64431
#define IdResourceStringsSSPI_RSHTTPSSPINoCredentials 64432
#define IdResourceStringsSSPI_RSHTTPSSPIMessageAltered 64433
#define IdResourceStringsSSPI_RSHTTPSSPIOutOfSequence 64434
#define IdResourceStringsSSPI_RSHTTPSSPINoAuthAuthority 64435
#define IdResourceStringsSSPI_RSHTTPSSPIContinueNeeded 64436
#define IdResourceStringsSSPI_RSHTTPSSPICompleteNeeded 64437
#define IdResourceStringsSSPI_RSHTTPSSPICompleteContinueNeeded 64438
#define IdResourceStringsSSPI_RSHTTPSSPILocalLogin 64439
#define IdResourceStringsSSPI_RSHTTPSSPIBadPackageID 64440
#define IdResourceStringsSSPI_RSHTTPSSPIContextExpired 64441
#define IdResourceStringsSSPI_RSHTTPSSPIIncompleteMessage 64442
#define IdResourceStringsSSPI_RSHTTPSSPIIncompleteCredentialNotInit 64443
#define IdResourceStringsSSPI_RSHTTPSSPIBufferTooSmall 64444
#define IdResourceStringsSSPI_RSHTTPSSPIIncompleteCredentialsInit 64445
#define IdResourceStringsSSPI_RSHTTPSSPIRengotiate 64446
#define IdResourceStringsSSPI_RSHTTPSSPIWrongPrincipal 64447
#define IdResourceStringsOpenSSL_RSOSSLHandshakeDone 64448
#define IdResourceStringsSSPI_RSHTTPSSPISuccess 64449
#define IdResourceStringsSSPI_RSHTTPSSPINotEnoughMem 64450
#define IdResourceStringsSSPI_RSHTTPSSPIInvalidHandle 64451
#define IdResourceStringsSSPI_RSHTTPSSPIFuncNotSupported 64452
#define IdResourceStringsSSPI_RSHTTPSSPIUnknownTarget 64453
#define IdResourceStringsSSPI_RSHTTPSSPIInternalError 64454
#define IdResourceStringsSSPI_RSHTTPSSPISecPackageNotFound 64455
#define IdResourceStringsSSPI_RSHTTPSSPINotOwner 64456
#define IdResourceStringsSSPI_RSHTTPSSPIPackageCannotBeInstalled 64457
#define IdResourceStringsSSPI_RSHTTPSSPIInvalidToken 64458
#define IdResourceStringsSSPI_RSHTTPSSPICannotPack 64459
#define IdResourceStringsSSPI_RSHTTPSSPIQOPNotSupported 64460
#define IdResourceStringsSSPI_RSHTTPSSPINoImpersonation 64461
#define IdResourceStringsSSPI_RSHTTPSSPILoginDenied 64462
#define IdResourceStringsSSPI_RSHTTPSSPIUnknownCredentials 64463
#define IdResourceStringsOpenSSL_RSOSSFailedToLoad 64464
#define IdResourceStringsOpenSSL_RSOSSLModeNotSet 64465
#define IdResourceStringsOpenSSL_RSOSSLCouldNotLoadSSLLibrary 64466
#define IdResourceStringsOpenSSL_RSOSSLStatusString 64467
#define IdResourceStringsOpenSSL_RSOSSLAlert 64468
#define IdResourceStringsOpenSSL_RSOSSLReadAlert 64469
#define IdResourceStringsOpenSSL_RSOSSLWriteAlert 64470
#define IdResourceStringsOpenSSL_RSOSSLAcceptLoop 64471
#define IdResourceStringsOpenSSL_RSOSSLAcceptError 64472
#define IdResourceStringsOpenSSL_RSOSSLAcceptFailed 64473
#define IdResourceStringsOpenSSL_RSOSSLAcceptExit 64474
#define IdResourceStringsOpenSSL_RSOSSLConnectLoop 64475
#define IdResourceStringsOpenSSL_RSOSSLConnectError 64476
#define IdResourceStringsOpenSSL_RSOSSLConnectFailed 64477
#define IdResourceStringsOpenSSL_RSOSSLConnectExit 64478
#define IdResourceStringsOpenSSL_RSOSSLHandshakeStart 64479
#define IdResourceStringsProtocols_RSSSLFDSetError 64480
#define IdResourceStringsProtocols_RSSSLDataBindingError 64481
#define IdResourceStringsProtocols_RSSSLEOFViolation 64482
#define IdResourceStringsProtocols_RSMessageDecoderNotFound 64483
#define IdResourceStringsProtocols_RSMessageEncoderNotFound 64484
#define IdResourceStringsProtocols_RSUnrecognizedUUEEncodingScheme 64485
#define IdResourceStringsProtocols_RSMFDInvalidObjectType 64486
#define IdResourceStringsProtocols_RSMFDInvalidTransfer 64487
#define IdResourceStringsProtocols_RSMFDInvalidEncoding 64488
#define IdResourceStringsProtocols_RSURINoProto 64489
#define IdResourceStringsProtocols_RSURINoHost 64490
#define IdResourceStringsProtocols_RSTLSSSLIOHandlerRequired 64491
#define IdResourceStringsProtocols_RSTLSSLCanNotSetWhileConnected 64492
#define IdResourceStringsProtocols_RSTLSSLSSLHandshakeFailed 64493
#define IdResourceStringsProtocols_RSUnsupportedOperation 64494
#define IdResourceStringsProtocols_RSHeaderEncodeError 64495
#define IdResourceStringsProtocols_RSHTTPCannotSwitchSessionListWhenActive 64496
#define IdResourceStringsProtocols_RSHTTPCannotSwitchSessionIDCookieNameWhenActive 64497
#define IdResourceStringsProtocols_RSHTTPAuthInvalidHash 64498
#define IdResourceStringsProtocols_RSTIdMessagePartCreate 64499
#define IdResourceStringsProtocols_RSTIdMessageErrorSavingAttachment 64500
#define IdResourceStringsProtocols_RSTIdMessageErrorAttachmentBlocked 64501
#define IdResourceStringsProtocols_RSSSLAcceptError 64502
#define IdResourceStringsProtocols_RSSSLConnectError 64503
#define IdResourceStringsProtocols_RSSSLSettingCipherError 64504
#define IdResourceStringsProtocols_RSSSLCreatingSessionError 64505
#define IdResourceStringsProtocols_RSSSLCreatingContextError 64506
#define IdResourceStringsProtocols_RSSSLLoadingRootCertError 64507
#define IdResourceStringsProtocols_RSSSLLoadingCertError 64508
#define IdResourceStringsProtocols_RSSSLLoadingKeyError 64509
#define IdResourceStringsProtocols_RSSSLLoadingDHParamsError 64510
#define IdResourceStringsProtocols_RSSSLGetMethodError 64511
#define IdResourceStringsProtocols_RSHTTPRequestURITooLong 64512
#define IdResourceStringsProtocols_RSHTTPUnsupportedMediaType 64513
#define IdResourceStringsProtocols_RSHTTPExpectationFailed 64514
#define IdResourceStringsProtocols_RSHTTPInternalServerError 64515
#define IdResourceStringsProtocols_RSHTTPNotImplemented 64516
#define IdResourceStringsProtocols_RSHTTPBadGateway 64517
#define IdResourceStringsProtocols_RSHTTPServiceUnavailable 64518
#define IdResourceStringsProtocols_RSHTTPGatewayTimeout 64519
#define IdResourceStringsProtocols_RSHTTPHTTPVersionNotSupported 64520
#define IdResourceStringsProtocols_RSHTTPUnknownResponseCode 64521
#define IdResourceStringsProtocols_RSHTTPUnknownProtocol 64522
#define IdResourceStringsProtocols_RSHTTPMethodRequiresVersion 64523
#define IdResourceStringsProtocols_RSHTTPHeaderAlreadyWritten 64524
#define IdResourceStringsProtocols_RSHTTPErrorParsingCommand 64525
#define IdResourceStringsProtocols_RSHTTPUnsupportedAuthorisationScheme 64526
#define IdResourceStringsProtocols_RSHTTPCannotSwitchSessionStateWhenActive 64527
#define IdResourceStringsProtocols_RSHTTPUnauthorized 64528
#define IdResourceStringsProtocols_RSHTTPForbidden 64529
#define IdResourceStringsProtocols_RSHTTPNotFound 64530
#define IdResourceStringsProtocols_RSHTTPMethodNotAllowed 64531
#define IdResourceStringsProtocols_RSHTTPNotAcceptable 64532
#define IdResourceStringsProtocols_RSHTTPProxyAuthenticationRequired 64533
#define IdResourceStringsProtocols_RSHTTPRequestTimeout 64534
#define IdResourceStringsProtocols_RSHTTPConflict 64535
#define IdResourceStringsProtocols_RSHTTPGone 64536
#define IdResourceStringsProtocols_RSHTTPLengthRequired 64537
#define IdResourceStringsProtocols_RSHTTPPreconditionFailed 64538
#define IdResourceStringsProtocols_RSHTTPPreconditionRequired 64539
#define IdResourceStringsProtocols_RSHTTPTooManyRequests 64540
#define IdResourceStringsProtocols_RSHTTPRequestHeaderFieldsTooLarge 64541
#define IdResourceStringsProtocols_RSHTTPNetworkAuthenticationRequired 64542
#define IdResourceStringsProtocols_RSHTTPRequestEntityTooLong 64543
#define IdResourceStringsProtocols_RSMsgClientInvalidForTransferEncoding 64544
#define IdResourceStringsProtocols_RSHTTPChunkStarted 64545
#define IdResourceStringsProtocols_RSHTTPContinue 64546
#define IdResourceStringsProtocols_RSHTTPOK 64547
#define IdResourceStringsProtocols_RSHTTPCreated 64548
#define IdResourceStringsProtocols_RSHTTPAccepted 64549
#define IdResourceStringsProtocols_RSHTTPNonAuthoritativeInformation 64550
#define IdResourceStringsProtocols_RSHTTPNoContent 64551
#define IdResourceStringsProtocols_RSHTTPResetContent 64552
#define IdResourceStringsProtocols_RSHTTPPartialContent 64553
#define IdResourceStringsProtocols_RSHTTPMovedPermanently 64554
#define IdResourceStringsProtocols_RSHTTPMovedTemporarily 64555
#define IdResourceStringsProtocols_RSHTTPSeeOther 64556
#define IdResourceStringsProtocols_RSHTTPNotModified 64557
#define IdResourceStringsProtocols_RSHTTPUseProxy 64558
#define IdResourceStringsProtocols_RSHTTPBadRequest 64559
#define IdResourceStringsCore_RSBufferMissingTerminator 64560
#define IdResourceStringsCore_RSBufferInvalidStartPos 64561
#define IdResourceStringsCore_RSIOHandlerCannotChange 64562
#define IdResourceStringsCore_RSIOHandlerTypeNotInstalled 64563
#define IdResourceStringsCore_RSReplyInvalidCode 64564
#define IdResourceStringsCore_RSReplyCodeAlreadyExists 64565
#define IdResourceStringsCore_RSThreadSchedulerThreadRequired 64566
#define IdResourceStringsCore_RSTCPServerSchedulerAlreadyActive 64567
#define IdResourceStringsProtocols_RSIOHandlerPropInvalid 64568
#define IdResourceStringsProtocols_RSFIPSAlgorithmNotAllowed 64569
#define IdResourceStringsProtocols_RSMIMEExtensionEmpty 64570
#define IdResourceStringsProtocols_RSMIMEMIMETypeEmpty 64571
#define IdResourceStringsProtocols_RSMIMEMIMEExtAlreadyExists 64572
#define IdResourceStringsProtocols_RSIdMessageCannotLoad 64573
#define IdResourceStringsProtocols_RSMsgClientEncodingText 64574
#define IdResourceStringsProtocols_RSMsgClientEncodingAttachment 64575
#define IdResourceStringsCore_RSNotConnected 64576
#define IdResourceStringsCore_RSObjectTypeNotSupported 64577
#define IdResourceStringsCore_RSIdNoDataToRead 64578
#define IdResourceStringsCore_RSReadTimeout 64579
#define IdResourceStringsCore_RSReadLnWaitMaxAttemptsExceeded 64580
#define IdResourceStringsCore_RSReadLnMaxLineLengthExceeded 64581
#define IdResourceStringsCore_RSRequiresLargeStream 64582
#define IdResourceStringsCore_RSDataTooLarge 64583
#define IdResourceStringsCore_RSConnectTimeout 64584
#define IdResourceStringsCore_RSThreadTerminateAndWaitFor 64585
#define IdResourceStringsCore_RSAlreadyConnected 64586
#define IdResourceStringsCore_RSMaximumNumberOfCaptureLineExceeded 64587
#define IdResourceStringsCore_RSInterceptIsDifferent 64588
#define IdResourceStringsCore_RSchedMaxThreadEx 64589
#define IdResourceStringsCore_RSTransparentProxyCannotBind 64590
#define IdResourceStringsCore_RSTransparentProxyCanNotSupportUDP 64591
#define IdResourceStringsCore_RSSocksUnknownError 64592
#define IdResourceStringsCore_RSSocksServerRespondError 64593
#define IdResourceStringsCore_RSSocksAuthMethodError 64594
#define IdResourceStringsCore_RSSocksAuthError 64595
#define IdResourceStringsCore_RSSocksServerGeneralError 64596
#define IdResourceStringsCore_RSSocksServerPermissionError 64597
#define IdResourceStringsCore_RSSocksServerNetUnreachableError 64598
#define IdResourceStringsCore_RSSocksServerHostUnreachableError 64599
#define IdResourceStringsCore_RSSocksServerConnectionRefusedError 64600
#define IdResourceStringsCore_RSSocksServerTTLExpiredError 64601
#define IdResourceStringsCore_RSSocksServerCommandError 64602
#define IdResourceStringsCore_RSSocksServerAddressError 64603
#define IdResourceStringsCore_RSInterceptCircularLink 64604
#define IdResourceStringsCore_RSNotEnoughDataInBuffer 64605
#define IdResourceStringsCore_RSTooMuchDataInBuffer 64606
#define IdResourceStringsCore_RSFileNotFound 64607
#define IdResourceStrings_RSCannotSetIPVersionWhenConnected 64608
#define IdResourceStrings_RSCannotBindRange 64609
#define IdResourceStrings_RSConnectionClosedGracefully 64610
#define IdResourceStrings_RSCouldNotBindSocket 64611
#define IdResourceStrings_RSInvalidPortRange 64612
#define IdResourceStrings_RSInvalidServiceName 64613
#define IdResourceStrings_RSInvalidIPv6Address 64614
#define IdResourceStrings_RSIPVersionUnsupported 64615
#define IdResourceStrings_RSNotAllBytesSent 64616
#define IdResourceStrings_RSPackageSizeTooBig 64617
#define IdResourceStrings_RSSetSizeExceeded 64618
#define IdResourceStrings_RSEndOfStream 64619
#define IdResourceStringsCore_RSSocksUDPNotSupported 64620
#define IdResourceStringsCore_RSSocksRequestFailed 64621
#define IdResourceStringsCore_RSSocksRequestServerFailed 64622
#define IdResourceStringsCore_RSSocksRequestIdentFailed 64623
#define IdResourceStrings_RSStackENOBUFS 64624
#define IdResourceStrings_RSStackEISCONN 64625
#define IdResourceStrings_RSStackENOTCONN 64626
#define IdResourceStrings_RSStackESHUTDOWN 64627
#define IdResourceStrings_RSStackETOOMANYREFS 64628
#define IdResourceStrings_RSStackETIMEDOUT 64629
#define IdResourceStrings_RSStackECONNREFUSED 64630
#define IdResourceStrings_RSStackELOOP 64631
#define IdResourceStrings_RSStackENAMETOOLONG 64632
#define IdResourceStrings_RSStackEHOSTDOWN 64633
#define IdResourceStrings_RSStackEHOSTUNREACH 64634
#define IdResourceStrings_RSStackENOTEMPTY 64635
#define IdResourceStrings_RSStackHOST_NOT_FOUND 64636
#define IdResourceStrings_RSStackClassUndefined 64637
#define IdResourceStrings_RSStackAlreadyCreated 64638
#define IdResourceStrings_RSAntiFreezeOnlyOne 64639
#define IdResourceStrings_RSStackEDESTADDRREQ 64640
#define IdResourceStrings_RSStackEMSGSIZE 64641
#define IdResourceStrings_RSStackEPROTOTYPE 64642
#define IdResourceStrings_RSStackENOPROTOOPT 64643
#define IdResourceStrings_RSStackEPROTONOSUPPORT 64644
#define IdResourceStrings_RSStackESOCKTNOSUPPORT 64645
#define IdResourceStrings_RSStackEOPNOTSUPP 64646
#define IdResourceStrings_RSStackEPFNOSUPPORT 64647
#define IdResourceStrings_RSStackEAFNOSUPPORT 64648
#define IdResourceStrings_RSStackEADDRINUSE 64649
#define IdResourceStrings_RSStackEADDRNOTAVAIL 64650
#define IdResourceStrings_RSStackENETDOWN 64651
#define IdResourceStrings_RSStackENETUNREACH 64652
#define IdResourceStrings_RSStackENETRESET 64653
#define IdResourceStrings_RSStackECONNABORTED 64654
#define IdResourceStrings_RSStackECONNRESET 64655
#define IdResourceStrings_RSStatusConnecting 64656
#define IdResourceStrings_RSStatusConnected 64657
#define IdResourceStrings_RSStatusDisconnecting 64658
#define IdResourceStrings_RSStatusDisconnected 64659
#define IdResourceStrings_RSStatusText 64660
#define IdResourceStrings_RSStackError 64661
#define IdResourceStrings_RSStackEINTR 64662
#define IdResourceStrings_RSStackEBADF 64663
#define IdResourceStrings_RSStackEACCES 64664
#define IdResourceStrings_RSStackEFAULT 64665
#define IdResourceStrings_RSStackEINVAL 64666
#define IdResourceStrings_RSStackEMFILE 64667
#define IdResourceStrings_RSStackEWOULDBLOCK 64668
#define IdResourceStrings_RSStackEINPROGRESS 64669
#define IdResourceStrings_RSStackEALREADY 64670
#define IdResourceStrings_RSStackENOTSOCK 64671
#define FireDAC_Stan_ResStrs_S_FD_ODBCSearchingDrv 64672
#define FireDAC_Stan_ResStrs_S_FD_ODBCCheckingDrv 64673
#define FireDAC_Stan_ResStrs_S_FD_ODBCWarnDrvNotFound 64674
#define FireDAC_Stan_ResStrs_S_FD_ODBCWillBeUsed 64675
#define FireDAC_Stan_ResStrs_S_FD_ODBCFound 64676
#define FireDAC_Stan_ResStrs_S_FD_PhysWarnMajVerDiff 64677
#define IdResourceStrings_RSInvalidSourceArray 64678
#define IdResourceStrings_RSInvalidDestinationArray 64679
#define IdResourceStrings_RSCharIndexOutOfBounds 64680
#define IdResourceStrings_RSInvalidCharCount 64681
#define IdResourceStrings_RSInvalidDestinationIndex 64682
#define IdResourceStrings_RSInvalidCodePage 64683
#define IdResourceStrings_RSFailedTimeZoneInfo 64684
#define IdResourceStrings_RSWinsockCallError 64685
#define IdResourceStrings_RSWinsockLoadError 64686
#define IdResourceStrings_RSStatusResolving 64687
#define FireDAC_Stan_ResStrs_S_FD_MonEncounterBlock 64688
#define FireDAC_Stan_ResStrs_S_FD_MonEncounterEOF 64689
#define FireDAC_Stan_ResStrs_S_FD_Warning 64690
#define FireDAC_Stan_ResStrs_S_FD_Error 64691
#define FireDAC_Stan_ResStrs_S_FD_FBWarnNotFBSrv 64692
#define FireDAC_Stan_ResStrs_S_FD_FBWarnNotFBClnt 64693
#define FireDAC_Stan_ResStrs_S_FD_IBBWarnGDSFB 64694
#define FireDAC_Stan_ResStrs_S_FD_IBBWarnFBCIB 64695
#define FireDAC_Stan_ResStrs_S_FD_MSSQLWarnSQLSRV 64696
#define FireDAC_Stan_ResStrs_S_FD_MSSQLWarnNC2008 64697
#define FireDAC_Stan_ResStrs_S_FD_MSSQLWarnODBC11 64698
#define FireDAC_Stan_ResStrs_S_FD_MSSQLWarn2106Dt 64699
#define FireDAC_Stan_ResStrs_S_FD_MySQLWarnNoFK 64700
#define FireDAC_Stan_ResStrs_S_FD_MySQLWarnNoMR 64701
#define FireDAC_Stan_ResStrs_S_FD_ODBCLoadingManager 64702
#define FireDAC_Stan_ResStrs_S_FD_ODBCCreatingEnv 64703
#define FireDAC_Stan_ResStrs_S_FD_MongoDBRefInvalid 64704
#define FireDAC_Stan_ResStrs_S_FD_MongoDBRefNotFound 64705
#define FireDAC_Stan_ResStrs_S_FD_MongoCannotOpenDataSet 64706
#define FireDAC_Stan_ResStrs_S_FD_MongoFieldTypeMismatch 64707
#define FireDAC_Stan_ResStrs_S_FD_MongoFieldIsNotFound 64708
#define FireDAC_Stan_ResStrs_S_FD_MongoAlertToMany 64709
#define FireDAC_Stan_ResStrs_S_FD_ClntNotAccessible 64710
#define FireDAC_Stan_ResStrs_S_FD_ClntConnDefParams 64711
#define FireDAC_Stan_ResStrs_S_FD_ClntClientInfo 64712
#define FireDAC_Stan_ResStrs_S_FD_ClntSessionInfo 64713
#define FireDAC_Stan_ResStrs_S_FD_ClntFailedToLoad 64714
#define FireDAC_Stan_ResStrs_S_FD_ClntFailedToConnect 64715
#define FireDAC_Stan_ResStrs_S_FD_ClntNotConnected 64716
#define FireDAC_Stan_ResStrs_S_FD_ClntCheckingSession 64717
#define FireDAC_Stan_ResStrs_S_FD_NotFound 64718
#define FireDAC_Stan_ResStrs_S_FD_Unnamed 64719
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSNoRowExists 64720
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSCursorInvalid 64721
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabCannotAttach 64722
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDataSetBusy 64723
#define FireDAC_Stan_ResStrs_S_FD_ASADBToolNotFound 64724
#define FireDAC_Stan_ResStrs_S_FD_MSSQLFSNoTx 64725
#define FireDAC_Stan_ResStrs_S_FD_MSSQLFSNoPath 64726
#define FireDAC_Stan_ResStrs_S_FD_MSSQLFSIOError 64727
#define FireDAC_Stan_ResStrs_S_FD_MSSQLQNSubError 64728
#define FireDAC_Stan_ResStrs_S_FD_MongoError 64729
#define FireDAC_Stan_ResStrs_S_FD_MongoBadURI 64730
#define FireDAC_Stan_ResStrs_S_FD_MongoDocReadOnly 64731
#define FireDAC_Stan_ResStrs_S_FD_MongoFailedInitBSON 64732
#define FireDAC_Stan_ResStrs_S_FD_MongoBulkError 64733
#define FireDAC_Stan_ResStrs_S_FD_MongoCursorError 64734
#define FireDAC_Stan_ResStrs_S_FD_MongoExecuteError 64735
#define FireDAC_Stan_ResStrs_S_FD_PgMultiDimArrNotSup 64736
#define FireDAC_Stan_ResStrs_S_FD_PgUnsupArrValueTypeNotSup 64737
#define FireDAC_Stan_ResStrs_S_FD_PgArrIndexOutOfBound 64738
#define FireDAC_Stan_ResStrs_S_FD_PgCannotDescribeType 64739
#define FireDAC_Stan_ResStrs_S_FD_PgIsNotArray 64740
#define FireDAC_Stan_ResStrs_S_FD_PgUnsupTextType 64741
#define FireDAC_Stan_ResStrs_S_FD_SQLiteInitFailed 64742
#define FireDAC_Stan_ResStrs_S_FD_SQLiteDBNotFound 64743
#define FireDAC_Stan_ResStrs_S_FD_SQLitePwdInvalid 64744
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabInvalidArgs 64745
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSNotFoundOrEmpty 64746
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSNotSupported 64747
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSSPNotFound 64748
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSDataModFailed 64749
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSRowidInvalid 64750
#define FireDAC_Stan_ResStrs_S_FD_SQLiteVTabDSChangedOrFreed 64751
#define FireDAC_Stan_ResStrs_S_FD_OraNoCursorParams 64752
#define FireDAC_Stan_ResStrs_S_FD_OraNotInstalled 64753
#define FireDAC_Stan_ResStrs_S_FD_OraBadVersion 64754
#define FireDAC_Stan_ResStrs_S_FD_OraBadVarType 64755
#define FireDAC_Stan_ResStrs_S_FD_OraTooLongGTRID 64756
#define FireDAC_Stan_ResStrs_S_FD_OraTooLongBQUAL 64757
#define FireDAC_Stan_ResStrs_S_FD_OraTooLongTXName 64758
#define FireDAC_Stan_ResStrs_S_FD_OraDBTNManyClBraces 64759
#define FireDAC_Stan_ResStrs_S_FD_OraNotPLSQLObj 64760
#define FireDAC_Stan_ResStrs_S_FD_OraNotPackageProc 64761
#define FireDAC_Stan_ResStrs_S_FD_OraBadTableType 64762
#define FireDAC_Stan_ResStrs_S_FD_OraUnNamedRecParam 64763
#define FireDAC_Stan_ResStrs_S_FD_OraCantConvNum 64764
#define FireDAC_Stan_ResStrs_S_FD_OraPipeAlertToMany 64765
#define FireDAC_Stan_ResStrs_S_FD_IBTraceIsActive 64766
#define FireDAC_Stan_ResStrs_S_FD_PgProcNotFound 64767
#define FireDAC_Stan_ResStrs_S_FD_ScrVarMissedCloseBrace 64768
#define FireDAC_Stan_ResStrs_S_FD_ScrVarUnsupType 64769
#define FireDAC_Stan_ResStrs_S_FD_ScrNotLogged 64770
#define FireDAC_Stan_ResStrs_S_FD_ScrNoCmds 64771
#define FireDAC_Stan_ResStrs_S_FD_ScrNoScript 64772
#define FireDAC_Stan_ResStrs_S_FD_DBXParMBNotEmpty 64773
#define FireDAC_Stan_ResStrs_S_FD_DBXNoDriverCfg 64774
#define FireDAC_Stan_ResStrs_S_FD_MySQLBadVersion 64775
#define FireDAC_Stan_ResStrs_S_FD_MySQLCantSetPort 64776
#define FireDAC_Stan_ResStrs_S_FD_MySQLBadParams 64777
#define FireDAC_Stan_ResStrs_S_FD_MySQLCantInitEmbeddedServer 64778
#define FireDAC_Stan_ResStrs_S_FD_MySQLFieldDataTypeUnsup 64779
#define FireDAC_Stan_ResStrs_S_FD_OdbcVarDataTypeUnsup 64780
#define FireDAC_Stan_ResStrs_S_FD_OraNoCursor 64781
#define FireDAC_Stan_ResStrs_S_FD_OraCantSetCharset 64782
#define FireDAC_Stan_ResStrs_S_FD_OraCantAssFILE 64783
#define FireDAC_Stan_ResStrs_S_FD_StanStrgCantReadProp 64784
#define FireDAC_Stan_ResStrs_S_FD_StanStrgCantReadObj 64785
#define FireDAC_Stan_ResStrs_S_FD_StanStrgCantReadCDATA 64786
#define FireDAC_Stan_ResStrs_S_FD_StanStrgDictOverflow 64787
#define FireDAC_Stan_ResStrs_S_FD_StanStrgClassUnknown 64788
#define FireDAC_Stan_ResStrs_S_FD_StanStrgUnknownFmt 64789
#define FireDAC_Stan_ResStrs_S_FD_StanStrgFileError 64790
#define FireDAC_Stan_ResStrs_S_FD_StanStrgInvDIntFmt 64791
#define FireDAC_Stan_ResStrs_S_FD_StanStrgInvJSONFmt 64792
#define FireDAC_Stan_ResStrs_S_FD_ScrCantExecHostCmd 64793
#define FireDAC_Stan_ResStrs_S_FD_ScrStrSize1 64794
#define FireDAC_Stan_ResStrs_S_FD_ScrStrNotAlphaNum 64795
#define FireDAC_Stan_ResStrs_S_FD_ScrSetArgInvalid 64796
#define FireDAC_Stan_ResStrs_S_FD_ScrInvalidSyntax 64797
#define FireDAC_Stan_ResStrs_S_FD_ScrAccMustSpecVar 64798
#define FireDAC_Stan_ResStrs_S_FD_ScrDefReqValue 64799
#define FireDAC_Stan_ResStrs_S_FD_DPNoSQLBatch 64800
#define FireDAC_Stan_ResStrs_S_FD_DPNoTxtFlds 64801
#define FireDAC_Stan_ResStrs_S_FD_DPNoJsonDest 64802
#define FireDAC_Stan_ResStrs_S_FD_DPNoJsonSrc 64803
#define FireDAC_Stan_ResStrs_S_FD_DPNoJsonFld 64804
#define FireDAC_Stan_ResStrs_S_FD_DPJsonFldDup 64805
#define FireDAC_Stan_ResStrs_S_FD_DPMapUndefined 64806
#define FireDAC_Stan_ResStrs_S_FD_StanTimeout 64807
#define FireDAC_Stan_ResStrs_S_FD_StanCantGetBlob 64808
#define FireDAC_Stan_ResStrs_S_FD_StanCantNonblocking 64809
#define FireDAC_Stan_ResStrs_S_FD_StanMacroNotFound 64810
#define FireDAC_Stan_ResStrs_S_FD_StanBadParRowIndex 64811
#define FireDAC_Stan_ResStrs_S_FD_StanPoolTooManyItems 64812
#define FireDAC_Stan_ResStrs_S_FD_StanHowToReg 64813
#define FireDAC_Stan_ResStrs_S_FD_StanHowToInc 64814
#define FireDAC_Stan_ResStrs_S_FD_StanStrgInvBinFmt 64815
#define FireDAC_Stan_ResStrs_S_FD_ClntLocalSQLMisuse 64816
#define FireDAC_Stan_ResStrs_S_FD_ClntWrongIndex 64817
#define FireDAC_Stan_ResStrs_S_FD_ClntDSNameEmpty 64818
#define FireDAC_Stan_ResStrs_S_FD_ClntDSNameNotUnique 64819
#define FireDAC_Stan_ResStrs_S_FD_ClntDataSetParamIncompat 64820
#define FireDAC_Stan_ResStrs_S_FD_DPNoTxtFld 64821
#define FireDAC_Stan_ResStrs_S_FD_DPNoSrcDS 64822
#define FireDAC_Stan_ResStrs_S_FD_DPNoDestDS 64823
#define FireDAC_Stan_ResStrs_S_FD_DPNoTxtDest 64824
#define FireDAC_Stan_ResStrs_S_FD_DPNoTxtSrc 64825
#define FireDAC_Stan_ResStrs_S_FD_DPBadFixedSize 64826
#define FireDAC_Stan_ResStrs_S_FD_DPTxtFldDup 64827
#define FireDAC_Stan_ResStrs_S_FD_DPBadTextFmt 64828
#define FireDAC_Stan_ResStrs_S_FD_DPSrcUndefined 64829
#define FireDAC_Stan_ResStrs_S_FD_DPDestNoKeyFields 64830
#define FireDAC_Stan_ResStrs_S_FD_DPNoSQLTab 64831
#define FireDAC_Stan_ResStrs_S_FD_ClntSessMBInactive 64832
#define FireDAC_Stan_ResStrs_S_FD_ClntSessMBActive 64833
#define FireDAC_Stan_ResStrs_S_FD_ClntDbDupName 64834
#define FireDAC_Stan_ResStrs_S_FD_ClntDbMBInactive 64835
#define FireDAC_Stan_ResStrs_S_FD_ClntDbMBActive 64836
#define FireDAC_Stan_ResStrs_S_FD_ClntDbLoginAborted 64837
#define FireDAC_Stan_ResStrs_S_FD_ClntDbCantConnPooled 64838
#define FireDAC_Stan_ResStrs_S_FD_ClntDBNotFound 64839
#define FireDAC_Stan_ResStrs_S_FD_ClntAdaptMBActive 64840
#define FireDAC_Stan_ResStrs_S_FD_ClntAdaptMBInactive 64841
#define FireDAC_Stan_ResStrs_S_FD_ClntNotCachedUpdates 64842
#define FireDAC_Stan_ResStrs_S_FD_ClntDbNotDefined 64843
#define FireDAC_Stan_ResStrs_S_FD_ClntDbMBOnline 64844
#define FireDAC_Stan_ResStrs_S_FD_ClntCantShareAdapt 64845
#define FireDAC_Stan_ResStrs_S_FD_ClntConnNotMatch 64846
#define FireDAC_Stan_ResStrs_S_FD_ClntPKNotFound 64847
#define FireDAC_Stan_ResStrs_S_FD_AccUnknownOleError 64848
#define FireDAC_Stan_ResStrs_S_FD_AccUnsupParamObjValue 64849
#define FireDAC_Stan_ResStrs_S_FD_AccUnsupColumnType 64850
#define FireDAC_Stan_ResStrs_S_FD_AccLongDataStream 64851
#define FireDAC_Stan_ResStrs_S_FD_AccArrayDMLWithIntStr 64852
#define FireDAC_Stan_ResStrs_S_FD_SvcLinkMBSet 64853
#define FireDAC_Stan_ResStrs_S_FD_SvcMBActive 64854
#define FireDAC_Stan_ResStrs_S_FD_SvcCannotUninstall 64855
#define FireDAC_Stan_ResStrs_S_FD_DAptRecordIsDeleted 64856
#define FireDAC_Stan_ResStrs_S_FD_DAptRecordIsDeletedReasons 64857
#define FireDAC_Stan_ResStrs_S_FD_DAptNoSelectCmd 64858
#define FireDAC_Stan_ResStrs_S_FD_DAptApplyUpdateFailed 64859
#define FireDAC_Stan_ResStrs_S_FD_DAptCantEdit 64860
#define FireDAC_Stan_ResStrs_S_FD_DAptCantInsert 64861
#define FireDAC_Stan_ResStrs_S_FD_DAptCantDelete 64862
#define FireDAC_Stan_ResStrs_S_FD_ClntSessMBSingle 64863
#define FireDAC_Stan_ResStrs_S_FD_AccUpdateTabUndefined 64864
#define FireDAC_Stan_ResStrs_S_FD_AccNameHasErrors 64865
#define FireDAC_Stan_ResStrs_S_FD_AccEscapeBadSyntax 64866
#define FireDAC_Stan_ResStrs_S_FD_AccShutdownTO 64867
#define FireDAC_Stan_ResStrs_S_FD_AccParTypeUnknown 64868
#define FireDAC_Stan_ResStrs_S_FD_AccParDataMapNotSup 64869
#define FireDAC_Stan_ResStrs_S_FD_AccParDefChanged 64870
#define FireDAC_Stan_ResStrs_S_FD_AccMetaInfoNotDefined 64871
#define FireDAC_Stan_ResStrs_S_FD_AccCantAssignTxIntf 64872
#define FireDAC_Stan_ResStrs_S_FD_AccParSetChanged 64873
#define FireDAC_Stan_ResStrs_S_FD_AccDataToLarge 64874
#define FireDAC_Stan_ResStrs_S_FD_AccDbNotExists 64875
#define FireDAC_Stan_ResStrs_S_FD_AccClassNotRegistered 64876
#define FireDAC_Stan_ResStrs_S_FD_AccSysClassNotRegistered 64877
#define FireDAC_Stan_ResStrs_S_FD_AccUnrecognizedDbFormat 64878
#define FireDAC_Stan_ResStrs_S_FD_AccNotValidPassword 64879
#define FireDAC_Stan_ResStrs_S_FD_AccCmdMBOpen4Fetch 64880
#define FireDAC_Stan_ResStrs_S_FD_AccExactMismatch 64881
#define FireDAC_Stan_ResStrs_S_FD_AccMetaInfoMismatch 64882
#define FireDAC_Stan_ResStrs_S_FD_AccCantLoadLibrary 64883
#define FireDAC_Stan_ResStrs_S_FD_AccCantLoadLibraryHint 64884
#define FireDAC_Stan_ResStrs_S_FD_AccCantGetLibraryEntry 64885
#define FireDAC_Stan_ResStrs_S_FD_AccSrvMBDisConnected 64886
#define FireDAC_Stan_ResStrs_S_FD_AccToManyLogins 64887
#define FireDAC_Stan_ResStrs_S_FD_AccDrvMngrMB 64888
#define FireDAC_Stan_ResStrs_S_FD_AccPrepMissed 64889
#define FireDAC_Stan_ResStrs_S_FD_AccPrepTooLongIdent 64890
#define FireDAC_Stan_ResStrs_S_FD_AccParamArrayMismatch 64891
#define FireDAC_Stan_ResStrs_S_FD_AccAsyncOperInProgress 64892
#define FireDAC_Stan_ResStrs_S_FD_AccEscapeIsnotSupported 64893
#define FireDAC_Stan_ResStrs_S_FD_AccMetaInfoReset 64894
#define FireDAC_Stan_ResStrs_S_FD_AccWhereIsEmpty 64895
#define FireDAC_Stan_ResStrs_S_FD_DefDupName 64896
#define FireDAC_Stan_ResStrs_S_FD_AccSrvNotFound 64897
#define FireDAC_Stan_ResStrs_S_FD_AccCannotReleaseDrv 64898
#define FireDAC_Stan_ResStrs_S_FD_AccSrcNotFoundExists 64899
#define FireDAC_Stan_ResStrs_S_FD_AccSrcNotFoundNotExists 64900
#define FireDAC_Stan_ResStrs_S_FD_AccSrvNotDefined 64901
#define FireDAC_Stan_ResStrs_S_FD_AccSrvMBConnected 64902
#define FireDAC_Stan_ResStrs_S_FD_AccCapabilityNotSup 64903
#define FireDAC_Stan_ResStrs_S_FD_AccTxMBActive 64904
#define FireDAC_Stan_ResStrs_S_FD_AccTxMBInActive 64905
#define FireDAC_Stan_ResStrs_S_FD_AccCantChngCommandState 64906
#define FireDAC_Stan_ResStrs_S_FD_AccCommandMBFilled 64907
#define FireDAC_Stan_ResStrs_S_FD_AccEscapeEmptyName 64908
#define FireDAC_Stan_ResStrs_S_FD_AccCmdMHRowSet 64909
#define FireDAC_Stan_ResStrs_S_FD_AccCmdMBPrepared 64910
#define FireDAC_Stan_ResStrs_S_FD_AccCantExecCmdWithRowSet 64911
#define FireDAC_Stan_ResStrs_S_FD_DSAggNotFound 64912
#define FireDAC_Stan_ResStrs_S_FD_DSIndNotComplete 64913
#define FireDAC_Stan_ResStrs_S_FD_DSAggNotComplete 64914
#define FireDAC_Stan_ResStrs_S_FD_DSCantUnidir 64915
#define FireDAC_Stan_ResStrs_S_FD_DSIncompatBmkFields 64916
#define FireDAC_Stan_ResStrs_S_FD_DSCantEdit 64917
#define FireDAC_Stan_ResStrs_S_FD_DSCantInsert 64918
#define FireDAC_Stan_ResStrs_S_FD_DSCantDelete 64919
#define FireDAC_Stan_ResStrs_S_FD_DSFieldNotFound 64920
#define FireDAC_Stan_ResStrs_S_FD_DSCantOffline 64921
#define FireDAC_Stan_ResStrs_S_FD_DSCantOffCachedUpdates 64922
#define FireDAC_Stan_ResStrs_S_FD_DefCircular 64923
#define FireDAC_Stan_ResStrs_S_FD_DefRO 64924
#define FireDAC_Stan_ResStrs_S_FD_DefCantMakePers 64925
#define FireDAC_Stan_ResStrs_S_FD_DefAlreadyLoaded 64926
#define FireDAC_Stan_ResStrs_S_FD_DefNotExists 64927
#define FireDAC_Stan_ResStrs_S_FD_ExprNoRParenOrComma 64928
#define FireDAC_Stan_ResStrs_S_FD_ExprNoRParen 64929
#define FireDAC_Stan_ResStrs_S_FD_ExprEmptyInList 64930
#define FireDAC_Stan_ResStrs_S_FD_ExprExpected 64931
#define FireDAC_Stan_ResStrs_S_FD_ExprNoArith 64932
#define FireDAC_Stan_ResStrs_S_FD_ExprBadScope 64933
#define FireDAC_Stan_ResStrs_S_FD_ExprEmpty 64934
#define FireDAC_Stan_ResStrs_S_FD_ExprEvalError 64935
#define FireDAC_Stan_ResStrs_S_FD_DSNoBookmark 64936
#define FireDAC_Stan_ResStrs_S_FD_DSViewNotSorted 64937
#define FireDAC_Stan_ResStrs_S_FD_DSNoAdapter 64938
#define FireDAC_Stan_ResStrs_S_FD_DSNoNestedMasterSource 64939
#define FireDAC_Stan_ResStrs_S_FD_DSCircularDataLink 64940
#define FireDAC_Stan_ResStrs_S_FD_DSRefreshError 64941
#define FireDAC_Stan_ResStrs_S_FD_DSNoDataTable 64942
#define FireDAC_Stan_ResStrs_S_FD_DSIndNotFound 64943
#define FireDAC_Stan_ResStrs_S_FD_RecLocked 64944
#define FireDAC_Stan_ResStrs_S_FD_RecNotLocked 64945
#define FireDAC_Stan_ResStrs_S_FD_TypeIncompat 64946
#define FireDAC_Stan_ResStrs_S_FD_ValueOutOfRange 64947
#define FireDAC_Stan_ResStrs_S_FD_CantMerge 64948
#define FireDAC_Stan_ResStrs_S_FD_ColumnDoesnotFound 64949
#define FireDAC_Stan_ResStrs_S_FD_ExprTermination 64950
#define FireDAC_Stan_ResStrs_S_FD_ExprMBAgg 64951
#define FireDAC_Stan_ResStrs_S_FD_ExprCantAgg 64952
#define FireDAC_Stan_ResStrs_S_FD_ExprTypeMis 64953
#define FireDAC_Stan_ResStrs_S_FD_ExprIncorrect 64954
#define FireDAC_Stan_ResStrs_S_FD_InvalidKeywordUse 64955
#define FireDAC_Stan_ResStrs_S_FD_ExprInvalidChar 64956
#define FireDAC_Stan_ResStrs_S_FD_ExprNameError 64957
#define FireDAC_Stan_ResStrs_S_FD_ExprStringError 64958
#define FireDAC_Stan_ResStrs_S_FD_ExprNoLParen 64959
#define FireDAC_Stan_ResStrs_S_FD_CantSetParentRow 64960
#define FireDAC_Stan_ResStrs_S_FD_RowIsNotNested 64961
#define FireDAC_Stan_ResStrs_S_FD_ColumnIsNotRef 64962
#define FireDAC_Stan_ResStrs_S_FD_ColumnIsNotSetRef 64963
#define FireDAC_Stan_ResStrs_S_FD_OperCNBPerfInState 64964
#define FireDAC_Stan_ResStrs_S_FD_CantSetUpdReg 64965
#define FireDAC_Stan_ResStrs_S_FD_TooManyAggs 64966
#define FireDAC_Stan_ResStrs_S_FD_GrpLvlExceeds 64967
#define FireDAC_Stan_ResStrs_S_FD_VarLenDataMismatch 64968
#define FireDAC_Stan_ResStrs_S_FD_BadForeignKey 64969
#define FireDAC_Stan_ResStrs_S_FD_BadUniqueKey 64970
#define FireDAC_Stan_ResStrs_S_FD_CantChngColType 64971
#define FireDAC_Stan_ResStrs_S_FD_BadRelation 64972
#define FireDAC_Stan_ResStrs_S_FD_CantCreateParentView 64973
#define FireDAC_Stan_ResStrs_S_FD_CantChangeTableStruct 64974
#define FireDAC_Stan_ResStrs_S_FD_FoundCascadeLoop 64975
#define FireDAC_Stan_ResStrs_S_FD_CantCreateChildView 64976
#define FireDAC_Stan_ResStrs_S_FD_RowCantBeDeleted 64977
#define FireDAC_Stan_ResStrs_S_FD_ColMBBLob 64978
#define FireDAC_Stan_ResStrs_S_FD_FixedLenDataMismatch 64979
#define FireDAC_Stan_ResStrs_S_FD_RowNotInEditableState 64980
#define FireDAC_Stan_ResStrs_S_FD_ColIsReadOnly 64981
#define FireDAC_Stan_ResStrs_S_FD_RowCantBeInserted 64982
#define FireDAC_Stan_ResStrs_S_FD_RowColMBNotNull 64983
#define FireDAC_Stan_ResStrs_S_FD_DuplicateRows 64984
#define FireDAC_Stan_ResStrs_S_FD_NoMasterRow 64985
#define FireDAC_Stan_ResStrs_S_FD_HasChildRows 64986
#define FireDAC_Stan_ResStrs_S_FD_CantCompareRows 64987
#define FireDAC_Stan_ResStrs_S_FD_ConvIsNotSupported 64988
#define FireDAC_Stan_ResStrs_S_FD_ColIsNotSearchable 64989
#define FireDAC_Stan_ResStrs_S_FD_RowMayHaveSingleParent 64990
#define FireDAC_Stan_ResStrs_S_FD_CantOperateInvObj 64991
#define Data_DBConsts_SExprNoAggOnCalcs 64992
#define Data_DBConsts_SRecordChanged 64993
#define Data_DBConsts_SDataSetUnidirectional 64994
#define Data_DBConsts_SUnassignedVar 64995
#define Data_DBConsts_SRecordNotFound 64996
#define Data_DBConsts_SBcdOverflow 64997
#define Data_DBConsts_SInvalidBcdValue 64998
#define Data_DBConsts_SCouldNotParseTimeStamp 64999
#define Data_DBConsts_SInvalidSqlTimeStamp 65000
#define FireDAC_Stan_ResStrs_S_FD_LoginDialogDefCaption 65001
#define FireDAC_Stan_ResStrs_S_FD_DuplicatedName 65002
#define FireDAC_Stan_ResStrs_S_FD_NameNotFound 65003
#define FireDAC_Stan_ResStrs_S_FD_ColTypeUndefined 65004
#define FireDAC_Stan_ResStrs_S_FD_NoColsDefined 65005
#define FireDAC_Stan_ResStrs_S_FD_CheckViolated 65006
#define FireDAC_Stan_ResStrs_S_FD_CantBeginEdit 65007
#define Data_DBConsts_SExprTypeMis 65008
#define Data_DBConsts_SExprBadScope 65009
#define Data_DBConsts_SExprNoArith 65010
#define Data_DBConsts_SExprNotAgg 65011
#define Data_DBConsts_SExprBadConst 65012
#define Data_DBConsts_SExprNoAggFilter 65013
#define Data_DBConsts_SExprEmptyInList 65014
#define Data_DBConsts_SInvalidKeywordUse 65015
#define Data_DBConsts_STextFalse 65016
#define Data_DBConsts_STextTrue 65017
#define Data_DBConsts_SParameterNotFound 65018
#define Data_DBConsts_SInvalidVersion 65019
#define Data_DBConsts_SBadFieldType 65020
#define Data_DBConsts_SAggActive 65021
#define Data_DBConsts_SProviderSQLNotSupported 65022
#define Data_DBConsts_SProviderExecuteNotSupported 65023
#define Data_DBConsts_SDataSetEmpty 65024
#define Data_DBConsts_SDataSetReadOnly 65025
#define Data_DBConsts_SNestedDataSetClass 65026
#define Data_DBConsts_SExprTermination 65027
#define Data_DBConsts_SExprNameError 65028
#define Data_DBConsts_SExprStringError 65029
#define Data_DBConsts_SExprInvalidChar 65030
#define Data_DBConsts_SExprNoLParen 65031
#define Data_DBConsts_SExprNoRParen 65032
#define Data_DBConsts_SExprNoRParenOrComma 65033
#define Data_DBConsts_SExprExpected 65034
#define Data_DBConsts_SExprBadField 65035
#define Data_DBConsts_SExprBadNullTest 65036
#define Data_DBConsts_SExprRangeError 65037
#define Data_DBConsts_SExprIncorrect 65038
#define Data_DBConsts_SExprNothing 65039
#define Data_DBConsts_SFieldReadOnly 65040
#define Data_DBConsts_SFieldIndexError 65041
#define Data_DBConsts_SNoFieldIndexes 65042
#define Data_DBConsts_SNotIndexField 65043
#define Data_DBConsts_SIndexFieldMissing 65044
#define Data_DBConsts_SDuplicateIndexName 65045
#define Data_DBConsts_SNoIndexForFields 65046
#define Data_DBConsts_SIndexNotFound 65047
#define Data_DBConsts_SDBDuplicateName 65048
#define Data_DBConsts_SCircularDataLink 65049
#define Data_DBConsts_SLookupInfoError 65050
#define Data_DBConsts_SDataSourceChange 65051
#define Data_DBConsts_SNoNestedMasterSource 65052
#define Data_DBConsts_SDataSetOpen 65053
#define Data_DBConsts_SNotEditing 65054
#define Data_DBConsts_SDataSetClosed 65055
#define Data_DBConsts_SDuplicateFieldName 65056
#define Data_DBConsts_SFieldNotFound 65057
#define Data_DBConsts_SFieldAccessError 65058
#define Data_DBConsts_SFieldValueError 65059
#define Data_DBConsts_SFieldRangeError 65060
#define Data_DBConsts_SBcdFieldRangeError 65061
#define Data_DBConsts_SInvalidIntegerValue 65062
#define Data_DBConsts_SInvalidBoolValue 65063
#define Data_DBConsts_SInvalidFloatValue 65064
#define Data_DBConsts_SFieldTypeMismatch 65065
#define Data_DBConsts_SFieldSizeMismatch 65066
#define Data_DBConsts_SInvalidVarByteArray 65067
#define Data_DBConsts_SFieldOutOfRange 65068
#define Data_DBConsts_SFieldRequired 65069
#define Data_DBConsts_SDataSetMissing 65070
#define Data_DBConsts_SInvalidCalcType 65071
#define Vcl_Imaging_pnglang_EPNGCannotAssignChunkText 65072
#define Vcl_Imaging_pnglang_EPNGUnexpectedEndText 65073
#define Vcl_Imaging_pnglang_EPNGNoImageDataText 65074
#define Vcl_Imaging_pnglang_EPNGCannotAddChunkText 65075
#define Vcl_Imaging_pnglang_EPNGCannotAddInvalidImageText 65076
#define Vcl_Imaging_pnglang_EPNGCouldNotLoadResourceText 65077
#define Vcl_Imaging_pnglang_EPNGOutMemoryText 65078
#define Vcl_Imaging_pnglang_EPNGCannotChangeTransparentText 65079
#define Vcl_Imaging_pnglang_EPNGHeaderNotPresentText 65080
#define Vcl_Imaging_pnglang_EInvalidNewSize 65081
#define Vcl_Imaging_pnglang_EInvalidSpec 65082
#define Vcl_Imaging_pnglang_EPNGInvalidBitDepthText 65083
#define Data_DBConsts_SInvalidFieldSize 65084
#define Data_DBConsts_SInvalidFieldKind 65085
#define Data_DBConsts_SUnknownFieldType 65086
#define Data_DBConsts_SFieldNameMissing 65087
#define Vcl_Imaging_JConsts_sChangeJPGSize 65088
#define Vcl_Imaging_JConsts_sJPEGError 65089
#define Vcl_Imaging_JConsts_sJPEGImageFile 65090
#define Vcl_Imaging_pnglang_EPngInvalidCRCText 65091
#define Vcl_Imaging_pnglang_EPNGInvalidIHDRText 65092
#define Vcl_Imaging_pnglang_EPNGMissingMultipleIDATText 65093
#define Vcl_Imaging_pnglang_EPNGZLIBErrorText 65094
#define Vcl_Imaging_pnglang_EPNGInvalidPaletteText 65095
#define Vcl_Imaging_pnglang_EPNGInvalidFileHeaderText 65096
#define Vcl_Imaging_pnglang_EPNGIHDRNotFirstText 65097
#define Vcl_Imaging_pnglang_EPNGSizeExceedsText 65098
#define Vcl_Imaging_pnglang_EPNGUnknownPalEntryText 65099
#define Vcl_Imaging_pnglang_EPNGUnknownCriticalChunkText 65100
#define Vcl_Imaging_pnglang_EPNGUnknownCompressionText 65101
#define Vcl_Imaging_pnglang_EPNGUnknownInterlaceText 65102
#define Vcl_Imaging_pnglang_EPNGUnknownColorTypeText 65103
#define Vcl_Consts_SStyleNotRegistered 65104
#define Vcl_Consts_SStyleUnregisterError 65105
#define Vcl_Consts_SStyleNotRegisteredNoName 65106
#define Vcl_Consts_sBeginInvokeNoHandle 65107
#define System_Win_ComConst_SOleError 65108
#define System_Win_ComConst_SNoMethod 65109
#define System_Win_ComConst_SVarNotObject 65110
#define System_Win_ComConst_STooManyParams 65111
#define Vcl_ComStrs_sTabFailClear 65112
#define Vcl_ComStrs_sTabFailDelete 65113
#define Vcl_ComStrs_sTabFailRetrieve 65114
#define Vcl_ComStrs_sTabFailGetObject 65115
#define Vcl_ComStrs_sTabFailSet 65116
#define Vcl_ComStrs_sTabFailSetObject 65117
#define Vcl_ComStrs_sTabMustBeMultiLine 65118
#define Vcl_ComStrs_sPageIndexError 65119
#define Vcl_Consts_SWindowsVistaRequired 65120
#define Vcl_Consts_STaskDlgButtonCaption 65121
#define Vcl_Consts_STaskDlgRadioButtonCaption 65122
#define Vcl_Consts_SInvalidTaskDlgButtonCaption 65123
#define Vcl_Consts_SStyleLoadError 65124
#define Vcl_Consts_SStyleLoadErrors 65125
#define Vcl_Consts_SStyleRegisterError 65126
#define Vcl_Consts_SStyleClassRegisterError 65127
#define Vcl_Consts_SStyleNotFound 65128
#define Vcl_Consts_SStyleClassNotFound 65129
#define Vcl_Consts_SStyleInvalidHandle 65130
#define Vcl_Consts_SStyleFormatError 65131
#define Vcl_Consts_SStyleHookClassRegistered 65132
#define Vcl_Consts_SStyleHookClassNotRegistered 65133
#define Vcl_Consts_SStyleInvalidParameter 65134
#define Vcl_Consts_SStyleFeatureNotSupported 65135
#define Vcl_Consts_SInvalidPrinterOp 65136
#define Vcl_Consts_SNoDefaultPrinter 65137
#define Vcl_Consts_SDuplicateMenus 65138
#define Vcl_Consts_SDockedCtlNeedsName 65139
#define Vcl_Consts_SDockTreeRemoveError 65140
#define Vcl_Consts_SDockZoneNotFound 65141
#define Vcl_Consts_SDockZoneHasNoCtl 65142
#define Vcl_Consts_SDockZoneVersionConflict 65143
#define Vcl_Consts_SPromptArrayTooShort 65144
#define Vcl_Consts_SPromptArrayEmpty 65145
#define Vcl_Consts_SUsername 65146
#define Vcl_Consts_SPassword 65147
#define Vcl_Consts_SDomain 65148
#define Vcl_Consts_SLogin 65149
#define Vcl_Consts_STrayIconRemoveError 65150
#define Vcl_Consts_SPageControlNotSet 65151
#define Vcl_Consts_SmkcLeft 65152
#define Vcl_Consts_SmkcUp 65153
#define Vcl_Consts_SmkcRight 65154
#define Vcl_Consts_SmkcDown 65155
#define Vcl_Consts_SmkcIns 65156
#define Vcl_Consts_SmkcDel 65157
#define Vcl_Consts_SmkcShift 65158
#define Vcl_Consts_SmkcCtrl 65159
#define Vcl_Consts_SmkcAlt 65160
#define Vcl_Consts_SOutOfRange 65161
#define Vcl_Consts_sAllFilter 65162
#define Vcl_Consts_SInsertLineError 65163
#define Vcl_Consts_SInvalidClipFmt 65164
#define Vcl_Consts_SIconToClipboard 65165
#define Vcl_Consts_SCannotOpenClipboard 65166
#define Vcl_Consts_SInvalidMemoSize 65167
#define Vcl_Consts_SMsgDlgAbort 65168
#define Vcl_Consts_SMsgDlgRetry 65169
#define Vcl_Consts_SMsgDlgIgnore 65170
#define Vcl_Consts_SMsgDlgAll 65171
#define Vcl_Consts_SMsgDlgNoToAll 65172