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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
|
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<appendix xml:id="win32service.constants" xmlns="http://docbook.org/ns/docbook">
&reftitle.constants;
&extension.constants;
<table xml:id="win32service.constants.servicetype">
<title>Win32Service Service Type Bitmasks</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-win32-own-process">
<entry><constant>WIN32_SERVICE_WIN32_OWN_PROCESS</constant></entry>
<entry><literal>0x00000010</literal></entry>
<entry>
The service runs in its own process.
</entry>
</row>
<row xml:id="constant.win32-service-interactive-process">
<entry><constant>WIN32_SERVICE_INTERACTIVE_PROCESS</constant></entry>
<entry><literal>0x00000100</literal></entry>
<entry>
The service can interact with the desktop. This option is not available on Windows Vista or later.
</entry>
</row>
<row xml:id="constant.win32-service-win32-own-process-interactive">
<entry><constant>WIN32_SERVICE_WIN32_OWN_PROCESS_INTERACTIVE</constant></entry>
<entry><literal>0x00000110</literal></entry>
<entry>
The service runs in its own process and can interact with the desktop. This option is not available on Windows Vista or later.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.servicestatus">
<title>Win32Service Service Status Constants</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-continue-pending">
<entry><constant>WIN32_SERVICE_CONTINUE_PENDING</constant></entry>
<entry><literal>0x00000005</literal></entry>
<entry>
The service continue is pending.
</entry>
</row>
<row xml:id="constant.win32-service-pause-pending">
<entry><constant>WIN32_SERVICE_PAUSE_PENDING</constant></entry>
<entry><literal>0x00000006</literal></entry>
<entry>
The service pause is pending.
</entry>
</row>
<row xml:id="constant.win32-service-paused">
<entry><constant>WIN32_SERVICE_PAUSED</constant></entry>
<entry><literal>0x00000007</literal></entry>
<entry>
The service is paused.
</entry>
</row>
<row xml:id="constant.win32-service-running">
<entry><constant>WIN32_SERVICE_RUNNING</constant></entry>
<entry><literal>0x00000004</literal></entry>
<entry>
The service is running.
</entry>
</row>
<row xml:id="constant.win32-service-start-pending">
<entry><constant>WIN32_SERVICE_START_PENDING</constant></entry>
<entry><literal>0x00000002</literal></entry>
<entry>
The service is starting.
</entry>
</row>
<row xml:id="constant.win32-service-stop-pending">
<entry><constant>WIN32_SERVICE_STOP_PENDING</constant></entry>
<entry><literal>0x00000003</literal></entry>
<entry>
The service is stopping.
</entry>
</row>
<row xml:id="constant.win32-service-stopped">
<entry><constant>WIN32_SERVICE_STOPPED</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
The service is not running.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.servicecontrol">
<title>Win32Service Service Control Message Constants</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-control-continue">
<entry><constant>WIN32_SERVICE_CONTROL_CONTINUE</constant></entry>
<entry><literal>0x00000003</literal></entry>
<entry>
Notifies a paused service that it should resume.
</entry>
</row>
<row xml:id="constant.win32-service-control-deviceevent">
<entry><constant>WIN32_SERVICE_CONTROL_DEVICEEVENT</constant></entry>
<entry><literal>0x0000000B</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-control-hardwareprofilechange">
<entry><constant>WIN32_SERVICE_CONTROL_HARDWAREPROFILECHANGE</constant></entry>
<entry><literal>0x0000000C</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-control-interrogate">
<entry><constant>WIN32_SERVICE_CONTROL_INTERROGATE</constant></entry>
<entry><literal>0x00000004</literal></entry>
<entry>
Notifies a service that it should report its current status information
to the service control manager.
</entry>
</row>
<row xml:id="constant.win32-service-control-netbindadd">
<entry><constant>WIN32_SERVICE_CONTROL_NETBINDADD</constant></entry>
<entry><literal>0x00000007</literal></entry>
<entry>
Notifies a network service that there is a new component for binding.
</entry>
</row>
<row xml:id="constant.win32-service-control-netbinddisable">
<entry><constant>WIN32_SERVICE_CONTROL_NETBINDDISABLE</constant></entry>
<entry><literal>0x0000000A</literal></entry>
<entry>
Notifies a network service that one of its bindings has been disabled.
</entry>
</row>
<row xml:id="constant.win32-service-control-netbindenable">
<entry><constant>WIN32_SERVICE_CONTROL_NETBINDENABLE</constant></entry>
<entry><literal>0x00000009</literal></entry>
<entry>
Notifies a network service that a disabled binding has been enabled.
</entry>
</row>
<row xml:id="constant.win32-service-control-netbindremove">
<entry><constant>WIN32_SERVICE_CONTROL_NETBINDREMOVE</constant></entry>
<entry><literal>0x00000008</literal></entry>
<entry>
Notifies a network service that a component for binding has been removed.
</entry>
</row>
<row xml:id="constant.win32-service-control-paramchange">
<entry><constant>WIN32_SERVICE_CONTROL_PARAMCHANGE</constant></entry>
<entry><literal>0x00000006</literal></entry>
<entry>
Notifies a service that its startup parameters have changed.
</entry>
</row>
<row xml:id="constant.win32-service-control-pause">
<entry><constant>WIN32_SERVICE_CONTROL_PAUSE</constant></entry>
<entry><literal>0x00000002</literal></entry>
<entry>
Notifies a service that it should pause.
</entry>
</row>
<row xml:id="constant.win32-service-control-powerevent">
<entry><constant>WIN32_SERVICE_CONTROL_POWEREVENT</constant></entry>
<entry><literal>0x0000000D</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-control-preshutdown">
<entry><constant>WIN32_SERVICE_CONTROL_PRESHUTDOWN</constant></entry>
<entry><literal>0x0000000F</literal></entry>
<entry>
Notifies a service that the system will be shutting down. A service that
handles this notification blocks system shutdown until the service stops
or the preshutdown time-out interval expires. This value is not supported
by Windows Server 2003 and Windows XP/2000.
</entry>
</row>
<row xml:id="constant.win32-service-control-sessionchange">
<entry><constant>WIN32_SERVICE_CONTROL_SESSIONCHANGE</constant></entry>
<entry><literal>0x0000000E</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-control-shutdown">
<entry><constant>WIN32_SERVICE_CONTROL_SHUTDOWN</constant></entry>
<entry><literal>0x00000005</literal></entry>
<entry>
Notifies a service that the system is shutting down so the service can
perform cleanup tasks. If a service accepts this control code, it must
stop after it performs its cleanup tasks. After the SCM sends this
control code, it will not send other control codes to the service.
</entry>
</row>
<row xml:id="constant.win32-service-control-stop">
<entry><constant>WIN32_SERVICE_CONTROL_STOP</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
Notifies a service that it should stop.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.controlsaccepted">
<title>Win32Service Service Control Message Accepted Bitmasks</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-accept-hardwareprofilechange">
<entry><constant>WIN32_SERVICE_ACCEPT_HARDWAREPROFILECHANGE</constant></entry>
<entry><literal>0x00000020</literal></entry>
<entry>
The service is notified when the computer's hardware profile has changed.
This enables the system to send
<constant>WIN32_SERVICE_CONTROL_HARDWAREPROFILECHANGE</constant>
notifications to the service.
</entry>
</row>
<row xml:id="constant.win32-service-accept-netbindchange">
<entry><constant>WIN32_SERVICE_ACCEPT_NETBINDCHANGE</constant></entry>
<entry><literal>0x00000010</literal></entry>
<entry>
The service is a network component that can accept changes in its
binding without being stopped and restarted.
This control code allows the service to receive
<constant>WIN32_SERVICE_CONTROL_NETBINDADD</constant>,
<constant>WIN32_SERVICE_CONTROL_NETBINDREMOVE</constant>,
<constant>WIN32_SERVICE_CONTROL_NETBINDENABLE</constant>, and
<constant>WIN32_SERVICE_CONTROL_NETBINDDISABLE</constant> notifications.
</entry>
</row>
<row xml:id="constant.win32-service-accept-paramchange">
<entry><constant>WIN32_SERVICE_ACCEPT_PARAMCHANGE</constant></entry>
<entry><literal>0x00000008</literal></entry>
<entry>
The service can reread its startup parameters without being stopped and restarted.
This control code allows the service to receive
<constant>WIN32_SERVICE_CONTROL_PARAMCHANGE</constant> notifications.
</entry>
</row>
<row xml:id="constant.win32-service-accept-pause-continue">
<entry><constant>WIN32_SERVICE_ACCEPT_PAUSE_CONTINUE</constant></entry>
<entry><literal>0x00000002</literal></entry>
<entry>
The service can be paused and continued. This control code allows the
service to receive <constant>WIN32_SERVICE_CONTROL_PAUSE</constant> and
<constant>WIN32_SERVICE_CONTROL_CONTINUE</constant> notifications.
</entry>
</row>
<row xml:id="constant.win32-service-accept-powerevent">
<entry><constant>WIN32_SERVICE_ACCEPT_POWEREVENT</constant></entry>
<entry><literal>0x00000040</literal></entry>
<entry>
The service is notified when the computer's power status has changed.
This enables the system to send
<constant>WIN32_SERVICE_CONTROL_POWEREVENT</constant> notifications
to the service.
</entry>
</row>
<row xml:id="constant.win32-service-accept-preshutdown">
<entry><constant>WIN32_SERVICE_ACCEPT_PRESHUTDOWN</constant></entry>
<entry><literal>0x00000100</literal></entry>
<entry>
The service can perform preshutdown tasks. This control code enables the
service to receive <constant>WIN32_SERVICE_CONTROL_PRESHUTDOWN</constant>
notifications. This value is not supported by Windows Server 2003 and
Windows XP/2000.
</entry>
</row>
<row xml:id="constant.win32-service-accept-sessionchange">
<entry><constant>WIN32_SERVICE_ACCEPT_SESSIONCHANGE</constant></entry>
<entry><literal>0x00000080</literal></entry>
<entry>
The service is notified when the computer's session status has changed.
This enables the system to send
<constant>WIN32_SERVICE_CONTROL_SESSIONCHANGE</constant> notifications
to the service.
Windows 2000: This value is not supported
</entry>
</row>
<row xml:id="constant.win32-service-accept-shutdown">
<entry><constant>WIN32_SERVICE_ACCEPT_SHUTDOWN</constant></entry>
<entry><literal>0x00000004</literal></entry>
<entry>
The service is notified when system shutdown occurs. This control code
allows the service to receive <constant>WIN32_SERVICE_CONTROL_SHUTDOWN</constant>
notifications.
</entry>
</row>
<row xml:id="constant.win32-service-accept-stop">
<entry><constant>WIN32_SERVICE_ACCEPT_STOP</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
The service can be stopped. This control code allows the service to
receive <constant>WIN32_SERVICE_CONTROL_STOP</constant> notifications.
</entry>
</row>
<row xml:id="constant.win32-service-accept-timechange">
<entry><constant>WIN32_SERVICE_ACCEPT_TIMECHANGE</constant></entry>
<entry><literal>0x00000200</literal></entry>
<entry>
The service is notified when the system time has changed.
This enables the system to send
<constant>WIN32_SERVICE_CONTROL_TIMECHANGE</constant> notifications to the service.
Windows Server 2008, Windows Vista, Windows Server 2003,
and Windows XP/2000: This control code is not supported.
</entry>
</row>
<row xml:id="constant.win32-service-accept-triggerevent">
<entry><constant>WIN32_SERVICE_ACCEPT_TRIGGEREVENT</constant></entry>
<entry><literal>0x00000400</literal></entry>
<entry>
The service is notified when an event for which the service has registered occurs.
This enables the system to send
<constant>WIN32_SERVICE_CONTROL_TRIGGEREVENT</constant> notifications to the service.
Windows Server 2008, Windows Vista, Windows Server 2003,
and Windows XP/2000: This control code is not supported.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.servicestarttype">
<title>Win32Service Service Start Type Constants</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-boot-start">
<entry><constant>WIN32_SERVICE_BOOT_START</constant></entry>
<entry><literal>0x00000000</literal></entry>
<entry>
A device driver started by the system loader. This value is valid only for driver services.
</entry>
</row>
<row xml:id="constant.win32-service-system-start">
<entry><constant>WIN32_SERVICE_SYSTEM_START</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
A device driver started by the IoInitSystem function. This value is valid only for driver services.
</entry>
</row>
<row xml:id="constant.win32-service-auto-start">
<entry><constant>WIN32_SERVICE_AUTO_START</constant></entry>
<entry><literal>0x00000002</literal></entry>
<entry>
A service started automatically by the service control manager during
system startup.
</entry>
</row>
<row xml:id="constant.win32-service-demand-start">
<entry><constant>WIN32_SERVICE_DEMAND_START</constant></entry>
<entry><literal>0x00000003</literal></entry>
<entry>
A service started by the service control manager when a process calls the
StartService function.
</entry>
</row>
<row xml:id="constant.win32-service-disabled">
<entry><constant>WIN32_SERVICE_DISABLED</constant></entry>
<entry><literal>0x00000004</literal></entry>
<entry>
A service that cannot be started. Attempts to start the service result in
the error code <constant>WIN32_ERROR_SERVICE_DISABLED</constant>.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.errorcontrol">
<title>Win32Service Service Error Control Constants</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-error-ignore">
<entry><constant>WIN32_SERVICE_ERROR_IGNORE</constant></entry>
<entry><literal>0x00000000</literal></entry>
<entry>
The startup program ignores the error and continues the startup operation.
</entry>
</row>
<row xml:id="constant.win32-service-error-normal">
<entry><constant>WIN32_SERVICE_ERROR_NORMAL</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
The startup program logs the error in the event log but continues the
startup operation.
</entry>
</row>
<row xml:id="constant.win32-service-error-severe">
<entry><constant>WIN32_SERVICE_ERROR_SEVERE</constant></entry>
<entry><literal>0x00000002</literal></entry>
<entry>
The startup program logs the error in the event log.
If the last-known-good configuration is being started, the startup
operation continues. Otherwise, the system is restarted with the
last-known-good configuration.
</entry>
</row>
<row xml:id="constant.win32-service-error-critical">
<entry><constant>WIN32_SERVICE_ERROR_CRITICAL</constant></entry>
<entry><literal>0x00000003</literal></entry>
<entry>
The startup program logs the error in the event log, if possible.
If the last-known-good configuration is being started, the startup
operation fails. Otherwise, the system is restarted with the
last-known good configuration.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.serviceflag">
<title>Win32Service Service Flag Constants</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-runs-in-system-process">
<entry><constant>WIN32_SERVICE_RUNS_IN_SYSTEM_PROCESS</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
The service runs in a system process that must always be running.
</entry>
</row>
</tbody>
</tgroup>
</table>
<note>
<para>
These constants are no longer in use as of Win32Service 1.0.0.
</para>
</note>
<table xml:id="win32service.constants.errors">
<title>Win32 Error Codes</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-error-access-denied">
<entry><constant>WIN32_ERROR_ACCESS_DENIED</constant></entry>
<entry><literal>0x00000005</literal></entry>
<entry>
The handle to the SCM database does not have the appropriate access rights.
</entry>
</row>
<row xml:id="constant.win32-error-circular-dependency">
<entry><constant>WIN32_ERROR_CIRCULAR_DEPENDENCY</constant></entry>
<entry><literal>0x00000423</literal></entry>
<entry>
A circular service dependency was specified.
</entry>
</row>
<row xml:id="constant.win32-error-database-does-not-exist">
<entry><constant>WIN32_ERROR_DATABASE_DOES_NOT_EXIST</constant></entry>
<entry><literal>0x00000429</literal></entry>
<entry>
The specified database does not exist.
</entry>
</row>
<row xml:id="constant.win32-error-dependent-services-running">
<entry><constant>WIN32_ERROR_DEPENDENT_SERVICES_RUNNING</constant></entry>
<entry><literal>0x0000041B</literal></entry>
<entry>
The service cannot be stopped because other running services are dependent
on it.
</entry>
</row>
<row xml:id="constant.win32-error-duplicate-service-name">
<entry><constant>WIN32_ERROR_DUPLICATE_SERVICE_NAME</constant></entry>
<entry><literal>0x00000436</literal></entry>
<entry>
The display name already exists in the service control manager database
either as a service name or as another display name.
</entry>
</row>
<row xml:id="constant.win32-error-failed-service-controller-connect">
<entry><constant>WIN32_ERROR_FAILED_SERVICE_CONTROLLER_CONNECT</constant></entry>
<entry><literal>0x00000427</literal></entry>
<entry>
This error is returned if the program is being run as a console application
rather than as a service. If the program will be run as a console application
for debugging purposes, structure it such that service-specific code is not
called.
</entry>
</row>
<row xml:id="constant.win32-error-insufficient-buffer">
<entry><constant>WIN32_ERROR_INSUFFICIENT_BUFFER</constant></entry>
<entry><literal>0x0000007A</literal></entry>
<entry>
The buffer is too small for the service status structure. Nothing was
written to the structure.
</entry>
</row>
<row xml:id="constant.win32-error-invalid-data">
<entry><constant>WIN32_ERROR_INVALID_DATA</constant></entry>
<entry><literal>0x0000000D</literal></entry>
<entry>
The specified service status structure is invalid.
</entry>
</row>
<row xml:id="constant.win32-error-invalid-handle">
<entry><constant>WIN32_ERROR_INVALID_HANDLE</constant></entry>
<entry><literal>0x00000006</literal></entry>
<entry>
The handle to the specified service control manager database is invalid.
</entry>
</row>
<row xml:id="constant.win32-error-invalid-level">
<entry><constant>WIN32_ERROR_INVALID_LEVEL</constant></entry>
<entry><literal>0x0000007C</literal></entry>
<entry>
The InfoLevel parameter contains an unsupported value.
</entry>
</row>
<row xml:id="constant.win32-error-invalid-name">
<entry><constant>WIN32_ERROR_INVALID_NAME</constant></entry>
<entry><literal>0x0000007B</literal></entry>
<entry>
The specified service name is invalid.
</entry>
</row>
<row xml:id="constant.win32-error-invalid-parameter">
<entry><constant>WIN32_ERROR_INVALID_PARAMETER</constant></entry>
<entry><literal>0x00000057</literal></entry>
<entry>
A parameter that was specified is invalid.
</entry>
</row>
<row xml:id="constant.win32-error-invalid-service-account">
<entry><constant>WIN32_ERROR_INVALID_SERVICE_ACCOUNT</constant></entry>
<entry><literal>0x00000421</literal></entry>
<entry>
The user account name specified in the <parameter>user</parameter>
parameter does not exist. See <function>win32_create_service</function>.
</entry>
</row>
<row xml:id="constant.win32-error-invalid-service-control">
<entry><constant>WIN32_ERROR_INVALID_SERVICE_CONTROL</constant></entry>
<entry><literal>0x0000041C</literal></entry>
<entry>
The requested control code is not valid, or it is unacceptable to the service.
</entry>
</row>
<row xml:id="constant.win32-error-path-not-found">
<entry><constant>WIN32_ERROR_PATH_NOT_FOUND</constant></entry>
<entry><literal>0x00000003</literal></entry>
<entry>
The service binary file could not be found.
</entry>
</row>
<row xml:id="constant.win32-error-service-already-running">
<entry><constant>WIN32_ERROR_SERVICE_ALREADY_RUNNING</constant></entry>
<entry><literal>0x00000420</literal></entry>
<entry>
An instance of the service is already running.
</entry>
</row>
<row xml:id="constant.win32-error-service-cannot-accept-ctrl">
<entry><constant>WIN32_ERROR_SERVICE_CANNOT_ACCEPT_CTRL</constant></entry>
<entry><literal>0x00000425</literal></entry>
<entry>
The requested control code cannot be sent to the service because the state
of the service is <constant>WIN32_SERVICE_STOPPED</constant>,
<constant>WIN32_SERVICE_START_PENDING</constant>, or
<constant>WIN32_SERVICE_STOP_PENDING</constant>.
</entry>
</row>
<row xml:id="constant.win32-error-service-database-locked">
<entry><constant>WIN32_ERROR_SERVICE_DATABASE_LOCKED</constant></entry>
<entry><literal>0x0000041F</literal></entry>
<entry>
The database is locked.
</entry>
</row>
<row xml:id="constant.win32-error-service-dependency-deleted">
<entry><constant>WIN32_ERROR_SERVICE_DEPENDENCY_DELETED</constant></entry>
<entry><literal>0x00000433</literal></entry>
<entry>
The service depends on a service that does not exist or has been marked
for deletion.
</entry>
</row>
<row xml:id="constant.win32-error-service-dependency-fail">
<entry><constant>WIN32_ERROR_SERVICE_DEPENDENCY_FAIL</constant></entry>
<entry><literal>0x0000042C</literal></entry>
<entry>
The service depends on another service that has failed to start.
</entry>
</row>
<row xml:id="constant.win32-error-service-disabled">
<entry><constant>WIN32_ERROR_SERVICE_DISABLED</constant></entry>
<entry><literal>0x00000422</literal></entry>
<entry>
The service has been disabled.
</entry>
</row>
<row xml:id="constant.win32-error-service-does-not-exist">
<entry><constant>WIN32_ERROR_SERVICE_DOES_NOT_EXIST</constant></entry>
<entry><literal>0x00000424</literal></entry>
<entry>
The specified service does not exist as an installed service.
</entry>
</row>
<row xml:id="constant.win32-error-service-exists">
<entry><constant>WIN32_ERROR_SERVICE_EXISTS</constant></entry>
<entry><literal>0x00000431</literal></entry>
<entry>
The specified service already exists in this database.
</entry>
</row>
<row xml:id="constant.win32-error-service-logon-failed">
<entry><constant>WIN32_ERROR_SERVICE_LOGON_FAILED</constant></entry>
<entry><literal>0x0000042D</literal></entry>
<entry>
The service did not start due to a logon failure. This error occurs if
the service is configured to run under an account that does not have the
"Log on as a service" right.
</entry>
</row>
<row xml:id="constant.win32-error-service-marked-for-delete">
<entry><constant>WIN32_ERROR_SERVICE_MARKED_FOR_DELETE</constant></entry>
<entry><literal>0x00000430</literal></entry>
<entry>
The specified service has already been marked for deletion.
</entry>
</row>
<row xml:id="constant.win32-error-service-no-thread">
<entry><constant>WIN32_ERROR_SERVICE_NO_THREAD</constant></entry>
<entry><literal>0x0000041E</literal></entry>
<entry>
A thread could not be created for the service.
</entry>
</row>
<row xml:id="constant.win32-error-service-not-active">
<entry><constant>WIN32_ERROR_SERVICE_NOT_ACTIVE</constant></entry>
<entry><literal>0x00000426</literal></entry>
<entry>
The service has not been started.
</entry>
</row>
<row xml:id="constant.win32-error-service-request-timeout">
<entry><constant>WIN32_ERROR_SERVICE_REQUEST_TIMEOUT</constant></entry>
<entry><literal>0x0000041D</literal></entry>
<entry>
The process for the service was started, but it did not call
StartServiceCtrlDispatcher, or the thread that called
StartServiceCtrlDispatcher may be blocked in a control handler function.
</entry>
</row>
<row xml:id="constant.win32-error-shutdown-in-progress">
<entry><constant>WIN32_ERROR_SHUTDOWN_IN_PROGRESS</constant></entry>
<entry><literal>0x0000045B</literal></entry>
<entry>
The system is shutting down; this function cannot be called.
</entry>
</row>
<row xml:id="constant.win32-error-service-specific-error">
<entry><constant>WIN32_ERROR_SERVICE_SPECIFIC_ERROR</constant></entry>
<entry><literal>0x0000042A</literal></entry>
<entry>
The service has returned a service-specific error code.
</entry>
</row>
<row xml:id="constant.win32-no-error">
<entry><constant>WIN32_NO_ERROR</constant></entry>
<entry><literal>0x00000000</literal></entry>
<entry>
No error.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.basepriorities">
<title>Win32 Base Priority Classes</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-above-normal-priority-class">
<entry><constant>WIN32_ABOVE_NORMAL_PRIORITY_CLASS</constant></entry>
<entry><literal>0x00008000</literal></entry>
<entry>
Process that has priority above WIN32_NORMAL_PRIORITY_CLASS but below
WIN32_HIGH_PRIORITY_CLASS.
</entry>
</row>
<row xml:id="constant.win32-below-normal-priority-class">
<entry><constant>WIN32_BELOW_NORMAL_PRIORITY_CLASS</constant></entry>
<entry><literal>0x00004000</literal></entry>
<entry>
Process that has priority above WIN32_IDLE_PRIORITY_CLASS but below
WIN32_NORMAL_PRIORITY_CLASS.
</entry>
</row>
<row xml:id="constant.win32-high-priority-class">
<entry><constant>WIN32_HIGH_PRIORITY_CLASS</constant></entry>
<entry><literal>0x00000080</literal></entry>
<entry>
Process that performs time-critical tasks that must be executed
immediately. The threads of the process preempt the threads of normal or
idle priority class processes. An example is the Task List, which must
respond quickly when called by the user, regardless of the load on the
operating system. Use extreme care when using the high-priority class,
because a high-priority class application can use nearly all available
CPU time.
</entry>
</row>
<row xml:id="constant.win32-idle-priority-class">
<entry><constant>WIN32_IDLE_PRIORITY_CLASS</constant></entry>
<entry><literal>0x00000040</literal></entry>
<entry>
Process whose threads run only when the system is idle. The threads of the
process are preempted by the threads of any process running in a higher
priority class. An example is a screen saver. The idle-priority class is
inherited by child processes.
</entry>
</row>
<row xml:id="constant.win32-normal-priority-class">
<entry><constant>WIN32_NORMAL_PRIORITY_CLASS</constant></entry>
<entry><literal>0x00000020</literal></entry>
<entry>
Process with no special scheduling needs.
</entry>
</row>
<row xml:id="constant.win32-realtime-priority-class">
<entry><constant>WIN32_REALTIME_PRIORITY_CLASS</constant></entry>
<entry><literal>0x00000100</literal></entry>
<entry>
Process that has the highest possible priority. The threads of the
process preempt the threads of all other processes, including operating
system processes performing important tasks. For example, a real-time
process that executes for more than a very brief interval can cause disk
caches not to flush or cause the mouse to be unresponsive.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.recovery-action">
<title>Win32 Recovery action</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-sc-action-none">
<entry><constant>WIN32_SC_ACTION_NONE</constant></entry>
<entry><literal>0x00000000</literal></entry>
<entry>
No action.
</entry>
</row>
<row xml:id="constant.win32-sc-action-restart">
<entry><constant>WIN32_SC_ACTION_RESTART</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
Restart the service.
</entry>
</row>
<row xml:id="constant.win32-sc-action-reboot">
<entry><constant>WIN32_SC_ACTION_REBOOT</constant></entry>
<entry><literal>0x00000002</literal></entry>
<entry>
Restart the server.
</entry>
</row>
<row xml:id="constant.win32-sc-action-run-command">
<entry><constant>WIN32_SC_ACTION_RUN_COMMAND</constant></entry>
<entry><literal>0x00000003</literal></entry>
<entry>
Run a command.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.serviceinfos">
<title>Win32 Service informations</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-info-service">
<entry><constant>WIN32_INFO_SERVICE</constant></entry>
<entry>"service"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-info-display">
<entry><constant>WIN32_INFO_DISPLAY</constant></entry>
<entry>"display"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-info-user">
<entry><constant>WIN32_INFO_USER</constant></entry>
<entry>"user"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-info-password">
<entry><constant>WIN32_INFO_PASSWORD</constant></entry>
<entry>"password"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-info-path">
<entry><constant>WIN32_INFO_PATH</constant></entry>
<entry>"path"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-info-params">
<entry><constant>WIN32_INFO_PARAMS</constant></entry>
<entry>"params"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-info-description">
<entry><constant>WIN32_INFO_DESCRIPTION</constant></entry>
<entry>"description"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-info-start-type">
<entry><constant>WIN32_INFO_START_TYPE</constant></entry>
<entry>"start_type"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-load-order">
<entry><constant>WIN32_INFO_LOAD_ORDER</constant></entry>
<entry>"load_order"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-svc-type">
<entry><constant>WIN32_INFO_SVC_TYPE</constant></entry>
<entry>"svc_type"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-error-control">
<entry><constant>WIN32_INFO_ERROR_CONTROL</constant></entry>
<entry>"error_control"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-delayed-start">
<entry><constant>WIN32_INFO_DELAYED_START</constant></entry>
<entry>"delayed_start"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-base-priority">
<entry><constant>WIN32_INFO_BASE_PRIORITY</constant></entry>
<entry>"base_priority"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-dependencies">
<entry><constant>WIN32_INFO_DEPENDENCIES</constant></entry>
<entry>"dependencies"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-delay">
<entry><constant>WIN32_INFO_RECOVERY_DELAY</constant></entry>
<entry>"recovery_delay"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-action-1">
<entry><constant>WIN32_INFO_RECOVERY_ACTION_1</constant></entry>
<entry>"recovery_action_1"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-action-2">
<entry><constant>WIN32_INFO_RECOVERY_ACTION_2</constant></entry>
<entry>"recovery_action_2"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-action-3">
<entry><constant>WIN32_INFO_RECOVERY_ACTION_3</constant></entry>
<entry>"recovery_action_3"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-reset-period">
<entry><constant>WIN32_INFO_RECOVERY_RESET_PERIOD</constant></entry>
<entry>"recovery_reset_period"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-enabled">
<entry><constant>WIN32_INFO_RECOVERY_ENABLED</constant></entry>
<entry>"recovery_enabled"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-reboot-msg">
<entry><constant>WIN32_INFO_RECOVERY_REBOOT_MSG</constant></entry>
<entry>"recovery_reboot_msg"</entry>
<entry>
</entry>
</row>
<row xml:id="constant.info-recovery-command">
<entry><constant>WIN32_INFO_RECOVERY_COMMAND</constant></entry>
<entry>"recovery_command"</entry>
<entry>
</entry>
</row>
</tbody>
</tgroup>
</table>
<table xml:id="win32service.constants.rights">
<title>Win32 Service rights</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.win32-service-all-access">
<entry><constant>WIN32_SERVICE_ALL_ACCESS</constant></entry>
<entry><literal>0x000F003F</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-change-config">
<entry><constant>WIN32_SERVICE_CHANGE_CONFIG</constant></entry>
<entry><literal>0x00000002</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-enumerate-dependents">
<entry><constant>WIN32_SERVICE_ENUMERATE_DEPENDENTS</constant></entry>
<entry><literal>0x00000008</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-interrogate">
<entry><constant>WIN32_SERVICE_INTERROGATE</constant></entry>
<entry><literal>0x00000080</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-pause-continue">
<entry><constant>WIN32_SERVICE_PAUSE_CONTINUE</constant></entry>
<entry><literal>0x00000040</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-query-config">
<entry><constant>WIN32_SERVICE_QUERY_CONFIG</constant></entry>
<entry><literal>0x00000001</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-query-status">
<entry><constant>WIN32_SERVICE_QUERY_STATUS</constant></entry>
<entry><literal>0x00000004</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-start">
<entry><constant>WIN32_SERVICE_START</constant></entry>
<entry><literal>0x00000010</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-stop">
<entry><constant>WIN32_SERVICE_STOP</constant></entry>
<entry><literal>0x00000020</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-service-user-defined-control">
<entry><constant>WIN32_SERVICE_USER_DEFINED_CONTROL</constant></entry>
<entry><literal>0x00000100</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-access-system-security">
<entry><constant>WIN32_ACCESS_SYSTEM_SECURITY</constant></entry>
<entry><literal>0x00001000</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-delete">
<entry><constant>WIN32_DELETE</constant></entry>
<entry><literal>0x00010000</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-read-control">
<entry><constant>WIN32_READ_CONTROL</constant></entry>
<entry><literal>0x00020000</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-write-dac">
<entry><constant>WIN32_WRITE_DAC</constant></entry>
<entry><literal>0x00040000</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-write-owner">
<entry><constant>WIN32_WRITE_OWNER</constant></entry>
<entry><literal>0x00080000</literal></entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-generic-read">
<entry><constant>WIN32_GENERIC_READ</constant></entry>
<entry>Include rights:
<constant>WIN32_STANDARD_RIGHTS_READ</constant>,
<constant>WIN32_SERVICE_QUERY_CONFIG</constant>,
<constant>WIN32_SERVICE_QUERY_STATUS</constant>,
<constant>WIN32_SERVICE_INTERROGATE</constant>,
<constant>WIN32_SERVICE_ENUMERATE_DEPENDENTS</constant>
</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-generic-write">
<entry><constant>WIN32_GENERIC_WRITE</constant></entry>
<entry>Include rights:
<constant>WIN32_STANDARD_RIGHTS_WRITE</constant>,
<constant>WIN32_SERVICE_CHANGE_CONFIG</constant>
</entry>
<entry>
</entry>
</row>
<row xml:id="constant.win32-generic-execute">
<entry><constant>WIN32_GENERIC_EXECUTE</constant></entry>
<entry>Include rights:
<constant>WIN32_STANDARD_RIGHTS_EXECUTE</constant>,
<constant>WIN32_SERVICE_START</constant>,
<constant>WIN32_SERVICE_STOP</constant>,
<constant>WIN32_SERVICE_PAUSE_CONTINUE</constant>,
<constant>WIN32_SERVICE_USER_DEFINED_CONTROL</constant>
</entry>
<entry>
</entry>
</row>
</tbody>
</tgroup>
</table>
</appendix>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|