-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.h
2047 lines (1838 loc) · 42.6 KB
/
messages.h
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
//
// Values are 32 bit values laid out as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---+-+-+-----------------------+-------------------------------+
// |Sev|C|R| Facility | Code |
// +---+-+-+-----------------------+-------------------------------+
//
// where
//
// Sev - is the severity code
//
// 00 - Success
// 01 - Informational
// 10 - Warning
// 11 - Error
//
// C - is the Customer code flag
//
// R - is a reserved bit
//
// Facility - is the facility code
//
// Code - is the facility's status code
//
//
// Define the facility codes
//
//
// Define the severity codes
//
//
// MessageId: AMSM_MESSAGE_USAGE
//
// MessageText:
//
// AMSM: The AppKu Manifest Service Manager.
// Version %s %s, %s
// Usage: amsm <option> [<args> ...]
//
// To show service installation GUI:
//
// amsm install [<servicename>]
//
// To install a service without confirmation:
//
// amsm install <servicename> <app> [<args> ...]
//
// To show service editing GUI:
//
// amsm edit <servicename>
//
// To retrieve or edit service parameters directly:
//
// amsm dump <servicename>
//
// amsm get <servicename> <parameter> [<subparameter>]
//
// amsm set <servicename> <parameter> [<subparameter>] <value>
//
// amsm reset <servicename> <parameter> [<subparameter>]
//
// To show service removal GUI:
//
// amsm remove [<servicename>]
//
// To remove a service without confirmation:
//
// amsm remove <servicename> confirm
//
// To manage a service:
//
// amsm start <servicename>
//
// amsm stop <servicename>
//
// amsm restart <servicename>
//
// amsm status <servicename>
//
// amsm statuscode <servicename>
//
// amsm rotate <servicename>
//
// amsm processes <servicename>
//
#define AMSM_MESSAGE_USAGE 0x400001F5L
//
// MessageId: AMSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_INSTALL
//
// MessageText:
//
// Administrator access is needed to install a service.
//
#define AMSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_INSTALL 0x400001F6L
//
// MessageId: AMSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_EDIT
//
// MessageText:
//
// Administrator access is needed to edit a service.
//
#define AMSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_EDIT 0x400001F7L
//
// MessageId: AMSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_REMOVE
//
// MessageText:
//
// Administrator access is needed to remove a service.
//
#define AMSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_REMOVE 0x400001F8L
//
// MessageId: AMSM_MESSAGE_PRE_REMOVE_SERVICE
//
// MessageText:
//
// To remove a service without confirmation: amsm remove <servicename> confirm
//
#define AMSM_MESSAGE_PRE_REMOVE_SERVICE 0x400001F9L
//
// MessageId: AMSM_MESSAGE_OUT_OF_MEMORY
//
// MessageText:
//
// Out of memory for %s in %s!
//
#define AMSM_MESSAGE_OUT_OF_MEMORY 0xC00001FAL
//
// MessageId: AMSM_MESSAGE_OPEN_SERVICE_MANAGER_FAILED
//
// MessageText:
//
// Error opening service manager!
//
#define AMSM_MESSAGE_OPEN_SERVICE_MANAGER_FAILED 0x400001FBL
//
// MessageId: AMSM_MESSAGE_QUERYSERVICECONFIG_FAILED
//
// MessageText:
//
// Error querying service "%s"!
// QueryServiceConfig(): %s
//
#define AMSM_MESSAGE_QUERYSERVICECONFIG_FAILED 0x400001FCL
//
// MessageId: AMSM_MESSAGE_QUERYSERVICECONFIG2_FAILED
//
// MessageText:
//
// Error querying service "%s"!
// QueryServiceConfig2(%s): %s
//
#define AMSM_MESSAGE_QUERYSERVICECONFIG2_FAILED 0x400001FDL
//
// MessageId: AMSM_MESSAGE_INVALID_SERVICE
//
// MessageText:
//
// Service "%s" is not a valid %s service!
// Executable is %s
//
#define AMSM_MESSAGE_INVALID_SERVICE 0x400001FEL
//
// MessageId: AMSM_MESSAGE_CANNOT_EDIT
//
// MessageText:
//
// Service "%s" is not a %s service!
//
#define AMSM_MESSAGE_CANNOT_EDIT 0x400001FFL
//
// MessageId: AMSM_MESSAGE_PATH_TOO_LONG
//
// MessageText:
//
// The full path to %s is too long!
//
#define AMSM_MESSAGE_PATH_TOO_LONG 0x40000200L
//
// MessageId: AMSM_MESSAGE_FLAGS_TOO_LONG
//
// MessageText:
//
// The program flags are too long!
//
#define AMSM_MESSAGE_FLAGS_TOO_LONG 0x40000201L
//
// MessageId: AMSM_MESSAGE_OUT_OF_MEMORY_FOR_IMAGEPATH
//
// MessageText:
//
// Out of memory for ImagePath!
//
#define AMSM_MESSAGE_OUT_OF_MEMORY_FOR_IMAGEPATH 0x40000202L
//
// MessageId: AMSM_MESSAGE_CREATESERVICE_FAILED
//
// MessageText:
//
// Error creating service!
// CreateService(): %s
//
#define AMSM_MESSAGE_CREATESERVICE_FAILED 0x40000203L
//
// MessageId: AMSM_MESSAGE_GRANTED_LOGON_AS_SERVICE
//
// MessageText:
//
// The "Log on as a service" right was granted to account %s.
//
#define AMSM_MESSAGE_GRANTED_LOGON_AS_SERVICE 0x40000204L
//
// MessageId: AMSM_MESSAGE_GRANT_LOGON_AS_SERVICE_FAILED
//
// MessageText:
//
// Failed to grant the "Log on as a service" right to account %s!
//
#define AMSM_MESSAGE_GRANT_LOGON_AS_SERVICE_FAILED 0x40000205L
//
// MessageId: AMSM_MESSAGE_LSAOPENPOLICY_FAILED
//
// MessageText:
//
// LsaOpenPolicy(): %s
//
#define AMSM_MESSAGE_LSAOPENPOLICY_FAILED 0x40000206L
//
// MessageId: AMSM_MESSAGE_LSALOOKUPNAMES_FAILED
//
// MessageText:
//
// Failed to look up the SID for username %s!
// LsaLookupNames(): %s
//
#define AMSM_MESSAGE_LSALOOKUPNAMES_FAILED 0x40000207L
//
// MessageId: AMSM_MESSAGE_INITIALIZESID_FAILED
//
// MessageText:
//
// Failed to initialise the SID for username %s!
// InitializeSid(): %s
//
#define AMSM_MESSAGE_INITIALIZESID_FAILED 0x40000208L
//
// MessageId: AMSM_MESSAGE_LSAENUMERATEACCOUNTRIGHTS_FAILED
//
// MessageText:
//
// Failed to check if %s has the "Log on as a service" right!
// LsaEnumerateAccountRights(): %s
//
#define AMSM_MESSAGE_LSAENUMERATEACCOUNTRIGHTS_FAILED 0x40000209L
//
// MessageId: AMSM_MESSAGE_LSAADDACCOUNTRIGHTS_FAILED
//
// MessageText:
//
// LsaAddAccountRights(): %s
//
#define AMSM_MESSAGE_LSAADDACCOUNTRIGHTS_FAILED 0x4000020AL
//
// MessageId: AMSM_MESSAGE_CHANGESERVICECONFIG_FAILED
//
// MessageText:
//
// Error editing service!
// ChangeServiceConfig(): %s
//
#define AMSM_MESSAGE_CHANGESERVICECONFIG_FAILED 0x4000020BL
//
// MessageId: AMSM_MESSAGE_SETVALUE_FAILED
//
// MessageText:
//
// Failed to write registry value %s:
// RegSetValueEx(): %s
//
#define AMSM_MESSAGE_SETVALUE_FAILED 0xC000020CL
//
// MessageId: AMSM_MESSAGE_REGDELETEVALUE_FAILED
//
// MessageText:
//
// Error deleting registry value %s for service "%s"!
// RegDeleteValue(): %s
//
#define AMSM_MESSAGE_REGDELETEVALUE_FAILED 0x4000020DL
//
// MessageId: AMSM_MESSAGE_INVALID_PARAMETER
//
// MessageText:
//
// Invalid parameter "%s". Valid parameters are:
//
#define AMSM_MESSAGE_INVALID_PARAMETER 0x4000020EL
//
// MessageId: AMSM_MESSAGE_MISSING_SUBPARAMETER
//
// MessageText:
//
// Parameter "%s" requires a subparameter!
//
#define AMSM_MESSAGE_MISSING_SUBPARAMETER 0x4000020FL
//
// MessageId: AMSM_MESSAGE_NATIVE_PARAMETER
//
// MessageText:
//
// Parameter "%s" is only valid for services managed by %s!
//
#define AMSM_MESSAGE_NATIVE_PARAMETER 0x40000210L
//
// MessageId: AMSM_MESSAGE_NO_DEFAULT_VALUE
//
// MessageText:
//
// Parameter "%s" has no meaningful default value!
//
#define AMSM_MESSAGE_NO_DEFAULT_VALUE 0x40000211L
//
// MessageId: AMSM_MESSAGE_GET_SETTING_FAILED
//
// MessageText:
//
// Error getting parameter "%s" for service "%s"!
//
#define AMSM_MESSAGE_GET_SETTING_FAILED 0x40000212L
//
// MessageId: AMSM_MESSAGE_SET_SETTING_FAILED
//
// MessageText:
//
// Error setting parameter "%s" for service "%s"!
//
#define AMSM_MESSAGE_SET_SETTING_FAILED 0x40000213L
//
// MessageId: AMSM_MESSAGE_SET_SETTING
//
// MessageText:
//
// Set parameter "%s" for service "%s".
//
#define AMSM_MESSAGE_SET_SETTING 0x40000214L
//
// MessageId: AMSM_MESSAGE_RESET_SETTING
//
// MessageText:
//
// Reset parameter "%s" for service "%s" to its default.
//
#define AMSM_MESSAGE_RESET_SETTING 0x40000215L
//
// MessageId: AMSM_MESSAGE_INVALID_EXIT_ACTION
//
// MessageText:
//
// Invalid exit action "%s". Valid exit actions are:
//
#define AMSM_MESSAGE_INVALID_EXIT_ACTION 0x40000216L
//
// MessageId: AMSM_MESSAGE_INVALID_SERVICE_TYPE
//
// MessageText:
//
// Invalid service type "%s". Valid types are:
//
#define AMSM_MESSAGE_INVALID_SERVICE_TYPE 0x40000217L
//
// MessageId: AMSM_MESSAGE_SERVICE_CONFIG_DELAYED_AUTO_START_INFO_FAILED
//
// MessageText:
//
// Error configuring delayed startup for service "%s". The service will start automatically.
// ChangeServiceConfig2(): %s
//
#define AMSM_MESSAGE_SERVICE_CONFIG_DELAYED_AUTO_START_INFO_FAILED 0x40000218L
//
// MessageId: AMSM_MESSAGE_INVALID_SERVICE_STARTUP
//
// MessageText:
//
// Invalid startup type "%s". Valid types are:
//
#define AMSM_MESSAGE_INVALID_SERVICE_STARTUP 0x40000219L
//
// MessageId: AMSM_MESSAGE_INVALID_PRIORITY
//
// MessageText:
//
// Invalid process priority "%s". Valid priorities are:
//
#define AMSM_MESSAGE_INVALID_PRIORITY 0x4000021AL
//
// MessageId: AMSM_MESSAGE_MISSING_PASSWORD
//
// MessageText:
//
// Setting "%s" requires both a username and password!
//
#define AMSM_MESSAGE_MISSING_PASSWORD 0x4000021BL
//
// MessageId: AMSM_MESSAGE_INTERACTIVE_NOT_LOCALSYSTEM
//
// MessageText:
//
// Service type "%s" is invalid for service "%s".
// Only services running under the %s account may be interactive.
//
#define AMSM_MESSAGE_INTERACTIVE_NOT_LOCALSYSTEM 0x4000021CL
//
// MessageId: AMSM_MESSAGE_CREATE_PARAMETERS_FAILED
//
// MessageText:
//
// Error setting startup parameters for the service!
//
#define AMSM_MESSAGE_CREATE_PARAMETERS_FAILED 0x4000021DL
//
// MessageId: AMSM_MESSAGE_SERVICE_INSTALLED
//
// MessageText:
//
// Service "%s" installed successfully!
//
#define AMSM_MESSAGE_SERVICE_INSTALLED 0x4000021EL
//
// MessageId: AMSM_MESSAGE_OPENSERVICE_FAILED
//
// MessageText:
//
// Can't open service!
// OpenService(): %s
//
#define AMSM_MESSAGE_OPENSERVICE_FAILED 0x4000021FL
//
// MessageId: AMSM_MESSAGE_ENUMSERVICESSTATUS_FAILED
//
// MessageText:
//
// Can't open service!
// EnumServicesStatus(): %s
//
#define AMSM_MESSAGE_ENUMSERVICESSTATUS_FAILED 0x40000220L
//
// MessageId: AMSM_MESSAGE_DELETESERVICE_FAILED
//
// MessageText:
//
// Error deleting service!
//
#define AMSM_MESSAGE_DELETESERVICE_FAILED 0x40000221L
//
// MessageId: AMSM_MESSAGE_SERVICE_REMOVED
//
// MessageText:
//
// Service "%s" removed successfully!
//
#define AMSM_MESSAGE_SERVICE_REMOVED 0x40000222L
//
// MessageId: AMSM_MESSAGE_SERVICE_EDITED
//
// MessageText:
//
// Service "%s" edited successfully!
//
#define AMSM_MESSAGE_SERVICE_EDITED 0x40000223L
//
// MessageId: AMSM_MESSAGE_CANNOT_RENAME_SERVICE
//
// MessageText:
//
// Services cannot be renamed!
//
#define AMSM_MESSAGE_CANNOT_RENAME_SERVICE 0x40000224L
//
// MessageId: AMSM_MESSAGE_EFFECTIVE_AFFINITY_MASK
//
// MessageText:
//
// Requested processor affinity range %s is not appropriate.
// The maximal affinity range is %s on this system.
// The requested affinity will be written to the registry as-is.
// Note, however, that the effective affinity will be %s.
//
#define AMSM_MESSAGE_EFFECTIVE_AFFINITY_MASK 0x40000225L
//
// MessageId: AMSM_MESSAGE_BOGUS_AFFINITY_MASK
//
// MessageText:
//
// Affinity specification "%s" is invalid.
// Valid specifications are of the form "0-2,4-6,10,15"
// Identifiers must be in the range 0-%d on this system.
//
#define AMSM_MESSAGE_BOGUS_AFFINITY_MASK 0x40000226L
//
// MessageId: AMSM_MESSAGE_BAD_CONTROL_RESPONSE
//
// MessageText:
//
// %s: Unexpected status %s in response to %s control.
//
#define AMSM_MESSAGE_BAD_CONTROL_RESPONSE 0x40000227L
//
// MessageId: AMSM_MESSAGE_LSALOOKUPSIDS_FAILED
//
// MessageText:
//
// Failed to look up the username for SID.
// LsaLookupSids(): %s
//
#define AMSM_MESSAGE_LSALOOKUPSIDS_FAILED 0x40000228L
//
// MessageId: AMSM_MESSAGE_CREATEWELLKNOWNSID_FAILED
//
// MessageText:
//
// Failed to create %s SID!
//
#define AMSM_MESSAGE_CREATEWELLKNOWNSID_FAILED 0x40000229L
//
// MessageId: AMSM_MESSAGE_INVALID_HOOK_EVENT
//
// MessageText:
//
// Invalid hook event. Valid hook events are:
//
#define AMSM_MESSAGE_INVALID_HOOK_EVENT 0x4000022AL
//
// MessageId: AMSM_MESSAGE_INVALID_HOOK_ACTION
//
// MessageText:
//
// Invalid hook action for event %s. Valid hook actions are:
//
#define AMSM_MESSAGE_INVALID_HOOK_ACTION 0x4000022BL
//
// MessageId: AMSM_MESSAGE_INVALID_HOOK_NAME
//
// MessageText:
//
// Invalid hook name. Names should be specified in the form <event>/<action>.
//
#define AMSM_MESSAGE_INVALID_HOOK_NAME 0x4000022CL
//
// MessageId: AMSM_GUI_CREATEDIALOG_FAILED
//
// MessageText:
//
// CreateDialog() failed:
// %s
//
#define AMSM_GUI_CREATEDIALOG_FAILED 0x4000022DL
//
// MessageId: AMSM_GUI_MISSING_SERVICE_NAME
//
// MessageText:
//
// No valid service name was specified!
//
#define AMSM_GUI_MISSING_SERVICE_NAME 0x4000022EL
//
// MessageId: AMSM_GUI_MISSING_PATH
//
// MessageText:
//
// No valid executable path was specified!
//
#define AMSM_GUI_MISSING_PATH 0x4000022FL
//
// MessageId: AMSM_GUI_INVALID_OPTIONS
//
// MessageText:
//
// No valid arguments were specified!
//
#define AMSM_GUI_INVALID_OPTIONS 0x40000230L
//
// MessageId: AMSM_GUI_MISSING_USERNAME
//
// MessageText:
//
// Missing account name!
//
#define AMSM_GUI_MISSING_USERNAME 0x40000231L
//
// MessageId: AMSM_GUI_INVALID_USERNAME
//
// MessageText:
//
// Invalid account name!
//
#define AMSM_GUI_INVALID_USERNAME 0x40000232L
//
// MessageId: AMSM_GUI_MISSING_PASSWORD
//
// MessageText:
//
// Missing or mismatched password(s)!
//
#define AMSM_GUI_MISSING_PASSWORD 0x40000233L
//
// MessageId: AMSM_GUI_INVALID_PASSWORD
//
// MessageText:
//
// Invalid password!
//
#define AMSM_GUI_INVALID_PASSWORD 0x40000234L
//
// MessageId: AMSM_GUI_INVALID_DISPLAYNAME
//
// MessageText:
//
// Invalid displayname!
//
#define AMSM_GUI_INVALID_DISPLAYNAME 0x40000235L
//
// MessageId: AMSM_GUI_INVALID_DESCRIPTION
//
// MessageText:
//
// Invalid description!
//
#define AMSM_GUI_INVALID_DESCRIPTION 0x40000236L
//
// MessageId: AMSM_GUI_OUT_OF_MEMORY_FOR_IMAGEPATH
//
// MessageText:
//
// Error constructing ImagePath!\nThis really shouldn't happen. You could be out of memory
// or the world may be about to end or something equally bad.
//
#define AMSM_GUI_OUT_OF_MEMORY_FOR_IMAGEPATH 0x40000237L
//
// MessageId: AMSM_GUI_INVALID_ENVIRONMENT
//
// MessageText:
//
// Environment should comprise strings of the form KEY=VALUE.
//
#define AMSM_GUI_INVALID_ENVIRONMENT 0x40000238L
//
// MessageId: AMSM_GUI_INVALID_DEPENDENCIES
//
// MessageText:
//
// Invalid dependencies!
//
#define AMSM_GUI_INVALID_DEPENDENCIES 0x40000239L
//
// MessageId: AMSM_GUI_INSTALL_SERVICE_FAILED
//
// MessageText:
//
// Couldn't create service!
// Perhaps it is already installed...
//
#define AMSM_GUI_INSTALL_SERVICE_FAILED 0x4000023AL
//
// MessageId: AMSM_GUI_CREATE_PARAMETERS_FAILED
//
// MessageText:
//
// Couldn't set startup parameters for the service!
// Deleting the service...
//
#define AMSM_GUI_CREATE_PARAMETERS_FAILED 0x4000023BL
//
// MessageId: AMSM_GUI_EDIT_PARAMETERS_FAILED
//
// MessageText:
//
// Couldn't set startup parameters for the service!
//
#define AMSM_GUI_EDIT_PARAMETERS_FAILED 0x4000023CL
//
// MessageId: AMSM_GUI_ASK_REMOVE_SERVICE
//
// MessageText:
//
// Remove the service?
//
#define AMSM_GUI_ASK_REMOVE_SERVICE 0x4000023DL
//
// MessageId: AMSM_GUI_SERVICE_NOT_INSTALLED
//
// MessageText:
//
// Can't open service!
// Perhaps it isn't installed...
//
#define AMSM_GUI_SERVICE_NOT_INSTALLED 0x4000023EL
//
// MessageId: AMSM_GUI_REMOVE_SERVICE_FAILED
//
// MessageText:
//
// Can't delete service! Make sure the service is stopped and try again.
// If this error persists, you may need to set the service NOT to start
// automatically, reboot your computer and try removing it again.
//
#define AMSM_GUI_REMOVE_SERVICE_FAILED 0x4000023FL
//
// MessageId: AMSM_GUI_BROWSE_FILTER_APPLICATIONS
//
// MessageText:
//
// Applications%0
//
#define AMSM_GUI_BROWSE_FILTER_APPLICATIONS 0x40000240L
//
// MessageId: AMSM_GUI_BROWSE_FILTER_DIRECTORIES
//
// MessageText:
//
// Directories%0
//
#define AMSM_GUI_BROWSE_FILTER_DIRECTORIES 0x40000241L
//
// MessageId: AMSM_GUI_BROWSE_FILTER_ALL_FILES
//
// MessageText:
//
// All files%0
//
#define AMSM_GUI_BROWSE_FILTER_ALL_FILES 0x40000242L
//
// MessageId: AMSM_GUI_BROWSE_TITLE
//
// MessageText:
//
// Locate application file
//
#define AMSM_GUI_BROWSE_TITLE 0x40000243L
//
// MessageId: AMSM_GUI_TAB_APPLICATION
//
// MessageText:
//
// Application%0
//
#define AMSM_GUI_TAB_APPLICATION 0x40000244L
//
// MessageId: AMSM_GUI_TAB_NATIVE
//
// MessageText:
//
// Service%0
//
#define AMSM_GUI_TAB_NATIVE 0x40000245L
//
// MessageId: AMSM_GUI_TAB_DETAILS
//
// MessageText:
//
// Details%0
//
#define AMSM_GUI_TAB_DETAILS 0x40000246L
//
// MessageId: AMSM_GUI_TAB_LOGON
//
// MessageText:
//
// Log on%0
//
#define AMSM_GUI_TAB_LOGON 0x40000247L
//
// MessageId: AMSM_GUI_TAB_DEPENDENCIES
//
// MessageText:
//
// Dependencies%0
//
#define AMSM_GUI_TAB_DEPENDENCIES 0x40000248L
//
// MessageId: AMSM_GUI_TAB_PROCESS
//
// MessageText:
//
// Process%0
//
#define AMSM_GUI_TAB_PROCESS 0x40000249L
//
// MessageId: AMSM_GUI_TAB_SHUTDOWN
//
// MessageText:
//
// Shutdown%0
//
#define AMSM_GUI_TAB_SHUTDOWN 0x4000024AL
//
// MessageId: AMSM_GUI_TAB_EXIT
//
// MessageText:
//
// Exit actions%0
//
#define AMSM_GUI_TAB_EXIT 0x4000024BL
//
// MessageId: AMSM_GUI_TAB_IO
//
// MessageText:
//
// I/O%0
//
#define AMSM_GUI_TAB_IO 0x4000024CL
//
// MessageId: AMSM_GUI_TAB_ROTATION
//
// MessageText:
//
// File rotation%0
//
#define AMSM_GUI_TAB_ROTATION 0x4000024DL
//
// MessageId: AMSM_GUI_TAB_ENVIRONMENT
//
// MessageText:
//
// Environment%0
//
#define AMSM_GUI_TAB_ENVIRONMENT 0x4000024EL
//
// MessageId: AMSM_GUI_TAB_HOOKS
//
// MessageText:
//
// Hooks%0
//
#define AMSM_GUI_TAB_HOOKS 0x4000024FL
//
// MessageId: AMSM_GUI_STARTUP_AUTOMATIC
//
// MessageText:
//
// Automatic%0
//
#define AMSM_GUI_STARTUP_AUTOMATIC 0x40000250L
//
// MessageId: AMSM_GUI_STARTUP_DELAYED
//
// MessageText:
//
// Automatic (Delayed Start)%0
//
#define AMSM_GUI_STARTUP_DELAYED 0x40000251L
//
// MessageId: AMSM_GUI_STARTUP_MANUAL
//
// MessageText:
//
// Manual%0
//
#define AMSM_GUI_STARTUP_MANUAL 0x40000252L
//
// MessageId: AMSM_GUI_STARTUP_DISABLED
//
// MessageText:
//
// Disabled%0
//
#define AMSM_GUI_STARTUP_DISABLED 0x40000253L
//
// MessageId: AMSM_GUI_EXIT_RESTART
//
// MessageText:
//
// Restart application%0
//
#define AMSM_GUI_EXIT_RESTART 0x40000254L
//
// MessageId: AMSM_GUI_EXIT_IGNORE
//
// MessageText:
//
// No action (srvany compatible)%0
//
#define AMSM_GUI_EXIT_IGNORE 0x40000255L
//
// MessageId: AMSM_GUI_EXIT_REALLY
//
// MessageText:
//
// Stop service (oneshot mode)%0
//
#define AMSM_GUI_EXIT_REALLY 0x40000256L
//
// MessageId: AMSM_GUI_EXIT_UNCLEAN
//
// MessageText:
//
// Fake crash (pre-Vista)%0
//