home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Emulation_Include_Files / netevent.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  66.9 KB  |  2,837 lines

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2.  
  3. Copyright (c) 1992-1996  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     netevent.h
  8.  
  9. Abstract:
  10.  
  11.     Definitions for network events.
  12.  
  13. --*/
  14.  
  15. #ifndef _NETEVENT_
  16. #define _NETEVENT_
  17.  
  18.  
  19. /////////////////////////////////////////////////////////////////////////
  20. //
  21. // Lanman Server Events (2000 - 2999)
  22. //     2000-2499 are generated by the server driver (kernel mode)
  23. //     2500-2999 are generated by the server service (user mode)
  24. //
  25. /////////////////////////////////////////////////////////////////////////
  26.  
  27.  
  28. // Server driver events, issued from kernel mode.  Don't use %1 for
  29. // server-supplied insertion strings -- the I/O system provides the
  30. // first string.
  31.  
  32. //
  33. //  Values are 32 bit values layed out as follows:
  34. //
  35. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  36. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  37. //  +---+-+-+-----------------------+-------------------------------+
  38. //  |Sev|C|R|     Facility          |               Code            |
  39. //  +---+-+-+-----------------------+-------------------------------+
  40. //
  41. //  where
  42. //
  43. //      Sev - is the severity code
  44. //
  45. //          00 - Success
  46. //          01 - Informational
  47. //          10 - Warning
  48. //          11 - Error
  49. //
  50. //      C - is the Customer code flag
  51. //
  52. //      R - is a reserved bit
  53. //
  54. //      Facility - is the facility code
  55. //
  56. //      Code - is the facility's status code
  57. //
  58. //
  59. // Define the facility codes
  60. //
  61.  
  62.  
  63. //
  64. // Define the severity codes
  65. //
  66. #define STATUS_SEVERITY_WARNING          0x2
  67. #define STATUS_SEVERITY_SUCCESS          0x0
  68. #define STATUS_SEVERITY_INFORMATIONAL    0x1
  69. #define STATUS_SEVERITY_ERROR            0x3
  70.  
  71.  
  72. //
  73. // MessageId: EVENT_SRV_SERVICE_FAILED
  74. //
  75. // MessageText:
  76. //
  77. //  The server's call to a system service failed unexpectedly.
  78. //
  79. #define EVENT_SRV_SERVICE_FAILED         0xC00007D0L
  80.  
  81. //
  82. // MessageId: EVENT_SRV_RESOURCE_SHORTAGE
  83. //
  84. // MessageText:
  85. //
  86. //  The server was unable to perform an operation due to a shortage of available resources.
  87. //
  88. #define EVENT_SRV_RESOURCE_SHORTAGE      0xC00007D1L
  89.  
  90. //
  91. // MessageId: EVENT_SRV_CANT_CREATE_DEVICE
  92. //
  93. // MessageText:
  94. //
  95. //  The server could not create its device.  The server could not be started.
  96. //
  97. #define EVENT_SRV_CANT_CREATE_DEVICE     0xC00007D2L
  98.  
  99. //
  100. // MessageId: EVENT_SRV_CANT_CREATE_PROCESS
  101. //
  102. // MessageText:
  103. //
  104. //  The server could not create a process.  The server could not be started.
  105. //
  106. #define EVENT_SRV_CANT_CREATE_PROCESS    0xC00007D3L
  107.  
  108. //
  109. // MessageId: EVENT_SRV_CANT_CREATE_THREAD
  110. //
  111. // MessageText:
  112. //
  113. //  The server could not create a startup thread.  The server could not be started.
  114. //
  115. #define EVENT_SRV_CANT_CREATE_THREAD     0xC00007D4L
  116.  
  117. //
  118. // MessageId: EVENT_SRV_UNEXPECTED_DISC
  119. //
  120. // MessageText:
  121. //
  122. //  The server received an unexpected disconnection from a client.
  123. //
  124. #define EVENT_SRV_UNEXPECTED_DISC        0xC00007D5L
  125.  
  126. //
  127. // MessageId: EVENT_SRV_INVALID_REQUEST
  128. //
  129. // MessageText:
  130. //
  131. //  The server received an incorrectly formatted request from %2.
  132. //
  133. #define EVENT_SRV_INVALID_REQUEST        0xC00007D6L
  134.  
  135. //
  136. // MessageId: EVENT_SRV_CANT_OPEN_NPFS
  137. //
  138. // MessageText:
  139. //
  140. //  The server could not open the named pipe file system.  Remote named pipes are disabled.
  141. //
  142. #define EVENT_SRV_CANT_OPEN_NPFS         0xC00007D7L
  143.  
  144. //
  145. // MessageId: EVENT_SRV_CANT_GROW_TABLE
  146. //
  147. // MessageText:
  148. //
  149. //  The server could not expand a table because the table reached the maximum size.
  150. //
  151. #define EVENT_SRV_CANT_GROW_TABLE        0xC00007D9L
  152.  
  153. //
  154. // MessageId: EVENT_SRV_CANT_START_SCAVENGER
  155. //
  156. // MessageText:
  157. //
  158. //  The server could not start the scavenger thread.  The server could not be started.
  159. //
  160. #define EVENT_SRV_CANT_START_SCAVENGER   0xC00007DAL
  161.  
  162. //
  163. // MessageId: EVENT_SRV_IRP_STACK_SIZE
  164. //
  165. // MessageText:
  166. //
  167. //  The server's configuration parameter "irpstacksize" is too small for the server to use a local device.  Please increase the value of this parameter.
  168. //
  169. #define EVENT_SRV_IRP_STACK_SIZE         0xC00007DBL
  170.  
  171. //
  172. // MessageId: EVENT_SRV_NETWORK_ERROR
  173. //
  174. // MessageText:
  175. //
  176. //  The server has encountered a network error.
  177. //
  178. #define EVENT_SRV_NETWORK_ERROR          0xC00007DCL
  179.  
  180. //
  181. // MessageId: EVENT_SRV_DISK_FULL
  182. //
  183. // MessageText:
  184. //
  185. //  The %2 disk is at or near capacity.  You may need to delete some files.
  186. //
  187. #define EVENT_SRV_DISK_FULL              0x800007DDL
  188.  
  189. //
  190. // MessageId: EVENT_SRV_NO_VIRTUAL_MEMORY
  191. //
  192. // MessageText:
  193. //
  194. //  The server was unable to allocate virtual memory.
  195. //
  196. #define EVENT_SRV_NO_VIRTUAL_MEMORY      0xC00007E0L
  197.  
  198. //
  199. // MessageId: EVENT_SRV_NONPAGED_POOL_LIMIT
  200. //
  201. // MessageText:
  202. //
  203. //  The server was unable to allocate from the system nonpaged pool because the server reached the configured limit for nonpaged pool allocations.
  204. //
  205. #define EVENT_SRV_NONPAGED_POOL_LIMIT    0xC00007E1L
  206.  
  207. //
  208. // MessageId: EVENT_SRV_PAGED_POOL_LIMIT
  209. //
  210. // MessageText:
  211. //
  212. //  The server was unable to allocate from the system paged pool because the server reached the configured limit for paged pool allocations.
  213. //
  214. #define EVENT_SRV_PAGED_POOL_LIMIT       0xC00007E2L
  215.  
  216. //
  217. // MessageId: EVENT_SRV_NO_NONPAGED_POOL
  218. //
  219. // MessageText:
  220. //
  221. //  The server was unable to allocate from the system nonpaged pool because the pool was empty.
  222. //
  223. #define EVENT_SRV_NO_NONPAGED_POOL       0xC00007E3L
  224.  
  225. //
  226. // MessageId: EVENT_SRV_NO_PAGED_POOL
  227. //
  228. // MessageText:
  229. //
  230. //  The server was unable to allocate from the system paged pool because the pool was empty.
  231. //
  232. #define EVENT_SRV_NO_PAGED_POOL          0xC00007E4L
  233.  
  234. //
  235. // MessageId: EVENT_SRV_NO_WORK_ITEM
  236. //
  237. // MessageText:
  238. //
  239. //  The server was unable to allocate a work item %2 times in the last %3 seconds.
  240. //
  241. #define EVENT_SRV_NO_WORK_ITEM           0x800007E5L
  242.  
  243. //
  244. // MessageId: EVENT_SRV_NO_FREE_CONNECTIONS
  245. //
  246. // MessageText:
  247. //
  248. //  The server was unable to find a free connection %2 times in the last %3 seconds.
  249. //
  250. #define EVENT_SRV_NO_FREE_CONNECTIONS    0x800007E6L
  251.  
  252. //
  253. // MessageId: EVENT_SRV_NO_FREE_RAW_WORK_ITEM
  254. //
  255. // MessageText:
  256. //
  257. //  The server was unable to find a free raw work item %2 times in the last %3 seconds.
  258. //
  259. #define EVENT_SRV_NO_FREE_RAW_WORK_ITEM  0x800007E7L
  260.  
  261. //
  262. // MessageId: EVENT_SRV_NO_BLOCKING_IO
  263. //
  264. // MessageText:
  265. //
  266. //  The server was unable to allocate resources for blocking I/O %2 times in the last %3 seconds.
  267. //
  268. #define EVENT_SRV_NO_BLOCKING_IO         0x800007E8L
  269.  
  270.  
  271. // Server service events, issued from user mode.  %1 is the first
  272. // service-supplied insertion string.
  273.  
  274. //
  275. // MessageId: EVENT_SRV_KEY_NOT_FOUND
  276. //
  277. // MessageText:
  278. //
  279. //  The server's Registry key %1 was not present.  The server could not start.
  280. //
  281. #define EVENT_SRV_KEY_NOT_FOUND          0xC00009C5L
  282.  
  283. //
  284. // MessageId: EVENT_SRV_KEY_NOT_CREATED
  285. //
  286. // MessageText:
  287. //
  288. //  The server's Registry key %1 was not present and could not be created.  The server could not start.
  289. //
  290. #define EVENT_SRV_KEY_NOT_CREATED        0xC00009C6L
  291.  
  292. //
  293. // MessageId: EVENT_SRV_NO_TRANSPORTS_BOUND
  294. //
  295. // MessageText:
  296. //
  297. //  The server did not bind to any transports.  The server could not start.
  298. //
  299. #define EVENT_SRV_NO_TRANSPORTS_BOUND    0xC00009C7L
  300.  
  301. //
  302. // MessageId: EVENT_SRV_CANT_BIND_TO_TRANSPORT
  303. //
  304. // MessageText:
  305. //
  306. //  The server could not bind to the transport %1.
  307. //
  308. #define EVENT_SRV_CANT_BIND_TO_TRANSPORT 0x800009C8L
  309.  
  310. //
  311. // MessageId: EVENT_SRV_CANT_BIND_DUP_NAME
  312. //
  313. // MessageText:
  314. //
  315. //  The server could not bind to the transport %1 because another computer on the network has the same name.  The server could not start.
  316. //
  317. #define EVENT_SRV_CANT_BIND_DUP_NAME     0xC00009C9L
  318.  
  319. //
  320. // MessageId: EVENT_SRV_INVALID_REGISTRY_VALUE
  321. //
  322. // MessageText:
  323. //
  324. //  The value named %1 in the server's Registry key %2 was invalid.  The value was ignored, and processing continued.
  325. //
  326. #define EVENT_SRV_INVALID_REGISTRY_VALUE 0x800009CAL
  327.  
  328. //
  329. // MessageId: EVENT_SRV_INVALID_SD
  330. //
  331. // MessageText:
  332. //
  333. //  The security descriptor stored in the Registry for the share %1 was invalid.  The share was not automatically recreated.
  334. //
  335. #define EVENT_SRV_INVALID_SD             0x800009CBL
  336.  
  337. //
  338. // MessageId: EVENT_SRV_CANT_LOAD_DRIVER
  339. //
  340. // MessageText:
  341. //
  342. //  The server service was unable to load the server driver.
  343. //
  344. #define EVENT_SRV_CANT_LOAD_DRIVER       0x800009CCL
  345.  
  346. //
  347. // MessageId: EVENT_SRV_CANT_UNLOAD_DRIVER
  348. //
  349. // MessageText:
  350. //
  351. //  The server service was unable to unload the server driver.
  352. //
  353. #define EVENT_SRV_CANT_UNLOAD_DRIVER     0x800009CDL
  354.  
  355. //
  356. // MessageId: EVENT_SRV_CANT_MAP_ERROR
  357. //
  358. // MessageText:
  359. //
  360. //  The server service was unable to map error code %1.
  361. //
  362. #define EVENT_SRV_CANT_MAP_ERROR         0x800009CEL
  363.  
  364. //
  365. // MessageId: EVENT_SRV_CANT_RECREATE_SHARE
  366. //
  367. // MessageText:
  368. //
  369. //  The server service was unable to recreate the share %1 because the directory %2 no longer exists.
  370. //
  371. #define EVENT_SRV_CANT_RECREATE_SHARE    0x800009CFL
  372.  
  373.  
  374. /////////////////////////////////////////////////////////////////////////
  375. //
  376. // Lanman Redirector Events
  377. //
  378. //
  379. /////////////////////////////////////////////////////////////////////////
  380.  
  381.  
  382. //
  383. // MessageId: EVENT_RDR_RESOURCE_SHORTAGE
  384. //
  385. // MessageText:
  386. //
  387. //  The redirector was unable to allocate memory.
  388. //
  389. #define EVENT_RDR_RESOURCE_SHORTAGE      0x80000BB9L
  390.  
  391. //
  392. // MessageId: EVENT_RDR_CANT_CREATE_DEVICE
  393. //
  394. // MessageText:
  395. //
  396. //  The redirector could not create its device.  The redirector could not be started.
  397. //
  398. #define EVENT_RDR_CANT_CREATE_DEVICE     0x80000BBAL
  399.  
  400. //
  401. // MessageId: EVENT_RDR_CANT_CREATE_THREAD
  402. //
  403. // MessageText:
  404. //
  405. //  The redirector could not create a system thread.
  406. //
  407. #define EVENT_RDR_CANT_CREATE_THREAD     0x80000BBBL
  408.  
  409. //
  410. // MessageId: EVENT_RDR_CANT_SET_THREAD
  411. //
  412. // MessageText:
  413. //
  414. //  The redirector could not set the priority for a system thread.
  415. //
  416. #define EVENT_RDR_CANT_SET_THREAD        0x80000BBCL
  417.  
  418. //
  419. // MessageId: EVENT_RDR_INVALID_REPLY
  420. //
  421. // MessageText:
  422. //
  423. //  The redirector received an incorrectly formatted response from %2.
  424. //
  425. #define EVENT_RDR_INVALID_REPLY          0x80000BBDL
  426.  
  427. //
  428. // MessageId: EVENT_RDR_INVALID_SMB
  429. //
  430. // MessageText:
  431. //
  432. //  The redirector received an SMB that was too short.
  433. //
  434. #define EVENT_RDR_INVALID_SMB            0x80000BBEL
  435.  
  436. //
  437. // MessageId: EVENT_RDR_INVALID_LOCK_REPLY
  438. //
  439. // MessageText:
  440. //
  441. //  The redirector received an incorrect response from %2 to a lock request.
  442. //
  443. #define EVENT_RDR_INVALID_LOCK_REPLY     0x80000BBFL
  444.  
  445. //
  446. // MessageId: EVENT_RDR_FAILED_UNLOCK
  447. //
  448. // MessageText:
  449. //
  450. //  The redirector failed to unlock part of a file on server %2.
  451. //
  452. #define EVENT_RDR_FAILED_UNLOCK          0x80000BC1L
  453.  
  454. //
  455. // MessageId: EVENT_RDR_CLOSE_BEHIND
  456. //
  457. // MessageText:
  458. //
  459. //  The redirector failed to write data to server %2 after the file was closed.
  460. //
  461. #define EVENT_RDR_CLOSE_BEHIND           0x80000BC3L
  462.  
  463. //
  464. // MessageId: EVENT_RDR_UNEXPECTED_ERROR
  465. //
  466. // MessageText:
  467. //
  468. //  An unexpected network error has occurred on the virtual circuit to %2.
  469. //
  470. #define EVENT_RDR_UNEXPECTED_ERROR       0x80000BC4L
  471.  
  472. //
  473. // MessageId: EVENT_RDR_TIMEOUT
  474. //
  475. // MessageText:
  476. //
  477. //  The redirector has timed out a request to %2.
  478. //
  479. #define EVENT_RDR_TIMEOUT                0x80000BC5L
  480.  
  481. //
  482. // MessageId: EVENT_RDR_INVALID_OPLOCK
  483. //
  484. // MessageText:
  485. //
  486. //  The redirector received an invalid oplock level from %2.
  487. //
  488. #define EVENT_RDR_INVALID_OPLOCK         0x80000BC6L
  489.  
  490. //
  491. // MessageId: EVENT_RDR_CONNECTION_REFERENCE
  492. //
  493. // MessageText:
  494. //
  495. //  The redirector dereferenced a connection through zero.
  496. //
  497. #define EVENT_RDR_CONNECTION_REFERENCE   0x80000BC7L
  498.  
  499. //
  500. // MessageId: EVENT_RDR_SERVER_REFERENCE
  501. //
  502. // MessageText:
  503. //
  504. //  The redirector dereferenced a server through zero.
  505. //
  506. #define EVENT_RDR_SERVER_REFERENCE       0x80000BC8L
  507.  
  508. //
  509. // MessageId: EVENT_RDR_SMB_REFERENCE
  510. //
  511. // MessageText:
  512. //
  513. //  The redirector dereferenced the allocated SMB count through zero.
  514. //
  515. #define EVENT_RDR_SMB_REFERENCE          0x80000BC9L
  516.  
  517. //
  518. // MessageId: EVENT_RDR_ENCRYPT
  519. //
  520. // MessageText:
  521. //
  522. //  The redirector accessed a share-level server that indicates it encrypts passwords.
  523. //  This combination is not supported.
  524. //
  525. #define EVENT_RDR_ENCRYPT                0x80000BCAL
  526.  
  527. //
  528. // MessageId: EVENT_RDR_CONNECTION
  529. //
  530. // MessageText:
  531. //
  532. //  The redirector failed to determine the connection type.
  533. //
  534. #define EVENT_RDR_CONNECTION             0x80000BCBL
  535.  
  536. //
  537. // MessageId: EVENT_RDR_MAXCMDS
  538. //
  539. // MessageText:
  540. //
  541. //  The redirector failed to allocate a multiplex table entry.  This indicates that
  542. //  the MAXCMDS parameter to the redirector is insufficient for the users needs.
  543. //
  544. #define EVENT_RDR_MAXCMDS                0x80000BCDL
  545.  
  546. //
  547. // MessageId: EVENT_RDR_OPLOCK_SMB
  548. //
  549. // MessageText:
  550. //
  551. //  The redirector failed to allocate a buffer for an oplock break.
  552. //
  553. #define EVENT_RDR_OPLOCK_SMB             0x80000BCEL
  554.  
  555. //
  556. // MessageId: EVENT_RDR_DISPOSITION
  557. //
  558. // MessageText:
  559. //
  560. //  The redirector failed to map the requested file disposition (for NtCreateFile).
  561. //
  562. #define EVENT_RDR_DISPOSITION            0x80000BCFL
  563.  
  564. //
  565. // MessageId: EVENT_RDR_CONTEXTS
  566. //
  567. // MessageText:
  568. //
  569. //  The redirector is allocating additional resources for input/output request packet contexts.  This is
  570. //  probably caused by a resource leak in the redirector.
  571. //
  572. #define EVENT_RDR_CONTEXTS               0x80000BD0L
  573.  
  574. //
  575. // MessageId: EVENT_RDR_WRITE_BEHIND_FLUSH_FAILED
  576. //
  577. // MessageText:
  578. //
  579. //  A write-behind operation has failed to the remote server %2.  The data contains the amount requested to write and the amount actually written.
  580. //
  581. #define EVENT_RDR_WRITE_BEHIND_FLUSH_FAILED 0x80000BD1L
  582.  
  583. //
  584. // MessageId: EVENT_RDR_AT_THREAD_MAX
  585. //
  586. // MessageText:
  587. //
  588. //  The redirector was unable to create a worker thread because it has already created the maximum number of configured work threads.
  589. //
  590. #define EVENT_RDR_AT_THREAD_MAX          0x80000BD2L
  591.  
  592. //
  593. // MessageId: EVENT_RDR_CANT_READ_REGISTRY
  594. //
  595. // MessageText:
  596. //
  597. //  The redirector was unable to initialize variables from the Registry.
  598. //
  599. #define EVENT_RDR_CANT_READ_REGISTRY     0x80000BD3L
  600.  
  601. //
  602. // MessageId: EVENT_RDR_TIMEZONE_BIAS_TOO_LARGE
  603. //
  604. // MessageText:
  605. //
  606. //  The time zone bias calculated between %2 and the current workstation is too
  607. //  large.  The data specifies the number of 100ns units between the workstation
  608. //  and server.  Make sure that the time of day on the workstation and server are
  609. //  correct.
  610. //
  611. #define EVENT_RDR_TIMEZONE_BIAS_TOO_LARGE 0x80000BD4L
  612.  
  613. //
  614. // MessageId: EVENT_RDR_PRIMARY_TRANSPORT_CONNECT_FAILED
  615. //
  616. // MessageText:
  617. //
  618. //  The redirector has failed to connect to the server %2 on the primary transport.  The data contains the error.
  619. //
  620. #define EVENT_RDR_PRIMARY_TRANSPORT_CONNECT_FAILED 0x80000BD5L
  621.  
  622. //
  623. // MessageId: EVENT_RDR_DELAYED_SET_ATTRIBUTES_FAILED
  624. //
  625. // MessageText:
  626. //
  627. //  The redirector was unable to update the file attributes on a file located on server %2.
  628. //  The data contains the name of the file.
  629. //
  630. #define EVENT_RDR_DELAYED_SET_ATTRIBUTES_FAILED 0x80000BD6L
  631.  
  632. //
  633. // MessageId: EVENT_RDR_DELETEONCLOSE_FAILED
  634. //
  635. // MessageText:
  636. //
  637. //  The redirector was unable to delete the file specified on server %2 when it was closed by the application.
  638. //  The data contains the name of the file.
  639. //
  640. #define EVENT_RDR_DELETEONCLOSE_FAILED   0x80000BD7L
  641.  
  642.  
  643.  
  644. /////////////////////////////////////////////////////////////////////////
  645. //
  646. // STREAMS Environment Events
  647. //
  648. // Codes 4000 - 4099
  649. //
  650. /////////////////////////////////////////////////////////////////////////
  651.  
  652.  
  653. //
  654. // MessageId: EVENT_STREAMS_STRLOG
  655. //
  656. // MessageText:
  657. //
  658. //  %2.
  659. //
  660. #define EVENT_STREAMS_STRLOG             0xC0000FA0L
  661.  
  662. //
  663. // MessageId: EVENT_STREAMS_ALLOCB_FAILURE
  664. //
  665. // MessageText:
  666. //
  667. //  Unable to allocate a %2 byte message.
  668. //
  669. #define EVENT_STREAMS_ALLOCB_FAILURE     0x80000FA1L
  670.  
  671. //
  672. // MessageId: EVENT_STREAMS_ALLOCB_FAILURE_CNT
  673. //
  674. // MessageText:
  675. //
  676. //  %2 message allocations have failed since initialization.
  677. //
  678. #define EVENT_STREAMS_ALLOCB_FAILURE_CNT 0x80000FA2L
  679.  
  680. //
  681. // MessageId: EVENT_STREAMS_ESBALLOC_FAILURE
  682. //
  683. // MessageText:
  684. //
  685. //  Unable to allocate a %2 byte external message.
  686. //
  687. #define EVENT_STREAMS_ESBALLOC_FAILURE   0x80000FA3L
  688.  
  689. //
  690. // MessageId: EVENT_STREAMS_ESBALLOC_FAILURE_CNT
  691. //
  692. // MessageText:
  693. //
  694. //  %2 external message allocations have failed since initialization.
  695. //
  696. #define EVENT_STREAMS_ESBALLOC_FAILURE_CNT 0x80000FA4L
  697.  
  698.  
  699.  
  700. /////////////////////////////////////////////////////////////////////////
  701. //
  702. // TCP/IP Events
  703. //
  704. // Codes 4100 - 4299
  705. //
  706. /////////////////////////////////////////////////////////////////////////
  707.  
  708.  
  709. //
  710. // Common TCP/IP messages
  711. //
  712. // Codes 4100 - 4149
  713. //
  714. //
  715.  
  716. //
  717. // MessageId: EVENT_TCPIP_CREATE_DEVICE_FAILED
  718. //
  719. // MessageText:
  720. //
  721. //  Unable to create device object %2. Initialization failed.
  722. //
  723. #define EVENT_TCPIP_CREATE_DEVICE_FAILED 0xC0001004L
  724.  
  725. //
  726. // MessageId: EVENT_TCPIP_NO_RESOURCES_FOR_INIT
  727. //
  728. // MessageText:
  729. //
  730. //  Unable to allocate required resources. Initialization failed.
  731. //
  732. #define EVENT_TCPIP_NO_RESOURCES_FOR_INIT 0xC0001005L
  733.  
  734.  
  735. //
  736. // ARP messages
  737. //
  738. // Codes 4150-4174
  739.  
  740.  
  741. //
  742. // IP Loopback messages
  743. //
  744. // Codes 4175-4184
  745. //
  746.  
  747.  
  748. //
  749. // IP/ICMP messages
  750. //
  751. // Codes 4185 - 4224
  752.  
  753. //
  754. // MessageId: EVENT_TCPIP_TOO_MANY_NETS
  755. //
  756. // MessageText:
  757. //
  758. //  IP has been bound to more than the maximum number of supported interfaces.
  759. //  Some interfaces on adapter %2 will not be initialized.
  760. //
  761. #define EVENT_TCPIP_TOO_MANY_NETS        0xC0001059L
  762.  
  763. //
  764. // MessageId: EVENT_TCPIP_NO_MASK
  765. //
  766. // MessageText:
  767. //
  768. //  No subnet mask was specified for interface %2. This interface and
  769. //  all subsequent interfaces on adapter %3 cannot be initialized.
  770. //
  771. #define EVENT_TCPIP_NO_MASK              0xC000105AL
  772.  
  773. //
  774. // MessageId: EVENT_TCPIP_INVALID_ADDRESS
  775. //
  776. // MessageText:
  777. //
  778. //  Invalid address %2 was specified for adapter %3. This interface
  779. //  cannot be initialized.
  780. //
  781. #define EVENT_TCPIP_INVALID_ADDRESS      0xC000105BL
  782.  
  783. //
  784. // MessageId: EVENT_TCPIP_INVALID_MASK
  785. //
  786. // MessageText:
  787. //
  788. //  Invalid subnet mask %2 was specified for address %3 on adapter %4.
  789. //  This interface cannot be initialized.
  790. //
  791. #define EVENT_TCPIP_INVALID_MASK         0xC000105CL
  792.  
  793. //
  794. // MessageId: EVENT_TCPIP_NO_ADAPTER_RESOURCES
  795. //
  796. // MessageText:
  797. //
  798. //  IP could not allocate some resources required to configure adapter %2.
  799. //  Some interfaces on this adapter will not be initialized.
  800. //
  801. #define EVENT_TCPIP_NO_ADAPTER_RESOURCES 0xC000105DL
  802.  
  803. //
  804. // MessageId: EVENT_TCPIP_DHCP_INIT_FAILED
  805. //
  806. // MessageText:
  807. //
  808. //  IP was unable to initialize adapter %2 for configuration by DHCP.
  809. //  If DHCP is enabled on this adapter, the primary interface may not be
  810. //  configured properly. Interfaces on this adapter not configured by
  811. //  DHCP will be unaffected.
  812. //
  813. #define EVENT_TCPIP_DHCP_INIT_FAILED     0x8000105EL
  814.  
  815. //
  816. // MessageId: EVENT_TCPIP_ADAPTER_REG_FAILURE
  817. //
  818. // MessageText:
  819. //
  820. //  IP could not open the registry key for adapter %2.
  821. //  Interfaces on this adapter will not be initialized.
  822. //
  823. #define EVENT_TCPIP_ADAPTER_REG_FAILURE  0xC000105FL
  824.  
  825. //
  826. // MessageId: EVENT_TCPIP_INVALID_DEFAULT_GATEWAY
  827. //
  828. // MessageText:
  829. //
  830. //  Invalid default gateway address %2 was specified for adapter %3.
  831. //  Some remote networks may not be reachable as a result.
  832. //
  833. #define EVENT_TCPIP_INVALID_DEFAULT_GATEWAY 0x80001060L
  834.  
  835. //
  836. // MessageId: EVENT_TCPIP_NO_ADDRESS_LIST
  837. //
  838. // MessageText:
  839. //
  840. //  Unable to read the configured IP addresses for adapter %2.
  841. //  IP interfaces will not be initialized on this adapter.
  842. //
  843. #define EVENT_TCPIP_NO_ADDRESS_LIST      0xC0001061L
  844.  
  845. //
  846. // MessageId: EVENT_TCPIP_NO_MASK_LIST
  847. //
  848. // MessageText:
  849. //
  850. //  Unable to read the configured subnet masks for adapter %2.
  851. //  IP interfaces will not be initialized on this adapter.
  852. //
  853. #define EVENT_TCPIP_NO_MASK_LIST         0xC0001062L
  854.  
  855. //
  856. // MessageId: EVENT_TCPIP_NO_BINDINGS
  857. //
  858. // MessageText:
  859. //
  860. //  IP was unable to read its bindings from the registry. No network interfaces
  861. //  were configured.
  862. //
  863. #define EVENT_TCPIP_NO_BINDINGS          0xC0001063L
  864.  
  865. //
  866. // MessageId: EVENT_TCPIP_IP_INIT_FAILED
  867. //
  868. // MessageText:
  869. //
  870. //  Initialization of IP failed.
  871. //
  872. #define EVENT_TCPIP_IP_INIT_FAILED       0xC0001064L
  873.  
  874. //
  875. // MessageId: EVENT_TCPIP_TOO_MANY_GATEWAYS
  876. //
  877. // MessageText:
  878. //
  879. //  More than the maximum number of default gateways were specified for
  880. //  adapter %2. Some remote networks may not be reachable as a result.
  881. //
  882. #define EVENT_TCPIP_TOO_MANY_GATEWAYS    0x80001065L
  883.  
  884. //
  885. // MessageId: EVENT_TCPIP_ADDRESS_CONFLICT1
  886. //
  887. // MessageText:
  888. //
  889. //  The system detected an address conflict for IP address %2 with the system
  890. //  having network hardware address %3. The local interface has been disabled.
  891. //
  892. #define EVENT_TCPIP_ADDRESS_CONFLICT1    0xC0001066L
  893.  
  894. //
  895. // MessageId: EVENT_TCPIP_ADDRESS_CONFLICT2
  896. //
  897. // MessageText:
  898. //
  899. //  The system detected an address conflict for IP address %2 with the system
  900. //  having network hardware address %3. Network operations on this system may
  901. //  be disrupted as a result.
  902. //
  903. #define EVENT_TCPIP_ADDRESS_CONFLICT2    0xC0001067L
  904.  
  905.  
  906. //
  907. // TCP messages
  908. //
  909. // Codes 4225 - 4264
  910. //
  911.  
  912. //
  913. // MessageId: EVENT_TCPIP_TCP_INIT_FAILED
  914. //
  915. // MessageText:
  916. //
  917. //  Initialization of TCP/UDP failed.
  918. //
  919. #define EVENT_TCPIP_TCP_INIT_FAILED      0xC0001081L
  920.  
  921.  
  922. //
  923. // UDP messages
  924. //
  925. // Codes 4265 - 4299
  926. //
  927.  
  928.  
  929.  
  930. /////////////////////////////////////////////////////////////////////////
  931. //
  932. // NBT Events
  933. //
  934. // Codes 4300 - 4399
  935. //
  936. /////////////////////////////////////////////////////////////////////////
  937.  
  938.  
  939.  
  940. // Don't use %1 for driver supplied insertion strings.  The IO subsystem
  941. // supplies the first string!!
  942.  
  943. //
  944. // MessageId: EVENT_NBT_CREATE_DRIVER
  945. //
  946. // MessageText:
  947. //
  948. //  The driver could not be created.
  949. //
  950. #define EVENT_NBT_CREATE_DRIVER          0xC00010CCL
  951.  
  952. //
  953. // MessageId: EVENT_NBT_OPEN_REG_PARAMS
  954. //
  955. // MessageText:
  956. //
  957. //  Unable to open the Registry Parameters to read configuration information.
  958. //
  959. #define EVENT_NBT_OPEN_REG_PARAMS        0xC00010CDL
  960.  
  961. //
  962. // MessageId: EVENT_NBT_NO_BACKUP_WINS
  963. //
  964. // MessageText:
  965. //
  966. //  The backup WINS server address is not configured in the registry.
  967. //
  968. #define EVENT_NBT_NO_BACKUP_WINS         0x800010CEL
  969.  
  970. //
  971. // MessageId: EVENT_NBT_NO_WINS
  972. //
  973. // MessageText:
  974. //
  975. //  The primary WINS server address is not configured in the registry.
  976. //
  977. #define EVENT_NBT_NO_WINS                0x800010CFL
  978.  
  979. //
  980. // MessageId: EVENT_NBT_BAD_BACKUP_WINS_ADDR
  981. //
  982. // MessageText:
  983. //
  984. //  The backup WINS server address is not formated correctly in the registry.
  985. //
  986. #define EVENT_NBT_BAD_BACKUP_WINS_ADDR   0x800010D0L
  987.  
  988. //
  989. // MessageId: EVENT_NBT_BAD_PRIMARY_WINS_ADDR
  990. //
  991. // MessageText:
  992. //
  993. //  The primary WINS server address is not formated correctly in the registry.
  994. //
  995. #define EVENT_NBT_BAD_PRIMARY_WINS_ADDR  0x800010D1L
  996.  
  997. //
  998. // MessageId: EVENT_NBT_NAME_SERVER_ADDRS
  999. //
  1000. // MessageText:
  1001. //
  1002. //  Unable to configure the addresses of the WINS servers.
  1003. //
  1004. #define EVENT_NBT_NAME_SERVER_ADDRS      0xC00010D2L
  1005.  
  1006. //
  1007. // MessageId: EVENT_NBT_CREATE_ADDRESS
  1008. //
  1009. // MessageText:
  1010. //
  1011. //  Initialization failed because the transport refused to open initial Addresses.
  1012. //
  1013. #define EVENT_NBT_CREATE_ADDRESS         0xC00010D3L
  1014.  
  1015. //
  1016. // MessageId: EVENT_NBT_CREATE_CONNECTION
  1017. //
  1018. // MessageText:
  1019. //
  1020. //  Initialization failed because the transport refused to open initial Connections.
  1021. //
  1022. #define EVENT_NBT_CREATE_CONNECTION      0xC00010D4L
  1023.  
  1024. //
  1025. // MessageId: EVENT_NBT_NON_OS_INIT
  1026. //
  1027. // MessageText:
  1028. //
  1029. //  Data structure initialization failed.
  1030. //
  1031. #define EVENT_NBT_NON_OS_INIT            0xC00010D5L
  1032.  
  1033. //
  1034. // MessageId: EVENT_NBT_TIMERS
  1035. //
  1036. // MessageText:
  1037. //
  1038. //  Initialization failed because the timers could not be started.
  1039. //
  1040. #define EVENT_NBT_TIMERS                 0xC00010D6L
  1041.  
  1042. //
  1043. // MessageId: EVENT_NBT_CREATE_DEVICE
  1044. //
  1045. // MessageText:
  1046. //
  1047. //  Initialization failed because the driver device could not be created.
  1048. //
  1049. #define EVENT_NBT_CREATE_DEVICE          0xC00010D7L
  1050.  
  1051. //
  1052. // MessageId: EVENT_NBT_NO_DEVICES
  1053. //
  1054. // MessageText:
  1055. //
  1056. //  There are no adapters configured for this protocol stack.
  1057. //
  1058. #define EVENT_NBT_NO_DEVICES             0x800010D8L
  1059.  
  1060. //
  1061. // MessageId: EVENT_NBT_OPEN_REG_LINKAGE
  1062. //
  1063. // MessageText:
  1064. //
  1065. //  Unable to open the Registry Linkage to read configuration information.
  1066. //
  1067. #define EVENT_NBT_OPEN_REG_LINKAGE       0xC00010D9L
  1068.  
  1069. //
  1070. // MessageId: EVENT_NBT_READ_BIND
  1071. //
  1072. // MessageText:
  1073. //
  1074. //  Unable to read the driver's bindings to the transport from the registry.
  1075. //
  1076. #define EVENT_NBT_READ_BIND              0xC00010DAL
  1077.  
  1078. //
  1079. // MessageId: EVENT_NBT_READ_EXPORT
  1080. //
  1081. // MessageText:
  1082. //
  1083. //  Unable to read the driver's exported linkage configuration information.
  1084. //
  1085. #define EVENT_NBT_READ_EXPORT            0xC00010DBL
  1086.  
  1087. //
  1088. // MessageId: EVENT_NBT_OPEN_REG_NAMESERVER
  1089. //
  1090. // MessageText:
  1091. //
  1092. //  Unable to open the Registry to read the WINS server addresses.
  1093. //
  1094. #define EVENT_NBT_OPEN_REG_NAMESERVER    0x800010DCL
  1095.  
  1096. //
  1097. // MessageId: EVENT_SCOPE_LABEL_TOO_LONG
  1098. //
  1099. // MessageText:
  1100. //
  1101. //  The Netbios Name Scope has a component longer than 63 characters. Each label
  1102. //  in the Scope cannot be longer than 63 bytes.  Use the Control Panel, Network
  1103. //  applet to change the scope.
  1104. //
  1105. #define EVENT_SCOPE_LABEL_TOO_LONG       0x800010DDL
  1106.  
  1107. //
  1108. // MessageId: EVENT_SCOPE_TOO_LONG
  1109. //
  1110. // MessageText:
  1111. //
  1112. //  The Netbios Name Scope is too long. The scope cannot be longer than
  1113. //  255 bytes. Use the Control Panel, Network applet to change the scope.
  1114. //
  1115. #define EVENT_SCOPE_TOO_LONG             0x800010DEL
  1116.  
  1117. //
  1118. // MessageId: EVENT_NBT_DUPLICATE_NAME
  1119. //
  1120. // MessageText:
  1121. //
  1122. //  A duplicate name has been detected on the TCP network.  The IP address of
  1123. //  the machine that sent the message is in the data. Use nbtstat -n in a
  1124. //  command window to see which name is in the Conflict state.
  1125. //
  1126. #define EVENT_NBT_DUPLICATE_NAME         0xC00010DFL
  1127.  
  1128. //
  1129. // MessageId: EVENT_NBT_NAME_RELEASE
  1130. //
  1131. // MessageText:
  1132. //
  1133. //  Another machine has sent a name release message to this machine probably
  1134. //  because a duplicate name has been detected on the TCP network.  The IP address
  1135. //  of the node that sent the message is in the data. Use nbtstat -n in a
  1136. //  command window to see which name is in the Conflict state.
  1137. //
  1138. #define EVENT_NBT_NAME_RELEASE           0xC00010E0L
  1139.  
  1140.  
  1141. /////////////////////////////////////////////////////////////////////////
  1142. //
  1143. // NDIS Environment Events
  1144. //
  1145. // Codes 5000 - 5099
  1146. //
  1147. /////////////////////////////////////////////////////////////////////////
  1148.  
  1149.  
  1150. //
  1151. // MessageId: EVENT_NDIS_RESOURCE_CONFLICT
  1152. //
  1153. // MessageText:
  1154. //
  1155. //  %2 : Has encountered a conflict in resources and could not load.
  1156. //
  1157. #define EVENT_NDIS_RESOURCE_CONFLICT     0xC0001388L
  1158.  
  1159. //
  1160. // MessageId: EVENT_NDIS_OUT_OF_RESOURCE
  1161. //
  1162. // MessageText:
  1163. //
  1164. //  %2 : Could not allocate the resources necessary for operation.
  1165. //
  1166. #define EVENT_NDIS_OUT_OF_RESOURCE       0xC0001389L
  1167.  
  1168. //
  1169. // MessageId: EVENT_NDIS_HARDWARE_FAILURE
  1170. //
  1171. // MessageText:
  1172. //
  1173. //  %2 : Has determined that the adapter is not functioning properly.
  1174. //
  1175. #define EVENT_NDIS_HARDWARE_FAILURE      0xC000138AL
  1176.  
  1177. //
  1178. // MessageId: EVENT_NDIS_ADAPTER_NOT_FOUND
  1179. //
  1180. // MessageText:
  1181. //
  1182. //  %2 : Could not find an adapter.
  1183. //
  1184. #define EVENT_NDIS_ADAPTER_NOT_FOUND     0xC000138BL
  1185.  
  1186. //
  1187. // MessageId: EVENT_NDIS_INTERRUPT_CONNECT
  1188. //
  1189. // MessageText:
  1190. //
  1191. //  %2 : Could not connect to the interrupt number supplied.
  1192. //
  1193. #define EVENT_NDIS_INTERRUPT_CONNECT     0xC000138CL
  1194.  
  1195. //
  1196. // MessageId: EVENT_NDIS_DRIVER_FAILURE
  1197. //
  1198. // MessageText:
  1199. //
  1200. //  %2 : Has encountered an internal error and has failed.
  1201. //
  1202. #define EVENT_NDIS_DRIVER_FAILURE        0xC000138DL
  1203.  
  1204. //
  1205. // MessageId: EVENT_NDIS_BAD_VERSION
  1206. //
  1207. // MessageText:
  1208. //
  1209. //  %2 : The version number is incorrect for this driver.
  1210. //
  1211. #define EVENT_NDIS_BAD_VERSION           0xC000138EL
  1212.  
  1213. //
  1214. // MessageId: EVENT_NDIS_TIMEOUT
  1215. //
  1216. // MessageText:
  1217. //
  1218. //  %2 : Timed out during an operation.
  1219. //
  1220. #define EVENT_NDIS_TIMEOUT               0x8000138FL
  1221.  
  1222. //
  1223. // MessageId: EVENT_NDIS_NETWORK_ADDRESS
  1224. //
  1225. // MessageText:
  1226. //
  1227. //  %2 : Has encountered an invalid network address.
  1228. //
  1229. #define EVENT_NDIS_NETWORK_ADDRESS       0xC0001390L
  1230.  
  1231. //
  1232. // MessageId: EVENT_NDIS_UNSUPPORTED_CONFIGURATION
  1233. //
  1234. // MessageText:
  1235. //
  1236. //  %2 : Does not support the configuration supplied.
  1237. //
  1238. #define EVENT_NDIS_UNSUPPORTED_CONFIGURATION 0xC0001391L
  1239.  
  1240. //
  1241. // MessageId: EVENT_NDIS_INVALID_VALUE_FROM_ADAPTER
  1242. //
  1243. // MessageText:
  1244. //
  1245. //  %2 : The adapter has returned an invalid value to the driver.
  1246. //
  1247. #define EVENT_NDIS_INVALID_VALUE_FROM_ADAPTER 0xC0001392L
  1248.  
  1249. //
  1250. // MessageId: EVENT_NDIS_MISSING_CONFIGURATION_PARAMETER
  1251. //
  1252. // MessageText:
  1253. //
  1254. //  %2 : A required parameter is missing from the Registry.
  1255. //
  1256. #define EVENT_NDIS_MISSING_CONFIGURATION_PARAMETER 0xC0001393L
  1257.  
  1258. //
  1259. // MessageId: EVENT_NDIS_BAD_IO_BASE_ADDRESS
  1260. //
  1261. // MessageText:
  1262. //
  1263. //  %2 : The I/O base address supplied does not match the jumpers on the adapter.
  1264. //
  1265. #define EVENT_NDIS_BAD_IO_BASE_ADDRESS   0xC0001394L
  1266.  
  1267. //
  1268. // MessageId: EVENT_NDIS_RECEIVE_SPACE_SMALL
  1269. //
  1270. // MessageText:
  1271. //
  1272. //  %2 : The adapter is configured such that the receive space is smaller than
  1273. //  the maximum packet size.  Some packets may be lost.
  1274. //
  1275. #define EVENT_NDIS_RECEIVE_SPACE_SMALL   0x40001395L
  1276.  
  1277. //
  1278. // MessageId: EVENT_NDIS_ADAPTER_DISABLED
  1279. //
  1280. // MessageText:
  1281. //
  1282. //  %2 : The adapter is disabled.  The driver cannot open the adapter.
  1283. //
  1284. #define EVENT_NDIS_ADAPTER_DISABLED      0x80001396L
  1285.  
  1286. //
  1287. // MessageId: EVENT_NDIS_IO_PORT_CONFLICT
  1288. //
  1289. // MessageText:
  1290. //
  1291. //  %2 : There is an I/O port conflict.
  1292. //
  1293. #define EVENT_NDIS_IO_PORT_CONFLICT      0x80001397L
  1294.  
  1295. //
  1296. // MessageId: EVENT_NDIS_PORT_OR_DMA_CONFLICT
  1297. //
  1298. // MessageText:
  1299. //
  1300. //  %2 : There is an I/O port or DMA channel conflict.
  1301. //
  1302. #define EVENT_NDIS_PORT_OR_DMA_CONFLICT  0x80001398L
  1303.  
  1304. //
  1305. // MessageId: EVENT_NDIS_MEMORY_CONFLICT
  1306. //
  1307. // MessageText:
  1308. //
  1309. //  %2 : There is a memory conflict at address 0x%3.
  1310. //
  1311. #define EVENT_NDIS_MEMORY_CONFLICT       0x80001399L
  1312.  
  1313. //
  1314. // MessageId: EVENT_NDIS_INTERRUPT_CONFLICT
  1315. //
  1316. // MessageText:
  1317. //
  1318. //  %2 : There is a interrupt conflict at interrupt number %3.
  1319. //
  1320. #define EVENT_NDIS_INTERRUPT_CONFLICT    0x8000139AL
  1321.  
  1322. //
  1323. // MessageId: EVENT_NDIS_DMA_CONFLICT
  1324. //
  1325. // MessageText:
  1326. //
  1327. //  %2 : There is a resource conflict at DMA channel %3.
  1328. //
  1329. #define EVENT_NDIS_DMA_CONFLICT          0x8000139BL
  1330.  
  1331. //
  1332. // MessageId: EVENT_NDIS_INVALID_DOWNLOAD_FILE_ERROR
  1333. //
  1334. // MessageText:
  1335. //
  1336. //  %2 : The download file is invalid.  The driver is unable to load.
  1337. //
  1338. #define EVENT_NDIS_INVALID_DOWNLOAD_FILE_ERROR 0xC000139CL
  1339.  
  1340. //
  1341. // MessageId: EVENT_NDIS_MAXRECEIVES_ERROR
  1342. //
  1343. // MessageText:
  1344. //
  1345. //  %2 : The specified Registry entry MaxReceives is out of range.  Using
  1346. //  default value.
  1347. //
  1348. #define EVENT_NDIS_MAXRECEIVES_ERROR     0x8000139DL
  1349.  
  1350. //
  1351. // MessageId: EVENT_NDIS_MAXTRANSMITS_ERROR
  1352. //
  1353. // MessageText:
  1354. //
  1355. //  %2 : The specified Registry entry MaxTransmits is out of range.  Using
  1356. //  default value.
  1357. //
  1358. #define EVENT_NDIS_MAXTRANSMITS_ERROR    0x8000139EL
  1359.  
  1360. //
  1361. // MessageId: EVENT_NDIS_MAXFRAMESIZE_ERROR
  1362. //
  1363. // MessageText:
  1364. //
  1365. //  %2 : The specified Registry entry MaxFrameSize is out of range.  Using
  1366. //  default value.
  1367. //
  1368. #define EVENT_NDIS_MAXFRAMESIZE_ERROR    0x8000139FL
  1369.  
  1370. //
  1371. // MessageId: EVENT_NDIS_MAXINTERNALBUFS_ERROR
  1372. //
  1373. // MessageText:
  1374. //
  1375. //  %2 : The specified Registry entry MaxInternalBufs is out of range.  Using
  1376. //  default value.
  1377. //
  1378. #define EVENT_NDIS_MAXINTERNALBUFS_ERROR 0x800013A0L
  1379.  
  1380. //
  1381. // MessageId: EVENT_NDIS_MAXMULTICAST_ERROR
  1382. //
  1383. // MessageText:
  1384. //
  1385. //  %2 : The specified Registry entry MaxMulticast is out of range.  Using
  1386. //  default value.
  1387. //
  1388. #define EVENT_NDIS_MAXMULTICAST_ERROR    0x800013A1L
  1389.  
  1390. //
  1391. // MessageId: EVENT_NDIS_PRODUCTID_ERROR
  1392. //
  1393. // MessageText:
  1394. //
  1395. //  %2 : The specified Registry entry ProductId is out of range.  Using
  1396. //  default value.
  1397. //
  1398. #define EVENT_NDIS_PRODUCTID_ERROR       0x800013A2L
  1399.  
  1400. //
  1401. // MessageId: EVENT_NDIS_LOBE_FAILUE_ERROR
  1402. //
  1403. // MessageText:
  1404. //
  1405. //  %2 : A Token Ring Lobe Wire Fault has occurred.  Verify cable
  1406. //  connections.  The adapter will continue to try to reinsert back
  1407. //  into the ring.
  1408. //
  1409. #define EVENT_NDIS_LOBE_FAILUE_ERROR     0x800013A3L
  1410.  
  1411. //
  1412. // MessageId: EVENT_NDIS_SIGNAL_LOSS_ERROR
  1413. //
  1414. // MessageText:
  1415. //
  1416. //  %2 : The adapter had detected a loss of signal on the ring.  The adapter
  1417. //  will continue to try to reinsert back into the ring.
  1418. //
  1419. #define EVENT_NDIS_SIGNAL_LOSS_ERROR     0x800013A4L
  1420.  
  1421. //
  1422. // MessageId: EVENT_NDIS_REMOVE_RECEIVED_ERROR
  1423. //
  1424. // MessageText:
  1425. //
  1426. //  %2 : The adapter has received a request to deinsert from the
  1427. //  ring.  The adapter will continue to try to reinsert back into the ring.
  1428. //
  1429. #define EVENT_NDIS_REMOVE_RECEIVED_ERROR 0x800013A5L
  1430.  
  1431. //
  1432. // MessageId: EVENT_NDIS_TOKEN_RING_CORRECTION
  1433. //
  1434. // MessageText:
  1435. //
  1436. //  %2 : The adapter has successfully reinserted back into the ring.
  1437. //
  1438. #define EVENT_NDIS_TOKEN_RING_CORRECTION 0x400013A6L
  1439.  
  1440. //
  1441. // MessageId: EVENT_NDIS_ADAPTER_CHECK_ERROR
  1442. //
  1443. // MessageText:
  1444. //
  1445. //  %2 : The adapter has detected an Adapter Check as a result of some
  1446. //  unrecoverable hardware of software error.  Please contact your service provider.
  1447. //
  1448. #define EVENT_NDIS_ADAPTER_CHECK_ERROR   0xC00013A7L
  1449.  
  1450. //
  1451. // MessageId: EVENT_NDIS_RESET_FAILURE_ERROR
  1452. //
  1453. // MessageText:
  1454. //
  1455. //  %2 : The adapter failed to reset within a specified time.  The adapter will
  1456. //  continue to try to reset.  This could be the result of a hardware failure.
  1457. //
  1458. #define EVENT_NDIS_RESET_FAILURE_ERROR   0x800013A8L
  1459.  
  1460. //
  1461. // MessageId: EVENT_NDIS_CABLE_DISCONNECTED_ERROR
  1462. //
  1463. // MessageText:
  1464. //
  1465. //  %2 : The adapter has detected that the Token Ring cable is disconnected from
  1466. //  the adapter.  Please reconnect the Token Ring cable.  The adapter will continue
  1467. //  to try to reset until the connection is repaired.
  1468. //
  1469. #define EVENT_NDIS_CABLE_DISCONNECTED_ERROR 0x800013A9L
  1470.  
  1471. //
  1472. // MessageId: EVENT_NDIS_RESET_FAILURE_CORRECTION
  1473. //
  1474. // MessageText:
  1475. //
  1476. //  %2 : The adapter has successfully completed a previously failed reset.
  1477. //
  1478. #define EVENT_NDIS_RESET_FAILURE_CORRECTION 0x800013AAL
  1479.  
  1480.  
  1481. /////////////////////////////////////////////////////////////////////////
  1482. //
  1483. // General NT System Events
  1484. //
  1485. /////////////////////////////////////////////////////////////////////////
  1486.  
  1487. //
  1488. // Eventlog Events 6000 - 6099
  1489. //
  1490. //
  1491. // MessageId: EVENT_LOG_FULL
  1492. //
  1493. // MessageText:
  1494. //
  1495. //  The %1 log file is full.
  1496. //
  1497. #define EVENT_LOG_FULL                   0x80001770L
  1498.  
  1499. //
  1500. // MessageId: EVENT_LogFileNotOpened
  1501. //
  1502. // MessageText:
  1503. //
  1504. //  The %1 log file cannot be opened.
  1505. //
  1506. #define EVENT_LogFileNotOpened           0x80001771L
  1507.  
  1508. //
  1509. // MessageId: EVENT_LogFileCorrupt
  1510. //
  1511. // MessageText:
  1512. //
  1513. //  The %1 log file is corrupted and will be cleared.
  1514. //
  1515. #define EVENT_LogFileCorrupt             0x80001772L
  1516.  
  1517. //
  1518. // MessageId: EVENT_DefaultLogCorrupt
  1519. //
  1520. // MessageText:
  1521. //
  1522. //  The Application log file could not be opened.  %1 will be used as the default
  1523. //  log file.
  1524. //
  1525. #define EVENT_DefaultLogCorrupt          0x80001773L
  1526.  
  1527. //
  1528. // MessageId: EVENT_BadDriverPacket
  1529. //
  1530. // MessageText:
  1531. //
  1532. //  A driver packet received from the I/O subsystem was invalid.  The data is the
  1533. //  packet.
  1534. //
  1535. #define EVENT_BadDriverPacket            0x80001774L
  1536.  
  1537. //
  1538. // MessageId: EVENT_EventlogStarted
  1539. //
  1540. // MessageText:
  1541. //
  1542. //  The Event log service was started.
  1543. //
  1544. #define EVENT_EventlogStarted            0x80001775L
  1545.  
  1546. //
  1547. // MessageId: EVENT_EventlogStopped
  1548. //
  1549. // MessageText:
  1550. //
  1551. //  The Event log service was stopped.
  1552. //
  1553. #define EVENT_EventlogStopped            0x80001776L
  1554.  
  1555. //
  1556. // MessageId: TITLE_EventlogMessageBox
  1557. //
  1558. // MessageText:
  1559. //
  1560. //  Eventlog Service %0
  1561. //
  1562. #define TITLE_EventlogMessageBox         0x80001777L
  1563.  
  1564. //
  1565. // System Events 6100 - 6199
  1566. //
  1567. //
  1568. // MessageId: EVENT_UP_DRIVER_ON_MP
  1569. //
  1570. // MessageText:
  1571. //
  1572. //  A uniprocessor-specific driver was loaded on a multiprocessor system.  The driver could not load.
  1573. //
  1574. #define EVENT_UP_DRIVER_ON_MP            0x800017D4L
  1575.  
  1576. //
  1577. // Service Controller Events 7000 - 7899
  1578. //
  1579. //
  1580. // MessageId: EVENT_SERVICE_START_FAILED
  1581. //
  1582. // MessageText:
  1583. //
  1584. //  The %1 service failed to start due to the following error: %n%2
  1585. //
  1586. #define EVENT_SERVICE_START_FAILED       0x80001B58L
  1587.  
  1588. //
  1589. // MessageId: EVENT_SERVICE_START_FAILED_II
  1590. //
  1591. // MessageText:
  1592. //
  1593. //  The %1 service depends on the %2 service which failed to start because of the following error: %n%3
  1594. //
  1595. #define EVENT_SERVICE_START_FAILED_II    0x80001B59L
  1596.  
  1597. //
  1598. // MessageId: EVENT_SERVICE_START_FAILED_GROUP
  1599. //
  1600. // MessageText:
  1601. //
  1602. //  The %1 service depends on the %2 group and no member of this group started.
  1603. //
  1604. #define EVENT_SERVICE_START_FAILED_GROUP 0x80001B5AL
  1605.  
  1606. //
  1607. // MessageId: EVENT_SERVICE_START_FAILED_NONE
  1608. //
  1609. // MessageText:
  1610. //
  1611. //  The %1 service depends on the following nonexistent service: %2
  1612. //
  1613. #define EVENT_SERVICE_START_FAILED_NONE  0x80001B5BL
  1614.  
  1615. //
  1616. // MessageId: EVENT_CALL_TO_FUNCTION_FAILED
  1617. //
  1618. // MessageText:
  1619. //
  1620. //  The %1 call failed with the following error: %n%2
  1621. //
  1622. #define EVENT_CALL_TO_FUNCTION_FAILED    0x80001B5DL
  1623.  
  1624. //
  1625. // MessageId: EVENT_CALL_TO_FUNCTION_FAILED_II
  1626. //
  1627. // MessageText:
  1628. //
  1629. //  The %1 call failed for %2 with the following error: %n%3
  1630. //
  1631. #define EVENT_CALL_TO_FUNCTION_FAILED_II 0x80001B5EL
  1632.  
  1633. //
  1634. // MessageId: EVENT_REVERTED_TO_LASTKNOWNGOOD
  1635. //
  1636. // MessageText:
  1637. //
  1638. //  The system reverted to its last known good configuration.  The system is restarting....
  1639. //
  1640. #define EVENT_REVERTED_TO_LASTKNOWNGOOD  0x80001B5FL
  1641.  
  1642. //
  1643. // MessageId: EVENT_BAD_ACCOUNT_NAME
  1644. //
  1645. // MessageText:
  1646. //
  1647. //  No backslash is in the account name.
  1648. //
  1649. #define EVENT_BAD_ACCOUNT_NAME           0x80001B60L
  1650.  
  1651. //
  1652. // MessageId: EVENT_CONNECTION_TIMEOUT
  1653. //
  1654. // MessageText:
  1655. //
  1656. //  Timeout (%1 milliseconds) waiting for service to connect.
  1657. //
  1658. #define EVENT_CONNECTION_TIMEOUT         0x80001B61L
  1659.  
  1660. //
  1661. // MessageId: EVENT_READFILE_TIMEOUT
  1662. //
  1663. // MessageText:
  1664. //
  1665. //  Timeout (%1 milliseconds) waiting for ReadFile.
  1666. //
  1667. #define EVENT_READFILE_TIMEOUT           0x80001B62L
  1668.  
  1669. //
  1670. // MessageId: EVENT_TRANSACT_TIMEOUT
  1671. //
  1672. // MessageText:
  1673. //
  1674. //  Timeout (%1 milliseconds) waiting for transaction response.
  1675. //
  1676. #define EVENT_TRANSACT_TIMEOUT           0x80001B63L
  1677.  
  1678. //
  1679. // MessageId: EVENT_TRANSACT_INVALID
  1680. //
  1681. // MessageText:
  1682. //
  1683. //  Message returned in transaction has incorrect size.
  1684. //
  1685. #define EVENT_TRANSACT_INVALID           0x80001B64L
  1686.  
  1687. //
  1688. // MessageId: EVENT_FIRST_LOGON_FAILED
  1689. //
  1690. // MessageText:
  1691. //
  1692. //  Logon attempt with current password failed with the following error: %n%1
  1693. //
  1694. #define EVENT_FIRST_LOGON_FAILED         0x80001B65L
  1695.  
  1696. //
  1697. // MessageId: EVENT_SECOND_LOGON_FAILED
  1698. //
  1699. // MessageText:
  1700. //
  1701. //  Second logon attempt with old password also failed with the following error: %n%1
  1702. //
  1703. #define EVENT_SECOND_LOGON_FAILED        0x80001B66L
  1704.  
  1705. //
  1706. // MessageId: EVENT_INVALID_DRIVER_DEPENDENCY
  1707. //
  1708. // MessageText:
  1709. //
  1710. //  Boot-start or system-start driver (%1) must not depend on a service.
  1711. //
  1712. #define EVENT_INVALID_DRIVER_DEPENDENCY  0x80001B67L
  1713.  
  1714. //
  1715. // MessageId: EVENT_BAD_SERVICE_STATE
  1716. //
  1717. // MessageText:
  1718. //
  1719. //  The %1 service has reported an invalid current state %2.
  1720. //
  1721. #define EVENT_BAD_SERVICE_STATE          0x80001B68L
  1722.  
  1723. //
  1724. // MessageId: EVENT_CIRCULAR_DEPENDENCY_DEMAND
  1725. //
  1726. // MessageText:
  1727. //
  1728. //  Detected circular dependencies demand starting %1.
  1729. //
  1730. #define EVENT_CIRCULAR_DEPENDENCY_DEMAND 0x80001B69L
  1731.  
  1732. //
  1733. // MessageId: EVENT_CIRCULAR_DEPENDENCY_AUTO
  1734. //
  1735. // MessageText:
  1736. //
  1737. //  Detected circular dependencies auto-starting services.
  1738. //
  1739. #define EVENT_CIRCULAR_DEPENDENCY_AUTO   0x80001B6AL
  1740.  
  1741. //
  1742. // MessageId: EVENT_DEPEND_ON_LATER_SERVICE
  1743. //
  1744. // MessageText:
  1745. //
  1746. //  Circular dependency: The %1 service depends on a service in a group which starts later.
  1747. //
  1748. #define EVENT_DEPEND_ON_LATER_SERVICE    0x80001B6BL
  1749.  
  1750. //
  1751. // MessageId: EVENT_DEPEND_ON_LATER_GROUP
  1752. //
  1753. // MessageText:
  1754. //
  1755. //  Circular dependency: The %1 service depends on a group which starts later.
  1756. //
  1757. #define EVENT_DEPEND_ON_LATER_GROUP      0x80001B6CL
  1758.  
  1759. //
  1760. // MessageId: EVENT_SEVERE_SERVICE_FAILED
  1761. //
  1762. // MessageText:
  1763. //
  1764. //  About to revert to the last known good configuration because the %1 service failed to start.
  1765. //
  1766. #define EVENT_SEVERE_SERVICE_FAILED      0x80001B6DL
  1767.  
  1768. //
  1769. // MessageId: EVENT_SERVICE_START_HUNG
  1770. //
  1771. // MessageText:
  1772. //
  1773. //  The %1 service hung on starting.
  1774. //
  1775. #define EVENT_SERVICE_START_HUNG         0x80001B6EL
  1776.  
  1777. //
  1778. // MessageId: EVENT_SERVICE_EXIT_FAILED
  1779. //
  1780. // MessageText:
  1781. //
  1782. //  The %1 service terminated with the following error: %n%2
  1783. //
  1784. #define EVENT_SERVICE_EXIT_FAILED        0x80001B6FL
  1785.  
  1786. //
  1787. // MessageId: EVENT_SERVICE_EXIT_FAILED_SPECIFIC
  1788. //
  1789. // MessageText:
  1790. //
  1791. //  The %1 service terminated with service-specific error %2.
  1792. //
  1793. #define EVENT_SERVICE_EXIT_FAILED_SPECIFIC 0x80001B70L
  1794.  
  1795. //
  1796. // MessageId: EVENT_SERVICE_START_AT_BOOT_FAILED
  1797. //
  1798. // MessageText:
  1799. //
  1800. //  At least one service or driver failed during system startup.  Use Event Viewer to examine the event log for details.
  1801. //
  1802. #define EVENT_SERVICE_START_AT_BOOT_FAILED 0x80001B71L
  1803.  
  1804. //
  1805. // MessageId: EVENT_BOOT_SYSTEM_DRIVERS_FAILED
  1806. //
  1807. // MessageText:
  1808. //
  1809. //  The following boot-start or system-start driver(s) failed to load: %1
  1810. //
  1811. #define EVENT_BOOT_SYSTEM_DRIVERS_FAILED 0x80001B72L
  1812.  
  1813. //
  1814. // MessageId: EVENT_RUNNING_LASTKNOWNGOOD
  1815. //
  1816. // MessageText:
  1817. //
  1818. //  Windows NT could not be started as configured.  A previous working configuration was used instead.
  1819. //
  1820. #define EVENT_RUNNING_LASTKNOWNGOOD      0x80001B73L
  1821.  
  1822. //
  1823. // MessageId: EVENT_TAKE_OWNERSHIP
  1824. //
  1825. // MessageText:
  1826. //
  1827. //  The %1 Registry key denied access to SYSTEM account programs so the Service Control Manager took ownership of the Registry key.
  1828. //
  1829. #define EVENT_TAKE_OWNERSHIP             0x80001B74L
  1830.  
  1831. //
  1832. // This Text is used as a title for the message box used to display
  1833. // MessageId 7027.  It is not an event or error message.
  1834. //
  1835. //
  1836. // MessageId: TITLE_SC_MESSAGE_BOX
  1837. //
  1838. // MessageText:
  1839. //
  1840. //  Service Control Manager %0
  1841. //
  1842. #define TITLE_SC_MESSAGE_BOX             0x80001B75L
  1843.  
  1844. //
  1845. // MessageId: EVENT_SERVICE_NOT_INTERACTIVE
  1846. //
  1847. // MessageText:
  1848. //
  1849. //  The %1 service is marked as an interactive service.  However, the system is configured to not allow interactive services.  This service may not function properly.
  1850. //
  1851. #define EVENT_SERVICE_NOT_INTERACTIVE    0x80001B76L
  1852.  
  1853. //
  1854. // Schedule (AT command) Service Events 7900 - 7999
  1855. //
  1856. //
  1857. // MessageId: EVENT_COMMAND_NOT_INTERACTIVE
  1858. //
  1859. // MessageText:
  1860. //
  1861. //  The %1 command is marked as an interactive command.  However, the system is
  1862. //  configured to not allow interactive command execution.  This command may not
  1863. //  function properly.
  1864. //
  1865. #define EVENT_COMMAND_NOT_INTERACTIVE    0x80001EDCL
  1866.  
  1867. //
  1868. // MessageId: EVENT_COMMAND_START_FAILED
  1869. //
  1870. // MessageText:
  1871. //
  1872. //  The %1 command failed to start due to the following error: %n%2
  1873. //
  1874. #define EVENT_COMMAND_START_FAILED       0x80001EDDL
  1875.  
  1876.  
  1877. /////////////////////////////////////////////////////////////////////////
  1878. //
  1879. // Lanman Bowser/Browser Events (8000-8499)
  1880. //
  1881. //
  1882. /////////////////////////////////////////////////////////////////////////
  1883.  
  1884.  
  1885. //
  1886. // MessageId: EVENT_BOWSER_OTHER_MASTER_ON_NET
  1887. //
  1888. // MessageText:
  1889. //
  1890. //  The master browser has received a server announcement from the computer %2
  1891. //  that believes that it is the master browser for the domain on transport %3.
  1892. //  The master browser is stopping or an election is being forced.
  1893. //
  1894. #define EVENT_BOWSER_OTHER_MASTER_ON_NET 0xC0001F43L
  1895.  
  1896. //
  1897. // MessageId: EVENT_BOWSER_PROMOTED_WHILE_ALREADY_MASTER
  1898. //
  1899. // MessageText:
  1900. //
  1901. //  A request has been submitted to promote the computer to backup when it is already a
  1902. //  master browser.
  1903. //
  1904. #define EVENT_BOWSER_PROMOTED_WHILE_ALREADY_MASTER 0x80001F44L
  1905.  
  1906. //
  1907. // MessageId: EVENT_BOWSER_NON_MASTER_MASTER_ANNOUNCE
  1908. //
  1909. // MessageText:
  1910. //
  1911. //  The browser has received a server announcement indicating that the computer %2
  1912. //  is a master browser, but this computer is not a master browser.
  1913. //
  1914. #define EVENT_BOWSER_NON_MASTER_MASTER_ANNOUNCE 0x80001F45L
  1915.  
  1916. //
  1917. // MessageId: EVENT_BOWSER_ILLEGAL_DATAGRAM
  1918. //
  1919. // MessageText:
  1920. //
  1921. //  The browser has received an illegal datagram from the remote computer %2 to name %3 on transport %4.  The data is the datagram.
  1922. //
  1923. #define EVENT_BOWSER_ILLEGAL_DATAGRAM    0x80001F46L
  1924.  
  1925. //
  1926. // MessageId: EVENT_BROWSER_STATUS_BITS_UPDATE_FAILED
  1927. //
  1928. // MessageText:
  1929. //
  1930. //  The browser was unable to update the service status bits.  The data is the error.
  1931. //
  1932. #define EVENT_BROWSER_STATUS_BITS_UPDATE_FAILED 0xC0001F47L
  1933.  
  1934. //
  1935. // MessageId: EVENT_BROWSER_ROLE_CHANGE_FAILED
  1936. //
  1937. // MessageText:
  1938. //
  1939. //  The browser was unable to update its role.  The data is the error.
  1940. //
  1941. #define EVENT_BROWSER_ROLE_CHANGE_FAILED 0xC0001F48L
  1942.  
  1943. //
  1944. // MessageId: EVENT_BROWSER_MASTER_PROMOTION_FAILED
  1945. //
  1946. // MessageText:
  1947. //
  1948. //  The browser was unable to promote itself to master browser.  The computer that currently
  1949. //  believes it is the master browser is %1.
  1950. //
  1951. #define EVENT_BROWSER_MASTER_PROMOTION_FAILED 0xC0001F49L
  1952.  
  1953. //
  1954. // MessageId: EVENT_BOWSER_NAME_CONVERSION_FAILED
  1955. //
  1956. // MessageText:
  1957. //
  1958. //  The browser driver was unable to convert a character string to a unicode string.
  1959. //
  1960. #define EVENT_BOWSER_NAME_CONVERSION_FAILED 0xC0001F4AL
  1961.  
  1962. //
  1963. // MessageId: EVENT_BROWSER_OTHERDOMAIN_ADD_FAILED
  1964. //
  1965. // MessageText:
  1966. //
  1967. //  The browser was unable to add the configuration parameter %1.
  1968. //
  1969. #define EVENT_BROWSER_OTHERDOMAIN_ADD_FAILED 0xC0001F4BL
  1970.  
  1971. //
  1972. // MessageId: EVENT_BOWSER_ELECTION_RECEIVED
  1973. //
  1974. // MessageText:
  1975. //
  1976. //  The browser driver has received an election packet from computer %2 on network %3.  The data is the packet received.
  1977. //
  1978. #define EVENT_BOWSER_ELECTION_RECEIVED   0x00001F4CL
  1979.  
  1980. //
  1981. // MessageId: EVENT_BOWSER_ELECTION_SENT_GETBLIST_FAILED
  1982. //
  1983. // MessageText:
  1984. //
  1985. //  The browser driver has forced an election on network %2 because it was unable to find a master browser to retrieve a backup list on that network.
  1986. //
  1987. #define EVENT_BOWSER_ELECTION_SENT_GETBLIST_FAILED 0x40001F4DL
  1988.  
  1989. //
  1990. // MessageId: EVENT_BOWSER_ELECTION_SENT_FIND_MASTER_FAILED
  1991. //
  1992. // MessageText:
  1993. //
  1994. //  The browser driver has forced an election on network %2 because it was unable to find a master browser for that network.
  1995. //
  1996. #define EVENT_BOWSER_ELECTION_SENT_FIND_MASTER_FAILED 0x40001F4EL
  1997.  
  1998. //
  1999. // MessageId: EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STARTED
  2000. //
  2001. // MessageText:
  2002. //
  2003. //  The browser has forced an election on network %1 because a Windows NT Server (or domain master) browser is started.
  2004. //
  2005. #define EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STARTED 0x40001F4FL
  2006.  
  2007. //
  2008. // MessageId: EVENT_BOWSER_ILLEGAL_DATAGRAM_THRESHOLD
  2009. //
  2010. // MessageText:
  2011. //
  2012. //  The browser driver has received too many illegal datagrams from the remote computer %2 to name %3 on transport %4.  The data is the datagram.
  2013. //  No more events will be generated until the reset frequency has expired.
  2014. //
  2015. #define EVENT_BOWSER_ILLEGAL_DATAGRAM_THRESHOLD 0xC0001F50L
  2016.  
  2017. //
  2018. // MessageId: EVENT_BROWSER_DEPENDANT_SERVICE_FAILED
  2019. //
  2020. // MessageText:
  2021. //
  2022. //  The browser has failed to start because the dependent service %1 had invalid service status %2.
  2023. //  Status             Meaning
  2024. //    1              Service Stopped%n
  2025. //    2              Start Pending%n
  2026. //    3              Stop Pending%n
  2027. //    4              Running%n
  2028. //    5              Continue Pending%n
  2029. //    6              Pause Pending%n
  2030. //    7              Paused%n
  2031. //
  2032. #define EVENT_BROWSER_DEPENDANT_SERVICE_FAILED 0xC0001F51L
  2033.  
  2034. //
  2035. // MessageId: EVENT_BROWSER_MASTER_PROMOTION_FAILED_STOPPING
  2036. //
  2037. // MessageText:
  2038. //
  2039. //  The browser was unable to promote itself to master browser.  The browser will continue
  2040. //  to attempt to promote itself to the master browser, but will no longer log any events in the event log in Event Viewer.
  2041. //
  2042. #define EVENT_BROWSER_MASTER_PROMOTION_FAILED_STOPPING 0xC0001F53L
  2043.  
  2044. //
  2045. // MessageId: EVENT_BROWSER_MASTER_PROMOTION_FAILED_NO_MASTER
  2046. //
  2047. // MessageText:
  2048. //
  2049. //  The browser was unable to promote itself to master browser.  The computer that currently
  2050. //  believes it is the master browser is unknown.
  2051. //
  2052. #define EVENT_BROWSER_MASTER_PROMOTION_FAILED_NO_MASTER 0xC0001F54L
  2053.  
  2054. //
  2055. // MessageId: EVENT_BROWSER_SERVER_LIST_FAILED
  2056. //
  2057. // MessageText:
  2058. //
  2059. //  The browser was unable to retrieve a list of servers from the browser master %1 on the network %2.
  2060. //  The data is the error code.
  2061. //
  2062. #define EVENT_BROWSER_SERVER_LIST_FAILED 0x80001F55L
  2063.  
  2064. //
  2065. // MessageId: EVENT_BROWSER_DOMAIN_LIST_FAILED
  2066. //
  2067. // MessageText:
  2068. //
  2069. //  The browser was unable to retrieve a list of domains from the browser master %1 on the network %2.
  2070. //  The data is the error code.
  2071. //
  2072. #define EVENT_BROWSER_DOMAIN_LIST_FAILED 0x80001F56L
  2073.  
  2074. //
  2075. // MessageId: EVENT_BROWSER_ILLEGAL_CONFIG
  2076. //
  2077. // MessageText:
  2078. //
  2079. //  The value for the parameter %1 to the browser service was illegal.
  2080. //
  2081. #define EVENT_BROWSER_ILLEGAL_CONFIG     0x80001F57L
  2082.  
  2083. //
  2084. // MessageId: EVENT_BOWSER_OLD_BACKUP_FOUND
  2085. //
  2086. // MessageText:
  2087. //
  2088. //  The backup browser server %2 is out-of-date.  Consider upgrading this computer.
  2089. //
  2090. #define EVENT_BOWSER_OLD_BACKUP_FOUND    0x40001F58L
  2091.  
  2092. //
  2093. // MessageId: EVENT_BROWSER_SERVER_LIST_RETRIEVED
  2094. //
  2095. // MessageText:
  2096. //
  2097. //  The browser has retrieved a list of servers from remote computer %1 on transport %2.%n
  2098. //  There were %3 entries read, and %4 total entries.
  2099. //
  2100. #define EVENT_BROWSER_SERVER_LIST_RETRIEVED 0x00001F59L
  2101.  
  2102. //
  2103. // MessageId: EVENT_BROWSER_DOMAIN_LIST_RETRIEVED
  2104. //
  2105. // MessageText:
  2106. //
  2107. //  The browser has retrieved a list of domains from remote computer %1 on transport %2.%n
  2108. //  There were %3 entries read, and %4 total entries.
  2109. //
  2110. #define EVENT_BROWSER_DOMAIN_LIST_RETRIEVED 0x00001F5AL
  2111.  
  2112. //
  2113. // MessageId: EVENT_BOWSER_PDC_LOST_ELECTION
  2114. //
  2115. // MessageText:
  2116. //
  2117. //  The browser running on the Domain Controller has lost an election.  The computer that won the election is %2, on the transport %3.%n
  2118. //  The data contains the election version, election criteria, and remote computer time up, and the same information for
  2119. //  the current computer.
  2120. //
  2121. #define EVENT_BOWSER_PDC_LOST_ELECTION   0x40001F5BL
  2122.  
  2123. //
  2124. // MessageId: EVENT_BOWSER_NON_PDC_WON_ELECTION
  2125. //
  2126. // MessageText:
  2127. //
  2128. //  The browser running on this computer has won a browser election on network %2.
  2129. //  This computer is a member of a domain, so the Domain Controller should become the master
  2130. //  browser.
  2131. //
  2132. #define EVENT_BOWSER_NON_PDC_WON_ELECTION 0x40001F5CL
  2133.  
  2134. //
  2135. // MessageId: EVENT_BOWSER_CANT_READ_REGISTRY
  2136. //
  2137. // MessageText:
  2138. //
  2139. //  The browser driver was unable to initialize variables from the Registry.
  2140. //
  2141. #define EVENT_BOWSER_CANT_READ_REGISTRY  0x40001F5DL
  2142.  
  2143. //
  2144. // MessageId: EVENT_BOWSER_MAILSLOT_DATAGRAM_THRESHOLD_EXCEEDED
  2145. //
  2146. // MessageText:
  2147. //
  2148. //  The browser driver has discarded too many mailslot messages.
  2149. //
  2150. #define EVENT_BOWSER_MAILSLOT_DATAGRAM_THRESHOLD_EXCEEDED 0x40001F5EL
  2151.  
  2152. //
  2153. // MessageId: EVENT_BOWSER_GETBROWSERLIST_THRESHOLD_EXCEEDED
  2154. //
  2155. // MessageText:
  2156. //
  2157. //  The browser driver has discarded too many GetBrowserServerList requests.
  2158. //
  2159. #define EVENT_BOWSER_GETBROWSERLIST_THRESHOLD_EXCEEDED 0x40001F5FL
  2160.  
  2161. //
  2162. // MessageId: EVENT_BROWSER_BACKUP_STOPPED
  2163. //
  2164. // MessageText:
  2165. //
  2166. //  The browser service has failed to retrieve the backup list too many times on transport %1.
  2167. //  The backup browser is stopping.
  2168. //
  2169. #define EVENT_BROWSER_BACKUP_STOPPED     0xC0001F60L
  2170.  
  2171. //
  2172. // MessageId: EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STOPPED
  2173. //
  2174. // MessageText:
  2175. //
  2176. //  The browser has forced an election on network %1 because a master browser was stopped.
  2177. //
  2178. #define EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STOPPED 0x40001F61L
  2179.  
  2180. //
  2181. // MessageId: EVENT_BROWSER_GETBLIST_RECEIVED_NOT_MASTER
  2182. //
  2183. // MessageText:
  2184. //
  2185. //  The browser has received a GetBrowserServerList request when it is not the master browser.
  2186. //
  2187. #define EVENT_BROWSER_GETBLIST_RECEIVED_NOT_MASTER 0xC0001F62L
  2188.  
  2189. //
  2190. // MessageId: EVENT_BROWSER_ELECTION_SENT_ROLE_CHANGED
  2191. //
  2192. // MessageText:
  2193. //
  2194. //  The browser has forced an election on network %1 because the Domain Controller (or Server) has changed its role
  2195. //
  2196. #define EVENT_BROWSER_ELECTION_SENT_ROLE_CHANGED 0x40001F63L
  2197.  
  2198. //
  2199. // MessageId: EVENT_BROWSER_NOT_STARTED_IPX_CONFIG_MISMATCH
  2200. //
  2201. // MessageText:
  2202. //
  2203. //  The browser has failed to start because of an error in the DirectHostBinding parameter to the browser.
  2204. //
  2205. #define EVENT_BROWSER_NOT_STARTED_IPX_CONFIG_MISMATCH 0xC0001F64L
  2206.  
  2207.  
  2208. /////////////////////////////////////////////////////////////////////////
  2209. //
  2210. // Sap Agent Events (8500-8999)
  2211. //
  2212. //
  2213. /////////////////////////////////////////////////////////////////////////
  2214.  
  2215.  
  2216. //
  2217. // MessageId: NWSAP_EVENT_KEY_NOT_FOUND
  2218. //
  2219. // MessageText:
  2220. //
  2221. //  The Registry Key %1 was not present.  The Sap Agent could not start.
  2222. //
  2223. #define NWSAP_EVENT_KEY_NOT_FOUND        0xC0002134L
  2224.  
  2225. //
  2226. // MessageId: NWSAP_EVENT_WSASTARTUP_FAILED
  2227. //
  2228. // MessageText:
  2229. //
  2230. //  Winsock startup routine failed.  The Sap Agent cannot continue.
  2231. //
  2232. #define NWSAP_EVENT_WSASTARTUP_FAILED    0xC0002135L
  2233.  
  2234. //
  2235. // MessageId: NWSAP_EVENT_SOCKET_FAILED
  2236. //
  2237. // MessageText:
  2238. //
  2239. //  Socket create call failed for main socket. The Sap Agent cannot continue.
  2240. //
  2241. #define NWSAP_EVENT_SOCKET_FAILED        0xC0002136L
  2242.  
  2243. //
  2244. // MessageId: NWSAP_EVENT_SETOPTBCAST_FAILED
  2245. //
  2246. // MessageText:
  2247. //
  2248. //  Setting broadcast option on socket failed.  The Sap Agent cannot continue.
  2249. //
  2250. #define NWSAP_EVENT_SETOPTBCAST_FAILED   0xC0002137L
  2251.  
  2252. //
  2253. // MessageId: NWSAP_EVENT_BIND_FAILED
  2254. //
  2255. // MessageText:
  2256. //
  2257. //  Binding to SAP Socket failed.  The Sap Agent cannot continue.
  2258. //
  2259. #define NWSAP_EVENT_BIND_FAILED          0xC0002138L
  2260.  
  2261. //
  2262. // MessageId: NWSAP_EVENT_GETSOCKNAME_FAILED
  2263. //
  2264. // MessageText:
  2265. //
  2266. //  Getting bound address of socket failed.  The Sap Agent cannot continue.
  2267. //
  2268. #define NWSAP_EVENT_GETSOCKNAME_FAILED   0xC0002139L
  2269.  
  2270. //
  2271. // MessageId: NWSAP_EVENT_OPTEXTENDEDADDR_FAILED
  2272. //
  2273. // MessageText:
  2274. //
  2275. //  Setting option EXTENDED_ADDRESS failed.  The Sap Agent cannot continue.
  2276. //
  2277. #define NWSAP_EVENT_OPTEXTENDEDADDR_FAILED 0xC000213AL
  2278.  
  2279. //
  2280. // MessageId: NWSAP_EVENT_OPTBCASTINADDR_FAILED
  2281. //
  2282. // MessageText:
  2283. //
  2284. //  Setting NWLink option BCASTINTADDR failed.  The Sap Agent cannot continue.
  2285. //
  2286. #define NWSAP_EVENT_OPTBCASTINADDR_FAILED 0xC000213BL
  2287.  
  2288. //
  2289. // MessageId: NWSAP_EVENT_CARDMALLOC_FAILED
  2290. //
  2291. // MessageText:
  2292. //
  2293. //  Error allocating memory to hold a card structure.  The Sap Agent cannot continue.
  2294. //
  2295. #define NWSAP_EVENT_CARDMALLOC_FAILED    0xC000213CL
  2296.  
  2297. //
  2298. // MessageId: NWSAP_EVENT_NOCARDS
  2299. //
  2300. // MessageText:
  2301. //
  2302. //  Enumeration of cards returned 0 cards.
  2303. //
  2304. #define NWSAP_EVENT_NOCARDS              0xC000213DL
  2305.  
  2306. //
  2307. // MessageId: NWSAP_EVENT_THREADEVENT_FAIL
  2308. //
  2309. // MessageText:
  2310. //
  2311. //  Error creating thread counting event.  The Sap Agent cannot continue.
  2312. //
  2313. #define NWSAP_EVENT_THREADEVENT_FAIL     0xC000213EL
  2314.  
  2315. //
  2316. // MessageId: NWSAP_EVENT_RECVSEM_FAIL
  2317. //
  2318. // MessageText:
  2319. //
  2320. //  Error creating receive semaphore.  The Sap Agent cannot continue.
  2321. //
  2322. #define NWSAP_EVENT_RECVSEM_FAIL         0xC000213FL
  2323.  
  2324. //
  2325. // MessageId: NWSAP_EVENT_SENDEVENT_FAIL
  2326. //
  2327. // MessageText:
  2328. //
  2329. //  Error creating send event.  The Sap Agent cannot continue.
  2330. //
  2331. #define NWSAP_EVENT_SENDEVENT_FAIL       0xC0002140L
  2332.  
  2333. //
  2334. // MessageId: NWSAP_EVENT_STARTRECEIVE_ERROR
  2335. //
  2336. // MessageText:
  2337. //
  2338. //  Error starting receive thread.  The Sap Agent cannot continue.
  2339. //
  2340. #define NWSAP_EVENT_STARTRECEIVE_ERROR   0xC0002141L
  2341.  
  2342. //
  2343. // MessageId: NWSAP_EVENT_STARTWORKER_ERROR
  2344. //
  2345. // MessageText:
  2346. //
  2347. //  Error starting worker thread.  The Sap Agent cannot continue.
  2348. //
  2349. #define NWSAP_EVENT_STARTWORKER_ERROR    0xC0002142L
  2350.  
  2351. //
  2352. // MessageId: NWSAP_EVENT_TABLE_MALLOC_FAILED
  2353. //
  2354. // MessageText:
  2355. //
  2356. //  Error allocating database array.  The Sap Agent cannot continue.
  2357. //
  2358. #define NWSAP_EVENT_TABLE_MALLOC_FAILED  0xC0002143L
  2359.  
  2360. //
  2361. // MessageId: NWSAP_EVENT_HASHTABLE_MALLOC_FAILED
  2362. //
  2363. // MessageText:
  2364. //
  2365. //  Error allocating hash table.  The Sap Agent cannot continue.
  2366. //
  2367. #define NWSAP_EVENT_HASHTABLE_MALLOC_FAILED 0xC0002144L
  2368.  
  2369. //
  2370. // MessageId: NWSAP_EVENT_STARTLPCWORKER_ERROR
  2371. //
  2372. // MessageText:
  2373. //
  2374. //  Error starting LPC worker thread.  The Sap Agent cannot continue.
  2375. //
  2376. #define NWSAP_EVENT_STARTLPCWORKER_ERROR 0xC0002145L
  2377.  
  2378. //
  2379. // MessageId: NWSAP_EVENT_CREATELPCPORT_ERROR
  2380. //
  2381. // MessageText:
  2382. //
  2383. //  Error creating the LPC port.  The Sap Agent cannot continue.
  2384. //
  2385. #define NWSAP_EVENT_CREATELPCPORT_ERROR  0xC0002146L
  2386.  
  2387. //
  2388. // MessageId: NWSAP_EVENT_CREATELPCEVENT_ERROR
  2389. //
  2390. // MessageText:
  2391. //
  2392. //  Error creating the LPC thread event.  The Sap Agent cannot continue.
  2393. //
  2394. #define NWSAP_EVENT_CREATELPCEVENT_ERROR 0xC0002147L
  2395.  
  2396. //
  2397. // MessageId: NWSAP_EVENT_LPCLISTENMEMORY_ERROR
  2398. //
  2399. // MessageText:
  2400. //
  2401. //  Error allocating memory for an LPC Client structure.  The Sap Agent cannot continue.
  2402. //
  2403. #define NWSAP_EVENT_LPCLISTENMEMORY_ERROR 0xC0002148L
  2404.  
  2405. //
  2406. // MessageId: NWSAP_EVENT_LPCHANDLEMEMORY_ERROR
  2407. //
  2408. // MessageText:
  2409. //
  2410. //  Error allocating buffer to hold LPC worker thread handles.  The Sap Agent cannot continue.
  2411. //
  2412. #define NWSAP_EVENT_LPCHANDLEMEMORY_ERROR 0xC0002149L
  2413.  
  2414. //
  2415. // MessageId: NWSAP_EVENT_BADWANFILTER_VALUE
  2416. //
  2417. // MessageText:
  2418. //
  2419. //  The value for WANFilter in the registry must be 0-2.  The Sap Agent cannot continue.
  2420. //
  2421. #define NWSAP_EVENT_BADWANFILTER_VALUE   0xC000214AL
  2422.  
  2423. //
  2424. // MessageId: NWSAP_EVENT_CARDLISTEVENT_FAIL
  2425. //
  2426. // MessageText:
  2427. //
  2428. //  Error creating event for card list access synchronization.  The Sap Agent cannot continue.
  2429. //
  2430. #define NWSAP_EVENT_CARDLISTEVENT_FAIL   0xC000214BL
  2431.  
  2432. //
  2433. // MessageId: NWSAP_EVENT_SDMDEVENT_FAIL
  2434. //
  2435. // MessageText:
  2436. //
  2437. //  Error creating event for database access synchronization.  The Sap Agent cannot continue.
  2438. //
  2439. #define NWSAP_EVENT_SDMDEVENT_FAIL       0xC000214CL
  2440.  
  2441. //
  2442. // MessageId: NWSAP_EVENT_INVALID_FILTERNAME
  2443. //
  2444. // MessageText:
  2445. //
  2446. //  Name too long in key %1: Name = %s.  The Sap Agent cannot continue.
  2447. //
  2448. #define NWSAP_EVENT_INVALID_FILTERNAME   0x8000214DL
  2449.  
  2450. //
  2451. // MessageId: NWSAP_EVENT_WANSEM_FAIL
  2452. //
  2453. // MessageText:
  2454. //
  2455. //  Error creating WAN control semaphore.  The Sap Agent cannot continue.
  2456. //
  2457. #define NWSAP_EVENT_WANSEM_FAIL          0xC000214EL
  2458.  
  2459. //
  2460. // MessageId: NWSAP_EVENT_WANSOCKET_FAILED
  2461. //
  2462. // MessageText:
  2463. //
  2464. //  Socket create call failed for WAN socket.  The Sap Agent cannot continue.
  2465. //
  2466. #define NWSAP_EVENT_WANSOCKET_FAILED     0xC000214FL
  2467.  
  2468. //
  2469. // MessageId: NWSAP_EVENT_WANBIND_FAILED
  2470. //
  2471. // MessageText:
  2472. //
  2473. //  Binding to WAN socket failed.  The Sap Agent cannot continue.
  2474. //
  2475. #define NWSAP_EVENT_WANBIND_FAILED       0xC0002150L
  2476.  
  2477. //
  2478. // MessageId: NWSAP_EVENT_STARTWANWORKER_ERROR
  2479. //
  2480. // MessageText:
  2481. //
  2482. //  Error starting WAN worker thread.  The Sap Agent cannot continue.
  2483. //
  2484. #define NWSAP_EVENT_STARTWANWORKER_ERROR 0xC0002151L
  2485.  
  2486. //
  2487. // MessageId: NWSAP_EVENT_STARTWANCHECK_ERROR
  2488. //
  2489. // MessageText:
  2490. //
  2491. //  Error starting WAN check thread.  The Sap Agent cannot continue.
  2492. //
  2493. #define NWSAP_EVENT_STARTWANCHECK_ERROR  0xC0002152L
  2494.  
  2495. //
  2496. // MessageId: NWSAP_EVENT_OPTMAXADAPTERNUM_ERROR
  2497. //
  2498. // MessageText:
  2499. //
  2500. //  Error on getsockopt IPX_MAX_ADAPTER_NUM.  Data is the error code.  The Sap Agent cannot continue.
  2501. //
  2502. #define NWSAP_EVENT_OPTMAXADAPTERNUM_ERROR 0xC0002153L
  2503.  
  2504. //
  2505. // MessageId: NWSAP_EVENT_WANHANDLEMEMORY_ERROR
  2506. //
  2507. // MessageText:
  2508. //
  2509. //  Error allocating buffer to hold WAN notify thread handles.  The Sap Agent cannot continue.
  2510. //
  2511. #define NWSAP_EVENT_WANHANDLEMEMORY_ERROR 0xC0002154L
  2512.  
  2513. //
  2514. // MessageId: NWSAP_EVENT_WANEVENT_ERROR
  2515. //
  2516. // MessageText:
  2517. //
  2518. //  Error creating the WAN thread event.  The Sap Agent cannot continue.
  2519. //
  2520. #define NWSAP_EVENT_WANEVENT_ERROR       0xC0002155L
  2521.  
  2522.  
  2523. /////////////////////////////////////////////////////////////////////////
  2524. //
  2525. // Transport Events (9000-9499)
  2526. //
  2527. //
  2528. /////////////////////////////////////////////////////////////////////////
  2529.  
  2530.  
  2531. //
  2532. // MessageId: EVENT_TRANSPORT_RESOURCE_POOL
  2533. //
  2534. // MessageText:
  2535. //
  2536. //  %2 could not allocate a resource of type %3 due to system resource problems.
  2537. //
  2538. #define EVENT_TRANSPORT_RESOURCE_POOL    0x80002329L
  2539.  
  2540. //
  2541. // MessageId: EVENT_TRANSPORT_RESOURCE_LIMIT
  2542. //
  2543. // MessageText:
  2544. //
  2545. //  %2 could not allocate a resource of type %3 due to its configured size of %4.
  2546. //
  2547. #define EVENT_TRANSPORT_RESOURCE_LIMIT   0x8000232AL
  2548.  
  2549. //
  2550. // MessageId: EVENT_TRANSPORT_RESOURCE_SPECIFIC
  2551. //
  2552. // MessageText:
  2553. //
  2554. //  %2 could not allocate a resource of type %3 due to a specifically configured limit of %4.
  2555. //
  2556. #define EVENT_TRANSPORT_RESOURCE_SPECIFIC 0x8000232BL
  2557.  
  2558. //
  2559. // MessageId: EVENT_TRANSPORT_REGISTER_FAILED
  2560. //
  2561. // MessageText:
  2562. //
  2563. //  %2 failed to register itself with the NDIS wrapper.
  2564. //
  2565. #define EVENT_TRANSPORT_REGISTER_FAILED  0xC000232CL
  2566.  
  2567. //
  2568. // MessageId: EVENT_TRANSPORT_BINDING_FAILED
  2569. //
  2570. // MessageText:
  2571. //
  2572. //  %2 failed to bind to adapter %3.
  2573. //
  2574. #define EVENT_TRANSPORT_BINDING_FAILED   0xC000232DL
  2575.  
  2576. //
  2577. // MessageId: EVENT_TRANSPORT_ADAPTER_NOT_FOUND
  2578. //
  2579. // MessageText:
  2580. //
  2581. //  %2 could not find adapter %3.
  2582. //
  2583. #define EVENT_TRANSPORT_ADAPTER_NOT_FOUND 0xC000232EL
  2584.  
  2585. //
  2586. // MessageId: EVENT_TRANSPORT_SET_OID_FAILED
  2587. //
  2588. // MessageText:
  2589. //
  2590. //  %2 failed while setting OID %3 on adapter %4.
  2591. //
  2592. #define EVENT_TRANSPORT_SET_OID_FAILED   0xC000232FL
  2593.  
  2594. //
  2595. // MessageId: EVENT_TRANSPORT_QUERY_OID_FAILED
  2596. //
  2597. // MessageText:
  2598. //
  2599. //  %2 failed while querying OID %3 on adapter %4.
  2600. //
  2601. #define EVENT_TRANSPORT_QUERY_OID_FAILED 0xC0002330L
  2602.  
  2603. //
  2604. // MessageId: EVENT_TRANSPORT_TRANSFER_DATA
  2605. //
  2606. // MessageText:
  2607. //
  2608. //  %2 could not transfer a packet from the adapter.  The packet was dropped.
  2609. //
  2610. #define EVENT_TRANSPORT_TRANSFER_DATA    0x40002331L
  2611.  
  2612. //
  2613. // MessageId: EVENT_TRANSPORT_TOO_MANY_LINKS
  2614. //
  2615. // MessageText:
  2616. //
  2617. //  %2 could not create a link to a remote computer.  Your computer has exceeded the number of connections it can make to that remote computer.
  2618. //
  2619. #define EVENT_TRANSPORT_TOO_MANY_LINKS   0x40002332L
  2620.  
  2621. //
  2622. // MessageId: EVENT_TRANSPORT_BAD_PROTOCOL
  2623. //
  2624. // MessageText:
  2625. //
  2626. //  %2 received an unexpected %3 packet from a remote computer.
  2627. //
  2628. #define EVENT_TRANSPORT_BAD_PROTOCOL     0x40002333L
  2629.  
  2630.  
  2631. /////////////////////////////////////////////////////////////////////////
  2632. //
  2633. // IPX/SPX Events (9500-9999)
  2634. //
  2635. //
  2636. /////////////////////////////////////////////////////////////////////////
  2637.  
  2638.  
  2639. //
  2640. // MessageId: EVENT_IPX_NEW_DEFAULT_TYPE
  2641. //
  2642. // MessageText:
  2643. //
  2644. //  The default frame type for auto-detection on %2 was changed to %3.
  2645. //  This type is now the default if no frame type can be detected.
  2646. //
  2647. #define EVENT_IPX_NEW_DEFAULT_TYPE       0x4000251DL
  2648.  
  2649. //
  2650. // MessageId: EVENT_IPX_SAP_ANNOUNCE
  2651. //
  2652. // MessageText:
  2653. //
  2654. //  A SAP announcement was sent over %2 which is configured for multiple
  2655. //  networks, but no internal network is configured. This may prevent
  2656. //  machines on some networks from locating the advertised service.
  2657. //
  2658. #define EVENT_IPX_SAP_ANNOUNCE           0x8000251EL
  2659.  
  2660. //
  2661. // MessageId: EVENT_IPX_ILLEGAL_CONFIG
  2662. //
  2663. // MessageText:
  2664. //
  2665. //  The value for the %2 parameter %3 was illegal.
  2666. //
  2667. #define EVENT_IPX_ILLEGAL_CONFIG         0x8000251FL
  2668.  
  2669. //
  2670. // MessageId: EVENT_IPX_INTERNAL_NET_INVALID
  2671. //
  2672. // MessageText:
  2673. //
  2674. //  %2 was configured with an internal network number of %3. This network
  2675. //  number conflicts with one of the attached networks. The configured
  2676. //  internal network number will be ignored.
  2677. //
  2678. #define EVENT_IPX_INTERNAL_NET_INVALID   0xC0002520L
  2679.  
  2680. //
  2681. // MessageId: EVENT_IPX_NO_FRAME_TYPES
  2682. //
  2683. // MessageText:
  2684. //
  2685. //  %2 had no frame types configured for the binding to adapter %3.
  2686. //
  2687. #define EVENT_IPX_NO_FRAME_TYPES         0xC0002521L
  2688.  
  2689. //
  2690. // MessageId: EVENT_IPX_CREATE_DEVICE
  2691. //
  2692. // MessageText:
  2693. //
  2694. //  %2 failed to initialize because the driver device could not be created.
  2695. //
  2696. #define EVENT_IPX_CREATE_DEVICE          0xC0002522L
  2697.  
  2698. //
  2699. // MessageId: EVENT_IPX_NO_ADAPTERS
  2700. //
  2701. // MessageText:
  2702. //
  2703. //  %2 could not bind to any adapters. The transport could not start.
  2704. //
  2705. #define EVENT_IPX_NO_ADAPTERS            0xC0002523L
  2706.  
  2707.  
  2708. /////////////////////////////////////////////////////////////////////////
  2709. //
  2710. // DCOM Events (10000-10999)
  2711. //
  2712. //
  2713. /////////////////////////////////////////////////////////////////////////
  2714.  
  2715.  
  2716. //
  2717. // MessageId: EVENT_RPCSS_CREATEPROCESS_FAILURE
  2718. //
  2719. // MessageText:
  2720. //
  2721. //  Unable to start a DCOM Server: %3.
  2722. //  The error:%n"%%%2"%nHappened while starting this command:%n%1
  2723. //
  2724. #define EVENT_RPCSS_CREATEPROCESS_FAILURE 0xC0002710L
  2725.  
  2726. //
  2727. // MessageId: EVENT_RPCSS_RUNAS_CREATEPROCESS_FAILURE
  2728. //
  2729. // MessageText:
  2730. //
  2731. //  Unable to start a DCOM Server: %3 as %4/%5.
  2732. //  The error:%n"%%%2"%nHappened while starting this command:%n%1
  2733. //
  2734. #define EVENT_RPCSS_RUNAS_CREATEPROCESS_FAILURE 0xC0002711L
  2735.  
  2736. //
  2737. // MessageId: EVENT_RPCSS_LAUNCH_ACCESS_DENIED
  2738. //
  2739. // MessageText:
  2740. //
  2741. //  Access denied attempting to launch a DCOM Server.
  2742. //  The server is:%n%1
  2743. //
  2744. #define EVENT_RPCSS_LAUNCH_ACCESS_DENIED 0xC0002712L
  2745.  
  2746. //
  2747. // MessageId: EVENT_RPCSS_DEFAULT_LAUNCH_ACCESS_DENIED
  2748. //
  2749. // MessageText:
  2750. //
  2751. //  Access denied attempting to launch a DCOM Server using DefaultLaunchPermssion.
  2752. //  The server is:%n%1
  2753. //
  2754. #define EVENT_RPCSS_DEFAULT_LAUNCH_ACCESS_DENIED 0xC0002713L
  2755.  
  2756. //
  2757. // MessageId: EVENT_RPCSS_RUNAS_CANT_LOGIN
  2758. //
  2759. // MessageText:
  2760. //
  2761. //  DCOM got error "%%%1" and was unable to logon %2\%3
  2762. //  in order to run the server:%n%4
  2763. //
  2764. #define EVENT_RPCSS_RUNAS_CANT_LOGIN     0xC0002714L
  2765.  
  2766. //
  2767. // MessageId: EVENT_RPCSS_START_SERVICE_FAILURE
  2768. //
  2769. // MessageText:
  2770. //
  2771. //  DCOM got error "%%%1" attempting to start the service %2 with arguments "%3"
  2772. //  in order to run the server:%n%4
  2773. //
  2774. #define EVENT_RPCSS_START_SERVICE_FAILURE 0xC0002715L
  2775.  
  2776. //
  2777. // MessageId: EVENT_RPCSS_REMOTE_SIDE_ERROR
  2778. //
  2779. // MessageText:
  2780. //
  2781. //  DCOM got error "%%%1" from the computer %2 when attempting to
  2782. //  activate the server:%n%3
  2783. //
  2784. #define EVENT_RPCSS_REMOTE_SIDE_ERROR    0xC0002716L
  2785.  
  2786. //
  2787. // MessageId: EVENT_RPCSS_ACTIVATION_ERROR
  2788. //
  2789. // MessageText:
  2790. //
  2791. //  DCOM got error "%%%1" when attempting to
  2792. //  activate the server:%n%2
  2793. //
  2794. #define EVENT_RPCSS_ACTIVATION_ERROR     0xC0002717L
  2795.  
  2796. //
  2797. // MessageId: EVENT_RPCSS_REMOTE_SIDE_ERROR_WITH_FILE
  2798. //
  2799. // MessageText:
  2800. //
  2801. //  DCOM got error "%%%1" from the computer %2 when attempting to
  2802. //  the server:%n%3 with file %4.
  2803. //
  2804. #define EVENT_RPCSS_REMOTE_SIDE_ERROR_WITH_FILE 0xC0002718L
  2805.  
  2806. //
  2807. // MessageId: EVENT_RPCSS_REMOTE_SIDE_UNAVAILABLE
  2808. //
  2809. // MessageText:
  2810. //
  2811. //  DCOM was unable to communicate with the computer %1 using any of the configured
  2812. //  protocols.
  2813. //
  2814. #define EVENT_RPCSS_REMOTE_SIDE_UNAVAILABLE 0xC0002719L
  2815.  
  2816. //
  2817. // MessageId: EVENT_RPCSS_SERVER_START_TIMEOUT
  2818. //
  2819. // MessageText:
  2820. //
  2821. //  The server %1 did not register with DCOM within the required timeout.
  2822. //
  2823. #define EVENT_RPCSS_SERVER_START_TIMEOUT 0xC000271AL
  2824.  
  2825. //
  2826. // MessageId: EVENT_RPCSS_SERVER_NOT_RESPONDING
  2827. //
  2828. // MessageText:
  2829. //
  2830. //  The server %1 could not be contacted to establish the connection to the client
  2831. //
  2832. #define EVENT_RPCSS_SERVER_NOT_RESPONDING 0xC000271BL
  2833.  
  2834.  
  2835. #endif // _NETEVENT
  2836.  
  2837.