Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

winerror.h

00001 #ifndef __WINE_WINERROR_H
00002 #define __WINE_WINERROR_H
00003 
00004 
00005 extern int WIN32_LastError;
00006 
00007 #define FACILITY_NULL      0
00008 #define FACILITY_RPC       1
00009 #define FACILITY_DISPATCH  2
00010 #define FACILITY_STORAGE   3
00011 #define FACILITY_ITF            4
00012 #define FACILITY_WIN32          7
00013 #define FACILITY_WINDOWS   8
00014 #define FACILITY_SSPI      9
00015 #define FACILITY_CONTROL   10
00016 #define FACILITY_CERT      11
00017 #define FACILITY_INTERNET  12
00018 
00019 #define SEVERITY_ERROR          1
00020 
00021 
00022 #define MAKE_HRESULT(sev,fac,code) \
00023     ((HRESULT) (((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))) )
00024 #define MAKE_SCODE(sev,fac,code) \
00025         ((SCODE) (((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))) )
00026 #define SUCCEEDED(stat) ((HRESULT)(stat)>=0)
00027 #define FAILED(stat) ((HRESULT)(stat)<0)
00028 
00029 #define HRESULT_CODE(hr) ((hr) & 0xFFFF)
00030 #define SCODE_CODE(sc)   ((sc) & 0xFFFF)
00031 
00032 #define HRESULT_FACILITY(hr)  (((hr) >> 16) & 0x1FFF)
00033 #define SCODE_FACILITY(sc)  (((sc) >> 16) & 0x1FFF)
00034 
00035 /* ERROR_UNKNOWN is a placeholder for error conditions which haven't
00036  * been tested yet so we're not exactly sure what will be returned.
00037  * All instances of ERROR_UNKNOWN should be tested under Win95/NT
00038  * and replaced.
00039  */
00040 #define ERROR_UNKNOWN               99999
00041 
00042 #define SEVERITY_SUCCESS    0
00043 #define SEVERITY_ERROR      1
00044 
00045 #define NO_ERROR                                           0
00046 #define ERROR_SUCCESS                                      0
00047 #define ERROR_INVALID_FUNCTION                             1
00048 #define ERROR_FILE_NOT_FOUND                               2
00049 #define ERROR_PATH_NOT_FOUND                               3
00050 #define ERROR_TOO_MANY_OPEN_FILES                          4
00051 #define ERROR_ACCESS_DENIED                                5
00052 #define ERROR_INVALID_HANDLE                               6
00053 #define ERROR_ARENA_TRASHED                                7
00054 #define ERROR_NOT_ENOUGH_MEMORY                            8
00055 #define ERROR_INVALID_BLOCK                                9
00056 #define ERROR_BAD_ENVIRONMENT                              10
00057 #define ERROR_BAD_FORMAT                                   11
00058 #define ERROR_INVALID_ACCESS                               12
00059 #define ERROR_INVALID_DATA                                 13
00060 #define ERROR_OUTOFMEMORY                                  14
00061 #define ERROR_INVALID_DRIVE                                15
00062 #define ERROR_CURRENT_DIRECTORY                            16
00063 #define ERROR_NOT_SAME_DEVICE                              17
00064 #define ERROR_NO_MORE_FILES                                18
00065 #define ERROR_WRITE_PROTECT                                19
00066 #define ERROR_BAD_UNIT                                     20
00067 #define ERROR_NOT_READY                                    21
00068 #define ERROR_BAD_COMMAND                                  22
00069 #define ERROR_CRC                                          23
00070 #define ERROR_BAD_LENGTH                                   24
00071 #define ERROR_SEEK                                         25
00072 #define ERROR_NOT_DOS_DISK                                 26
00073 #define ERROR_SECTOR_NOT_FOUND                             27
00074 #define ERROR_OUT_OF_PAPER                                 28
00075 #define ERROR_WRITE_FAULT                                  29
00076 #define ERROR_READ_FAULT                                   30
00077 #define ERROR_GEN_FAILURE                                  31
00078 #define ERROR_SHARING_VIOLATION                            32
00079 #define ERROR_LOCK_VIOLATION                               33
00080 #define ERROR_WRONG_DISK                                   34
00081 #define ERROR_SHARING_BUFFER_EXCEEDED                      36
00082 #define ERROR_HANDLE_EOF                                   38
00083 #define ERROR_HANDLE_DISK_FULL                             39
00084 #define ERROR_NOT_SUPPORTED                                50
00085 #define ERROR_REM_NOT_LIST                                 51
00086 #define ERROR_DUP_NAME                                     52
00087 #define ERROR_BAD_NETPATH                                  53
00088 #define ERROR_NETWORK_BUSY                                 54
00089 #define ERROR_DEV_NOT_EXIST                                55
00090 #define ERROR_TOO_MANY_CMDS                                56
00091 #define ERROR_ADAP_HDW_ERR                                 57
00092 #define ERROR_BAD_NET_RESP                                 58
00093 #define ERROR_UNEXP_NET_ERR                                59
00094 #define ERROR_BAD_REM_ADAP                                 60
00095 #define ERROR_PRINTQ_FULL                                  61
00096 #define ERROR_NO_SPOOL_SPACE                               62
00097 #define ERROR_PRINT_CANCELLED                              63
00098 #define ERROR_NETNAME_DELETED                              64
00099 #define ERROR_NETWORK_ACCESS_DENIED                        65
00100 #define ERROR_BAD_DEV_TYPE                                 66
00101 #define ERROR_BAD_NET_NAME                                 67
00102 #define ERROR_TOO_MANY_NAMES                               68
00103 #define ERROR_TOO_MANY_SESS                                69
00104 #define ERROR_SHARING_PAUSED                               70
00105 #define ERROR_REQ_NOT_ACCEP                                71
00106 #define ERROR_REDIR_PAUSED                                 72
00107 #define ERROR_FILE_EXISTS                                  80
00108 #define ERROR_CANNOT_MAKE                                  82
00109 #define ERROR_FAIL_I24                                     83
00110 #define ERROR_OUT_OF_STRUCTURES                            84
00111 #define ERROR_ALREADY_ASSIGNED                             85
00112 #define ERROR_INVALID_PASSWORD                             86
00113 #define ERROR_INVALID_PARAMETER                            87
00114 #define ERROR_NET_WRITE_FAULT                              88
00115 #define ERROR_NO_PROC_SLOTS                                89
00116 #define ERROR_TOO_MANY_SEMAPHORES                          100
00117 #define ERROR_EXCL_SEM_ALREADY_OWNED                       101
00118 #define ERROR_SEM_IS_SET                                   102
00119 #define ERROR_TOO_MANY_SEM_REQUESTS                        103
00120 #define ERROR_INVALID_AT_INTERRUPT_TIME                    104
00121 #define ERROR_SEM_OWNER_DIED                               105
00122 #define ERROR_SEM_USER_LIMIT                               106
00123 #define ERROR_DISK_CHANGE                                  107
00124 #define ERROR_DRIVE_LOCKED                                 108
00125 #define ERROR_BROKEN_PIPE                                  109
00126 #define ERROR_OPEN_FAILED                                  110
00127 #define ERROR_BUFFER_OVERFLOW                              111
00128 #define ERROR_DISK_FULL                                    112
00129 #define ERROR_NO_MORE_SEARCH_HANDLES                       113
00130 #define ERROR_INVALID_TARGET_HANDLE                        114
00131 #define ERROR_INVALID_CATEGORY                             117
00132 #define ERROR_INVALID_VERIFY_SWITCH                        118
00133 #define ERROR_BAD_DRIVER_LEVEL                             119
00134 #define ERROR_CALL_NOT_IMPLEMENTED                         120
00135 #define ERROR_SEM_TIMEOUT                                  121
00136 #define ERROR_INSUFFICIENT_BUFFER                          122
00137 #define ERROR_INVALID_NAME                                 123
00138 #define ERROR_INVALID_LEVEL                                124
00139 #define ERROR_NO_VOLUME_LABEL                              125
00140 #define ERROR_MOD_NOT_FOUND                                126
00141 #define ERROR_PROC_NOT_FOUND                               127
00142 #define ERROR_WAIT_NO_CHILDREN                             128
00143 #define ERROR_CHILD_NOT_COMPLETE                           129
00144 #define ERROR_DIRECT_ACCESS_HANDLE                         130
00145 #define ERROR_NEGATIVE_SEEK                                131
00146 #define ERROR_SEEK_ON_DEVICE                               132
00147 #define ERROR_IS_JOIN_TARGET                               133
00148 #define ERROR_IS_JOINED                                    134
00149 #define ERROR_IS_SUBSTED                                   135
00150 #define ERROR_NOT_JOINED                                   136
00151 #define ERROR_NOT_SUBSTED                                  137
00152 #define ERROR_JOIN_TO_JOIN                                 138
00153 #define ERROR_SUBST_TO_SUBST                               139
00154 #define ERROR_JOIN_TO_SUBST                                140
00155 #define ERROR_SUBST_TO_JOIN                                141
00156 #define ERROR_BUSY_DRIVE                                   142
00157 #define ERROR_SAME_DRIVE                                   143
00158 #define ERROR_DIR_NOT_ROOT                                 144
00159 #define ERROR_DIR_NOT_EMPTY                                145
00160 #define ERROR_IS_SUBST_PATH                                146
00161 #define ERROR_IS_JOIN_PATH                                 147
00162 #define ERROR_PATH_BUSY                                    148
00163 #define ERROR_IS_SUBST_TARGET                              149
00164 #define ERROR_SYSTEM_TRACE                                 150
00165 #define ERROR_INVALID_EVENT_COUNT                          151
00166 #define ERROR_TOO_MANY_MUXWAITERS                          152
00167 #define ERROR_INVALID_LIST_FORMAT                          153
00168 #define ERROR_LABEL_TOO_LONG                               154
00169 #define ERROR_TOO_MANY_TCBS                                155
00170 #define ERROR_SIGNAL_REFUSED                               156
00171 #define ERROR_DISCARDED                                    157
00172 #define ERROR_NOT_LOCKED                                   158
00173 #define ERROR_BAD_THREADID_ADDR                            159
00174 #define ERROR_BAD_ARGUMENTS                                160
00175 #define ERROR_BAD_PATHNAME                                 161
00176 #define ERROR_SIGNAL_PENDING                               162
00177 #define ERROR_MAX_THRDS_REACHED                            164
00178 #define ERROR_LOCK_FAILED                                  167
00179 #define ERROR_BUSY                                         170
00180 #define ERROR_CANCEL_VIOLATION                             173
00181 #define ERROR_ATOMIC_LOCKS_NOT_SUPPORTED                   174
00182 #define ERROR_INVALID_SEGMENT_NUMBER                       180
00183 #define ERROR_INVALID_ORDINAL                              182
00184 #define ERROR_ALREADY_EXISTS                               183
00185 #define ERROR_INVALID_FLAG_NUMBER                          186
00186 #define ERROR_SEM_NOT_FOUND                                187
00187 #define ERROR_INVALID_STARTING_CODESEG                     188
00188 #define ERROR_INVALID_STACKSEG                             189
00189 #define ERROR_INVALID_MODULETYPE                           190
00190 #define ERROR_INVALID_EXE_SIGNATURE                        191
00191 #define ERROR_EXE_MARKED_INVALID                           192
00192 #define ERROR_BAD_EXE_FORMAT                               193
00193 #define ERROR_ITERATED_DATA_EXCEEDS_64k                    194
00194 #define ERROR_INVALID_MINALLOCSIZE                         195
00195 #define ERROR_DYNLINK_FROM_INVALID_RING                    196
00196 #define ERROR_IOPL_NOT_ENABLED                             197
00197 #define ERROR_INVALID_SEGDPL                               198
00198 #define ERROR_AUTODATASEG_EXCEEDS_64k                      199
00199 #define ERROR_RING2SEG_MUST_BE_MOVABLE                     200
00200 #define ERROR_RELOC_CHAIN_XEEDS_SEGLIM                     201
00201 #define ERROR_INFLOOP_IN_RELOC_CHAIN                       202
00202 #define ERROR_ENVVAR_NOT_FOUND                             203
00203 #define ERROR_NO_SIGNAL_SENT                               205
00204 #define ERROR_FILENAME_EXCED_RANGE                         206
00205 #define ERROR_RING2_STACK_IN_USE                           207
00206 #define ERROR_META_EXPANSION_TOO_LONG                      208
00207 #define ERROR_INVALID_SIGNAL_NUMBER                        209
00208 #define ERROR_THREAD_1_INACTIVE                            210
00209 #define ERROR_LOCKED                                       212
00210 #define ERROR_TOO_MANY_MODULES                             214
00211 #define ERROR_NESTING_NOT_ALLOWED                          215
00212 #define ERROR_EXE_MACHINE_TYPE_MISMATCH                    216
00213 #define ERROR_BAD_PIPE                                     230
00214 #define ERROR_PIPE_BUSY                                    231
00215 #define ERROR_NO_DATA                                      232
00216 #define ERROR_PIPE_NOT_CONNECTED                           233
00217 #define ERROR_MORE_DATA                                    234
00218 #define ERROR_VC_DISCONNECTED                              240
00219 #define ERROR_INVALID_EA_NAME                              254
00220 #define ERROR_EA_LIST_INCONSISTENT                         255
00221 #define ERROR_NO_MORE_ITEMS                                259
00222 #define ERROR_CANNOT_COPY                                  266
00223 #define ERROR_DIRECTORY                                    267
00224 #define ERROR_EAS_DIDNT_FIT                                275
00225 #define ERROR_EA_FILE_CORRUPT                              276
00226 #define ERROR_EA_TABLE_FULL                                277
00227 #define ERROR_INVALID_EA_HANDLE                            278
00228 #define ERROR_EAS_NOT_SUPPORTED                            282
00229 #define ERROR_NOT_OWNER                                    288
00230 #define ERROR_TOO_MANY_POSTS                               298
00231 #define ERROR_PARTIAL_COPY                                 299
00232 #define ERROR_OPLOCK_NOT_GRANTED                           300
00233 #define ERROR_INVALID_OPLOCK_PROTOCOL                      301
00234 #define ERROR_MR_MID_NOT_FOUND                             317
00235 #define ERROR_INVALID_ADDRESS                              487
00236 #define ERROR_ARITHMETIC_OVERFLOW                          534
00237 #define ERROR_PIPE_CONNECTED                               535
00238 #define ERROR_PIPE_LISTENING                               536
00239 #define ERROR_EA_ACCESS_DENIED                             994
00240 #define ERROR_OPERATION_ABORTED                            995
00241 #define ERROR_IO_INCOMPLETE                                996
00242 #define ERROR_IO_PENDING                                   997
00243 #define ERROR_NOACCESS                                     998
00244 #define ERROR_SWAPERROR                                    999
00245 #define ERROR_STACK_OVERFLOW                               1001
00246 #define ERROR_INVALID_MESSAGE                              1002
00247 #define ERROR_CAN_NOT_COMPLETE                             1003
00248 #define ERROR_INVALID_FLAGS                                1004
00249 #define ERROR_UNRECOGNIZED_VOLUME                          1005
00250 #define ERROR_FILE_INVALID                                 1006
00251 #define ERROR_FULLSCREEN_MODE                              1007
00252 #define ERROR_NO_TOKEN                                     1008
00253 #define ERROR_BADDB                                        1009
00254 #define ERROR_BADKEY                                       1010
00255 #define ERROR_CANTOPEN                                     1011
00256 #define ERROR_CANTREAD                                     1012
00257 #define ERROR_CANTWRITE                                    1013
00258 #define ERROR_REGISTRY_RECOVERED                           1014
00259 #define ERROR_REGISTRY_CORRUPT                             1015
00260 #define ERROR_REGISTRY_IO_FAILED                           1016
00261 #define ERROR_NOT_REGISTRY_FILE                            1017
00262 #define ERROR_KEY_DELETED                                  1018
00263 #define ERROR_NO_LOG_SPACE                                 1019
00264 #define ERROR_KEY_HAS_CHILDREN                             1020
00265 #define ERROR_CHILD_MUST_BE_VOLATILE                       1021
00266 #define ERROR_NOTIFY_ENUM_DIR                              1022
00267 #define ERROR_DEPENDENT_SERVICES_RUNNING                   1051
00268 #define ERROR_INVALID_SERVICE_CONTROL                      1052
00269 #define ERROR_SERVICE_REQUEST_TIMEOUT                      1053
00270 #define ERROR_SERVICE_NO_THREAD                            1054
00271 #define ERROR_SERVICE_DATABASE_LOCKED                      1055
00272 #define ERROR_SERVICE_ALREADY_RUNNING                      1056
00273 #define ERROR_INVALID_SERVICE_ACCOUNT                      1057
00274 #define ERROR_SERVICE_DISABLED                             1058
00275 #define ERROR_CIRCULAR_DEPENDENCY                          1059
00276 #define ERROR_SERVICE_DOES_NOT_EXIST                       1060
00277 #define ERROR_SERVICE_CANNOT_ACCEPT_CTRL                   1061
00278 #define ERROR_SERVICE_NOT_ACTIVE                           1062
00279 #define ERROR_FAILED_SERVICE_CONTROLLER_CONNECT            1063
00280 #define ERROR_EXCEPTION_IN_SERVICE                         1064
00281 #define ERROR_DATABASE_DOES_NOT_EXIST                      1065
00282 #define ERROR_SERVICE_SPECIFIC_ERROR                       1066
00283 #define ERROR_PROCESS_ABORTED                              1067
00284 #define ERROR_SERVICE_DEPENDENCY_FAIL                      1068
00285 #define ERROR_SERVICE_LOGON_FAILED                         1069
00286 #define ERROR_SERVICE_START_HANG                           1070
00287 #define ERROR_INVALID_SERVICE_LOCK                         1071
00288 #define ERROR_SERVICE_MARKED_FOR_DELETE                    1072
00289 #define ERROR_SERVICE_EXISTS                               1073
00290 #define ERROR_ALREADY_RUNNING_LKG                          1074
00291 #define ERROR_SERVICE_DEPENDENCY_DELETED                   1075
00292 #define ERROR_BOOT_ALREADY_ACCEPTED                        1076
00293 #define ERROR_SERVICE_NEVER_STARTED                        1077
00294 #define ERROR_DUPLICATE_SERVICE_NAME                       1078
00295 #define ERROR_DIFFERENT_SERVICE_ACCOUNT                    1079
00296 #define ERROR_CANNOT_DETECT_DRIVER_FAILURE                 1080
00297 #define ERROR_CANNOT_DETECT_PROCESS_ABORT                  1081
00298 #define ERROR_NO_RECOVERY_PROGRAM                          1082
00299 #define ERROR_SERVICE_NOT_IN_EXE                           1083
00300 #define ERROR_END_OF_MEDIA                                 1100
00301 #define ERROR_FILEMARK_DETECTED                            1101
00302 #define ERROR_BEGINNING_OF_MEDIA                           1102
00303 #define ERROR_SETMARK_DETECTED                             1103
00304 #define ERROR_NO_DATA_DETECTED                             1104
00305 #define ERROR_PARTITION_FAILURE                            1105
00306 #define ERROR_INVALID_BLOCK_LENGTH                         1106
00307 #define ERROR_DEVICE_NOT_PARTITIONED                       1107
00308 #define ERROR_UNABLE_TO_LOCK_MEDIA                         1108
00309 #define ERROR_UNABLE_TO_UNLOAD_MEDIA                       1109
00310 #define ERROR_MEDIA_CHANGED                                1110
00311 #define ERROR_BUS_RESET                                    1111
00312 #define ERROR_NO_MEDIA_IN_DRIVE                            1112
00313 #define ERROR_NO_UNICODE_TRANSLATION                       1113
00314 #define ERROR_DLL_INIT_FAILED                              1114
00315 #define ERROR_SHUTDOWN_IN_PROGRESS                         1115
00316 #define ERROR_NO_SHUTDOWN_IN_PROGRESS                      1116
00317 #define ERROR_IO_DEVICE                                    1117
00318 #define ERROR_SERIAL_NO_DEVICE                             1118
00319 #define ERROR_IRQ_BUSY                                     1119
00320 #define ERROR_MORE_WRITES                                  1120
00321 #define ERROR_COUNTER_TIMEOUT                              1121
00322 #define ERROR_FLOPPY_ID_MARK_NOT_FOUND                     1122
00323 #define ERROR_FLOPPY_WRONG_CYLINDER                        1123
00324 #define ERROR_FLOPPY_UNKNOWN_ERROR                         1124
00325 #define ERROR_FLOPPY_BAD_REGISTERS                         1125
00326 #define ERROR_DISK_RECALIBRATE_FAILED                      1126
00327 #define ERROR_DISK_OPERATION_FAILED                        1127
00328 #define ERROR_DISK_RESET_FAILED                            1128
00329 #define ERROR_EOM_OVERFLOW                                 1129
00330 #define ERROR_NOT_ENOUGH_SERVER_MEMORY                     1130
00331 #define ERROR_POSSIBLE_DEADLOCK                            1131
00332 #define ERROR_MAPPED_ALIGNMENT                             1132
00333 #define ERROR_SET_POWER_STATE_VETOED                       1140
00334 #define ERROR_SET_POWER_STATE_FAILED                       1141
00335 #define ERROR_TOO_MANY_LINKS                               1142
00336 #define ERROR_OLD_WIN_VERSION                              1150
00337 #define ERROR_APP_WRONG_OS                                 1151
00338 #define ERROR_SINGLE_INSTANCE_APP                          1152
00339 #define ERROR_RMODE_APP                                    1153
00340 #define ERROR_INVALID_DLL                                  1154
00341 #define ERROR_NO_ASSOCIATION                               1155
00342 #define ERROR_DDE_FAIL                                     1156
00343 #define ERROR_DLL_NOT_FOUND                                1157
00344 #define ERROR_NO_MORE_USER_HANDLES                         1158
00345 #define ERROR_MESSAGE_SYNC_ONLY                            1159
00346 #define ERROR_SOURCE_ELEMENT_EMPTY                         1160
00347 #define ERROR_DESTINATION_ELEMENT_FULL                     1161
00348 #define ERROR_ILLEGAL_ELEMENT_ADDRESS                      1162
00349 #define ERROR_MAGAZINE_NOT_PRESENT                         1163
00350 #define ERROR_DEVICE_REINITIALIZATION_NEEDED               1164
00351 #define ERROR_DEVICE_REQUIRES_CLEANING                     1165
00352 #define ERROR_DEVICE_DOOR_OPEN                             1166
00353 #define ERROR_DEVICE_NOT_CONNECTED                         1167
00354 #define ERROR_NOT_FOUND                                    1168
00355 #define ERROR_NO_MATCH                                     1169
00356 #define ERROR_SET_NOT_FOUND                                1170
00357 #define ERROR_POINT_NOT_FOUND                              1171
00358 #define ERROR_NO_TRACKING_SERVICE                          1172
00359 #define ERROR_NO_VOLUME_ID                                 1173
00360 #define ERROR_UNABLE_TO_REMOVE_REPLACED                    1175
00361 #define ERROR_UNABLE_TO_MOVE_REPLACEMENT                   1176
00362 #define ERROR_UNABLE_TO_MOVE_REPLACEMENT_2                 1177
00363 #define ERROR_JOURNAL_DELETE_IN_PROGRESS                   1178
00364 #define ERROR_JOURNAL_NOT_ACTIVE                           1179
00365 #define ERROR_POTENTIAL_FILE_FOUND                         1180
00366 #define ERROR_JOURNAL_ENTRY_DELETED                        1181
00367 #define ERROR_BAD_DEVICE                                   1200
00368 #define ERROR_CONNECTION_UNAVAIL                           1201
00369 #define ERROR_DEVICE_ALREADY_REMEMBERED                    1202
00370 #define ERROR_NO_NET_OR_BAD_PATH                           1203
00371 #define ERROR_BAD_PROVIDER                                 1204
00372 #define ERROR_CANNOT_OPEN_PROFILE                          1205
00373 #define ERROR_BAD_PROFILE                                  1206
00374 #define ERROR_NOT_CONTAINER                                1207
00375 #define ERROR_EXTENDED_ERROR                               1208
00376 #define ERROR_INVALID_GROUPNAME                            1209
00377 #define ERROR_INVALID_COMPUTERNAME                         1210
00378 #define ERROR_INVALID_EVENTNAME                            1211
00379 #define ERROR_INVALID_DOMAINNAME                           1212
00380 #define ERROR_INVALID_SERVICENAME                          1213
00381 #define ERROR_INVALID_NETNAME                              1214
00382 #define ERROR_INVALID_SHARENAME                            1215
00383 #define ERROR_INVALID_PASSWORDNAME                         1216
00384 #define ERROR_INVALID_MESSAGENAME                          1217
00385 #define ERROR_INVALID_MESSAGEDEST                          1218
00386 #define ERROR_SESSION_CREDENTIAL_CONFLICT                  1219
00387 #define ERROR_REMOTE_SESSION_LIMIT_EXCEEDED                1220
00388 #define ERROR_DUP_DOMAINNAME                               1221
00389 #define ERROR_NO_NETWORK                                   1222
00390 #define ERROR_CANCELLED                                    1223
00391 #define ERROR_USER_MAPPED_FILE                             1224
00392 #define ERROR_CONNECTION_REFUSED                           1225
00393 #define ERROR_GRACEFUL_DISCONNECT                          1226
00394 #define ERROR_ADDRESS_ALREADY_ASSOCIATED                   1227
00395 #define ERROR_ADDRESS_NOT_ASSOCIATED                       1228
00396 #define ERROR_CONNECTION_INVALID                           1229
00397 #define ERROR_CONNECTION_ACTIVE                            1230
00398 #define ERROR_NETWORK_UNREACHABLE                          1231
00399 #define ERROR_HOST_UNREACHABLE                             1232
00400 #define ERROR_PROTOCOL_UNREACHABLE                         1233
00401 #define ERROR_PORT_UNREACHABLE                             1234
00402 #define ERROR_REQUEST_ABORTED                              1235
00403 #define ERROR_CONNECTION_ABORTED                           1236
00404 #define ERROR_RETRY                                        1237
00405 #define ERROR_CONNECTION_COUNT_LIMIT                       1238
00406 #define ERROR_LOGIN_TIME_RESTRICTION                       1239
00407 #define ERROR_LOGIN_WKSTA_RESTRICTION                      1240
00408 #define ERROR_INCORRECT_ADDRESS                            1241
00409 #define ERROR_ALREADY_REGISTERED                           1242
00410 #define ERROR_SERVICE_NOT_FOUND                            1243
00411 #define ERROR_NOT_AUTHENTICATED                            1244
00412 #define ERROR_NOT_LOGGED_ON                                1245
00413 #define ERROR_CONTINUE                                     1246
00414 #define ERROR_ALREADY_INITIALIZED                          1247
00415 #define ERROR_NO_MORE_DEVICES                              1248
00416 #define ERROR_NO_SUCH_SITE                                 1249
00417 #define ERROR_DOMAIN_CONTROLLER_EXISTS                     1250
00418 #define ERROR_ONLY_IF_CONNECTED                            1251
00419 #define ERROR_OVERRIDE_NOCHANGES                           1252
00420 #define ERROR_BAD_USER_PROFILE                             1253
00421 #define ERROR_NOT_SUPPORTED_ON_SBS                         1254
00422 #define ERROR_NOT_ALL_ASSIGNED                             1300
00423 #define ERROR_SOME_NOT_MAPPED                              1301
00424 #define ERROR_NO_QUOTAS_FOR_ACCOUNT                        1302
00425 #define ERROR_LOCAL_USER_SESSION_KEY                       1303
00426 #define ERROR_NULL_LM_PASSWORD                             1304
00427 #define ERROR_UNKNOWN_REVISION                             1305
00428 #define ERROR_REVISION_MISMATCH                            1306
00429 #define ERROR_INVALID_OWNER                                1307
00430 #define ERROR_INVALID_PRIMARY_GROUP                        1308
00431 #define ERROR_NO_IMPERSONATION_TOKEN                       1309
00432 #define ERROR_CANT_DISABLE_MANDATORY                       1310
00433 #define ERROR_NO_LOGON_SERVERS                             1311
00434 #define ERROR_NO_SUCH_LOGON_SESSION                        1312
00435 #define ERROR_NO_SUCH_PRIVILEGE                            1313
00436 #define ERROR_PRIVILEGE_NOT_HELD                           1314
00437 #define ERROR_INVALID_ACCOUNT_NAME                         1315
00438 #define ERROR_USER_EXISTS                                  1316
00439 #define ERROR_NO_SUCH_USER                                 1317
00440 #define ERROR_GROUP_EXISTS                                 1318
00441 #define ERROR_NO_SUCH_GROUP                                1319
00442 #define ERROR_MEMBER_IN_GROUP                              1320
00443 #define ERROR_MEMBER_NOT_IN_GROUP                          1321
00444 #define ERROR_LAST_ADMIN                                   1322
00445 #define ERROR_WRONG_PASSWORD                               1323
00446 #define ERROR_ILL_FORMED_PASSWORD                          1324
00447 #define ERROR_PASSWORD_RESTRICTION                         1325
00448 #define ERROR_LOGON_FAILURE                                1326
00449 #define ERROR_ACCOUNT_RESTRICTION                          1327
00450 #define ERROR_INVALID_LOGON_HOURS                          1328
00451 #define ERROR_INVALID_WORKSTATION                          1329
00452 #define ERROR_PASSWORD_EXPIRED                             1330
00453 #define ERROR_ACCOUNT_DISABLED                             1331
00454 #define ERROR_NONE_MAPPED                                  1332
00455 #define ERROR_TOO_MANY_LUIDS_REQUESTED                     1333
00456 #define ERROR_LUIDS_EXHAUSTED                              1334
00457 #define ERROR_INVALID_SUB_AUTHORITY                        1335
00458 #define ERROR_INVALID_ACL                                  1336
00459 #define ERROR_INVALID_SID                                  1337
00460 #define ERROR_INVALID_SECURITY_DESCR                       1338
00461 #define ERROR_BAD_INHERITANCE_ACL                          1340
00462 #define ERROR_SERVER_DISABLED                              1341
00463 #define ERROR_SERVER_NOT_DISABLED                          1342
00464 #define ERROR_INVALID_ID_AUTHORITY                         1343
00465 #define ERROR_ALLOTTED_SPACE_EXCEEDED                      1344
00466 #define ERROR_INVALID_GROUP_ATTRIBUTES                     1345
00467 #define ERROR_BAD_IMPERSONATION_LEVEL                      1346
00468 #define ERROR_CANT_OPEN_ANONYMOUS                          1347
00469 #define ERROR_BAD_VALIDATION_CLASS                         1348
00470 #define ERROR_BAD_TOKEN_TYPE                               1349
00471 #define ERROR_NO_SECURITY_ON_OBJECT                        1350
00472 #define ERROR_CANT_ACCESS_DOMAIN_INFO                      1351
00473 #define ERROR_INVALID_SERVER_STATE                         1352
00474 #define ERROR_INVALID_DOMAIN_STATE                         1353
00475 #define ERROR_INVALID_DOMAIN_ROLE                          1354
00476 #define ERROR_NO_SUCH_DOMAIN                               1355
00477 #define ERROR_DOMAIN_EXISTS                                1356
00478 #define ERROR_DOMAIN_LIMIT_EXCEEDED                        1357
00479 #define ERROR_INTERNAL_DB_CORRUPTION                       1358
00480 #define ERROR_INTERNAL_ERROR                               1359
00481 #define ERROR_GENERIC_NOT_MAPPED                           1360
00482 #define ERROR_BAD_DESCRIPTOR_FORMAT                        1361
00483 #define ERROR_NOT_LOGON_PROCESS                            1362
00484 #define ERROR_LOGON_SESSION_EXISTS                         1363
00485 #define ERROR_NO_SUCH_PACKAGE                              1364
00486 #define ERROR_BAD_LOGON_SESSION_STATE                      1365
00487 #define ERROR_LOGON_SESSION_COLLISION                      1366
00488 #define ERROR_INVALID_LOGON_TYPE                           1367
00489 #define ERROR_CANNOT_IMPERSONATE                           1368
00490 #define ERROR_RXACT_INVALID_STATE                          1369
00491 #define ERROR_RXACT_COMMIT_FAILURE                         1370
00492 #define ERROR_SPECIAL_ACCOUNT                              1371
00493 #define ERROR_SPECIAL_GROUP                                1372
00494 #define ERROR_SPECIAL_USER                                 1373
00495 #define ERROR_MEMBERS_PRIMARY_GROUP                        1374
00496 #define ERROR_TOKEN_ALREADY_IN_USE                         1375
00497 #define ERROR_NO_SUCH_ALIAS                                1376
00498 #define ERROR_MEMBER_NOT_IN_ALIAS                          1377
00499 #define ERROR_MEMBER_IN_ALIAS                              1378
00500 #define ERROR_ALIAS_EXISTS                                 1379
00501 #define ERROR_LOGON_NOT_GRANTED                            1380
00502 #define ERROR_TOO_MANY_SECRETS                             1381
00503 #define ERROR_SECRET_TOO_LONG                              1382
00504 #define ERROR_INTERNAL_DB_ERROR                            1383
00505 #define ERROR_TOO_MANY_CONTEXT_IDS                         1384
00506 #define ERROR_LOGON_TYPE_NOT_GRANTED                       1385
00507 #define ERROR_NT_CROSS_ENCRYPTION_REQUIRED                 1386
00508 #define ERROR_NO_SUCH_MEMBER                               1387
00509 #define ERROR_INVALID_MEMBER                               1388
00510 #define ERROR_TOO_MANY_SIDS                                1389
00511 #define ERROR_LM_CROSS_ENCRYPTION_REQUIRED                 1390
00512 #define ERROR_NO_INHERITANCE                               1391
00513 #define ERROR_FILE_CORRUPT                                 1392
00514 #define ERROR_DISK_CORRUPT                                 1393
00515 #define ERROR_NO_USER_SESSION_KEY                          1394
00516 #define ERROR_LICENSE_QUOTA_EXCEEDED                       1395
00517 #define ERROR_WRONG_TARGET_NAME                            1396
00518 #define ERROR_MUTUAL_AUTH_FAILED                           1397
00519 #define ERROR_TIME_SKEW                                    1398
00520 #define ERROR_INVALID_WINDOW_HANDLE                        1400
00521 #define ERROR_INVALID_MENU_HANDLE                          1401
00522 #define ERROR_INVALID_CURSOR_HANDLE                        1402
00523 #define ERROR_INVALID_ACCEL_HANDLE                         1403
00524 #define ERROR_INVALID_HOOK_HANDLE                          1404
00525 #define ERROR_INVALID_DWP_HANDLE                           1405
00526 #define ERROR_TLW_WITH_WSCHILD                             1406
00527 #define ERROR_CANNOT_FIND_WND_CLASS                        1407
00528 #define ERROR_WINDOW_OF_OTHER_THREAD                       1408
00529 #define ERROR_HOTKEY_ALREADY_REGISTERED                    1409
00530 #define ERROR_CLASS_ALREADY_EXISTS                         1410
00531 #define ERROR_CLASS_DOES_NOT_EXIST                         1411
00532 #define ERROR_CLASS_HAS_WINDOWS                            1412
00533 #define ERROR_INVALID_INDEX                                1413
00534 #define ERROR_INVALID_ICON_HANDLE                          1414
00535 #define ERROR_PRIVATE_DIALOG_INDEX                         1415
00536 #define ERROR_LISTBOX_ID_NOT_FOUND                         1416
00537 #define ERROR_NO_WILDCARD_CHARACTERS                       1417
00538 #define ERROR_CLIPBOARD_NOT_OPEN                           1418
00539 #define ERROR_HOTKEY_NOT_REGISTERED                        1419
00540 #define ERROR_WINDOW_NOT_DIALOG                            1420
00541 #define ERROR_CONTROL_ID_NOT_FOUND                         1421
00542 #define ERROR_INVALID_COMBOBOX_MESSAGE                     1422
00543 #define ERROR_WINDOW_NOT_COMBOBOX                          1423
00544 #define ERROR_INVALID_EDIT_HEIGHT                          1424
00545 #define ERROR_DC_NOT_FOUND                                 1425
00546 #define ERROR_INVALID_HOOK_FILTER                          1426
00547 #define ERROR_INVALID_FILTER_PROC                          1427
00548 #define ERROR_HOOK_NEEDS_HMOD                              1428
00549 #define ERROR_GLOBAL_ONLY_HOOK                             1429
00550 #define ERROR_JOURNAL_HOOK_SET                             1430
00551 #define ERROR_HOOK_NOT_INSTALLED                           1431
00552 #define ERROR_INVALID_LB_MESSAGE                           1432
00553 #define ERROR_SETCOUNT_ON_BAD_LB                           1433
00554 #define ERROR_LB_WITHOUT_TABSTOPS                          1434
00555 #define ERROR_DESTROY_OBJECT_OF_OTHER_THREAD               1435
00556 #define ERROR_CHILD_WINDOW_MENU                            1436
00557 #define ERROR_NO_SYSTEM_MENU                               1437
00558 #define ERROR_INVALID_MSGBOX_STYLE                         1438
00559 #define ERROR_INVALID_SPI_VALUE                            1439
00560 #define ERROR_SCREEN_ALREADY_LOCKED                        1440
00561 #define ERROR_HWNDS_HAVE_DIFF_PARENT                       1441
00562 #define ERROR_NOT_CHILD_WINDOW                             1442
00563 #define ERROR_INVALID_GW_COMMAND                           1443
00564 #define ERROR_INVALID_THREAD_ID                            1444
00565 #define ERROR_NON_MDICHILD_WINDOW                          1445
00566 #define ERROR_POPUP_ALREADY_ACTIVE                         1446
00567 #define ERROR_NO_SCROLLBARS                                1447
00568 #define ERROR_INVALID_SCROLLBAR_RANGE                      1448
00569 #define ERROR_INVALID_SHOWWIN_COMMAND                      1449
00570 #define ERROR_NO_SYSTEM_RESOURCES                          1450
00571 #define ERROR_NONPAGED_SYSTEM_RESOURCES                    1451
00572 #define ERROR_PAGED_SYSTEM_RESOURCES                       1452
00573 #define ERROR_WORKING_SET_QUOTA                            1453
00574 #define ERROR_PAGEFILE_QUOTA                               1454
00575 #define ERROR_COMMITMENT_LIMIT                             1455
00576 #define ERROR_MENU_ITEM_NOT_FOUND                          1456
00577 #define ERROR_INVALID_KEYBOARD_HANDLE                      1457
00578 #define ERROR_HOOK_TYPE_NOT_ALLOWED                        1458
00579 #define ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION           1459
00580 #define ERROR_TIMEOUT                                      1460
00581 #define ERROR_INVALID_MONITOR_HANDLE                       1461
00582 #define ERROR_EVENTLOG_FILE_CORRUPT                        1500
00583 #define ERROR_EVENTLOG_CANT_START                          1501
00584 #define ERROR_LOG_FILE_FULL                                1502
00585 #define ERROR_EVENTLOG_FILE_CHANGED                        1503
00586 #define ERROR_INSTALL_SERVICE_FAILURE                      1601
00587 #define ERROR_INSTALL_USEREXIT                             1602
00588 #define ERROR_INSTALL_FAILURE                              1603
00589 #define ERROR_INSTALL_SUSPEND                              1604
00590 #define ERROR_UNKNOWN_PRODUCT                              1605
00591 #define ERROR_UNKNOWN_FEATURE                              1606
00592 #define ERROR_UNKNOWN_COMPONENT                            1607
00593 #define ERROR_UNKNOWN_PROPERTY                             1608
00594 #define ERROR_INVALID_HANDLE_STATE                         1609
00595 #define ERROR_BAD_CONFIGURATION                            1610
00596 #define ERROR_INDEX_ABSENT                                 1611
00597 #define ERROR_INSTALL_SOURCE_ABSENT                        1612
00598 #define ERROR_INSTALL_PACKAGE_VERSION                      1613
00599 #define ERROR_PRODUCT_UNINSTALLED                          1614
00600 #define ERROR_BAD_QUERY_SYNTAX                             1615
00601 #define ERROR_INVALID_FIELD                                1616
00602 #define ERROR_DEVICE_REMOVED                               1617
00603 #define ERROR_INSTALL_ALREADY_RUNNING                      1618
00604 #define ERROR_INSTALL_PACKAGE_OPEN_FAILED                  1619
00605 #define ERROR_INSTALL_PACKAGE_INVALID                      1620
00606 #define ERROR_INSTALL_UI_FAILURE                           1621
00607 #define ERROR_INSTALL_LOG_FAILURE                          1622
00608 #define ERROR_INSTALL_LANGUAGE_UNSUPPORTED                 1623
00609 #define ERROR_INSTALL_TRANSFORM_FAILURE                    1624
00610 #define ERROR_INSTALL_PACKAGE_REJECTED                     1625
00611 #define ERROR_FUNCTION_NOT_CALLED                          1626
00612 #define ERROR_FUNCTION_FAILED                              1627
00613 #define ERROR_INVALID_TABLE                                1628
00614 #define ERROR_DATATYPE_MISMATCH                            1629
00615 #define ERROR_UNSUPPORTED_TYPE                             1630
00616 #define ERROR_CREATE_FAILED                                1631
00617 #define ERROR_INSTALL_TEMP_UNWRITABLE                      1632
00618 #define ERROR_INSTALL_PLATFORM_UNSUPPORTED                 1633
00619 #define ERROR_INSTALL_NOTUSED                              1634
00620 #define ERROR_PATCH_PACKAGE_OPEN_FAILED                    1635
00621 #define ERROR_PATCH_PACKAGE_INVALID                        1636
00622 #define ERROR_PATCH_PACKAGE_UNSUPPORTED                    1637
00623 #define ERROR_PRODUCT_VERSION                              1638
00624 #define ERROR_INVALID_COMMAND_LINE                         1639
00625 #define ERROR_INSTALL_REMOTE_DISALLOWED                    1640
00626 #define ERROR_SUCCESS_REBOOT_INITIATED                     1641
00627 #define RPC_S_INVALID_STRING_BINDING                       1700
00628 #define RPC_S_WRONG_KIND_OF_BINDING                        1701
00629 #define RPC_S_INVALID_BINDING                              1702
00630 #define RPC_S_PROTSEQ_NOT_SUPPORTED                        1703
00631 #define RPC_S_INVALID_RPC_PROTSEQ                          1704
00632 #define RPC_S_INVALID_STRING_UUID                          1705
00633 #define RPC_S_INVALID_ENDPOINT_FORMAT                      1706
00634 #define RPC_S_INVALID_NET_ADDR                             1707
00635 #define RPC_S_NO_ENDPOINT_FOUND                            1708
00636 #define RPC_S_INVALID_TIMEOUT                              1709
00637 #define RPC_S_OBJECT_NOT_FOUND                             1710
00638 #define RPC_S_ALREADY_REGISTERED                           1711
00639 #define RPC_S_TYPE_ALREADY_REGISTERED                      1712
00640 #define RPC_S_ALREADY_LISTENING                            1713
00641 #define RPC_S_NO_PROTSEQS_REGISTERED                       1714
00642 #define RPC_S_NOT_LISTENING                                1715
00643 #define RPC_S_UNKNOWN_MGR_TYPE                             1716
00644 #define RPC_S_UNKNOWN_IF                                   1717
00645 #define RPC_S_NO_BINDINGS                                  1718
00646 #define RPC_S_NO_PROTSEQS                                  1719
00647 #define RPC_S_CANT_CREATE_ENDPOINT                         1720
00648 #define RPC_S_OUT_OF_RESOURCES                             1721
00649 #define RPC_S_SERVER_UNAVAILABLE                           1722
00650 #define RPC_S_SERVER_TOO_BUSY                              1723
00651 #define RPC_S_INVALID_NETWORK_OPTIONS                      1724
00652 #define RPC_S_NO_CALL_ACTIVE                               1725
00653 #define RPC_S_CALL_FAILED                                  1726
00654 #define RPC_S_CALL_FAILED_DNE                              1727
00655 #define RPC_S_PROTOCOL_ERROR                               1728
00656 #define RPC_S_UNSUPPORTED_TRANS_SYN                        1730
00657 #define RPC_S_UNSUPPORTED_TYPE                             1732
00658 #define RPC_S_INVALID_TAG                                  1733
00659 #define RPC_S_INVALID_BOUND                                1734
00660 #define RPC_S_NO_ENTRY_NAME                                1735
00661 #define RPC_S_INVALID_NAME_SYNTAX                          1736
00662 #define RPC_S_UNSUPPORTED_NAME_SYNTAX                      1737
00663 #define RPC_S_UUID_NO_ADDRESS                              1739
00664 #define RPC_S_DUPLICATE_ENDPOINT                           1740
00665 #define RPC_S_UNKNOWN_AUTHN_TYPE                           1741
00666 #define RPC_S_MAX_CALLS_TOO_SMALL                          1742
00667 #define RPC_S_STRING_TOO_LONG                              1743
00668 #define RPC_S_PROTSEQ_NOT_FOUND                            1744
00669 #define RPC_S_PROCNUM_OUT_OF_RANGE                         1745
00670 #define RPC_S_BINDING_HAS_NO_AUTH                          1746
00671 #define RPC_S_UNKNOWN_AUTHN_SERVICE                        1747
00672 #define RPC_S_UNKNOWN_AUTHN_LEVEL                          1748
00673 #define RPC_S_INVALID_AUTH_IDENTITY                        1749
00674 #define RPC_S_UNKNOWN_AUTHZ_SERVICE                        1750
00675 #define EPT_S_INVALID_ENTRY                                1751
00676 #define EPT_S_CANT_PERFORM_OP                              1752
00677 #define EPT_S_NOT_REGISTERED                               1753
00678 #define RPC_S_NOTHING_TO_EXPORT                            1754
00679 #define RPC_S_INCOMPLETE_NAME                              1755
00680 #define RPC_S_INVALID_VERS_OPTION                          1756
00681 #define RPC_S_NO_MORE_MEMBERS                              1757
00682 #define RPC_S_NOT_ALL_OBJS_UNEXPORTED                      1758
00683 #define RPC_S_INTERFACE_NOT_FOUND                          1759
00684 #define RPC_S_ENTRY_ALREADY_EXISTS                         1760
00685 #define RPC_S_ENTRY_NOT_FOUND                              1761
00686 #define RPC_S_NAME_SERVICE_UNAVAILABLE                     1762
00687 #define RPC_S_INVALID_NAF_ID                               1763
00688 #define RPC_S_CANNOT_SUPPORT                               1764
00689 #define RPC_S_NO_CONTEXT_AVAILABLE                         1765
00690 #define RPC_S_INTERNAL_ERROR                               1766
00691 #define RPC_S_ZERO_DIVIDE                                  1767
00692 #define RPC_S_ADDRESS_ERROR                                1768
00693 #define RPC_S_FP_DIV_ZERO                                  1769
00694 #define RPC_S_FP_UNDERFLOW                                 1770
00695 #define RPC_S_FP_OVERFLOW                                  1771
00696 #define RPC_X_NO_MORE_ENTRIES                              1772
00697 #define RPC_X_SS_CHAR_TRANS_OPEN_FAIL                      1773
00698 #define RPC_X_SS_CHAR_TRANS_SHORT_FILE                     1774
00699 #define RPC_X_SS_IN_NULL_CONTEXT                           1775
00700 #define RPC_X_SS_CONTEXT_DAMAGED                           1777
00701 #define RPC_X_SS_HANDLES_MISMATCH                          1778
00702 #define RPC_X_SS_CANNOT_GET_CALL_HANDLE                    1779
00703 #define RPC_X_NULL_REF_POINTER                             1780
00704 #define RPC_X_ENUM_VALUE_OUT_OF_RANGE                      1781
00705 #define RPC_X_BYTE_COUNT_TOO_SMALL                         1782
00706 #define RPC_X_BAD_STUB_DATA                                1783
00707 #define ERROR_INVALID_USER_BUFFER                          1784
00708 #define ERROR_UNRECOGNIZED_MEDIA                           1785
00709 #define ERROR_NO_TRUST_LSA_SECRET                          1786
00710 #define ERROR_NO_TRUST_SAM_ACCOUNT                         1787
00711 #define ERROR_TRUSTED_DOMAIN_FAILURE                       1788
00712 #define ERROR_TRUSTED_RELATIONSHIP_FAILURE                 1789
00713 #define ERROR_TRUST_FAILURE                                1790
00714 #define RPC_S_CALL_IN_PROGRESS                             1791
00715 #define ERROR_NETLOGON_NOT_STARTED                         1792
00716 #define ERROR_ACCOUNT_EXPIRED                              1793
00717 #define ERROR_REDIRECTOR_HAS_OPEN_HANDLES                  1794
00718 #define ERROR_PRINTER_DRIVER_ALREADY_INSTALLED             1795
00719 #define ERROR_UNKNOWN_PORT                                 1796
00720 #define ERROR_UNKNOWN_PRINTER_DRIVER                       1797
00721 #define ERROR_UNKNOWN_PRINTPROCESSOR                       1798
00722 #define ERROR_INVALID_SEPARATOR_FILE                       1799
00723 #define ERROR_INVALID_PRIORITY                             1800
00724 #define ERROR_INVALID_PRINTER_NAME                         1801
00725 #define ERROR_PRINTER_ALREADY_EXISTS                       1802
00726 #define ERROR_INVALID_PRINTER_COMMAND                      1803
00727 #define ERROR_INVALID_DATATYPE                             1804
00728 #define ERROR_INVALID_ENVIRONMENT                          1805
00729 #define RPC_S_NO_MORE_BINDINGS                             1806
00730 #define ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT            1807
00731 #define ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT            1808
00732 #define ERROR_NOLOGON_SERVER_TRUST_ACCOUNT                 1809
00733 #define ERROR_DOMAIN_TRUST_INCONSISTENT                    1810
00734 #define ERROR_SERVER_HAS_OPEN_HANDLES                      1811
00735 #define ERROR_RESOURCE_DATA_NOT_FOUND                      1812
00736 #define ERROR_RESOURCE_TYPE_NOT_FOUND                      1813
00737 #define ERROR_RESOURCE_NAME_NOT_FOUND                      1814
00738 #define ERROR_RESOURCE_LANG_NOT_FOUND                      1815
00739 #define ERROR_NOT_ENOUGH_QUOTA                             1816
00740 #define RPC_S_NO_INTERFACES                                1817
00741 #define RPC_S_CALL_CANCELLED                               1818
00742 #define RPC_S_BINDING_INCOMPLETE                           1819
00743 #define RPC_S_COMM_FAILURE                                 1820
00744 #define RPC_S_UNSUPPORTED_AUTHN_LEVEL                      1821
00745 #define RPC_S_NO_PRINC_NAME                                1822
00746 #define RPC_S_NOT_RPC_ERROR                                1823
00747 #define RPC_S_UUID_LOCAL_ONLY                              1824
00748 #define RPC_S_SEC_PKG_ERROR                                1825
00749 #define RPC_S_NOT_CANCELLED                                1826
00750 #define RPC_X_INVALID_ES_ACTION                            1827
00751 #define RPC_X_WRONG_ES_VERSION                             1828
00752 #define RPC_X_WRONG_STUB_VERSION                           1829
00753 #define RPC_X_INVALID_PIPE_OBJECT                          1830
00754 #define RPC_X_WRONG_PIPE_ORDER                             1831
00755 #define RPC_X_WRONG_PIPE_VERSION                           1832
00756 #define RPC_S_GROUP_MEMBER_NOT_FOUND                       1898
00757 #define EPT_S_CANT_CREATE                                  1899
00758 #define RPC_S_INVALID_OBJECT                               1900
00759 #define ERROR_INVALID_TIME                                 1901
00760 #define ERROR_INVALID_FORM_NAME                            1902
00761 #define ERROR_INVALID_FORM_SIZE                            1903
00762 #define ERROR_ALREADY_WAITING                              1904
00763 #define ERROR_PRINTER_DELETED                              1905
00764 #define ERROR_INVALID_PRINTER_STATE                        1906
00765 #define ERROR_PASSWORD_MUST_CHANGE                         1907
00766 #define ERROR_DOMAIN_CONTROLLER_NOT_FOUND                  1908
00767 #define ERROR_ACCOUNT_LOCKED_OUT                           1909
00768 #define OR_INVALID_OXID                                    1910
00769 #define OR_INVALID_OID                                     1911
00770 #define OR_INVALID_SET                                     1912
00771 #define RPC_S_SEND_INCOMPLETE                              1913
00772 #define RPC_S_INVALID_ASYNC_HANDLE                         1914
00773 #define RPC_S_INVALID_ASYNC_CALL                           1915
00774 #define RPC_X_PIPE_CLOSED                                  1916
00775 #define RPC_X_PIPE_DISCIPLINE_ERROR                        1917
00776 #define RPC_X_PIPE_EMPTY                                   1918
00777 #define ERROR_NO_SITENAME                                  1919
00778 #define ERROR_CANT_ACCESS_FILE                             1920
00779 #define ERROR_CANT_RESOLVE_FILENAME                        1921
00780 #define RPC_S_ENTRY_TYPE_MISMATCH                          1922
00781 #define RPC_S_NOT_ALL_OBJS_EXPORTED                        1923
00782 #define RPC_S_INTERFACE_NOT_EXPORTED                       1924
00783 #define RPC_S_PROFILE_NOT_ADDED                            1925
00784 #define RPC_S_PRF_ELT_NOT_ADDED                            1926
00785 #define RPC_S_PRF_ELT_NOT_REMOVED                          1927
00786 #define RPC_S_GRP_ELT_NOT_ADDED                            1928
00787 #define RPC_S_GRP_ELT_NOT_REMOVED                          1929
00788 #define ERROR_INVALID_PIXEL_FORMAT                         2000
00789 #define ERROR_BAD_DRIVER                                   2001
00790 #define ERROR_INVALID_WINDOW_STYLE                         2002
00791 #define ERROR_METAFILE_NOT_SUPPORTED                       2003
00792 #define ERROR_TRANSFORM_NOT_SUPPORTED                      2004
00793 #define ERROR_CLIPPING_NOT_SUPPORTED                       2005
00794 #define ERROR_INVALID_CMM                                  2010
00795 #define ERROR_INVALID_PROFILE                              2011
00796 #define ERROR_TAG_NOT_FOUND                                2012
00797 #define ERROR_TAG_NOT_PRESENT                              2013
00798 #define ERROR_DUPLICATE_TAG                                2014
00799 #define ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE           2015
00800 #define ERROR_PROFILE_NOT_FOUND                            2016
00801 #define ERROR_INVALID_COLORSPACE                           2017
00802 #define ERROR_ICM_NOT_ENABLED                              2018
00803 #define ERROR_DELETING_ICM_XFORM                           2019
00804 #define ERROR_INVALID_TRANSFORM                            2020
00805 #define ERROR_COLORSPACE_MISMATCH                          2021
00806 #define ERROR_INVALID_COLORINDEX                           2022
00807 #define ERROR_CONNECTED_OTHER_PASSWORD                     2108
00808 #define ERROR_BAD_USERNAME                                 2202
00809 #define ERROR_NOT_CONNECTED                                2250
00810 #define ERROR_OPEN_FILES                                   2401
00811 #define ERROR_ACTIVE_CONNECTIONS                           2402
00812 #define ERROR_DEVICE_IN_USE                                2404
00813 #define ERROR_UNKNOWN_PRINT_MONITOR                        3000
00814 #define ERROR_PRINTER_DRIVER_IN_USE                        3001
00815 #define ERROR_SPOOL_FILE_NOT_FOUND                         3002
00816 #define ERROR_SPL_NO_STARTDOC                              3003
00817 #define ERROR_SPL_NO_ADDJOB                                3004
00818 #define ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED            3005
00819 #define ERROR_PRINT_MONITOR_ALREADY_INSTALLED              3006
00820 #define ERROR_INVALID_PRINT_MONITOR                        3007
00821 #define ERROR_PRINT_MONITOR_IN_USE                         3008
00822 #define ERROR_PRINTER_HAS_JOBS_QUEUED                      3009
00823 #define ERROR_SUCCESS_REBOOT_REQUIRED                      3010
00824 #define ERROR_SUCCESS_RESTART_REQUIRED                     3011
00825 #define ERROR_PRINTER_NOT_FOUND                            3012
00826 #define ERROR_WINS_INTERNAL                                4000
00827 #define ERROR_CAN_NOT_DEL_LOCAL_WINS                       4001
00828 #define ERROR_STATIC_INIT                                  4002
00829 #define ERROR_INC_BACKUP                                   4003
00830 #define ERROR_FULL_BACKUP                                  4004
00831 #define ERROR_REC_NON_EXISTENT                             4005
00832 #define ERROR_RPL_NOT_ALLOWED                              4006
00833 #define ERROR_DHCP_ADDRESS_CONFLICT                        4100
00834 #define ERROR_WMI_GUID_NOT_FOUND                           4200
00835 #define ERROR_WMI_INSTANCE_NOT_FOUND                       4201
00836 #define ERROR_WMI_ITEMID_NOT_FOUND                         4202
00837 #define ERROR_WMI_TRY_AGAIN                                4203
00838 #define ERROR_WMI_DP_NOT_FOUND                             4204
00839 #define ERROR_WMI_UNRESOLVED_INSTANCE_REF                  4205
00840 #define ERROR_WMI_ALREADY_ENABLED                          4206
00841 #define ERROR_WMI_GUID_DISCONNECTED                        4207
00842 #define ERROR_WMI_SERVER_UNAVAILABLE                       4208
00843 #define ERROR_WMI_DP_FAILED                                4209
00844 #define ERROR_WMI_INVALID_MOF                              4210
00845 #define ERROR_WMI_INVALID_REGINFO                          4211
00846 #define ERROR_WMI_ALREADY_DISABLED                         4212
00847 #define ERROR_WMI_READ_ONLY                                4213
00848 #define ERROR_WMI_SET_FAILURE                              4214
00849 #define ERROR_INVALID_MEDIA                                4300
00850 #define ERROR_INVALID_LIBRARY                              4301
00851 #define ERROR_INVALID_MEDIA_POOL                           4302
00852 #define ERROR_DRIVE_MEDIA_MISMATCH                         4303
00853 #define ERROR_MEDIA_OFFLINE                                4304
00854 #define ERROR_LIBRARY_OFFLINE                              4305
00855 #define ERROR_EMPTY                                        4306
00856 #define ERROR_NOT_EMPTY                                    4307
00857 #define ERROR_MEDIA_UNAVAILABLE                            4308
00858 #define ERROR_RESOURCE_DISABLED                            4309
00859 #define ERROR_INVALID_CLEANER                              4310
00860 #define ERROR_UNABLE_TO_CLEAN                              4311
00861 #define ERROR_OBJECT_NOT_FOUND                             4312
00862 #define ERROR_DATABASE_FAILURE                             4313
00863 #define ERROR_DATABASE_FULL                                4314
00864 #define ERROR_MEDIA_INCOMPATIBLE                           4315
00865 #define ERROR_RESOURCE_NOT_PRESENT                         4316
00866 #define ERROR_INVALID_OPERATION                            4317
00867 #define ERROR_MEDIA_NOT_AVAILABLE                          4318
00868 #define ERROR_DEVICE_NOT_AVAILABLE                         4319
00869 #define ERROR_REQUEST_REFUSED                              4320
00870 #define ERROR_INVALID_DRIVE_OBJECT                         4321
00871 #define ERROR_LIBRARY_FULL                                 4322
00872 #define ERROR_MEDIUM_NOT_ACCESSIBLE                        4323
00873 #define ERROR_UNABLE_TO_LOAD_MEDIUM                        4324
00874 #define ERROR_UNABLE_TO_INVENTORY_DRIVE                    4325
00875 #define ERROR_UNABLE_TO_INVENTORY_SLOT                     4326
00876 #define ERROR_UNABLE_TO_INVENTORY_TRANSPORT                4327
00877 #define ERROR_TRANSPORT_FULL                               4328
00878 #define ERROR_CONTROLLING_IEPORT                           4329
00879 #define ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA                4330
00880 #define ERROR_CLEANER_SLOT_SET                             4331
00881 #define ERROR_CLEANER_SLOT_NOT_SET                         4332
00882 #define ERROR_CLEANER_CARTRIDGE_SPENT                      4333
00883 #define ERROR_UNEXPECTED_OMID                              4334
00884 #define ERROR_CANT_DELETE_LAST_ITEM                        4335
00885 #define ERROR_MESSAGE_EXCEEDS_MAX_SIZE                     4336
00886 #define ERROR_VOLUME_CONTAINS_SYS_FILES                    4337
00887 #define ERROR_INDIGENOUS_TYPE                              4338
00888 #define ERROR_NO_SUPPORTING_DRIVES                         4339
00889 #define ERROR_FILE_OFFLINE                                 4350
00890 #define ERROR_REMOTE_STORAGE_NOT_ACTIVE                    4351
00891 #define ERROR_REMOTE_STORAGE_MEDIA_ERROR                   4352
00892 #define ERROR_NOT_A_REPARSE_POINT                          4390
00893 #define ERROR_REPARSE_ATTRIBUTE_CONFLICT                   4391
00894 #define ERROR_INVALID_REPARSE_DATA                         4392
00895 #define ERROR_REPARSE_TAG_INVALID                          4393
00896 #define ERROR_REPARSE_TAG_MISMATCH                         4394
00897 #define ERROR_VOLUME_NOT_SIS_ENABLED                       4500
00898 #define ERROR_DEPENDENT_RESOURCE_EXISTS                    5001
00899 #define ERROR_DEPENDENCY_NOT_FOUND                         5002
00900 #define ERROR_DEPENDENCY_ALREADY_EXISTS                    5003
00901 #define ERROR_RESOURCE_NOT_ONLINE                          5004
00902 #define ERROR_HOST_NODE_NOT_AVAILABLE                      5005
00903 #define ERROR_RESOURCE_NOT_AVAILABLE                       5006
00904 #define ERROR_RESOURCE_NOT_FOUND                           5007
00905 #define ERROR_SHUTDOWN_CLUSTER                             5008
00906 #define ERROR_CANT_EVICT_ACTIVE_NODE                       5009
00907 #define ERROR_OBJECT_ALREADY_EXISTS                        5010
00908 #define ERROR_OBJECT_IN_LIST                               5011
00909 #define ERROR_GROUP_NOT_AVAILABLE                          5012
00910 #define ERROR_GROUP_NOT_FOUND                              5013
00911 #define ERROR_GROUP_NOT_ONLINE                             5014
00912 #define ERROR_HOST_NODE_NOT_RESOURCE_OWNER                 5015
00913 #define ERROR_HOST_NODE_NOT_GROUP_OWNER                    5016
00914 #define ERROR_RESMON_CREATE_FAILED                         5017
00915 #define ERROR_RESMON_ONLINE_FAILED                         5018
00916 #define ERROR_RESOURCE_ONLINE                              5019
00917 #define ERROR_QUORUM_RESOURCE                              5020
00918 #define ERROR_NOT_QUORUM_CAPABLE                           5021
00919 #define ERROR_CLUSTER_SHUTTING_DOWN                        5022
00920 #define ERROR_INVALID_STATE                                5023
00921 #define ERROR_RESOURCE_PROPERTIES_STORED                   5024
00922 #define ERROR_NOT_QUORUM_CLASS                             5025
00923 #define ERROR_CORE_RESOURCE                                5026
00924 #define ERROR_QUORUM_RESOURCE_ONLINE_FAILED                5027
00925 #define ERROR_QUORUMLOG_OPEN_FAILED                        5028
00926 #define ERROR_CLUSTERLOG_CORRUPT                           5029
00927 #define ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE            5030
00928 #define ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE                   5031
00929 #define ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND                5032
00930 #define ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE                  5033
00931 #define ERROR_QUORUM_OWNER_ALIVE                           5034
00932 #define ERROR_NETWORK_NOT_AVAILABLE                        5035
00933 #define ERROR_NODE_NOT_AVAILABLE                           5036
00934 #define ERROR_ALL_NODES_NOT_AVAILABLE                      5037
00935 #define ERROR_RESOURCE_FAILED                              5038
00936 #define ERROR_CLUSTER_INVALID_NODE                         5039
00937 #define ERROR_CLUSTER_NODE_EXISTS                          5040
00938 #define ERROR_CLUSTER_JOIN_IN_PROGRESS                     5041
00939 #define ERROR_CLUSTER_NODE_NOT_FOUND                       5042
00940 #define ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND                 5043
00941 #define ERROR_CLUSTER_NETWORK_EXISTS                       5044
00942 #define ERROR_CLUSTER_NETWORK_NOT_FOUND                    5045
00943 #define ERROR_CLUSTER_NETINTERFACE_EXISTS                  5046
00944 #define ERROR_CLUSTER_NETINTERFACE_NOT_FOUND               5047
00945 #define ERROR_CLUSTER_INVALID_REQUEST                      5048
00946 #define ERROR_CLUSTER_INVALID_NETWORK_PROVIDER             5049
00947 #define ERROR_CLUSTER_NODE_DOWN                            5050
00948 #define ERROR_CLUSTER_NODE_UNREACHABLE                     5051
00949 #define ERROR_CLUSTER_NODE_NOT_MEMBER                      5052
00950 #define ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS                 5053
00951 #define ERROR_CLUSTER_INVALID_NETWORK                      5054
00952 #define ERROR_CLUSTER_NODE_UP                              5056
00953 #define ERROR_CLUSTER_IPADDR_IN_USE                        5057
00954 #define ERROR_CLUSTER_NODE_NOT_PAUSED                      5058
00955 #define ERROR_CLUSTER_NO_SECURITY_CONTEXT                  5059
00956 #define ERROR_CLUSTER_NETWORK_NOT_INTERNAL                 5060
00957 #define ERROR_CLUSTER_NODE_ALREADY_UP                      5061
00958 #define ERROR_CLUSTER_NODE_ALREADY_DOWN                    5062
00959 #define ERROR_CLUSTER_NETWORK_ALREADY_ONLINE               5063
00960 #define ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE              5064
00961 #define ERROR_CLUSTER_NODE_ALREADY_MEMBER                  5065
00962 #define ERROR_CLUSTER_LAST_INTERNAL_NETWORK                5066
00963 #define ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS               5067
00964 #define ERROR_INVALID_OPERATION_ON_QUORUM                  5068
00965 #define ERROR_DEPENDENCY_NOT_ALLOWED                       5069
00966 #define ERROR_CLUSTER_NODE_PAUSED                          5070
00967 #define ERROR_NODE_CANT_HOST_RESOURCE                      5071
00968 #define ERROR_CLUSTER_NODE_NOT_READY                       5072
00969 #define ERROR_CLUSTER_NODE_SHUTTING_DOWN                   5073
00970 #define ERROR_CLUSTER_JOIN_ABORTED                         5074
00971 #define ERROR_CLUSTER_INCOMPATIBLE_VERSIONS                5075
00972 #define ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED         5076
00973 #define ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED                5077
00974 #define ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND              5078
00975 #define ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED                5079
00976 #define ERROR_CLUSTER_RESNAME_NOT_FOUND                    5080
00977 #define ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED           5081
00978 #define ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST                5082
00979 #define ERROR_CLUSTER_DATABASE_SEQMISMATCH                 5083
00980 #define ERROR_RESMON_INVALID_STATE                         5084
00981 #define ERROR_CLUSTER_GUM_NOT_LOCKER                       5085
00982 #define ERROR_QUORUM_DISK_NOT_FOUND                        5086
00983 #define ERROR_DATABASE_BACKUP_CORRUPT                      5087
00984 #define ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT            5088
00985 #define ERROR_RESOURCE_PROPERTY_UNCHANGEABLE               5089
00986 #define ERROR_ENCRYPTION_FAILED                            6000
00987 #define ERROR_DECRYPTION_FAILED                            6001
00988 #define ERROR_FILE_ENCRYPTED                               6002
00989 #define ERROR_NO_RECOVERY_POLICY                           6003
00990 #define ERROR_NO_EFS                                       6004
00991 #define ERROR_WRONG_EFS                                    6005
00992 #define ERROR_NO_USER_KEYS                                 6006
00993 #define ERROR_FILE_NOT_ENCRYPTED                           6007
00994 #define ERROR_NOT_EXPORT_FORMAT                            6008
00995 #define ERROR_FILE_READ_ONLY                               6009
00996 #define ERROR_DIR_EFS_DISALLOWED                           6010
00997 #define ERROR_EFS_SERVER_NOT_TRUSTED                       6011
00998 #define ERROR_NO_BROWSER_SERVERS_FOUND                     6118
00999 #define SCHED_E_SERVICE_NOT_LOCALSYSTEM                    6200
01000 #define ERROR_CTX_WINSTATION_NAME_INVALID                  7001
01001 #define ERROR_CTX_INVALID_PD                               7002
01002 #define ERROR_CTX_PD_NOT_FOUND                             7003
01003 #define ERROR_CTX_WD_NOT_FOUND                             7004
01004 #define ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY               7005
01005 #define ERROR_CTX_SERVICE_NAME_COLLISION                   7006
01006 #define ERROR_CTX_CLOSE_PENDING                            7007
01007 #define ERROR_CTX_NO_OUTBUF                                7008
01008 #define ERROR_CTX_MODEM_INF_NOT_FOUND                      7009
01009 #define ERROR_CTX_INVALID_MODEMNAME                        7010
01010 #define ERROR_CTX_MODEM_RESPONSE_ERROR                     7011
01011 #define ERROR_CTX_MODEM_RESPONSE_TIMEOUT                   7012
01012 #define ERROR_CTX_MODEM_RESPONSE_NO_CARRIER                7013
01013 #define ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE               7014
01014 #define ERROR_CTX_MODEM_RESPONSE_BUSY                      7015
01015 #define ERROR_CTX_MODEM_RESPONSE_VOICE                     7016
01016 #define ERROR_CTX_TD_ERROR                                 7017
01017 #define ERROR_CTX_WINSTATION_NOT_FOUND                     7022
01018 #define ERROR_CTX_WINSTATION_ALREADY_EXISTS                7023
01019 #define ERROR_CTX_WINSTATION_BUSY                          7024
01020 #define ERROR_CTX_BAD_VIDEO_MODE                           7025
01021 #define ERROR_CTX_GRAPHICS_INVALID                         7035
01022 #define ERROR_CTX_LOGON_DISABLED                           7037
01023 #define ERROR_CTX_NOT_CONSOLE                              7038
01024 #define ERROR_CTX_CLIENT_QUERY_TIMEOUT                     7040
01025 #define ERROR_CTX_CONSOLE_DISCONNECT                       7041
01026 #define ERROR_CTX_CONSOLE_CONNECT                          7042
01027 #define ERROR_CTX_SHADOW_DENIED                            7044
01028 #define ERROR_CTX_WINSTATION_ACCESS_DENIED                 7045
01029 #define ERROR_CTX_INVALID_WD                               7049
01030 #define ERROR_CTX_SHADOW_INVALID                           7050
01031 #define ERROR_CTX_SHADOW_DISABLED                          7051
01032 #define ERROR_CTX_CLIENT_LICENSE_IN_USE                    7052
01033 #define ERROR_CTX_CLIENT_LICENSE_NOT_SET                   7053
01034 #define ERROR_CTX_LICENSE_NOT_AVAILABLE                    7054
01035 #define ERROR_CTX_LICENSE_CLIENT_INVALID                   7055
01036 #define ERROR_CTX_LICENSE_EXPIRED                          7056
01037 #define FRS_ERR_INVALID_API_SEQUENCE                       8001
01038 #define FRS_ERR_STARTING_SERVICE                           8002
01039 #define FRS_ERR_STOPPING_SERVICE                           8003
01040 #define FRS_ERR_INTERNAL_API                               8004
01041 #define FRS_ERR_INTERNAL                                   8005
01042 #define FRS_ERR_SERVICE_COMM                               8006
01043 #define FRS_ERR_INSUFFICIENT_PRIV                          8007
01044 #define FRS_ERR_AUTHENTICATION                             8008
01045 #define FRS_ERR_PARENT_INSUFFICIENT_PRIV                   8009
01046 #define FRS_ERR_PARENT_AUTHENTICATION                      8010
01047 #define FRS_ERR_CHILD_TO_PARENT_COMM                       8011
01048 #define FRS_ERR_PARENT_TO_CHILD_COMM                       8012
01049 #define FRS_ERR_SYSVOL_POPULATE                            8013
01050 #define FRS_ERR_SYSVOL_POPULATE_TIMEOUT                    8014
01051 #define FRS_ERR_SYSVOL_IS_BUSY                             8015
01052 #define FRS_ERR_SYSVOL_DEMOTE                              8016
01053 #define FRS_ERR_INVALID_SERVICE_PARAMETER                  8017
01054 #define ERROR_DS_NOT_INSTALLED                             8200
01055 #define ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY              8201
01056 #define ERROR_DS_NO_ATTRIBUTE_OR_VALUE                     8202
01057 #define ERROR_DS_INVALID_ATTRIBUTE_SYNTAX                  8203
01058 #define ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED                  8204
01059 #define ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS                 8205
01060 #define ERROR_DS_BUSY                                      8206
01061 #define ERROR_DS_UNAVAILABLE                               8207
01062 #define ERROR_DS_NO_RIDS_ALLOCATED                         8208
01063 #define ERROR_DS_NO_MORE_RIDS                              8209
01064 #define ERROR_DS_INCORRECT_ROLE_OWNER                      8210
01065 #define ERROR_DS_RIDMGR_INIT_ERROR                         8211
01066 #define ERROR_DS_OBJ_CLASS_VIOLATION                       8212
01067 #define ERROR_DS_CANT_ON_NON_LEAF                          8213
01068 #define ERROR_DS_CANT_ON_RDN                               8214
01069 #define ERROR_DS_CANT_MOD_OBJ_CLASS                        8215
01070 #define ERROR_DS_CROSS_DOM_MOVE_ERROR                      8216
01071 #define ERROR_DS_GC_NOT_AVAILABLE                          8217
01072 #define ERROR_SHARED_POLICY                                8218
01073 #define ERROR_POLICY_OBJECT_NOT_FOUND                      8219
01074 #define ERROR_POLICY_ONLY_IN_DS                            8220
01075 #define ERROR_PROMOTION_ACTIVE                             8221
01076 #define ERROR_NO_PROMOTION_ACTIVE                          8222
01077 #define ERROR_DS_OPERATIONS_ERROR                          8224
01078 #define ERROR_DS_PROTOCOL_ERROR                            8225
01079 #define ERROR_DS_TIMELIMIT_EXCEEDED                        8226
01080 #define ERROR_DS_SIZELIMIT_EXCEEDED                        8227
01081 #define ERROR_DS_ADMIN_LIMIT_EXCEEDED                      8228
01082 #define ERROR_DS_COMPARE_FALSE                             8229
01083 #define ERROR_DS_COMPARE_TRUE                              8230
01084 #define ERROR_DS_AUTH_METHOD_NOT_SUPPORTED                 8231
01085 #define ERROR_DS_STRONG_AUTH_REQUIRED                      8232
01086 #define ERROR_DS_INAPPROPRIATE_AUTH                        8233
01087 #define ERROR_DS_AUTH_UNKNOWN                              8234
01088 #define ERROR_DS_REFERRAL                                  8235
01089 #define ERROR_DS_UNAVAILABLE_CRIT_EXTENSION                8236
01090 #define ERROR_DS_CONFIDENTIALITY_REQUIRED                  8237
01091 #define ERROR_DS_INAPPROPRIATE_MATCHING                    8238
01092 #define ERROR_DS_CONSTRAINT_VIOLATION                      8239
01093 #define ERROR_DS_NO_SUCH_OBJECT                            8240
01094 #define ERROR_DS_ALIAS_PROBLEM                             8241
01095 #define ERROR_DS_INVALID_DN_SYNTAX                         8242
01096 #define ERROR_DS_IS_LEAF                                   8243
01097 #define ERROR_DS_ALIAS_DEREF_PROBLEM                       8244
01098 #define ERROR_DS_UNWILLING_TO_PERFORM                      8245
01099 #define ERROR_DS_LOOP_DETECT                               8246
01100 #define ERROR_DS_NAMING_VIOLATION                          8247
01101 #define ERROR_DS_OBJECT_RESULTS_TOO_LARGE                  8248
01102 #define ERROR_DS_AFFECTS_MULTIPLE_DSAS                     8249
01103 #define ERROR_DS_SERVER_DOWN                               8250
01104 #define ERROR_DS_LOCAL_ERROR                               8251
01105 #define ERROR_DS_ENCODING_ERROR                            8252
01106 #define ERROR_DS_DECODING_ERROR                            8253
01107 #define ERROR_DS_FILTER_UNKNOWN                            8254
01108 #define ERROR_DS_PARAM_ERROR                               8255
01109 #define ERROR_DS_NOT_SUPPORTED                             8256
01110 #define ERROR_DS_NO_RESULTS_RETURNED                       8257
01111 #define ERROR_DS_CONTROL_NOT_FOUND                         8258
01112 #define ERROR_DS_CLIENT_LOOP                               8259
01113 #define ERROR_DS_REFERRAL_LIMIT_EXCEEDED                   8260
01114 #define ERROR_DS_ROOT_MUST_BE_NC                           8301
01115 #define ERROR_DS_ADD_REPLICA_INHIBITED                     8302
01116 #define ERROR_DS_ATT_NOT_DEF_IN_SCHEMA                     8303
01117 #define ERROR_DS_MAX_OBJ_SIZE_EXCEEDED                     8304
01118 #define ERROR_DS_OBJ_STRING_NAME_EXISTS                    8305
01119 #define ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA                  8306
01120 #define ERROR_DS_RDN_DOESNT_MATCH_SCHEMA                   8307
01121 #define ERROR_DS_NO_REQUESTED_ATTS_FOUND                   8308
01122 #define ERROR_DS_USER_BUFFER_TO_SMALL                      8309
01123 #define ERROR_DS_ATT_IS_NOT_ON_OBJ                         8310
01124 #define ERROR_DS_ILLEGAL_MOD_OPERATION                     8311
01125 #define ERROR_DS_OBJ_TOO_LARGE                             8312
01126 #define ERROR_DS_BAD_INSTANCE_TYPE                         8313
01127 #define ERROR_DS_MASTERDSA_REQUIRED                        8314
01128 #define ERROR_DS_OBJECT_CLASS_REQUIRED                     8315
01129 #define ERROR_DS_MISSING_REQUIRED_ATT                      8316
01130 #define ERROR_DS_ATT_NOT_DEF_FOR_CLASS                     8317
01131 #define ERROR_DS_ATT_ALREADY_EXISTS                        8318
01132 #define ERROR_DS_CANT_ADD_ATT_VALUES                       8320
01133 #define ERROR_DS_SINGLE_VALUE_CONSTRAINT                   8321
01134 #define ERROR_DS_RANGE_CONSTRAINT                          8322
01135 #define ERROR_DS_ATT_VAL_ALREADY_EXISTS                    8323
01136 #define ERROR_DS_CANT_REM_MISSING_ATT                      8324
01137 #define ERROR_DS_CANT_REM_MISSING_ATT_VAL                  8325
01138 #define ERROR_DS_ROOT_CANT_BE_SUBREF                       8326
01139 #define ERROR_DS_NO_CHAINING                               8327
01140 #define ERROR_DS_NO_CHAINED_EVAL                           8328
01141 #define ERROR_DS_NO_PARENT_OBJECT                          8329
01142 #define ERROR_DS_PARENT_IS_AN_ALIAS                        8330
01143 #define ERROR_DS_CANT_MIX_MASTER_AND_REPS                  8331
01144 #define ERROR_DS_CHILDREN_EXIST                            8332
01145 #define ERROR_DS_OBJ_NOT_FOUND                             8333
01146 #define ERROR_DS_ALIASED_OBJ_MISSING                       8334
01147 #define ERROR_DS_BAD_NAME_SYNTAX                           8335
01148 #define ERROR_DS_ALIAS_POINTS_TO_ALIAS                     8336
01149 #define ERROR_DS_CANT_DEREF_ALIAS                          8337
01150 #define ERROR_DS_OUT_OF_SCOPE                              8338
01151 #define ERROR_DS_CANT_DELETE_DSA_OBJ                       8340
01152 #define ERROR_DS_GENERIC_ERROR                             8341
01153 #define ERROR_DS_DSA_MUST_BE_INT_MASTER                    8342
01154 #define ERROR_DS_CLASS_NOT_DSA                             8343
01155 #define ERROR_DS_INSUFF_ACCESS_RIGHTS                      8344
01156 #define ERROR_DS_ILLEGAL_SUPERIOR                          8345
01157 #define ERROR_DS_ATTRIBUTE_OWNED_BY_SAM                    8346
01158 #define ERROR_DS_NAME_TOO_MANY_PARTS                       8347
01159 #define ERROR_DS_NAME_TOO_LONG                             8348
01160 #define ERROR_DS_NAME_VALUE_TOO_LONG                       8349
01161 #define ERROR_DS_NAME_UNPARSEABLE                          8350
01162 #define ERROR_DS_NAME_TYPE_UNKNOWN                         8351
01163 #define ERROR_DS_NOT_AN_OBJECT                             8352
01164 #define ERROR_DS_SEC_DESC_TOO_SHORT                        8353
01165 #define ERROR_DS_SEC_DESC_INVALID                          8354
01166 #define ERROR_DS_NO_DELETED_NAME                           8355
01167 #define ERROR_DS_SUBREF_MUST_HAVE_PARENT                   8356
01168 #define ERROR_DS_NCNAME_MUST_BE_NC                         8357
01169 #define ERROR_DS_CANT_ADD_SYSTEM_ONLY                      8358
01170 #define ERROR_DS_CLASS_MUST_BE_CONCRETE                    8359
01171 #define ERROR_DS_INVALID_DMD                               8360
01172 #define ERROR_DS_OBJ_GUID_EXISTS                           8361
01173 #define ERROR_DS_NOT_ON_BACKLINK                           8362
01174 #define ERROR_DS_NO_CROSSREF_FOR_NC                        8363
01175 #define ERROR_DS_SHUTTING_DOWN                             8364
01176 #define ERROR_DS_UNKNOWN_OPERATION                         8365
01177 #define ERROR_DS_INVALID_ROLE_OWNER                        8366
01178 #define ERROR_DS_COULDNT_CONTACT_FSMO                      8367
01179 #define ERROR_DS_CROSS_NC_DN_RENAME                        8368
01180 #define ERROR_DS_CANT_MOD_SYSTEM_ONLY                      8369
01181 #define ERROR_DS_REPLICATOR_ONLY                           8370
01182 #define ERROR_DS_OBJ_CLASS_NOT_DEFINED                     8371
01183 #define ERROR_DS_OBJ_CLASS_NOT_SUBCLASS                    8372
01184 #define ERROR_DS_NAME_REFERENCE_INVALID                    8373
01185 #define ERROR_DS_CROSS_REF_EXISTS                          8374
01186 #define ERROR_DS_CANT_DEL_MASTER_CROSSREF                  8375
01187 #define ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD                8376
01188 #define ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX                 8377
01189 #define ERROR_DS_DUP_RDN                                   8378
01190 #define ERROR_DS_DUP_OID                                   8379
01191 #define ERROR_DS_DUP_MAPI_ID                               8380
01192 #define ERROR_DS_DUP_SCHEMA_ID_GUID                        8381
01193 #define ERROR_DS_DUP_LDAP_DISPLAY_NAME                     8382
01194 #define ERROR_DS_SEMANTIC_ATT_TEST                         8383
01195 #define ERROR_DS_SYNTAX_MISMATCH                           8384
01196 #define ERROR_DS_EXISTS_IN_MUST_HAVE                       8385
01197 #define ERROR_DS_EXISTS_IN_MAY_HAVE                        8386
01198 #define ERROR_DS_NONEXISTENT_MAY_HAVE                      8387
01199 #define ERROR_DS_NONEXISTENT_MUST_HAVE                     8388
01200 #define ERROR_DS_AUX_CLS_TEST_FAIL                         8389
01201 #define ERROR_DS_NONEXISTENT_POSS_SUP                      8390
01202 #define ERROR_DS_SUB_CLS_TEST_FAIL                         8391
01203 #define ERROR_DS_BAD_RDN_ATT_ID_SYNTAX                     8392
01204 #define ERROR_DS_EXISTS_IN_AUX_CLS                         8393
01205 #define ERROR_DS_EXISTS_IN_SUB_CLS                         8394
01206 #define ERROR_DS_EXISTS_IN_POSS_SUP                        8395
01207 #define ERROR_DS_RECALCSCHEMA_FAILED                       8396
01208 #define ERROR_DS_TREE_DELETE_NOT_FINISHED                  8397
01209 #define ERROR_DS_CANT_DELETE                               8398
01210 #define ERROR_DS_ATT_SCHEMA_REQ_ID                         8399
01211 #define ERROR_DS_BAD_ATT_SCHEMA_SYNTAX                     8400
01212 #define ERROR_DS_CANT_CACHE_ATT                            8401
01213 #define ERROR_DS_CANT_CACHE_CLASS                          8402
01214 #define ERROR_DS_CANT_REMOVE_ATT_CACHE                     8403
01215 #define ERROR_DS_CANT_REMOVE_CLASS_CACHE                   8404
01216 #define ERROR_DS_CANT_RETRIEVE_DN                          8405
01217 #define ERROR_DS_MISSING_SUPREF                            8406
01218 #define ERROR_DS_CANT_RETRIEVE_INSTANCE                    8407
01219 #define ERROR_DS_CODE_INCONSISTENCY                        8408
01220 #define ERROR_DS_DATABASE_ERROR                            8409
01221 #define ERROR_DS_GOVERNSID_MISSING                         8410
01222 #define ERROR_DS_MISSING_EXPECTED_ATT                      8411
01223 #define ERROR_DS_NCNAME_MISSING_CR_REF                     8412
01224 #define ERROR_DS_SECURITY_CHECKING_ERROR                   8413
01225 #define ERROR_DS_SCHEMA_NOT_LOADED                         8414
01226 #define ERROR_DS_SCHEMA_ALLOC_FAILED                       8415
01227 #define ERROR_DS_ATT_SCHEMA_REQ_SYNTAX                     8416
01228 #define ERROR_DS_GCVERIFY_ERROR                            8417
01229 #define ERROR_DS_DRA_SCHEMA_MISMATCH                       8418
01230 #define ERROR_DS_CANT_FIND_DSA_OBJ                         8419
01231 #define ERROR_DS_CANT_FIND_EXPECTED_NC                     8420
01232 #define ERROR_DS_CANT_FIND_NC_IN_CACHE                     8421
01233 #define ERROR_DS_CANT_RETRIEVE_CHILD                       8422
01234 #define ERROR_DS_SECURITY_ILLEGAL_MODIFY                   8423
01235 #define ERROR_DS_CANT_REPLACE_HIDDEN_REC                   8424
01236 #define ERROR_DS_BAD_HIERARCHY_FILE                        8425
01237 #define ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED              8426
01238 #define ERROR_DS_CONFIG_PARAM_MISSING                      8427
01239 #define ERROR_DS_COUNTING_AB_INDICES_FAILED                8428
01240 #define ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED             8429
01241 #define ERROR_DS_INTERNAL_FAILURE                          8430
01242 #define ERROR_DS_UNKNOWN_ERROR                             8431
01243 #define ERROR_DS_ROOT_REQUIRES_CLASS_TOP                   8432
01244 #define ERROR_DS_REFUSING_FSMO_ROLES                       8433
01245 #define ERROR_DS_MISSING_FSMO_SETTINGS                     8434
01246 #define ERROR_DS_UNABLE_TO_SURRENDER_ROLES                 8435
01247 #define ERROR_DS_DRA_GENERIC                               8436
01248 #define ERROR_DS_DRA_INVALID_PARAMETER                     8437
01249 #define ERROR_DS_DRA_BUSY                                  8438
01250 #define ERROR_DS_DRA_BAD_DN                                8439
01251 #define ERROR_DS_DRA_BAD_NC                                8440
01252 #define ERROR_DS_DRA_DN_EXISTS                             8441
01253 #define ERROR_DS_DRA_INTERNAL_ERROR                        8442
01254 #define ERROR_DS_DRA_INCONSISTENT_DIT                      8443
01255 #define ERROR_DS_DRA_CONNECTION_FAILED                     8444
01256 #define ERROR_DS_DRA_BAD_INSTANCE_TYPE                     8445
01257 #define ERROR_DS_DRA_OUT_OF_MEM                            8446
01258 #define ERROR_DS_DRA_MAIL_PROBLEM                          8447
01259 #define ERROR_DS_DRA_REF_ALREADY_EXISTS                    8448
01260 #define ERROR_DS_DRA_REF_NOT_FOUND                         8449
01261 #define ERROR_DS_DRA_OBJ_IS_REP_SOURCE                     8450
01262 #define ERROR_DS_DRA_DB_ERROR                              8451
01263 #define ERROR_DS_DRA_NO_REPLICA                            8452
01264 #define ERROR_DS_DRA_ACCESS_DENIED                         8453
01265 #define ERROR_DS_DRA_NOT_SUPPORTED                         8454
01266 #define ERROR_DS_DRA_RPC_CANCELLED                         8455
01267 #define ERROR_DS_DRA_SOURCE_DISABLED                       8456
01268 #define ERROR_DS_DRA_SINK_DISABLED                         8457
01269 #define ERROR_DS_DRA_NAME_COLLISION                        8458
01270 #define ERROR_DS_DRA_SOURCE_REINSTALLED                    8459
01271 #define ERROR_DS_DRA_MISSING_PARENT                        8460
01272 #define ERROR_DS_DRA_PREEMPTED                             8461
01273 #define ERROR_DS_DRA_ABANDON_SYNC                          8462
01274 #define ERROR_DS_DRA_SHUTDOWN                              8463
01275 #define ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET              8464
01276 #define ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA             8465
01277 #define ERROR_DS_DRA_EXTN_CONNECTION_FAILED                8466
01278 #define ERROR_DS_INSTALL_SCHEMA_MISMATCH                   8467
01279 #define ERROR_DS_DUP_LINK_ID                               8468
01280 #define ERROR_DS_NAME_ERROR_RESOLVING                      8469
01281 #define ERROR_DS_NAME_ERROR_NOT_FOUND                      8470
01282 #define ERROR_DS_NAME_ERROR_NOT_UNIQUE                     8471
01283 #define ERROR_DS_NAME_ERROR_NO_MAPPING                     8472
01284 #define ERROR_DS_NAME_ERROR_DOMAIN_ONLY                    8473
01285 #define ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING         8474
01286 #define ERROR_DS_CONSTRUCTED_ATT_MOD                       8475
01287 #define ERROR_DS_WRONG_OM_OBJ_CLASS                        8476
01288 #define ERROR_DS_DRA_REPL_PENDING                          8477
01289 #define ERROR_DS_DS_REQUIRED                               8478
01290 #define ERROR_DS_INVALID_LDAP_DISPLAY_NAME                 8479
01291 #define ERROR_DS_NON_BASE_SEARCH                           8480
01292 #define ERROR_DS_CANT_RETRIEVE_ATTS                        8481
01293 #define ERROR_DS_BACKLINK_WITHOUT_LINK                     8482
01294 #define ERROR_DS_EPOCH_MISMATCH                            8483
01295 #define ERROR_DS_SRC_NAME_MISMATCH                         8484
01296 #define ERROR_DS_SRC_AND_DST_NC_IDENTICAL                  8485
01297 #define ERROR_DS_DST_NC_MISMATCH                           8486
01298 #define ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC                8487
01299 #define ERROR_DS_SRC_GUID_MISMATCH                         8488
01300 #define ERROR_DS_CANT_MOVE_DELETED_OBJECT                  8489
01301 #define ERROR_DS_PDC_OPERATION_IN_PROGRESS                 8490
01302 #define ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD                 8491
01303 #define ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION               8492
01304 #define ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS           8493
01305 #define ERROR_DS_NC_MUST_HAVE_NC_PARENT                    8494
01306 #define ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE                 8495
01307 #define ERROR_DS_DST_DOMAIN_NOT_NATIVE                     8496
01308 #define ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER          8497
01309 #define ERROR_DS_CANT_MOVE_ACCOUNT_GROUP                   8498
01310 #define ERROR_DS_CANT_MOVE_RESOURCE_GROUP                  8499
01311 #define ERROR_DS_INVALID_SEARCH_FLAG                       8500
01312 #define ERROR_DS_NO_TREE_DELETE_ABOVE_NC                   8501
01313 #define ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE              8502
01314 #define ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE  8503
01315 #define ERROR_DS_SAM_INIT_FAILURE                          8504
01316 #define ERROR_DS_SENSITIVE_GROUP_VIOLATION                 8505
01317 #define ERROR_DS_CANT_MOD_PRIMARYGROUPID                   8506
01318 #define ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD                   8507
01319 #define ERROR_DS_NONSAFE_SCHEMA_CHANGE                     8508
01320 #define ERROR_DS_SCHEMA_UPDATE_DISALLOWED                  8509
01321 #define ERROR_DS_CANT_CREATE_UNDER_SCHEMA                  8510
01322 #define ERROR_DS_INSTALL_NO_SRC_SCH_VERSION                8511
01323 #define ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE         8512
01324 #define ERROR_DS_INVALID_GROUP_TYPE                        8513
01325 #define ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN        8514
01326 #define ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN         8515
01327 #define ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER             8516
01328 #define ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER         8517
01329 #define ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER          8518
01330 #define ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER       8519
01331 #define ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER  8520
01332 #define ERROR_DS_HAVE_PRIMARY_MEMBERS                      8521
01333 #define ERROR_DS_STRING_SD_CONVERSION_FAILED               8522
01334 #define ERROR_DS_NAMING_MASTER_GC                          8523
01335 #define ERROR_DS_LOOKUP_FAILURE                            8524
01336 #define ERROR_DS_COULDNT_UPDATE_SPNS                       8525
01337 #define ERROR_DS_CANT_RETRIEVE_SD                          8526
01338 #define ERROR_DS_KEY_NOT_UNIQUE                            8527
01339 #define ERROR_DS_WRONG_LINKED_ATT_SYNTAX                   8528
01340 #define ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD                 8529
01341 #define ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY                   8530
01342 #define ERROR_DS_CANT_START                                8531
01343 #define ERROR_DS_INIT_FAILURE                              8532
01344 #define ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION              8533
01345 #define ERROR_DS_SOURCE_DOMAIN_IN_FOREST                   8534
01346 #define ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST          8535
01347 #define ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED          8536
01348 #define ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN               8537
01349 #define ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER                 8538
01350 #define ERROR_DS_SRC_SID_EXISTS_IN_FOREST                  8539
01351 #define ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH         8540
01352 #define ERROR_SAM_INIT_FAILURE                             8541
01353 #define ERROR_DS_DRA_SCHEMA_INFO_SHIP                      8542
01354 #define ERROR_DS_DRA_SCHEMA_CONFLICT                       8543
01355 #define ERROR_DS_DRA_EARLIER_SCHEMA_CONLICT                8544
01356 #define ERROR_DS_DRA_OBJ_NC_MISMATCH                       8545
01357 #define ERROR_DS_NC_STILL_HAS_DSAS                         8546
01358 #define ERROR_DS_GC_REQUIRED                               8547
01359 #define ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY                8548
01360 #define ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS                8549
01361 #define ERROR_DS_CANT_ADD_TO_GC                            8550
01362 #define ERROR_DS_NO_CHECKPOINT_WITH_PDC                    8551
01363 #define ERROR_DS_SOURCE_AUDITING_NOT_ENABLED               8552
01364 #define ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC               8553
01365 #define ERROR_DS_INVALID_NAME_FOR_SPN                      8554
01366 #define ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS              8555
01367 #define ERROR_DS_UNICODEPWD_NOT_IN_QUOTES                  8556
01368 #define ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED            8557
01369 #define ERROR_DS_MUST_BE_RUN_ON_DST_DC                     8558
01370 #define ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER             8559
01371 #define ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ             8560
01372 #define DNS_ERROR_RCODE_FORMAT_ERROR                       9001
01373 #define DNS_ERROR_RCODE_SERVER_FAILURE                     9002
01374 #define DNS_ERROR_RCODE_NAME_ERROR                         9003
01375 #define DNS_ERROR_RCODE_NOT_IMPLEMENTED                    9004
01376 #define DNS_ERROR_RCODE_REFUSED                            9005
01377 #define DNS_ERROR_RCODE_YXDOMAIN                           9006
01378 #define DNS_ERROR_RCODE_YXRRSET                            9007
01379 #define DNS_ERROR_RCODE_NXRRSET                            9008
01380 #define DNS_ERROR_RCODE_NOTAUTH                            9009
01381 #define DNS_ERROR_RCODE_NOTZONE                            9010
01382 #define DNS_ERROR_RCODE_BADSIG                             9016
01383 #define DNS_ERROR_RCODE_BADKEY                             9017
01384 #define DNS_ERROR_RCODE_BADTIME                            9018
01385 #define DNS_INFO_NO_RECORDS                                9501
01386 #define DNS_ERROR_BAD_PACKET                               9502
01387 #define DNS_ERROR_NO_PACKET                                9503
01388 #define DNS_ERROR_RCODE                                    9504
01389 #define DNS_ERROR_UNSECURE_PACKET                          9505
01390 #define DNS_ERROR_INVALID_TYPE                             9551
01391 #define DNS_ERROR_INVALID_IP_ADDRESS                       9552
01392 #define DNS_ERROR_INVALID_PROPERTY                         9553
01393 #define DNS_ERROR_TRY_AGAIN_LATER                          9554
01394 #define DNS_ERROR_NOT_UNIQUE                               9555
01395 #define DNS_ERROR_NON_RFC_NAME                             9556
01396 #define DNS_STATUS_FQDN                                    9557
01397 #define DNS_STATUS_DOTTED_NAME                             9558
01398 #define DNS_STATUS_SINGLE_PART_NAME                        9559
01399 #define DNS_ERROR_INVALID_NAME_CHAR                        9560
01400 #define DNS_ERROR_NUMERIC_NAME                             9561
01401 #define DNS_ERROR_ZONE_DOES_NOT_EXIST                      9601
01402 #define DNS_ERROR_NO_ZONE_INFO                             9602
01403 #define DNS_ERROR_INVALID_ZONE_OPERATION                   9603
01404 #define DNS_ERROR_ZONE_CONFIGURATION_ERROR                 9604
01405 #define DNS_ERROR_ZONE_HAS_NO_SOA_RECORD                   9605
01406 #define DNS_ERROR_ZONE_HAS_NO_NS_RECORDS                   9606
01407 #define DNS_ERROR_ZONE_LOCKED                              9607
01408 #define DNS_ERROR_ZONE_CREATION_FAILED                     9608
01409 #define DNS_ERROR_ZONE_ALREADY_EXISTS                      9609
01410 #define DNS_ERROR_AUTOZONE_ALREADY_EXISTS                  9610
01411 #define DNS_ERROR_INVALID_ZONE_TYPE                        9611
01412 #define DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP             9612
01413 #define DNS_ERROR_ZONE_NOT_SECONDARY                       9613
01414 #define DNS_ERROR_NEED_SECONDARY_ADDRESSES                 9614
01415 #define DNS_ERROR_WINS_INIT_FAILED                         9615
01416 #define DNS_ERROR_NEED_WINS_SERVERS                        9616
01417 #define DNS_ERROR_NBSTAT_INIT_FAILED                       9617
01418 #define DNS_ERROR_SOA_DELETE_INVALID                       9618
01419 #define DNS_ERROR_PRIMARY_REQUIRES_DATAFILE                9651
01420 #define DNS_ERROR_INVALID_DATAFILE_NAME                    9652
01421 #define DNS_ERROR_DATAFILE_OPEN_FAILURE                    9653
01422 #define DNS_ERROR_FILE_WRITEBACK_FAILED                    9654
01423 #define DNS_ERROR_DATAFILE_PARSING                         9655
01424 #define DNS_ERROR_RECORD_DOES_NOT_EXIST                    9701
01425 #define DNS_ERROR_RECORD_FORMAT                            9702
01426 #define DNS_ERROR_NODE_CREATION_FAILED                     9703
01427 #define DNS_ERROR_UNKNOWN_RECORD_TYPE                      9704
01428 #define DNS_ERROR_RECORD_TIMED_OUT                         9705
01429 #define DNS_ERROR_NAME_NOT_IN_ZONE                         9706
01430 #define DNS_ERROR_CNAME_LOOP                               9707
01431 #define DNS_ERROR_NODE_IS_CNAME                            9708
01432 #define DNS_ERROR_CNAME_COLLISION                          9709
01433 #define DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT                 9710
01434 #define DNS_ERROR_RECORD_ALREADY_EXISTS                    9711
01435 #define DNS_ERROR_SECONDARY_DATA                           9712
01436 #define DNS_ERROR_NO_CREATE_CACHE_DATA                     9713
01437 #define DNS_ERROR_NAME_DOES_NOT_EXIST                      9714
01438 #define DNS_WARNING_PTR_CREATE_FAILED                      9715
01439 #define DNS_WARNING_DOMAIN_UNDELETED                       9716
01440 #define DNS_ERROR_DS_UNAVAILABLE                           9717
01441 #define DNS_ERROR_DS_ZONE_ALREADY_EXISTS                   9718
01442 #define DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE                   9719
01443 #define DNS_INFO_AXFR_COMPLETE                             9751
01444 #define DNS_ERROR_AXFR                                     9752
01445 #define DNS_INFO_ADDED_LOCAL_WINS                          9753
01446 #define DNS_STATUS_CONTINUE_NEEDED                         9801
01447 #define DNS_ERROR_NO_TCPIP                                 9851
01448 #define DNS_ERROR_NO_DNS_SERVERS                           9852
01449 
01450 /* HRESULT values for OLE, SHELL and other Interface stuff */
01451 /* the codes 4000-40ff are reserved for OLE */
01452 #define NOERROR                                0L
01453 #define S_OK                                   ((HRESULT)0L)
01454 #define S_FALSE                                ((HRESULT)1L)
01455 
01456 #define DISP_E_UNKNOWNINTERFACE 0x80020001L
01457 #define DISP_E_MEMBERNOTFOUND   0x80020003L
01458 #define DISP_E_PARAMNOTFOUND    0x80020004L
01459 #define DISP_E_TYPEMISMATCH     0x80020005L
01460 #define DISP_E_UNKNOWNNAME      0x80020006L
01461 #define DISP_E_NONAMEDARGS      0x80020007L
01462 #define DISP_E_BADVARTYPE   0x80020008L
01463 #define DISP_E_EXCEPTION        0x80020009L
01464 #define DISP_E_OVERFLOW     0x8002000AL
01465 #define DISP_E_BADINDEX         0x8002000BL
01466 #define DISP_E_UNKNOWNLCID      0x8002000CL
01467 #define DISP_E_ARRAYISLOCKED    0x8002000DL
01468 #define DISP_E_BADPARAMCOUNT    0x8002000EL
01469 #define DISP_E_PARAMNOTOPTIONAL 0x8002000FL
01470 
01471 #define TYPE_E_ELEMENTNOTFOUND           0x8002802BL
01472 #define TYPE_E_CANTLOADLIBRARY  0x80029C4AL
01473 
01474 /* OLE Clipboard */
01475 #define CLIPBRD_E_FIRST         0x800401D0L
01476 #define CLIPBRD_E_LAST          0x800401DFL
01477 #define CLIPBRD_S_FIRST         0x000401D0L
01478 #define CLIPBRD_S_LAST          0x000401DFL
01479 #define CLIPBRD_E_CANT_OPEN     0x800401D0L
01480 #define CLIPBRD_E_CANT_EMPTY    0x800401D1L
01481 #define CLIPBRD_E_CANT_SET      0x800401D2L
01482 #define CLIPBRD_E_BAD_DATA      0x800401D3L
01483 #define CLIPBRD_E_CANT_CLOSE    0x800401D4L
01484 
01485 /* Drag and Drop */
01486 #define DRAGDROP_S_DROP   0x00040100L
01487 #define DRAGDROP_S_CANCEL 0x00040101L
01488 #define DRAGDROP_E_NOTREGISTERED      0x80040100L
01489 #define DRAGDROP_E_ALREADYREGISTERED  0x80040101L
01490 #define DRAGDROP_S_USEDEFAULTCURSORS  0x00040102L
01491 
01492 #define E_UNEXPECTED                    0x8000FFFF
01493 
01494 #define E_NOTIMPL                       0x80004001
01495 #define E_NOINTERFACE                   0x80004002
01496 #define E_POINTER                       0x80004003
01497 #define E_ABORT                         0x80004004
01498 #define E_FAIL                          0x80004005
01499 #define E_UNSPEC E_FAIL /* must to be defined (used by FileMoniker, IOleLink and DoDragDrop as a return value) */
01500 
01501 /*#define CO_E_INIT_TLS                 0x80004006
01502 #define CO_E_INIT_SHARED_ALLOCATOR      0x80004007
01503 #define CO_E_INIT_MEMORY_ALLOCATOR      0x80004008
01504 #define CO_E_INIT_CLASS_CACHE           0x80004009
01505 #define CO_E_INIT_RPC_CHANNEL           0x8000400A
01506 #define CO_E_INIT_TLS_SET_CHANNEL_CONTROL       0x8000400B
01507 #define CO_E_INIT_TLS_CHANNEL_CONTROL   0x8000400C
01508 #define CO_E_INIT_UNACCEPTED_USER_ALLOCATOR     0x8000400D
01509 #define CO_E_INIT_SCM_MUTEX_EXISTS      0x8000400E
01510 #define CO_E_INIT_SCM_FILE_MAPPING_EXISTS       0x8000400F
01511 #define CO_E_INIT_SCM_MAP_VIEW_OF_FILE  0x80004010
01512 #define CO_E_INIT_SCM_EXEC_FAILURE      0x80004011
01513 #define CO_E_INIT_ONLY_SINGLE_THREADED  0x80004012 */
01514 
01515 #define CO_S_NOTALLINTERFACES           0x00080012
01516 #define CO_E_NOTINITIALIZED             0x800401F0
01517 #define CO_E_ERRORINDLL                 0x800401F9
01518 #define CO_E_OBJISREG                   0x800401FB
01519 
01520 #define OLE_E_FIRST 0x80040000L
01521 #define OLE_E_LAST  0x800400FFL
01522 #define OLE_S_FIRST 0x00040000L
01523 #define OLE_S_LAST  0x000400FFL
01524 
01525 #define OLE_E_ENUM_NOMORE                     0x80040002
01526 #define OLE_E_ADVISENOTSUPPORTED  0x80040003
01527 #define OLE_E_NOCONNECTION        0x80040004
01528 #define OLE_E_NOTRUNNING          0x80040005
01529 #define OLE_E_NOCACHE             0x80040006
01530 #define OLE_E_BLANK                         0x80040007
01531 #define OLE_E_NOT_INPLACEACTIVE         0x80040010
01532 #define OLE_E_STATIC              0x8004000B
01533 #define OLE_E_PROMPTSAVECANCELLED 0x8004000C
01534 #define OLE_S_USEREG                            0x00040000
01535 #define OLE_S_STATIC              0x00040001
01536 
01537 #define DV_E_FORMATETC            0x80040064
01538 #define DV_E_DVASPECT             0x8004006B
01539 #define DV_E_LINDEX               0x80040068
01540 #define DV_E_TYMED                0x80040069
01541 
01542 #define CLASS_E_NOAGGREGATION     0x80040110
01543 #define CLASS_E_CLASSNOTAVAILABLE 0x80040111
01544 
01545 #define DATA_S_SAMEFORMATETC      0x80040130
01546 
01547 #define E_ACCESSDENIED                        0x80070005
01548 #define E_HANDLE                                0x80070006
01549 #define E_OUTOFMEMORY                           0x8007000E
01550 #define E_INVALIDARG                            0x80070057
01551 
01552 /*#define OLE_E_FIRST 0x80040000L */
01553 /*#define OLE_E_LAST  0x800400FFL */
01554 /*#define OLE_S_FIRST 0x00040000L */
01555 /*#define OLE_S_LAST  0x000400FFL */
01556 
01557 #define MK_S_REDUCED_TO_SELF            0x000401E2
01558 #define MK_S_ME                         0x000401E4
01559 #define MK_S_HIM                        0x000401E5
01560 #define MK_S_US                         0x000401E6
01561 #define MK_S_MONIKERALREADYREGISTERED   0x000401E7
01562 
01563 #define MK_E_EXCEEDEDDEADLINE                     0x800401E1
01564 #define MK_E_NEEDGENERIC                          0x800401E2
01565 #define MK_E_UNAVAILABLE                          0x800401E3
01566 #define MK_E_SYNTAX                               0x800401E4
01567 #define MK_E_NOOBJECT                             0x800401E5
01568 #define MK_E_INVALIDEXTENSION                     0x800401E6
01569 #define MK_E_INTERMEDIATEINTERFACENOTSUPPORTED    0x800401E7
01570 #define MK_E_NOTBINDABLE                          0x800401E8
01571 #define MK_E_NOTBOUND                             0x800401E9
01572 #define MK_E_CANTOPENFILE                         0x800401EA
01573 #define MK_E_MIUSTBOTHERUSER                      0x800401EB
01574 #define MK_E_NOINVERSE                            0x800401EC
01575 #define MK_E_NOSTORAGE                            0x800401ED
01576 #define MK_E_NOPREFIX                             0x800401EE
01577 
01578 #define STG_E_INVALIDFUNCTION           0x80030001
01579 #define STG_E_FILENOTFOUND              0x80030002
01580 #define STG_E_PATHNOTFOUND              0x80030003
01581 #define STG_E_TOOMANYOPENFILES          0x80030004
01582 #define STG_E_ACCESSDENIED              0x80030005
01583 #define STG_E_INVALIDHANDLE             0x80030006
01584 #define STG_E_INSUFFICIENTMEMORY        0x80030008
01585 #define STG_E_INVALIDPOINTER            0x80030009
01586 #define STG_E_NOMOREFILES               0x80030012
01587 #define STG_E_DISKISWRITEPROTECTED      0x80030013
01588 #define STG_E_SEEKERROR                 0x80030019
01589 #define STG_E_WRITEFAULT                0x8003001D
01590 #define STG_E_READFAULT                 0x8003001E
01591 #define STG_E_SHAREVIOLATION            0x80030020
01592 #define STG_E_LOCKVIOLATION             0x80030021
01593 #define STG_E_FILEALREADYEXISTS         0x80030050
01594 #define STG_E_INVALIDPARAMETER          0x80030057
01595 #define STG_E_MEDIUMFULL                0x80030070
01596 #define STG_E_ABNORMALAPIEXIT           0x800300FA
01597 #define STG_E_INVALIDHEADER             0x800300FB
01598 #define STG_E_INVALIDNAME               0x800300FC
01599 #define STG_E_UNKNOWN                   0x800300FD
01600 #define STG_E_UNIMPLEMENTEDFUNCTION     0x800300FE
01601 #define STG_E_INVALIDFLAG               0x800300FF
01602 #define STG_E_INUSE                     0x80030100
01603 #define STG_E_NOTCURRENT                0x80030101
01604 #define STG_E_REVERTED                  0x80030102
01605 #define STG_E_CANTSAVE                  0x80030103
01606 #define STG_E_OLDFORMAT                 0x80030104
01607 #define STG_E_OLDDLL                    0x80030105
01608 #define STG_E_SHAREREQUIRED             0x80030106
01609 #define STG_E_NOTFILEBASEDSTORAGE       0x80030107
01610 #define STG_E_EXTANTMARSHALLINGS        0x80030108
01611 
01612 #define CONVERT10_E_OLESTREAM_GET       0x800401C0
01613 #define CONVERT10_E_OLESTREAM_PUT       0x800401C1
01614 #define CONVERT10_E_OLESTREAM_FMT       0x800401C2
01615 #define CONVERT10_E_OLESTREAM_BITMAP_TO_DIB 0x800401C3
01616 #define CONVERT10_E_STG_FMT             0x800401C4
01617 #define CONVERT10_E_STG_NO_STD_STREAM   0x800401C5
01618 #define CONVERT10_E_STG_DIB_TO_BITMAP   0x800401C6
01619 
01620 /* alten versionen
01621 #define E_NOTIMPL                       0x80000001
01622 #define E_OUTOFMEMORY                   0x80000002
01623 #define E_INVALIDARG                    0x80000003
01624 #define E_NOINTERFACE                   0x80000004
01625 #define E_POINTER                       0x80000005
01626 #define E_HANDLE                        0x80000006
01627 #define E_ABORT                         0x80000007
01628 #define E_FAIL                          0x80000008
01629 #define E_ACCESSDENIED                  0x80000009 */
01630 
01631 /* Obtained from lcc-win32 include files */
01632 #define GDI_ERROR                       0xffffffff
01633 
01634 
01635 /* registry errors */
01636 #define REGDB_E_READREGDB               0x80040150
01637 #define REGDB_E_CLASSNOTREG             0x80040154
01638 
01639 #define INPLACE_E_NOTUNDOABLE           0x800401A0
01640 #define INPLACE_E_NOTOOLSPACE           0x800401A1
01641 
01642 #define DATA_E_FORMATETC                DV_E_FORMATETC
01643 
01644 #define CLASSFACTORY_E_FIRST            0x80040110L
01645 #define CLASSFACTORY_E_LAST             0x8004011FL
01646 #define CLASSFACTORY_S_FIRST            0x80040110L
01647 #define CLASSFACTORY_S_LAST             0x8004011FL
01648 
01649 #define CLASS_E_NOTLICENSED             (CLASSFACTORY_E_FIRST+2)
01650 #define CLASS_E_NOAGGREGATION           0x80040110
01651 #define CLASS_E_CLASSNOTAVAILABLE             0x80040111
01652 
01653 
01654 #define OLEOBJ_E_NOVERBS                0x00040180L
01655 #define OLEOBJ_E_INVALIDVERB            0x00040181L
01656 #define OLEOBJ_S_INVALIDVERB            0x00040180L
01657 
01658 #endif  /* __WINE_WINERROR_H */

Generated on Tue Dec 20 10:14:23 2005 for vlc-0.8.4a by  doxygen 1.4.2