-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsendgrid.drc
1018 lines (1015 loc) · 58.2 KB
/
sendgrid.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
/* VER150
Generated by the Borland 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 IdResourceStringsSSPI_RSHTTPSSPINoPkgInfoSpecified 65024
#define IdResourceStringsSSPI_RSHTTPSSPINoCredentialHandle 65025
#define IdResourceStringsSSPI_RSHTTPSSPICanNotChangeCredentials 65026
#define IdResourceStringsSSPI_RSHTTPSSPIUnknwonCredentialUse 65027
#define IdResourceStringsSSPI_RSHTTPSSPIDoAuquireCredentialHandle 65028
#define IdResourceStringsSSPI_RSHTTPSSPICompleteTokenNotSupported 65029
#define IdResourceStringsSSPI_RSHTTPSSPICrossRealmDeligationFailure 65040
#define IdResourceStringsSSPI_RSHTTPSSPIRevocationOfflineKDC 65041
#define IdResourceStringsSSPI_RSHTTPSSPICAUntrustedKDC 65042
#define IdResourceStringsSSPI_RSHTTPSSPIKDCCertExpired 65043
#define IdResourceStringsSSPI_RSHTTPSSPIKDCCertRevoked 65044
#define IdResourceStringsSSPI_RSHTTPSSPISignatureNeeded 65045
#define IdResourceStringsSSPI_RSHTTPSSPIInvalidParameter 65046
#define IdResourceStringsSSPI_RSHTTPSSPIDeligationPolicy 65047
#define IdResourceStringsSSPI_RSHTTPSSPIPolicyNTLMOnly 65048
#define IdResourceStringsSSPI_RSHTTPSSPINoRenegotiation 65049
#define IdResourceStringsSSPI_RSHTTPSSPINoContext 65050
#define IdResourceStringsSSPI_RSHTTPSSPIPKU2UCertFailure 65051
#define IdResourceStringsSSPI_RSHTTPSSPIMutualAuthFailed 65052
#define IdResourceStringsSSPI_RSHTTPSSPIUnknwonError 65053
#define IdResourceStringsSSPI_RSHTTPSSPIErrorMsg 65054
#define IdResourceStringsSSPI_RSHTTPSSPIInterfaceInitFailed 65055
#define IdResourceStringsSSPI_RSHTTPSSPIKDCInvalidRequest 65056
#define IdResourceStringsSSPI_RSHTTPSSPIKDCUnableToRefer 65057
#define IdResourceStringsSSPI_RSHTTPSSPIKDCETypeUnknown 65058
#define IdResourceStringsSSPI_RSHTTPSSPIUnsupPreauth 65059
#define IdResourceStringsSSPI_RSHTTPSSPIDeligationReq 65060
#define IdResourceStringsSSPI_RSHTTPSSPIBadBindings 65061
#define IdResourceStringsSSPI_RSHTTPSSPIMultipleAccounts 65062
#define IdResourceStringsSSPI_RSHTTPSSPINoKerbKey 65063
#define IdResourceStringsSSPI_RSHTTPSSPICertWrongUsage 65064
#define IdResourceStringsSSPI_RSHTTPSSPIDowngradeDetected 65065
#define IdResourceStringsSSPI_RSHTTPSSPISmartcardCertRevoked 65066
#define IdResourceStringsSSPI_RSHTTPSSPIIssuingCAUntrusted 65067
#define IdResourceStringsSSPI_RSHTTPSSPIRevocationOffline 65068
#define IdResourceStringsSSPI_RSHTTPSSPIPKInitClientFailure 65069
#define IdResourceStringsSSPI_RSHTTPSSPISmartcardExpired 65070
#define IdResourceStringsSSPI_RSHTTPSSPINoS4UProtSupport 65071
#define IdResourceStringsSSPI_RSHTTPSSPIDecryptionFailure 65072
#define IdResourceStringsSSPI_RSHTTPSSPIAlgorithmMismatch 65073
#define IdResourceStringsSSPI_RSHTTPSSPISecurityQOSFailure 65074
#define IdResourceStringsSSPI_RSHTTPSSPISecCtxWasDelBeforeUpdated 65075
#define IdResourceStringsSSPI_RSHTTPSSPIClientNoTGTReply 65076
#define IdResourceStringsSSPI_RSHTTPSSPILocalNoIPAddr 65077
#define IdResourceStringsSSPI_RSHTTPSSPIWrongCredHandle 65078
#define IdResourceStringsSSPI_RSHTTPSSPICryptoSysInvalid 65079
#define IdResourceStringsSSPI_RSHTTPSSPIMaxTicketRef 65080
#define IdResourceStringsSSPI_RSHTTPSSPIMustBeKDC 65081
#define IdResourceStringsSSPI_RSHTTPSSPIStrongCryptoNotSupported 65082
#define IdResourceStringsSSPI_RSHTTPSSPIKDCReplyTooManyPrincipals 65083
#define IdResourceStringsSSPI_RSHTTPSSPINoPAData 65084
#define IdResourceStringsSSPI_RSHTTPSSPIPKInitNameMismatch 65085
#define IdResourceStringsSSPI_RSHTTPSSPISmartcardLogonReq 65086
#define IdResourceStringsSSPI_RSHTTPSSPISysShutdownInProg 65087
#define IdResourceStringsSSPI_RSHTTPSSPILocalLogin 65088
#define IdResourceStringsSSPI_RSHTTPSSPIBadPackageID 65089
#define IdResourceStringsSSPI_RSHTTPSSPIContextExpired 65090
#define IdResourceStringsSSPI_RSHTTPSSPIIncompleteMessage 65091
#define IdResourceStringsSSPI_RSHTTPSSPIIncompleteCredentialNotInit 65092
#define IdResourceStringsSSPI_RSHTTPSSPIBufferTooSmall 65093
#define IdResourceStringsSSPI_RSHTTPSSPIIncompleteCredentialsInit 65094
#define IdResourceStringsSSPI_RSHTTPSSPIRengotiate 65095
#define IdResourceStringsSSPI_RSHTTPSSPIWrongPrincipal 65096
#define IdResourceStringsSSPI_RSHTTPSSPINoLSACode 65097
#define IdResourceStringsSSPI_RSHTTPSSPITimeScew 65098
#define IdResourceStringsSSPI_RSHTTPSSPIUntrustedRoot 65099
#define IdResourceStringsSSPI_RSHTTPSSPIIllegalMessage 65100
#define IdResourceStringsSSPI_RSHTTPSSPICertUnknown 65101
#define IdResourceStringsSSPI_RSHTTPSSPICertExpired 65102
#define IdResourceStringsSSPI_RSHTTPSSPIEncryptionFailure 65103
#define IdResourceStringsSSPI_RSHTTPSSPISecPackageNotFound 65104
#define IdResourceStringsSSPI_RSHTTPSSPINotOwner 65105
#define IdResourceStringsSSPI_RSHTTPSSPIPackageCannotBeInstalled 65106
#define IdResourceStringsSSPI_RSHTTPSSPIInvalidToken 65107
#define IdResourceStringsSSPI_RSHTTPSSPICannotPack 65108
#define IdResourceStringsSSPI_RSHTTPSSPIQOPNotSupported 65109
#define IdResourceStringsSSPI_RSHTTPSSPINoImpersonation 65110
#define IdResourceStringsSSPI_RSHTTPSSPILoginDenied 65111
#define IdResourceStringsSSPI_RSHTTPSSPIUnknownCredentials 65112
#define IdResourceStringsSSPI_RSHTTPSSPINoCredentials 65113
#define IdResourceStringsSSPI_RSHTTPSSPIMessageAltered 65114
#define IdResourceStringsSSPI_RSHTTPSSPIOutOfSequence 65115
#define IdResourceStringsSSPI_RSHTTPSSPINoAuthAuthority 65116
#define IdResourceStringsSSPI_RSHTTPSSPIContinueNeeded 65117
#define IdResourceStringsSSPI_RSHTTPSSPICompleteNeeded 65118
#define IdResourceStringsSSPI_RSHTTPSSPICompleteContinueNeeded 65119
#define IdResourceStringsOpenSSL_RSOSSLAcceptLoop 65120
#define IdResourceStringsOpenSSL_RSOSSLAcceptError 65121
#define IdResourceStringsOpenSSL_RSOSSLAcceptFailed 65122
#define IdResourceStringsOpenSSL_RSOSSLAcceptExit 65123
#define IdResourceStringsOpenSSL_RSOSSLConnectLoop 65124
#define IdResourceStringsOpenSSL_RSOSSLConnectError 65125
#define IdResourceStringsOpenSSL_RSOSSLConnectFailed 65126
#define IdResourceStringsOpenSSL_RSOSSLConnectExit 65127
#define IdResourceStringsOpenSSL_RSOSSLHandshakeStart 65128
#define IdResourceStringsOpenSSL_RSOSSLHandshakeDone 65129
#define IdResourceStringsSSPI_RSHTTPSSPISuccess 65130
#define IdResourceStringsSSPI_RSHTTPSSPINotEnoughMem 65131
#define IdResourceStringsSSPI_RSHTTPSSPIInvalidHandle 65132
#define IdResourceStringsSSPI_RSHTTPSSPIFuncNotSupported 65133
#define IdResourceStringsSSPI_RSHTTPSSPIUnknownTarget 65134
#define IdResourceStringsSSPI_RSHTTPSSPIInternalError 65135
#define IdResourceStringsProtocols_RSSSLFDSetError 65136
#define IdResourceStringsProtocols_RSSSLDataBindingError 65137
#define IdResourceStringsProtocols_RSSSLEOFViolation 65138
#define IdResourceStringsProtocols_RSUnrecognizedUUEEncodingScheme 65139
#define IdResourceStringsProtocols_RSURINoProto 65140
#define IdResourceStringsProtocols_RSURINoHost 65141
#define IdResourceStringsOpenSSL_RSOSSFailedToLoad_WithErrCode 65142
#define IdResourceStringsOpenSSL_RSOSSMissingExport_WithErrCode 65143
#define IdResourceStringsOpenSSL_RSOSSUnsupportedVersion 65144
#define IdResourceStringsOpenSSL_RSOSSUnsupportedLibrary 65145
#define IdResourceStringsOpenSSL_RSOSSLModeNotSet 65146
#define IdResourceStringsOpenSSL_RSOSSLCouldNotLoadSSLLibrary 65147
#define IdResourceStringsOpenSSL_RSOSSLStatusString 65148
#define IdResourceStringsOpenSSL_RSOSSLAlert 65149
#define IdResourceStringsOpenSSL_RSOSSLReadAlert 65150
#define IdResourceStringsOpenSSL_RSOSSLWriteAlert 65151
#define IdResourceStringsProtocols_RSFIPSAlgorithmNotAllowed 65152
#define IdResourceStringsProtocols_RSHTTPChunkStarted 65153
#define IdResourceStringsProtocols_RSHTTPNotAcceptable 65154
#define IdResourceStringsProtocols_RSHTTPUnknownProtocol 65155
#define IdResourceStringsProtocols_RSHTTPMethodRequiresVersion 65156
#define IdResourceStringsProtocols_RSHTTPAuthInvalidHash 65157
#define IdResourceStringsProtocols_RSSSLAcceptError 65158
#define IdResourceStringsProtocols_RSSSLConnectError 65159
#define IdResourceStringsProtocols_RSSSLSettingCipherError 65160
#define IdResourceStringsProtocols_RSSSLCreatingSessionError 65161
#define IdResourceStringsProtocols_RSSSLCreatingContextError 65162
#define IdResourceStringsProtocols_RSSSLLoadingRootCertError 65163
#define IdResourceStringsProtocols_RSSSLLoadingCertError 65164
#define IdResourceStringsProtocols_RSSSLLoadingKeyError 65165
#define IdResourceStringsProtocols_RSSSLLoadingDHParamsError 65166
#define IdResourceStringsProtocols_RSSSLGetMethodError 65167
#define IdResourceStringsCore_RSReadTimeout 65168
#define IdResourceStringsCore_RSReadLnWaitMaxAttemptsExceeded 65169
#define IdResourceStringsCore_RSReadLnMaxLineLengthExceeded 65170
#define IdResourceStringsCore_RSRequiresLargeStream 65171
#define IdResourceStringsCore_RSDataTooLarge 65172
#define IdResourceStringsCore_RSConnectTimeout 65173
#define IdResourceStringsCore_RSAlreadyConnected 65174
#define IdResourceStringsCore_RSMaximumNumberOfCaptureLineExceeded 65175
#define IdResourceStringsCore_RSInterceptIsDifferent 65176
#define IdResourceStringsCore_RSTransparentProxyCannotBind 65177
#define IdResourceStringsCore_RSTransparentProxyCanNotSupportUDP 65178
#define IdResourceStringsCore_RSBufferMissingTerminator 65179
#define IdResourceStringsCore_RSBufferInvalidStartPos 65180
#define IdResourceStringsCore_RSReplyInvalidCode 65181
#define IdResourceStringsCore_RSReplyCodeAlreadyExists 65182
#define IdResourceStringsProtocols_RSIOHandlerPropInvalid 65183
#define IdResourceStringsCore_RSSocksAuthError 65184
#define IdResourceStringsCore_RSSocksServerGeneralError 65185
#define IdResourceStringsCore_RSSocksServerPermissionError 65186
#define IdResourceStringsCore_RSSocksServerNetUnreachableError 65187
#define IdResourceStringsCore_RSSocksServerHostUnreachableError 65188
#define IdResourceStringsCore_RSSocksServerConnectionRefusedError 65189
#define IdResourceStringsCore_RSSocksServerTTLExpiredError 65190
#define IdResourceStringsCore_RSSocksServerCommandError 65191
#define IdResourceStringsCore_RSSocksServerAddressError 65192
#define IdResourceStringsCore_RSInterceptCircularLink 65193
#define IdResourceStringsCore_RSNotEnoughDataInBuffer 65194
#define IdResourceStringsCore_RSTooMuchDataInBuffer 65195
#define IdResourceStringsCore_RSFileNotFound 65196
#define IdResourceStringsCore_RSNotConnected 65197
#define IdResourceStringsCore_RSObjectTypeNotSupported 65198
#define IdResourceStringsCore_RSIdNoDataToRead 65199
#define IdResourceStrings_RSCouldNotBindSocket 65200
#define IdResourceStrings_RSInvalidPortRange 65201
#define IdResourceStrings_RSInvalidServiceName 65202
#define IdResourceStrings_RSInvalidIPv6Address 65203
#define IdResourceStrings_RSIPVersionUnsupported 65204
#define IdResourceStrings_RSNotAllBytesSent 65205
#define IdResourceStrings_RSPackageSizeTooBig 65206
#define IdResourceStrings_RSSetSizeExceeded 65207
#define IdResourceStrings_RSEndOfStream 65208
#define IdResourceStringsCore_RSSocksUDPNotSupported 65209
#define IdResourceStringsCore_RSSocksRequestFailed 65210
#define IdResourceStringsCore_RSSocksRequestServerFailed 65211
#define IdResourceStringsCore_RSSocksRequestIdentFailed 65212
#define IdResourceStringsCore_RSSocksUnknownError 65213
#define IdResourceStringsCore_RSSocksServerRespondError 65214
#define IdResourceStringsCore_RSSocksAuthMethodError 65215
#define IdResourceStrings_RSStackESHUTDOWN 65216
#define IdResourceStrings_RSStackETOOMANYREFS 65217
#define IdResourceStrings_RSStackETIMEDOUT 65218
#define IdResourceStrings_RSStackECONNREFUSED 65219
#define IdResourceStrings_RSStackELOOP 65220
#define IdResourceStrings_RSStackENAMETOOLONG 65221
#define IdResourceStrings_RSStackEHOSTDOWN 65222
#define IdResourceStrings_RSStackEHOSTUNREACH 65223
#define IdResourceStrings_RSStackENOTEMPTY 65224
#define IdResourceStrings_RSStackHOST_NOT_FOUND 65225
#define IdResourceStrings_RSStackClassUndefined 65226
#define IdResourceStrings_RSStackAlreadyCreated 65227
#define IdResourceStrings_RSAntiFreezeOnlyOne 65228
#define IdResourceStrings_RSCannotSetIPVersionWhenConnected 65229
#define IdResourceStrings_RSCannotBindRange 65230
#define IdResourceStrings_RSConnectionClosedGracefully 65231
#define IdResourceStrings_RSStackENOPROTOOPT 65232
#define IdResourceStrings_RSStackEPROTONOSUPPORT 65233
#define IdResourceStrings_RSStackESOCKTNOSUPPORT 65234
#define IdResourceStrings_RSStackEOPNOTSUPP 65235
#define IdResourceStrings_RSStackEPFNOSUPPORT 65236
#define IdResourceStrings_RSStackEAFNOSUPPORT 65237
#define IdResourceStrings_RSStackEADDRINUSE 65238
#define IdResourceStrings_RSStackEADDRNOTAVAIL 65239
#define IdResourceStrings_RSStackENETDOWN 65240
#define IdResourceStrings_RSStackENETUNREACH 65241
#define IdResourceStrings_RSStackENETRESET 65242
#define IdResourceStrings_RSStackECONNABORTED 65243
#define IdResourceStrings_RSStackECONNRESET 65244
#define IdResourceStrings_RSStackENOBUFS 65245
#define IdResourceStrings_RSStackEISCONN 65246
#define IdResourceStrings_RSStackENOTCONN 65247
#define IdResourceStrings_RSStatusDisconnected 65248
#define IdResourceStrings_RSStatusText 65249
#define IdResourceStrings_RSStackError 65250
#define IdResourceStrings_RSStackEINTR 65251
#define IdResourceStrings_RSStackEBADF 65252
#define IdResourceStrings_RSStackEACCES 65253
#define IdResourceStrings_RSStackEFAULT 65254
#define IdResourceStrings_RSStackEINVAL 65255
#define IdResourceStrings_RSStackEMFILE 65256
#define IdResourceStrings_RSStackEWOULDBLOCK 65257
#define IdResourceStrings_RSStackEINPROGRESS 65258
#define IdResourceStrings_RSStackEALREADY 65259
#define IdResourceStrings_RSStackENOTSOCK 65260
#define IdResourceStrings_RSStackEDESTADDRREQ 65261
#define IdResourceStrings_RSStackEMSGSIZE 65262
#define IdResourceStrings_RSStackEPROTOTYPE 65263
#define GpTextStream_sCannotConvertOddNumberOfBytes 65264
#define GpTextStream_sCannotWriteReversedUnicodeStream 65265
#define GpTextStream_sStreamFailed 65266
#define IdResourceStrings_RSInvalidSourceArray 65267
#define IdResourceStrings_RSInvalidDestinationArray 65268
#define IdResourceStrings_RSCharIndexOutOfBounds 65269
#define IdResourceStrings_RSInvalidCharCount 65270
#define IdResourceStrings_RSInvalidDestinationIndex 65271
#define IdResourceStrings_RSInvalidCodePage 65272
#define IdResourceStrings_RSFailedTimeZoneInfo 65273
#define IdResourceStrings_RSWinsockCallError 65274
#define IdResourceStrings_RSWinsockLoadError 65275
#define IdResourceStrings_RSStatusResolving 65276
#define IdResourceStrings_RSStatusConnecting 65277
#define IdResourceStrings_RSStatusConnected 65278
#define IdResourceStrings_RSStatusDisconnecting 65279
#define ExtCtrls_clNameInactiveBorder 65280
#define ExtCtrls_clNameInactiveCaption 65281
#define ExtCtrls_clNameInactiveCaptionText 65282
#define ExtCtrls_clNameInfoBk 65283
#define ExtCtrls_clNameInfoText 65284
#define ExtCtrls_clNameMenu 65285
#define ExtCtrls_clNameMenuText 65286
#define ExtCtrls_clNameNone 65287
#define ExtCtrls_clNameScrollBar 65288
#define ExtCtrls_clName3DDkShadow 65289
#define ExtCtrls_clName3DLight 65290
#define ExtCtrls_clNameWindow 65291
#define ExtCtrls_clNameWindowFrame 65292
#define ExtCtrls_clNameWindowText 65293
#define WinHelpViewer_hNoKeyword 65294
#define GpTextStream_sCannotAppendReversedUnicodeStream 65295
#define ExtCtrls_clNameSkyBlue 65296
#define ExtCtrls_clNameCream 65297
#define ExtCtrls_clNameMedGray 65298
#define ExtCtrls_clNameActiveBorder 65299
#define ExtCtrls_clNameActiveCaption 65300
#define ExtCtrls_clNameAppWorkSpace 65301
#define ExtCtrls_clNameBackground 65302
#define ExtCtrls_clNameBtnFace 65303
#define ExtCtrls_clNameBtnHighlight 65304
#define ExtCtrls_clNameBtnShadow 65305
#define ExtCtrls_clNameBtnText 65306
#define ExtCtrls_clNameCaptionText 65307
#define ExtCtrls_clNameDefault 65308
#define ExtCtrls_clNameGrayText 65309
#define ExtCtrls_clNameHighlight 65310
#define ExtCtrls_clNameHighlightText 65311
#define ExtCtrls_clNameMaroon 65312
#define ExtCtrls_clNameGreen 65313
#define ExtCtrls_clNameOlive 65314
#define ExtCtrls_clNameNavy 65315
#define ExtCtrls_clNamePurple 65316
#define ExtCtrls_clNameTeal 65317
#define ExtCtrls_clNameGray 65318
#define ExtCtrls_clNameSilver 65319
#define ExtCtrls_clNameRed 65320
#define ExtCtrls_clNameLime 65321
#define ExtCtrls_clNameYellow 65322
#define ExtCtrls_clNameBlue 65323
#define ExtCtrls_clNameFuchsia 65324
#define ExtCtrls_clNameAqua 65325
#define ExtCtrls_clNameWhite 65326
#define ExtCtrls_clNameMoneyGreen 65327
#define Consts_SmkcDel 65328
#define Consts_SmkcShift 65329
#define Consts_SmkcCtrl 65330
#define Consts_SmkcAlt 65331
#define Consts_SIconToClipboard 65332
#define Consts_SInvalidMemoSize 65333
#define Consts_SDuplicateMenus 65334
#define Consts_SDockedCtlNeedsName 65335
#define Consts_SDockTreeRemoveError 65336
#define Consts_SDockZoneNotFound 65337
#define Consts_SDockZoneHasNoCtl 65338
#define HelpIntfs_hNoTableOfContents 65339
#define HelpIntfs_hNothingFound 65340
#define HelpIntfs_hNoContext 65341
#define HelpIntfs_hNoTopics 65342
#define ExtCtrls_clNameBlack 65343
#define Consts_SMsgDlgNoToAll 65344
#define Consts_SMsgDlgYesToAll 65345
#define Consts_SmkcBkSp 65346
#define Consts_SmkcTab 65347
#define Consts_SmkcEsc 65348
#define Consts_SmkcEnter 65349
#define Consts_SmkcSpace 65350
#define Consts_SmkcPgUp 65351
#define Consts_SmkcPgDn 65352
#define Consts_SmkcEnd 65353
#define Consts_SmkcHome 65354
#define Consts_SmkcLeft 65355
#define Consts_SmkcUp 65356
#define Consts_SmkcRight 65357
#define Consts_SmkcDown 65358
#define Consts_SmkcIns 65359
#define Consts_SAbortButton 65360
#define Consts_SAllButton 65361
#define Consts_SCannotDragForm 65362
#define Consts_SMsgDlgWarning 65363
#define Consts_SMsgDlgError 65364
#define Consts_SMsgDlgInformation 65365
#define Consts_SMsgDlgConfirm 65366
#define Consts_SMsgDlgYes 65367
#define Consts_SMsgDlgNo 65368
#define Consts_SMsgDlgOK 65369
#define Consts_SMsgDlgCancel 65370
#define Consts_SMsgDlgHelp 65371
#define Consts_SMsgDlgAbort 65372
#define Consts_SMsgDlgRetry 65373
#define Consts_SMsgDlgIgnore 65374
#define Consts_SMsgDlgAll 65375
#define Consts_SCannotShowModal 65376
#define Consts_SMenuIndexError 65377
#define Consts_SMenuReinserted 65378
#define Consts_SMenuNotFound 65379
#define Consts_SNoTimers 65380
#define Consts_SGroupIndexTooLow 65381
#define Consts_SNoMDIForm 65382
#define Consts_SControlParentSetToSelf 65383
#define Consts_SOKButton 65384
#define Consts_SCancelButton 65385
#define Consts_SYesButton 65386
#define Consts_SNoButton 65387
#define Consts_SHelpButton 65388
#define Consts_SCloseButton 65389
#define Consts_SIgnoreButton 65390
#define Consts_SRetryButton 65391
#define Consts_SInvalidIcon 65392
#define Consts_SChangeIconSize 65393
#define Consts_SUnknownClipboardFormat 65394
#define Consts_SOutOfResources 65395
#define Consts_SNoCanvasHandle 65396
#define Consts_SInvalidImageSize 65397
#define Consts_SInvalidImageList 65398
#define Consts_SImageIndexError 65399
#define Consts_SImageReadFail 65400
#define Consts_SImageWriteFail 65401
#define Consts_SWindowDCError 65402
#define Consts_SWindowClass 65403
#define Consts_SCannotFocus 65404
#define Consts_SParentRequired 65405
#define Consts_SMDIChildNotVisible 65406
#define Consts_SVisibleChanged 65407
#define RTLConsts_SListCapacityError 65408
#define RTLConsts_SListCountError 65409
#define RTLConsts_SListIndexError 65410
#define RTLConsts_SMemoryStreamError 65411
#define RTLConsts_SPropertyException 65412
#define RTLConsts_SReadError 65413
#define RTLConsts_SReadOnlyProperty 65414
#define RTLConsts_SResNotFound 65415
#define RTLConsts_SSeekNotImplemented 65416
#define RTLConsts_SSortedListError 65417
#define RTLConsts_SUnknownGroup 65418
#define RTLConsts_SUnknownProperty 65419
#define RTLConsts_SWriteError 65420
#define RTLConsts_SThreadCreateError 65421
#define RTLConsts_SThreadError 65422
#define Consts_SInvalidBitmap 65423
#define RTLConsts_SAssignError 65424
#define RTLConsts_SBitsIndexError 65425
#define RTLConsts_SCantWriteResourceStreamError 65426
#define RTLConsts_SCheckSynchronizeError 65427
#define RTLConsts_SClassNotFound 65428
#define RTLConsts_SDuplicateClass 65429
#define RTLConsts_SDuplicateItem 65430
#define RTLConsts_SDuplicateName 65431
#define RTLConsts_SDuplicateString 65432
#define RTLConsts_SFCreateErrorEx 65433
#define RTLConsts_SFOpenErrorEx 65434
#define RTLConsts_SInvalidImage 65435
#define RTLConsts_SInvalidName 65436
#define RTLConsts_SInvalidProperty 65437
#define RTLConsts_SInvalidPropertyPath 65438
#define RTLConsts_SInvalidPropertyValue 65439
#define SysConst_SLongMonthNameDec 65440
#define SysConst_SShortDayNameSun 65441
#define SysConst_SShortDayNameMon 65442
#define SysConst_SShortDayNameTue 65443
#define SysConst_SShortDayNameWed 65444
#define SysConst_SShortDayNameThu 65445
#define SysConst_SShortDayNameFri 65446
#define SysConst_SShortDayNameSat 65447
#define SysConst_SLongDayNameSun 65448
#define SysConst_SLongDayNameMon 65449
#define SysConst_SLongDayNameTue 65450
#define SysConst_SLongDayNameWed 65451
#define SysConst_SLongDayNameThu 65452
#define SysConst_SLongDayNameFri 65453
#define SysConst_SLongDayNameSat 65454
#define RTLConsts_SAncestorNotFound 65455
#define SysConst_SShortMonthNameAug 65456
#define SysConst_SShortMonthNameSep 65457
#define SysConst_SShortMonthNameOct 65458
#define SysConst_SShortMonthNameNov 65459
#define SysConst_SShortMonthNameDec 65460
#define SysConst_SLongMonthNameJan 65461
#define SysConst_SLongMonthNameFeb 65462
#define SysConst_SLongMonthNameMar 65463
#define SysConst_SLongMonthNameApr 65464
#define SysConst_SLongMonthNameMay 65465
#define SysConst_SLongMonthNameJun 65466
#define SysConst_SLongMonthNameJul 65467
#define SysConst_SLongMonthNameAug 65468
#define SysConst_SLongMonthNameSep 65469
#define SysConst_SLongMonthNameOct 65470
#define SysConst_SLongMonthNameNov 65471
#define SysConst_SExternalException 65472
#define SysConst_SAssertionFailed 65473
#define SysConst_SIntfCastError 65474
#define SysConst_SSafecallException 65475
#define SysConst_SAssertError 65476
#define SysConst_SAbstractError 65477
#define SysConst_SModuleAccessViolation 65478
#define SysConst_SOSError 65479
#define SysConst_SUnkOSError 65480
#define SysConst_SShortMonthNameJan 65481
#define SysConst_SShortMonthNameFeb 65482
#define SysConst_SShortMonthNameMar 65483
#define SysConst_SShortMonthNameApr 65484
#define SysConst_SShortMonthNameMay 65485
#define SysConst_SShortMonthNameJun 65486
#define SysConst_SShortMonthNameJul 65487
#define SysConst_SDispatchError 65488
#define SysConst_SReadAccess 65489
#define SysConst_SWriteAccess 65490
#define SysConst_SVarArrayCreate 65491
#define SysConst_SVarArrayBounds 65492
#define SysConst_SVarArrayLocked 65493
#define SysConst_SInvalidVarCast 65494
#define SysConst_SInvalidVarOp 65495
#define SysConst_SInvalidVarOpWithHResultWithPrefix 65496
#define SysConst_SVarTypeCouldNotConvert 65497
#define SysConst_SVarTypeConvertOverflow 65498
#define SysConst_SVarOverflow 65499
#define SysConst_SVarInvalid 65500
#define SysConst_SVarBadType 65501
#define SysConst_SVarNotImplemented 65502
#define SysConst_SVarUnexpected 65503
#define SysConst_SInvalidOp 65504
#define SysConst_SZeroDivide 65505
#define SysConst_SOverflow 65506
#define SysConst_SUnderflow 65507
#define SysConst_SInvalidPointer 65508
#define SysConst_SInvalidCast 65509
#define SysConst_SAccessViolationArg3 65510
#define SysConst_SAccessViolationNoArg 65511
#define SysConst_SStackOverflow 65512
#define SysConst_SControlC 65513
#define SysConst_SPrivilege 65514
#define SysConst_SOperationAborted 65515
#define SysConst_SException 65516
#define SysConst_SExceptTitle 65517
#define SysConst_SInvalidFormat 65518
#define SysConst_SArgumentMissing 65519
#define SysConst_SInvalidInteger 65520
#define SysConst_SInvalidFloat 65521
#define SysConst_STimeEncodeError 65522
#define SysConst_SDateEncodeError 65523
#define SysConst_SOutOfMemory 65524
#define SysConst_SInOutError 65525
#define SysConst_SFileNotFound 65526
#define SysConst_SInvalidFilename 65527
#define SysConst_STooManyOpenFiles 65528
#define SysConst_SAccessDenied 65529
#define SysConst_SEndOfFile 65530
#define SysConst_SDiskFull 65531
#define SysConst_SInvalidInput 65532
#define SysConst_SDivByZero 65533
#define SysConst_SRangeError 65534
#define SysConst_SIntOverflow 65535
STRINGTABLE
BEGIN
IdResourceStringsSSPI_RSHTTPSSPINoPkgInfoSpecified, "No PSecPkgInfo specified"
IdResourceStringsSSPI_RSHTTPSSPINoCredentialHandle, "No credential handle acquired"
IdResourceStringsSSPI_RSHTTPSSPICanNotChangeCredentials, "Can not change credentials after handle aquired. Use Release first"
IdResourceStringsSSPI_RSHTTPSSPIUnknwonCredentialUse, "Unknown credentials use"
IdResourceStringsSSPI_RSHTTPSSPIDoAuquireCredentialHandle, "Do AcquireCredentialsHandle first"
IdResourceStringsSSPI_RSHTTPSSPICompleteTokenNotSupported, "CompleteAuthToken is not supported"
IdResourceStringsSSPI_RSHTTPSSPICrossRealmDeligationFailure, "An attempt was made by this server to make a Kerberos constrained delegation request for a target outside of the server's realm. This is not supported, and indicates a misconfiguration on this server's allowed to delegate to list. Please contact your administrator."
IdResourceStringsSSPI_RSHTTPSSPIRevocationOfflineKDC, "The revocation status of the domain controller certificate used for smartcard authentication could not be determined. There is additional information in the system event log. Please contact your system administrator."
IdResourceStringsSSPI_RSHTTPSSPICAUntrustedKDC, "An untrusted certificate authority was detected while processing the domain controller certificate used for authentication. There is additional information in the system event log. Please contact your system administrator."
IdResourceStringsSSPI_RSHTTPSSPIKDCCertExpired, "The domain controller certificate used for smartcard logon has expired. Please contact your system administrator with the contents of your system event log."
IdResourceStringsSSPI_RSHTTPSSPIKDCCertRevoked, "The domain controller certificate used for smartcard logon has been revoked. Please contact your system administrator with the contents of your system event log."
IdResourceStringsSSPI_RSHTTPSSPISignatureNeeded, "A signature operation must be performed before the user can authenticate."
IdResourceStringsSSPI_RSHTTPSSPIInvalidParameter, "One or more of the parameters passed to the function was invalid."
IdResourceStringsSSPI_RSHTTPSSPIDeligationPolicy, "Client policy does not allow credential delegation to target server."
IdResourceStringsSSPI_RSHTTPSSPIPolicyNTLMOnly, "Client policy does not allow credential delegation to target server with NLTM only authentication."
IdResourceStringsSSPI_RSHTTPSSPINoRenegotiation, "The recipient rejected the renegotiation request."
IdResourceStringsSSPI_RSHTTPSSPINoContext, "The required security context does not exist."
IdResourceStringsSSPI_RSHTTPSSPIPKU2UCertFailure, "The PKU2U protocol encountered an error while attempting to utilize the associated certificates."
IdResourceStringsSSPI_RSHTTPSSPIMutualAuthFailed, "The identity of the server computer could not be verified."
IdResourceStringsSSPI_RSHTTPSSPIUnknwonError, "Unknown error"
IdResourceStringsSSPI_RSHTTPSSPIErrorMsg, "SSPI %s returns error #%d(0x%x): %s"
IdResourceStringsSSPI_RSHTTPSSPIInterfaceInitFailed, "SSPI interface has failed to initialise properly"
IdResourceStringsSSPI_RSHTTPSSPIKDCInvalidRequest, "An invalid request was sent to the KDC."
IdResourceStringsSSPI_RSHTTPSSPIKDCUnableToRefer, "The KDC was unable to generate a referral for the service requested."
IdResourceStringsSSPI_RSHTTPSSPIKDCETypeUnknown, "The encryption type requested is not supported by the KDC."
IdResourceStringsSSPI_RSHTTPSSPIUnsupPreauth, "An unsupported preauthentication mechanism was presented to the Kerberos package."
IdResourceStringsSSPI_RSHTTPSSPIDeligationReq, "The requested operation cannot be completed. The computer must be trusted for delegation and the current user account must be configured to allow delegation."
IdResourceStringsSSPI_RSHTTPSSPIBadBindings, "Client's supplied SSPI channel bindings were incorrect."
IdResourceStringsSSPI_RSHTTPSSPIMultipleAccounts, "The received certificate was mapped to multiple accounts."
IdResourceStringsSSPI_RSHTTPSSPINoKerbKey, "SEC_E_NO_KERB_KEY"
IdResourceStringsSSPI_RSHTTPSSPICertWrongUsage, "The certificate is not valid for the requested usage."
IdResourceStringsSSPI_RSHTTPSSPIDowngradeDetected, "The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you."
IdResourceStringsSSPI_RSHTTPSSPISmartcardCertRevoked, "The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log."
IdResourceStringsSSPI_RSHTTPSSPIIssuingCAUntrusted, "An untrusted certificate authority was detected While processing the smartcard certificate used for authentication. Please contact your system administrator."
IdResourceStringsSSPI_RSHTTPSSPIRevocationOffline, "The revocation status of the smartcard certificate used for authentication could not be determined. Please contact your system administrator."
IdResourceStringsSSPI_RSHTTPSSPIPKInitClientFailure, "The smartcard certificate used for authentication was not trusted. Please contact your system administrator."
IdResourceStringsSSPI_RSHTTPSSPISmartcardExpired, "The smartcard certificate used for authentication has expired. Please contact your system administrator."
IdResourceStringsSSPI_RSHTTPSSPINoS4UProtSupport, "The Kerberos subsystem encountered an error. A service for user protocol request was made against a domain controller which does not support service for user."
IdResourceStringsSSPI_RSHTTPSSPIDecryptionFailure, "The specified data could not be decrypted."
IdResourceStringsSSPI_RSHTTPSSPIAlgorithmMismatch, "The client and server cannot communicate, because they do not possess a common algorithm."
IdResourceStringsSSPI_RSHTTPSSPISecurityQOSFailure, "The security context could not be established due to a failure in the requested quality of service (e.g. mutual authentication or delegation)."
IdResourceStringsSSPI_RSHTTPSSPISecCtxWasDelBeforeUpdated, "A security context was deleted before the context was completed. This is considered a logon failure."
IdResourceStringsSSPI_RSHTTPSSPIClientNoTGTReply, "The client is trying to negotiate a context and the server requires user-to-user but didn't send a TGT reply."
IdResourceStringsSSPI_RSHTTPSSPILocalNoIPAddr, "Unable to accomplish the requested task because the local machine does not have any IP addresses."
IdResourceStringsSSPI_RSHTTPSSPIWrongCredHandle, "The supplied credential handle does not match the credential associated with the security context."
IdResourceStringsSSPI_RSHTTPSSPICryptoSysInvalid, "The crypto system or checksum function is invalid because a required function is unavailable."
IdResourceStringsSSPI_RSHTTPSSPIMaxTicketRef, "The number of maximum ticket referrals has been exceeded."
IdResourceStringsSSPI_RSHTTPSSPIMustBeKDC, "The local machine must be a Kerberos KDC (domain controller) and it is not."
IdResourceStringsSSPI_RSHTTPSSPIStrongCryptoNotSupported, "The other end of the security negotiation is requires strong crypto but it is not supported on the local machine."
IdResourceStringsSSPI_RSHTTPSSPIKDCReplyTooManyPrincipals, "The KDC reply contained more than one principal name."
IdResourceStringsSSPI_RSHTTPSSPINoPAData, "Expected to find PA data for a hint of what etype to use, but it was not found."
IdResourceStringsSSPI_RSHTTPSSPIPKInitNameMismatch, "The client certificate does not contain a valid UPN, or does not match the client name in the logon request. Please contact your administrator."
IdResourceStringsSSPI_RSHTTPSSPISmartcardLogonReq, "Smartcard logon is required and was not used."
IdResourceStringsSSPI_RSHTTPSSPISysShutdownInProg, "A system shutdown is in progress."
IdResourceStringsSSPI_RSHTTPSSPILocalLogin, "The logon was completed, but no network authority was available. The logon was made using locally known information"
IdResourceStringsSSPI_RSHTTPSSPIBadPackageID, "The requested security package does not exist"
IdResourceStringsSSPI_RSHTTPSSPIContextExpired, "The context has expired and can no longer be used."
IdResourceStringsSSPI_RSHTTPSSPIIncompleteMessage, "The supplied message is incomplete. The signature was not verified."
IdResourceStringsSSPI_RSHTTPSSPIIncompleteCredentialNotInit, "The credentials supplied were not complete, and could not be verified. The context could not be initialized."
IdResourceStringsSSPI_RSHTTPSSPIBufferTooSmall, "The buffers supplied to a function was too small."
IdResourceStringsSSPI_RSHTTPSSPIIncompleteCredentialsInit, "The credentials supplied were not complete, and could not be verified. Additional information can be returned from the context."
IdResourceStringsSSPI_RSHTTPSSPIRengotiate, "The context data must be renegotiated with the peer."
IdResourceStringsSSPI_RSHTTPSSPIWrongPrincipal, "The target principal name is incorrect."
IdResourceStringsSSPI_RSHTTPSSPINoLSACode, "There is no LSA mode context associated with this context."
IdResourceStringsSSPI_RSHTTPSSPITimeScew, "The clocks on the client and server machines are skewed."
IdResourceStringsSSPI_RSHTTPSSPIUntrustedRoot, "The certificate chain was issued by an untrusted authority."
IdResourceStringsSSPI_RSHTTPSSPIIllegalMessage, "The message received was unexpected or badly formatted."
IdResourceStringsSSPI_RSHTTPSSPICertUnknown, "An unknown error occurred while processing the certificate."
IdResourceStringsSSPI_RSHTTPSSPICertExpired, "The received certificate has expired."
IdResourceStringsSSPI_RSHTTPSSPIEncryptionFailure, "The specified data could not be encrypted."
IdResourceStringsSSPI_RSHTTPSSPISecPackageNotFound, "The requested security package does not exist"
IdResourceStringsSSPI_RSHTTPSSPINotOwner, "The caller is not the owner of the desired credentials"
IdResourceStringsSSPI_RSHTTPSSPIPackageCannotBeInstalled, "The security package failed to initialize, and cannot be installed"
IdResourceStringsSSPI_RSHTTPSSPIInvalidToken, "The token supplied to the function is invalid"
IdResourceStringsSSPI_RSHTTPSSPICannotPack, "The security package is not able to marshall the logon buffer, so the logon attempt has failed"
IdResourceStringsSSPI_RSHTTPSSPIQOPNotSupported, "The per-message Quality of Protection is not supported by the security package"
IdResourceStringsSSPI_RSHTTPSSPINoImpersonation, "The security context does not allow impersonation of the client"
IdResourceStringsSSPI_RSHTTPSSPILoginDenied, "The logon attempt failed"
IdResourceStringsSSPI_RSHTTPSSPIUnknownCredentials, "The credentials supplied to the package were not recognized"
IdResourceStringsSSPI_RSHTTPSSPINoCredentials, "No credentials are available in the security package"
IdResourceStringsSSPI_RSHTTPSSPIMessageAltered, "The message or signature supplied for verification has been altered"
IdResourceStringsSSPI_RSHTTPSSPIOutOfSequence, "The message supplied for verification is out of sequence"
IdResourceStringsSSPI_RSHTTPSSPINoAuthAuthority, "No authority could be contacted for authentication."
IdResourceStringsSSPI_RSHTTPSSPIContinueNeeded, "The function completed successfully, but must be called again to complete the context"
IdResourceStringsSSPI_RSHTTPSSPICompleteNeeded, "The function completed successfully, but CompleteToken must be called"
IdResourceStringsSSPI_RSHTTPSSPICompleteContinueNeeded, "The function completed successfully, but both CompleteToken and this function must be called to complete the context"
IdResourceStringsOpenSSL_RSOSSLAcceptLoop, "Accept Loop"
IdResourceStringsOpenSSL_RSOSSLAcceptError, "Accept Error"
IdResourceStringsOpenSSL_RSOSSLAcceptFailed, "Accept Failed"
IdResourceStringsOpenSSL_RSOSSLAcceptExit, "Accept Exit"
IdResourceStringsOpenSSL_RSOSSLConnectLoop, "Connect Loop"
IdResourceStringsOpenSSL_RSOSSLConnectError, "Connect Error"
IdResourceStringsOpenSSL_RSOSSLConnectFailed, "Connect Failed"
IdResourceStringsOpenSSL_RSOSSLConnectExit, "Connect Exit"
IdResourceStringsOpenSSL_RSOSSLHandshakeStart, "Handshake Start"
IdResourceStringsOpenSSL_RSOSSLHandshakeDone, "Handshake Done"
IdResourceStringsSSPI_RSHTTPSSPISuccess, "Successfull API call"
IdResourceStringsSSPI_RSHTTPSSPINotEnoughMem, "Not enough memory is available to complete this request"
IdResourceStringsSSPI_RSHTTPSSPIInvalidHandle, "The handle specified is invalid"
IdResourceStringsSSPI_RSHTTPSSPIFuncNotSupported, "The function requested is not supported"
IdResourceStringsSSPI_RSHTTPSSPIUnknownTarget, "The specified target is unknown or unreachable"
IdResourceStringsSSPI_RSHTTPSSPIInternalError, "The Local Security Authority cannot be contacted"
IdResourceStringsProtocols_RSSSLFDSetError, "Error setting File Descriptor for SSL"
IdResourceStringsProtocols_RSSSLDataBindingError, "Error binding data to SSL socket."
IdResourceStringsProtocols_RSSSLEOFViolation, "EOF was observed that violates the protocol"
IdResourceStringsProtocols_RSUnrecognizedUUEEncodingScheme, "Unrecognized UUE encoding scheme."
IdResourceStringsProtocols_RSURINoProto, "Protocol field is empty"
IdResourceStringsProtocols_RSURINoHost, "Host field is empty"
IdResourceStringsOpenSSL_RSOSSFailedToLoad_WithErrCode, "Failed to load %s (error #%d)."
IdResourceStringsOpenSSL_RSOSSMissingExport_WithErrCode, "%s (error #%d)"
IdResourceStringsOpenSSL_RSOSSUnsupportedVersion, "Unsupported SSL Library version: %.8x."
IdResourceStringsOpenSSL_RSOSSUnsupportedLibrary, "Unsupported SSL Library: %s."
IdResourceStringsOpenSSL_RSOSSLModeNotSet, "Mode has not been set."
IdResourceStringsOpenSSL_RSOSSLCouldNotLoadSSLLibrary, "Could not load SSL library."
IdResourceStringsOpenSSL_RSOSSLStatusString, "SSL status: \"%s\""
IdResourceStringsOpenSSL_RSOSSLAlert, "%s Alert"
IdResourceStringsOpenSSL_RSOSSLReadAlert, "%s Read Alert"
IdResourceStringsOpenSSL_RSOSSLWriteAlert, "%s Write Alert"
IdResourceStringsProtocols_RSFIPSAlgorithmNotAllowed, "Algorithm %s not permitted in FIPS mode"
IdResourceStringsProtocols_RSHTTPChunkStarted, "Chunk Started"
IdResourceStringsProtocols_RSHTTPNotAcceptable, "Not Acceptable"
IdResourceStringsProtocols_RSHTTPUnknownProtocol, "Unknown Protocol"
IdResourceStringsProtocols_RSHTTPMethodRequiresVersion, "Request method requires HTTP version 1.1"
IdResourceStringsProtocols_RSHTTPAuthInvalidHash, "Unsupported hash algorithm. This implementation supports only MD5 encoding."
IdResourceStringsProtocols_RSSSLAcceptError, "Error accepting connection with SSL."
IdResourceStringsProtocols_RSSSLConnectError, "Error connecting with SSL."
IdResourceStringsProtocols_RSSSLSettingCipherError, "SetCipher failed."
IdResourceStringsProtocols_RSSSLCreatingSessionError, "Error creating SSL session."
IdResourceStringsProtocols_RSSSLCreatingContextError, "Error creating SSL context."
IdResourceStringsProtocols_RSSSLLoadingRootCertError, "Could not load root certificate."
IdResourceStringsProtocols_RSSSLLoadingCertError, "Could not load certificate."
IdResourceStringsProtocols_RSSSLLoadingKeyError, "Could not load key, check password."
IdResourceStringsProtocols_RSSSLLoadingDHParamsError, "Could not load DH Parameters."
IdResourceStringsProtocols_RSSSLGetMethodError, "Error getting SSL method."
IdResourceStringsCore_RSReadTimeout, "Read timed out."
IdResourceStringsCore_RSReadLnWaitMaxAttemptsExceeded, "Max line read attempts exceeded."
IdResourceStringsCore_RSReadLnMaxLineLengthExceeded, "Max line length exceeded."
IdResourceStringsCore_RSRequiresLargeStream, "Set LargeStream to True to send streams greater than 2GB"
IdResourceStringsCore_RSDataTooLarge, "Data is too large for stream"
IdResourceStringsCore_RSConnectTimeout, "Connect timed out."
IdResourceStringsCore_RSAlreadyConnected, "Already connected."
IdResourceStringsCore_RSMaximumNumberOfCaptureLineExceeded, "Maximum number of line allowed exceeded"
IdResourceStringsCore_RSInterceptIsDifferent, "The IOHandler already has a different Intercept assigned"
IdResourceStringsCore_RSTransparentProxyCannotBind, "Transparent proxy cannot bind."
IdResourceStringsCore_RSTransparentProxyCanNotSupportUDP, "UDP Not supported by this proxy."
IdResourceStringsCore_RSBufferMissingTerminator, "Buffer terminator must be specified."
IdResourceStringsCore_RSBufferInvalidStartPos, "Buffer start position is invalid."
IdResourceStringsCore_RSReplyInvalidCode, "Reply Code is not valid: %s"
IdResourceStringsCore_RSReplyCodeAlreadyExists, "Reply Code already exists: %s"
IdResourceStringsProtocols_RSIOHandlerPropInvalid, "IOHandler value is not valid"
IdResourceStringsCore_RSSocksAuthError, "Authentication error to socks server."
IdResourceStringsCore_RSSocksServerGeneralError, "General SOCKS server failure."
IdResourceStringsCore_RSSocksServerPermissionError, "Connection not allowed by ruleset."
IdResourceStringsCore_RSSocksServerNetUnreachableError, "Network unreachable."
IdResourceStringsCore_RSSocksServerHostUnreachableError, "Host unreachable."
IdResourceStringsCore_RSSocksServerConnectionRefusedError, "Connection refused."
IdResourceStringsCore_RSSocksServerTTLExpiredError, "TTL expired."
IdResourceStringsCore_RSSocksServerCommandError, "Command not supported."
IdResourceStringsCore_RSSocksServerAddressError, "Address type not supported."
IdResourceStringsCore_RSInterceptCircularLink, "%s: Circular links are not allowed"
IdResourceStringsCore_RSNotEnoughDataInBuffer, "Not enough data in buffer. (%d/%d)"
IdResourceStringsCore_RSTooMuchDataInBuffer, "Too much data in buffer."
IdResourceStringsCore_RSFileNotFound, "File \"%s\" not found"
IdResourceStringsCore_RSNotConnected, "Not Connected"
IdResourceStringsCore_RSObjectTypeNotSupported, "Object type not supported."
IdResourceStringsCore_RSIdNoDataToRead, "No data to read."
IdResourceStrings_RSCouldNotBindSocket, "Could not bind socket."
IdResourceStrings_RSInvalidPortRange, "Invalid Port Range (%d - %d)"
IdResourceStrings_RSInvalidServiceName, "%s is not a valid service."
IdResourceStrings_RSInvalidIPv6Address, "%s is not a valid IPv6 address"
IdResourceStrings_RSIPVersionUnsupported, "The requested IPVersion / Address family is not supported."
IdResourceStrings_RSNotAllBytesSent, "Not all bytes sent."
IdResourceStrings_RSPackageSizeTooBig, "Package Size Too Big."
IdResourceStrings_RSSetSizeExceeded, "Set Size Exceeded."
IdResourceStrings_RSEndOfStream, "End of stream: Class %s at %d"
IdResourceStringsCore_RSSocksUDPNotSupported, "UDP is not support in this SOCKS version."
IdResourceStringsCore_RSSocksRequestFailed, "Request rejected or failed."
IdResourceStringsCore_RSSocksRequestServerFailed, "Request rejected because SOCKS server cannot connect."
IdResourceStringsCore_RSSocksRequestIdentFailed, "Request rejected because the client program and identd report different user-ids."
IdResourceStringsCore_RSSocksUnknownError, "Unknown socks error."
IdResourceStringsCore_RSSocksServerRespondError, "Socks server did not respond."
IdResourceStringsCore_RSSocksAuthMethodError, "Invalid socks authentication method."
IdResourceStrings_RSStackESHUTDOWN, "Cannot send or receive after socket is closed."
IdResourceStrings_RSStackETOOMANYREFS, "Too many references, cannot splice."
IdResourceStrings_RSStackETIMEDOUT, "Connection timed out."
IdResourceStrings_RSStackECONNREFUSED, "Connection refused."
IdResourceStrings_RSStackELOOP, "Too many levels of symbolic links."
IdResourceStrings_RSStackENAMETOOLONG, "File name too long."
IdResourceStrings_RSStackEHOSTDOWN, "Host is down."
IdResourceStrings_RSStackEHOSTUNREACH, "No route to host."
IdResourceStrings_RSStackENOTEMPTY, "Directory not empty"
IdResourceStrings_RSStackHOST_NOT_FOUND, "Host not found."
IdResourceStrings_RSStackClassUndefined, "Stack Class is undefined."
IdResourceStrings_RSStackAlreadyCreated, "Stack already created."
IdResourceStrings_RSAntiFreezeOnlyOne, "Only one TIdAntiFreeze can exist per application."
IdResourceStrings_RSCannotSetIPVersionWhenConnected, "Cannot change IPVersion when connected"
IdResourceStrings_RSCannotBindRange, "Can not bind in port range (%d - %d)"
IdResourceStrings_RSConnectionClosedGracefully, "Connection Closed Gracefully."
IdResourceStrings_RSStackENOPROTOOPT, "Bad protocol option."
IdResourceStrings_RSStackEPROTONOSUPPORT, "Protocol not supported."
IdResourceStrings_RSStackESOCKTNOSUPPORT, "Socket type not supported."
IdResourceStrings_RSStackEOPNOTSUPP, "Operation not supported on socket."
IdResourceStrings_RSStackEPFNOSUPPORT, "Protocol family not supported."
IdResourceStrings_RSStackEAFNOSUPPORT, "Address family not supported by protocol family."
IdResourceStrings_RSStackEADDRINUSE, "Address already in use."
IdResourceStrings_RSStackEADDRNOTAVAIL, "Cannot assign requested address."
IdResourceStrings_RSStackENETDOWN, "Network is down."
IdResourceStrings_RSStackENETUNREACH, "Network is unreachable."
IdResourceStrings_RSStackENETRESET, "Net dropped connection or reset."
IdResourceStrings_RSStackECONNABORTED, "Software caused connection abort."
IdResourceStrings_RSStackECONNRESET, "Connection reset by peer."
IdResourceStrings_RSStackENOBUFS, "No buffer space available."
IdResourceStrings_RSStackEISCONN, "Socket is already connected."
IdResourceStrings_RSStackENOTCONN, "Socket is not connected."
IdResourceStrings_RSStatusDisconnected, "Disconnected."
IdResourceStrings_RSStatusText, "%s"
IdResourceStrings_RSStackError, "Socket Error # %d\r\n%s"
IdResourceStrings_RSStackEINTR, "Interrupted system call."
IdResourceStrings_RSStackEBADF, "Bad file number."
IdResourceStrings_RSStackEACCES, "Access denied."
IdResourceStrings_RSStackEFAULT, "Buffer fault."
IdResourceStrings_RSStackEINVAL, "Invalid argument."
IdResourceStrings_RSStackEMFILE, "Too many open files."
IdResourceStrings_RSStackEWOULDBLOCK, "Operation would block."
IdResourceStrings_RSStackEINPROGRESS, "Operation now in progress."
IdResourceStrings_RSStackEALREADY, "Operation already in progress."
IdResourceStrings_RSStackENOTSOCK, "Socket operation on non-socket."
IdResourceStrings_RSStackEDESTADDRREQ, "Destination address required."
IdResourceStrings_RSStackEMSGSIZE, "Message too long."
IdResourceStrings_RSStackEPROTOTYPE, "Protocol wrong type for socket."
GpTextStream_sCannotConvertOddNumberOfBytes, "%s:Cannot convert odd number of bytes: %d"
GpTextStream_sCannotWriteReversedUnicodeStream, "%s:Cannot write to reversed Unicode stream."
GpTextStream_sStreamFailed, "%s failed. "
IdResourceStrings_RSInvalidSourceArray, "Invalid source array"
IdResourceStrings_RSInvalidDestinationArray, "Invalid destination array"
IdResourceStrings_RSCharIndexOutOfBounds, "Character index out of bounds (%d)"
IdResourceStrings_RSInvalidCharCount, "Invalid count (%d)"
IdResourceStrings_RSInvalidDestinationIndex, "Invalid destination index (%d)"
IdResourceStrings_RSInvalidCodePage, "Invalid codepage (%d)"
IdResourceStrings_RSFailedTimeZoneInfo, "Failed attempting to retrieve time zone information."
IdResourceStrings_RSWinsockCallError, "Error on call to Winsock2 library function %s"
IdResourceStrings_RSWinsockLoadError, "Error on loading Winsock2 library (%s)"
IdResourceStrings_RSStatusResolving, "Resolving hostname %s."
IdResourceStrings_RSStatusConnecting, "Connecting to %s."
IdResourceStrings_RSStatusConnected, "Connected."
IdResourceStrings_RSStatusDisconnecting, "Disconnecting."
ExtCtrls_clNameInactiveBorder, "Inactive Border"
ExtCtrls_clNameInactiveCaption, "Inactive Caption"
ExtCtrls_clNameInactiveCaptionText, "Inactive Caption Text"
ExtCtrls_clNameInfoBk, "Info Background"
ExtCtrls_clNameInfoText, "Info Text"
ExtCtrls_clNameMenu, "Menu Background"
ExtCtrls_clNameMenuText, "Menu Text"
ExtCtrls_clNameNone, "None"
ExtCtrls_clNameScrollBar, "Scroll Bar"
ExtCtrls_clName3DDkShadow, "3D Dark Shadow"
ExtCtrls_clName3DLight, "3D Light"
ExtCtrls_clNameWindow, "Window Background"
ExtCtrls_clNameWindowFrame, "Window Frame"
ExtCtrls_clNameWindowText, "Window Text"
WinHelpViewer_hNoKeyword, "No help keyword specified."
GpTextStream_sCannotAppendReversedUnicodeStream, "%s:Cannot append reversed Unicode stream."
ExtCtrls_clNameSkyBlue, "Sky Blue"
ExtCtrls_clNameCream, "Cream"
ExtCtrls_clNameMedGray, "Medium Gray"
ExtCtrls_clNameActiveBorder, "Active Border"
ExtCtrls_clNameActiveCaption, "Active Caption"
ExtCtrls_clNameAppWorkSpace, "Application Workspace"
ExtCtrls_clNameBackground, "Background"
ExtCtrls_clNameBtnFace, "Button Face"
ExtCtrls_clNameBtnHighlight, "Button Highlight"
ExtCtrls_clNameBtnShadow, "Button Shadow"
ExtCtrls_clNameBtnText, "Button Text"
ExtCtrls_clNameCaptionText, "Caption Text"
ExtCtrls_clNameDefault, "Default"
ExtCtrls_clNameGrayText, "Gray Text"
ExtCtrls_clNameHighlight, "Highlight Background"
ExtCtrls_clNameHighlightText, "Highlight Text"
ExtCtrls_clNameMaroon, "Maroon"
ExtCtrls_clNameGreen, "Green"
ExtCtrls_clNameOlive, "Olive"
ExtCtrls_clNameNavy, "Navy"
ExtCtrls_clNamePurple, "Purple"
ExtCtrls_clNameTeal, "Teal"
ExtCtrls_clNameGray, "Gray"
ExtCtrls_clNameSilver, "Silver"
ExtCtrls_clNameRed, "Red"
ExtCtrls_clNameLime, "Lime"
ExtCtrls_clNameYellow, "Yellow"
ExtCtrls_clNameBlue, "Blue"
ExtCtrls_clNameFuchsia, "Fuchsia"
ExtCtrls_clNameAqua, "Aqua"
ExtCtrls_clNameWhite, "White"
ExtCtrls_clNameMoneyGreen, "Money Green"
Consts_SmkcDel, "Del"
Consts_SmkcShift, "Shift+"
Consts_SmkcCtrl, "Ctrl+"
Consts_SmkcAlt, "Alt+"
Consts_SIconToClipboard, "Clipboard does not support Icons"
Consts_SInvalidMemoSize, "Text exceeds memo capacity"
Consts_SDuplicateMenus, "Menu '%s' is already being used by another form"
Consts_SDockedCtlNeedsName, "Docked control must have a name"
Consts_SDockTreeRemoveError, "Error removing control from dock tree"
Consts_SDockZoneNotFound, " - Dock zone not found"
Consts_SDockZoneHasNoCtl, " - Dock zone has no control"
HelpIntfs_hNoTableOfContents, "Unable to find a Table of Contents"
HelpIntfs_hNothingFound, "No help found for %s"
HelpIntfs_hNoContext, "No context-sensitive help installed"
HelpIntfs_hNoTopics, "No topic-based help system installed"
ExtCtrls_clNameBlack, "Black"
Consts_SMsgDlgNoToAll, "N&o to All"
Consts_SMsgDlgYesToAll, "Yes to &All"
Consts_SmkcBkSp, "BkSp"
Consts_SmkcTab, "Tab"
Consts_SmkcEsc, "Esc"
Consts_SmkcEnter, "Enter"
Consts_SmkcSpace, "Space"
Consts_SmkcPgUp, "PgUp"
Consts_SmkcPgDn, "PgDn"
Consts_SmkcEnd, "End"
Consts_SmkcHome, "Home"
Consts_SmkcLeft, "Left"
Consts_SmkcUp, "Up"
Consts_SmkcRight, "Right"
Consts_SmkcDown, "Down"
Consts_SmkcIns, "Ins"
Consts_SAbortButton, "Abort"
Consts_SAllButton, "&All"
Consts_SCannotDragForm, "Cannot drag a form"
Consts_SMsgDlgWarning, "Warning"
Consts_SMsgDlgError, "Error"
Consts_SMsgDlgInformation, "Information"
Consts_SMsgDlgConfirm, "Confirm"
Consts_SMsgDlgYes, "&Yes"
Consts_SMsgDlgNo, "&No"
Consts_SMsgDlgOK, "OK"
Consts_SMsgDlgCancel, "Cancel"
Consts_SMsgDlgHelp, "&Help"
Consts_SMsgDlgAbort, "&Abort"
Consts_SMsgDlgRetry, "&Retry"
Consts_SMsgDlgIgnore, "&Ignore"
Consts_SMsgDlgAll, "&All"
Consts_SCannotShowModal, "Cannot make a visible window modal"
Consts_SMenuIndexError, "Menu index out of range"
Consts_SMenuReinserted, "Menu inserted twice"
Consts_SMenuNotFound, "Sub-menu is not in menu"
Consts_SNoTimers, "Not enough timers available"
Consts_SGroupIndexTooLow, "GroupIndex cannot be less than a previous menu item's GroupIndex"
Consts_SNoMDIForm, "Cannot create form. No MDI forms are currently active"
Consts_SControlParentSetToSelf, "A control cannot have itself as its parent"
Consts_SOKButton, "OK"
Consts_SCancelButton, "Cancel"
Consts_SYesButton, "&Yes"
Consts_SNoButton, "&No"
Consts_SHelpButton, "&Help"
Consts_SCloseButton, "&Close"
Consts_SIgnoreButton, "&Ignore"
Consts_SRetryButton, "&Retry"
Consts_SInvalidIcon, "Icon image is not valid"
Consts_SChangeIconSize, "Cannot change the size of an icon"
Consts_SUnknownClipboardFormat, "Unsupported clipboard format"
Consts_SOutOfResources, "Out of system resources"
Consts_SNoCanvasHandle, "Canvas does not allow drawing"
Consts_SInvalidImageSize, "Invalid image size"
Consts_SInvalidImageList, "Invalid ImageList"
Consts_SImageIndexError, "Invalid ImageList Index"
Consts_SImageReadFail, "Failed to read ImageList data from stream"
Consts_SImageWriteFail, "Failed to write ImageList data to stream"
Consts_SWindowDCError, "Error creating window device context"
Consts_SWindowClass, "Error creating window class"
Consts_SCannotFocus, "Cannot focus a disabled or invisible window"
Consts_SParentRequired, "Control '%s' has no parent window"
Consts_SMDIChildNotVisible, "Cannot hide an MDI Child Form"
Consts_SVisibleChanged, "Cannot change Visible in OnShow or OnHide"
RTLConsts_SListCapacityError, "List capacity out of bounds (%d)"
RTLConsts_SListCountError, "List count out of bounds (%d)"
RTLConsts_SListIndexError, "List index out of bounds (%d)"
RTLConsts_SMemoryStreamError, "Out of memory while expanding memory stream"
RTLConsts_SPropertyException, "Error reading %s%s%s: %s"
RTLConsts_SReadError, "Stream read error"
RTLConsts_SReadOnlyProperty, "Property is read-only"
RTLConsts_SResNotFound, "Resource %s not found"
RTLConsts_SSeekNotImplemented, "%s.Seek not implemented"
RTLConsts_SSortedListError, "Operation not allowed on sorted list"
RTLConsts_SUnknownGroup, "%s not in a class registration group"
RTLConsts_SUnknownProperty, "Property %s does not exist"
RTLConsts_SWriteError, "Stream write error"
RTLConsts_SThreadCreateError, "Thread creation error: %s"
RTLConsts_SThreadError, "Thread Error: %s (%d)"
Consts_SInvalidBitmap, "Bitmap image is not valid"
RTLConsts_SAssignError, "Cannot assign a %s to a %s"
RTLConsts_SBitsIndexError, "Bits index out of range"
RTLConsts_SCantWriteResourceStreamError, "Can't write to a read-only resource stream"
RTLConsts_SCheckSynchronizeError, "CheckSynchronize called from thread $%x, which is NOT the main thread"
RTLConsts_SClassNotFound, "Class %s not found"
RTLConsts_SDuplicateClass, "A class named %s already exists"
RTLConsts_SDuplicateItem, "List does not allow duplicates ($0%x)"
RTLConsts_SDuplicateName, "A component named %s already exists"
RTLConsts_SDuplicateString, "String list does not allow duplicates"
RTLConsts_SFCreateErrorEx, "Cannot create file \"%s\". %s"
RTLConsts_SFOpenErrorEx, "Cannot open file \"%s\". %s"
RTLConsts_SInvalidImage, "Invalid stream format"
RTLConsts_SInvalidName, "''%s'' is not a valid component name"
RTLConsts_SInvalidProperty, "Invalid property value"
RTLConsts_SInvalidPropertyPath, "Invalid property path"
RTLConsts_SInvalidPropertyValue, "Invalid property value"
SysConst_SLongMonthNameDec, "December"
SysConst_SShortDayNameSun, "Sun"
SysConst_SShortDayNameMon, "Mon"
SysConst_SShortDayNameTue, "Tue"
SysConst_SShortDayNameWed, "Wed"
SysConst_SShortDayNameThu, "Thu"
SysConst_SShortDayNameFri, "Fri"
SysConst_SShortDayNameSat, "Sat"
SysConst_SLongDayNameSun, "Sunday"
SysConst_SLongDayNameMon, "Monday"
SysConst_SLongDayNameTue, "Tuesday"
SysConst_SLongDayNameWed, "Wednesday"
SysConst_SLongDayNameThu, "Thursday"
SysConst_SLongDayNameFri, "Friday"
SysConst_SLongDayNameSat, "Saturday"
RTLConsts_SAncestorNotFound, "Ancestor for '%s' not found"
SysConst_SShortMonthNameAug, "Aug"
SysConst_SShortMonthNameSep, "Sep"
SysConst_SShortMonthNameOct, "Oct"
SysConst_SShortMonthNameNov, "Nov"
SysConst_SShortMonthNameDec, "Dec"
SysConst_SLongMonthNameJan, "January"
SysConst_SLongMonthNameFeb, "February"
SysConst_SLongMonthNameMar, "March"
SysConst_SLongMonthNameApr, "April"
SysConst_SLongMonthNameMay, "May"
SysConst_SLongMonthNameJun, "June"
SysConst_SLongMonthNameJul, "July"
SysConst_SLongMonthNameAug, "August"
SysConst_SLongMonthNameSep, "September"
SysConst_SLongMonthNameOct, "October"
SysConst_SLongMonthNameNov, "November"
SysConst_SExternalException, "External exception %x"
SysConst_SAssertionFailed, "Assertion failed"
SysConst_SIntfCastError, "Interface not supported"
SysConst_SSafecallException, "Exception in safecall method"
SysConst_SAssertError, "%s (%s, line %d)"
SysConst_SAbstractError, "Abstract Error"
SysConst_SModuleAccessViolation, "Access violation at address %p in module '%s'. %s of address %p"
SysConst_SOSError, "System Error. Code: %d.\r\n%s"
SysConst_SUnkOSError, "A call to an OS function failed"
SysConst_SShortMonthNameJan, "Jan"
SysConst_SShortMonthNameFeb, "Feb"
SysConst_SShortMonthNameMar, "Mar"
SysConst_SShortMonthNameApr, "Apr"
SysConst_SShortMonthNameMay, "May"
SysConst_SShortMonthNameJun, "Jun"
SysConst_SShortMonthNameJul, "Jul"
SysConst_SDispatchError, "Variant method calls not supported"
SysConst_SReadAccess, "Read"
SysConst_SWriteAccess, "Write"
SysConst_SVarArrayCreate, "Error creating variant or safe array"
SysConst_SVarArrayBounds, "Variant or safe array index out of bounds"
SysConst_SVarArrayLocked, "Variant or safe array is locked"
SysConst_SInvalidVarCast, "Invalid variant type conversion"
SysConst_SInvalidVarOp, "Invalid variant operation"
SysConst_SInvalidVarOpWithHResultWithPrefix, "Invalid variant operation (%s%.8x)\n%s"
SysConst_SVarTypeCouldNotConvert, "Could not convert variant of type (%s) into type (%s)"
SysConst_SVarTypeConvertOverflow, "Overflow while converting variant of type (%s) into type (%s)"
SysConst_SVarOverflow, "Variant overflow"
SysConst_SVarInvalid, "Invalid argument"
SysConst_SVarBadType, "Invalid variant type"
SysConst_SVarNotImplemented, "Operation not supported"
SysConst_SVarUnexpected, "Unexpected variant error"
SysConst_SInvalidOp, "Invalid floating point operation"
SysConst_SZeroDivide, "Floating point division by zero"
SysConst_SOverflow, "Floating point overflow"
SysConst_SUnderflow, "Floating point underflow"
SysConst_SInvalidPointer, "Invalid pointer operation"
SysConst_SInvalidCast, "Invalid class typecast"
SysConst_SAccessViolationArg3, "Access violation at address %p. %s of address %p"
SysConst_SAccessViolationNoArg, "Access violation"
SysConst_SStackOverflow, "Stack overflow"
SysConst_SControlC, "Control-C hit"
SysConst_SPrivilege, "Privileged instruction"
SysConst_SOperationAborted, "Operation aborted"
SysConst_SException, "Exception %s in module %s at %p.\r\n%s%s\r\n"
SysConst_SExceptTitle, "Application Error"
SysConst_SInvalidFormat, "Format '%s' invalid or incompatible with argument"
SysConst_SArgumentMissing, "No argument for format '%s'"