home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / DirectShow / Common / nserror.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-08  |  103.9 KB  |  4,829 lines

  1. /*++
  2.  
  3.   Microsoft Windows Media Technology
  4.   Copyright (C) Microsoft Corporation, 1999-2001.  All Rights Reserved.
  5.  
  6. Module Name:
  7.  
  8.     nserror.mc
  9.  
  10. Abstract:
  11.  
  12.     Definitions for NetShow events.
  13.  
  14. Author:
  15.  
  16.  
  17. Revision History:
  18.  
  19. Notes:
  20.  
  21.     This file is used by the MC tool to generate the nserror.h file
  22.  
  23. **************************** READ ME ******************************************
  24.  
  25.  Here are the commented error ranges for the Windows Media Technologies Group
  26.  
  27.  
  28.  LEGACY RANGES
  29.  
  30.      0  -  199 = General NetShow errors
  31.  
  32.    200  -  399 = NetShow error events
  33.  
  34.    400  -  599 = NetShow monitor events
  35.  
  36.    600  -  799 = NetShow IMmsAutoServer errors
  37.  
  38.   1000  - 1199 = NetShow MCMADM errors
  39.  
  40.  
  41.  NEW RANGES
  42.  
  43.   2000- 2999 = ASF (defined in ASFERR.MC)
  44.  
  45.   3000 -  3999 = Windows Media SDK
  46.  
  47.   4000 -  4999 = Windows Media Player
  48.  
  49.   5000 -  5999 = Windows Media Server
  50.  
  51.   6000 -  6999 = Windows Media HTTP/RTSP result codes (defined in NETERROR.MC)
  52.  
  53.   7000 -  7999 = Windows Media Tools
  54.  
  55.   8000 -  8999 = Windows Media Content Discovery
  56.  
  57.   9000 -  9999 = Windows Media Real Time Collaboration
  58.  
  59.  10000 - 10999 = Windows Media Digital Rights Management
  60.  
  61.  11000 - 11999 = Windows Media Setup
  62.  
  63.  12000-12999 = Windows Media Networking
  64.  
  65. **************************** READ ME ******************************************
  66.  
  67. --*/
  68.  
  69. #ifndef _NSERROR_H
  70. #define _NSERROR_H
  71.  
  72.  
  73. #define STATUS_SEVERITY(hr)  (((hr) >> 30) & 0x3)
  74.  
  75.  
  76. /////////////////////////////////////////////////////////////////////////
  77. //
  78. // NETSHOW Success Events
  79. //
  80. /////////////////////////////////////////////////////////////////////////
  81.  
  82. //
  83. //  Values are 32 bit values layed out as follows:
  84. //
  85. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  86. //   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
  87. //  +---+-+-+-----------------------+-------------------------------+
  88. //  |Sev|C|R|     Facility          |               Code            |
  89. //  +---+-+-+-----------------------+-------------------------------+
  90. //
  91. //  where
  92. //
  93. //      Sev - is the severity code
  94. //
  95. //          00 - Success
  96. //          01 - Informational
  97. //          10 - Warning
  98. //          11 - Error
  99. //
  100. //      C - is the Customer code flag
  101. //
  102. //      R - is a reserved bit
  103. //
  104. //      Facility - is the facility code
  105. //
  106. //      Code - is the facility's status code
  107. //
  108. //
  109. // Define the facility codes
  110. //
  111. #define FACILITY_NS_WIN32                0x7
  112. #define FACILITY_NS                      0xD
  113.  
  114.  
  115. //
  116. // Define the severity codes
  117. //
  118. #define STATUS_SEVERITY_WARNING          0x2
  119. #define STATUS_SEVERITY_SUCCESS          0x0
  120. #define STATUS_SEVERITY_INFORMATIONAL    0x1
  121. #define STATUS_SEVERITY_ERROR            0x3
  122.  
  123.  
  124. //
  125. // MessageId: NS_S_CALLPENDING
  126. //
  127. // MessageText:
  128. //
  129. //  The requested operation is pending completion.%0
  130. //
  131. #define NS_S_CALLPENDING                 0x000D0000L
  132.  
  133. //
  134. // MessageId: NS_S_CALLABORTED
  135. //
  136. // MessageText:
  137. //
  138. //  The requested operation was aborted by the client.%0
  139. //
  140. #define NS_S_CALLABORTED                 0x000D0001L
  141.  
  142. //
  143. // MessageId: NS_S_STREAM_TRUNCATED
  144. //
  145. // MessageText:
  146. //
  147. //  The stream was purposefully stopped before completion.%0
  148. //
  149. #define NS_S_STREAM_TRUNCATED            0x000D0002L
  150.  
  151.  
  152. /////////////////////////////////////////////////////////////////////////
  153. //
  154. // NETSHOW Warning Events
  155. //
  156. /////////////////////////////////////////////////////////////////////////
  157.  
  158. //
  159. // MessageId: NS_W_SERVER_BANDWIDTH_LIMIT
  160. //
  161. // MessageText:
  162. //
  163. //  The maximum filebitrate value specified is greater than the server's configured maximum bandwidth.%0
  164. //
  165. #define NS_W_SERVER_BANDWIDTH_LIMIT      0x800D0003L
  166.  
  167. //
  168. // MessageId: NS_W_FILE_BANDWIDTH_LIMIT
  169. //
  170. // MessageText:
  171. //
  172. //  The maximum bandwidth value specified is less than the maximum filebitrate.%0
  173. //
  174. #define NS_W_FILE_BANDWIDTH_LIMIT        0x800D0004L
  175.  
  176.  
  177. /////////////////////////////////////////////////////////////////////////
  178. //
  179. // NETSHOW Error Events
  180. //
  181. /////////////////////////////////////////////////////////////////////////
  182.  
  183. //
  184. // MessageId: NS_E_NOCONNECTION
  185. //
  186. // MessageText:
  187. //
  188. //  There is no connection established with the Windows Media server. The operation failed.%0
  189. //
  190. #define NS_E_NOCONNECTION                0xC00D0005L
  191.  
  192. //
  193. // MessageId: NS_E_CANNOTCONNECT
  194. //
  195. // MessageText:
  196. //
  197. //  Unable to establish a connection to the server.%0
  198. //
  199. #define NS_E_CANNOTCONNECT               0xC00D0006L
  200.  
  201. //
  202. // MessageId: NS_E_CANNOTDESTROYTITLE
  203. //
  204. // MessageText:
  205. //
  206. //  Unable to destroy the title.%0
  207. //
  208. #define NS_E_CANNOTDESTROYTITLE          0xC00D0007L
  209.  
  210. //
  211. // MessageId: NS_E_CANNOTRENAMETITLE
  212. //
  213. // MessageText:
  214. //
  215. //  Unable to rename the title.%0
  216. //
  217. #define NS_E_CANNOTRENAMETITLE           0xC00D0008L
  218.  
  219. //
  220. // MessageId: NS_E_CANNOTOFFLINEDISK
  221. //
  222. // MessageText:
  223. //
  224. //  Unable to offline disk.%0
  225. //
  226. #define NS_E_CANNOTOFFLINEDISK           0xC00D0009L
  227.  
  228. //
  229. // MessageId: NS_E_CANNOTONLINEDISK
  230. //
  231. // MessageText:
  232. //
  233. //  Unable to online disk.%0
  234. //
  235. #define NS_E_CANNOTONLINEDISK            0xC00D000AL
  236.  
  237. //
  238. // MessageId: NS_E_NOREGISTEREDWALKER
  239. //
  240. // MessageText:
  241. //
  242. //  There is no file parser registered for this type of file.%0
  243. //
  244. #define NS_E_NOREGISTEREDWALKER          0xC00D000BL
  245.  
  246. //
  247. // MessageId: NS_E_NOFUNNEL
  248. //
  249. // MessageText:
  250. //
  251. //  There is no data connection established.%0
  252. //
  253. #define NS_E_NOFUNNEL                    0xC00D000CL
  254.  
  255. //
  256. // MessageId: NS_E_NO_LOCALPLAY
  257. //
  258. // MessageText:
  259. //
  260. //  Failed to load the local play DLL.%0
  261. //
  262. #define NS_E_NO_LOCALPLAY                0xC00D000DL
  263.  
  264. //
  265. // MessageId: NS_E_NETWORK_BUSY
  266. //
  267. // MessageText:
  268. //
  269. //  The network is busy.%0
  270. //
  271. #define NS_E_NETWORK_BUSY                0xC00D000EL
  272.  
  273. //
  274. // MessageId: NS_E_TOO_MANY_SESS
  275. //
  276. // MessageText:
  277. //
  278. //  The server session limit was exceeded.%0
  279. //
  280. #define NS_E_TOO_MANY_SESS               0xC00D000FL
  281.  
  282. //
  283. // MessageId: NS_E_ALREADY_CONNECTED
  284. //
  285. // MessageText:
  286. //
  287. //  The network connection already exists.%0
  288. //
  289. #define NS_E_ALREADY_CONNECTED           0xC00D0010L
  290.  
  291. //
  292. // MessageId: NS_E_INVALID_INDEX
  293. //
  294. // MessageText:
  295. //
  296. //  Index %1 is invalid.%0
  297. //
  298. #define NS_E_INVALID_INDEX               0xC00D0011L
  299.  
  300. //
  301. // MessageId: NS_E_PROTOCOL_MISMATCH
  302. //
  303. // MessageText:
  304. //
  305. //  There is no protocol or protocol version supported by both the client and the server.%0
  306. //
  307. #define NS_E_PROTOCOL_MISMATCH           0xC00D0012L
  308.  
  309. //
  310. // MessageId: NS_E_TIMEOUT
  311. //
  312. // MessageText:
  313. //
  314. //  The server, a computer setup to offer multimedia content to other computers, could not handle your request for multimedia content in a timely manner.  Please try again later.%0
  315. //
  316. #define NS_E_TIMEOUT                     0xC00D0013L
  317.  
  318. //
  319. // MessageId: NS_E_NET_WRITE
  320. //
  321. // MessageText:
  322. //
  323. //  Error writing to the network.%0
  324. //
  325. #define NS_E_NET_WRITE                   0xC00D0014L
  326.  
  327. //
  328. // MessageId: NS_E_NET_READ
  329. //
  330. // MessageText:
  331. //
  332. //  Error reading from the network.%0
  333. //
  334. #define NS_E_NET_READ                    0xC00D0015L
  335.  
  336. //
  337. // MessageId: NS_E_DISK_WRITE
  338. //
  339. // MessageText:
  340. //
  341. //  Error writing to a disk.%0
  342. //
  343. #define NS_E_DISK_WRITE                  0xC00D0016L
  344.  
  345. //
  346. // MessageId: NS_E_DISK_READ
  347. //
  348. // MessageText:
  349. //
  350. //  Error reading from a disk.%0
  351. //
  352. #define NS_E_DISK_READ                   0xC00D0017L
  353.  
  354. //
  355. // MessageId: NS_E_FILE_WRITE
  356. //
  357. // MessageText:
  358. //
  359. //  Error writing to a file.%0
  360. //
  361. #define NS_E_FILE_WRITE                  0xC00D0018L
  362.  
  363. //
  364. // MessageId: NS_E_FILE_READ
  365. //
  366. // MessageText:
  367. //
  368. //  Error reading from a file.%0
  369. //
  370. #define NS_E_FILE_READ                   0xC00D0019L
  371.  
  372. //
  373. // MessageId: NS_E_FILE_NOT_FOUND
  374. //
  375. // MessageText:
  376. //
  377. //  The system cannot find the file specified.%0
  378. //
  379. #define NS_E_FILE_NOT_FOUND              0xC00D001AL
  380.  
  381. //
  382. // MessageId: NS_E_FILE_EXISTS
  383. //
  384. // MessageText:
  385. //
  386. //  The file already exists.%0
  387. //
  388. #define NS_E_FILE_EXISTS                 0xC00D001BL
  389.  
  390. //
  391. // MessageId: NS_E_INVALID_NAME
  392. //
  393. // MessageText:
  394. //
  395. //  The file name, directory name, or volume label syntax is incorrect.%0
  396. //
  397. #define NS_E_INVALID_NAME                0xC00D001CL
  398.  
  399. //
  400. // MessageId: NS_E_FILE_OPEN_FAILED
  401. //
  402. // MessageText:
  403. //
  404. //  Failed to open a file.%0
  405. //
  406. #define NS_E_FILE_OPEN_FAILED            0xC00D001DL
  407.  
  408. //
  409. // MessageId: NS_E_FILE_ALLOCATION_FAILED
  410. //
  411. // MessageText:
  412. //
  413. //  Unable to allocate a file.%0
  414. //
  415. #define NS_E_FILE_ALLOCATION_FAILED      0xC00D001EL
  416.  
  417. //
  418. // MessageId: NS_E_FILE_INIT_FAILED
  419. //
  420. // MessageText:
  421. //
  422. //  Unable to initialize a file.%0
  423. //
  424. #define NS_E_FILE_INIT_FAILED            0xC00D001FL
  425.  
  426. //
  427. // MessageId: NS_E_FILE_PLAY_FAILED
  428. //
  429. // MessageText:
  430. //
  431. //  Unable to play a file.%0
  432. //
  433. #define NS_E_FILE_PLAY_FAILED            0xC00D0020L
  434.  
  435. //
  436. // MessageId: NS_E_SET_DISK_UID_FAILED
  437. //
  438. // MessageText:
  439. //
  440. //  Could not set the disk UID.%0
  441. //
  442. #define NS_E_SET_DISK_UID_FAILED         0xC00D0021L
  443.  
  444. //
  445. // MessageId: NS_E_INDUCED
  446. //
  447. // MessageText:
  448. //
  449. //  An error was induced for testing purposes.%0
  450. //
  451. #define NS_E_INDUCED                     0xC00D0022L
  452.  
  453. //
  454. // MessageId: NS_E_CCLINK_DOWN
  455. //
  456. // MessageText:
  457. //
  458. //  Two Content Servers failed to communicate.%0
  459. //
  460. #define NS_E_CCLINK_DOWN                 0xC00D0023L
  461.  
  462. //
  463. // MessageId: NS_E_INTERNAL
  464. //
  465. // MessageText:
  466. //
  467. //  An unknown error occurred.%0
  468. //
  469. #define NS_E_INTERNAL                    0xC00D0024L
  470.  
  471. //
  472. // MessageId: NS_E_BUSY
  473. //
  474. // MessageText:
  475. //
  476. //  The requested resource is in use.%0
  477. //
  478. #define NS_E_BUSY                        0xC00D0025L
  479.  
  480. //
  481. // MessageId: NS_E_UNRECOGNIZED_STREAM_TYPE
  482. //
  483. // MessageText:
  484. //
  485. //  The specified stream type is not recognized.%0
  486. //
  487. #define NS_E_UNRECOGNIZED_STREAM_TYPE    0xC00D0026L
  488.  
  489. //
  490. // MessageId: NS_E_NETWORK_SERVICE_FAILURE
  491. //
  492. // MessageText:
  493. //
  494. //  The network service provider failed.%0
  495. //
  496. #define NS_E_NETWORK_SERVICE_FAILURE     0xC00D0027L
  497.  
  498. //
  499. // MessageId: NS_E_NETWORK_RESOURCE_FAILURE
  500. //
  501. // MessageText:
  502. //
  503. //  An attempt to acquire a network resource failed.%0
  504. //
  505. #define NS_E_NETWORK_RESOURCE_FAILURE    0xC00D0028L
  506.  
  507. //
  508. // MessageId: NS_E_CONNECTION_FAILURE
  509. //
  510. // MessageText:
  511. //
  512. //  The network connection has failed.%0
  513. //
  514. #define NS_E_CONNECTION_FAILURE          0xC00D0029L
  515.  
  516. //
  517. // MessageId: NS_E_SHUTDOWN
  518. //
  519. // MessageText:
  520. //
  521. //  The session is being terminated locally.%0
  522. //
  523. #define NS_E_SHUTDOWN                    0xC00D002AL
  524.  
  525. //
  526. // MessageId: NS_E_INVALID_REQUEST
  527. //
  528. // MessageText:
  529. //
  530. //  The request is invalid in the current state.%0
  531. //
  532. #define NS_E_INVALID_REQUEST             0xC00D002BL
  533.  
  534. //
  535. // MessageId: NS_E_INSUFFICIENT_BANDWIDTH
  536. //
  537. // MessageText:
  538. //
  539. //  There is insufficient bandwidth available to fulfill the request.%0
  540. //
  541. #define NS_E_INSUFFICIENT_BANDWIDTH      0xC00D002CL
  542.  
  543. //
  544. // MessageId: NS_E_NOT_REBUILDING
  545. //
  546. // MessageText:
  547. //
  548. //  The disk is not rebuilding.%0
  549. //
  550. #define NS_E_NOT_REBUILDING              0xC00D002DL
  551.  
  552. //
  553. // MessageId: NS_E_LATE_OPERATION
  554. //
  555. // MessageText:
  556. //
  557. //  An operation requested for a particular time could not be carried out on schedule.%0
  558. //
  559. #define NS_E_LATE_OPERATION              0xC00D002EL
  560.  
  561. //
  562. // MessageId: NS_E_INVALID_DATA
  563. //
  564. // MessageText:
  565. //
  566. //  Invalid or corrupt data was encountered.%0
  567. //
  568. #define NS_E_INVALID_DATA                0xC00D002FL
  569.  
  570. //
  571. // MessageId: NS_E_FILE_BANDWIDTH_LIMIT
  572. //
  573. // MessageText:
  574. //
  575. //  The bandwidth required to stream a file is higher than the maximum file bandwidth allowed on the server.%0
  576. //
  577. #define NS_E_FILE_BANDWIDTH_LIMIT        0xC00D0030L
  578.  
  579. //
  580. // MessageId: NS_E_OPEN_FILE_LIMIT
  581. //
  582. // MessageText:
  583. //
  584. //  The client cannot have any more files open simultaneously.%0
  585. //
  586. #define NS_E_OPEN_FILE_LIMIT             0xC00D0031L
  587.  
  588. //
  589. // MessageId: NS_E_BAD_CONTROL_DATA
  590. //
  591. // MessageText:
  592. //
  593. //  The server received invalid data from the client on the control connection.%0
  594. //
  595. #define NS_E_BAD_CONTROL_DATA            0xC00D0032L
  596.  
  597. //
  598. // MessageId: NS_E_NO_STREAM
  599. //
  600. // MessageText:
  601. //
  602. //  There is no stream available.%0
  603. //
  604. #define NS_E_NO_STREAM                   0xC00D0033L
  605.  
  606. //
  607. // MessageId: NS_E_STREAM_END
  608. //
  609. // MessageText:
  610. //
  611. //  There is no more data in the stream.%0
  612. //
  613. #define NS_E_STREAM_END                  0xC00D0034L
  614.  
  615. //
  616. // MessageId: NS_E_SERVER_NOT_FOUND
  617. //
  618. // MessageText:
  619. //
  620. //  The specified server could not be found.%0
  621. //
  622. #define NS_E_SERVER_NOT_FOUND            0xC00D0035L
  623.  
  624. //
  625. // MessageId: NS_E_DUPLICATE_NAME
  626. //
  627. // MessageText:
  628. //
  629. //  The specified name is already in use.
  630. //
  631. #define NS_E_DUPLICATE_NAME              0xC00D0036L
  632.  
  633. //
  634. // MessageId: NS_E_DUPLICATE_ADDRESS
  635. //
  636. // MessageText:
  637. //
  638. //  The specified address is already in use.
  639. //
  640. #define NS_E_DUPLICATE_ADDRESS           0xC00D0037L
  641.  
  642. //
  643. // MessageId: NS_E_BAD_MULTICAST_ADDRESS
  644. //
  645. // MessageText:
  646. //
  647. //  The specified address is not a valid multicast address.
  648. //
  649. #define NS_E_BAD_MULTICAST_ADDRESS       0xC00D0038L
  650.  
  651. //
  652. // MessageId: NS_E_BAD_ADAPTER_ADDRESS
  653. //
  654. // MessageText:
  655. //
  656. //  The specified adapter address is invalid.
  657. //
  658. #define NS_E_BAD_ADAPTER_ADDRESS         0xC00D0039L
  659.  
  660. //
  661. // MessageId: NS_E_BAD_DELIVERY_MODE
  662. //
  663. // MessageText:
  664. //
  665. //  The specified delivery mode is invalid.
  666. //
  667. #define NS_E_BAD_DELIVERY_MODE           0xC00D003AL
  668.  
  669. //
  670. // MessageId: NS_E_INVALID_CHANNEL
  671. //
  672. // MessageText:
  673. //
  674. //  The specified station does not exist.
  675. //
  676. #define NS_E_INVALID_CHANNEL             0xC00D003BL
  677.  
  678. //
  679. // MessageId: NS_E_INVALID_STREAM
  680. //
  681. // MessageText:
  682. //
  683. //  The specified stream does not exist.
  684. //
  685. #define NS_E_INVALID_STREAM              0xC00D003CL
  686.  
  687. //
  688. // MessageId: NS_E_INVALID_ARCHIVE
  689. //
  690. // MessageText:
  691. //
  692. //  The specified archive could not be opened.
  693. //
  694. #define NS_E_INVALID_ARCHIVE             0xC00D003DL
  695.  
  696. //
  697. // MessageId: NS_E_NOTITLES
  698. //
  699. // MessageText:
  700. //
  701. //  The system cannot find any titles on the server.%0
  702. //
  703. #define NS_E_NOTITLES                    0xC00D003EL
  704.  
  705. //
  706. // MessageId: NS_E_INVALID_CLIENT
  707. //
  708. // MessageText:
  709. //
  710. //  The system cannot find the client specified.%0
  711. //
  712. #define NS_E_INVALID_CLIENT              0xC00D003FL
  713.  
  714. //
  715. // MessageId: NS_E_INVALID_BLACKHOLE_ADDRESS
  716. //
  717. // MessageText:
  718. //
  719. //  The Blackhole Address is not initialized.%0
  720. //
  721. #define NS_E_INVALID_BLACKHOLE_ADDRESS   0xC00D0040L
  722.  
  723. //
  724. // MessageId: NS_E_INCOMPATIBLE_FORMAT
  725. //
  726. // MessageText:
  727. //
  728. //  The station does not support the stream format.
  729. //
  730. #define NS_E_INCOMPATIBLE_FORMAT         0xC00D0041L
  731.  
  732. //
  733. // MessageId: NS_E_INVALID_KEY
  734. //
  735. // MessageText:
  736. //
  737. //  The specified key is not valid.
  738. //
  739. #define NS_E_INVALID_KEY                 0xC00D0042L
  740.  
  741. //
  742. // MessageId: NS_E_INVALID_PORT
  743. //
  744. // MessageText:
  745. //
  746. //  The specified port is not valid.
  747. //
  748. #define NS_E_INVALID_PORT                0xC00D0043L
  749.  
  750. //
  751. // MessageId: NS_E_INVALID_TTL
  752. //
  753. // MessageText:
  754. //
  755. //  The specified TTL is not valid.
  756. //
  757. #define NS_E_INVALID_TTL                 0xC00D0044L
  758.  
  759. //
  760. // MessageId: NS_E_STRIDE_REFUSED
  761. //
  762. // MessageText:
  763. //
  764. //  The request to fast forward or rewind could not be fulfilled.
  765. //
  766. #define NS_E_STRIDE_REFUSED              0xC00D0045L
  767.  
  768. //
  769. // IMmsAutoServer Errors
  770. //
  771. //
  772. // MessageId: NS_E_MMSAUTOSERVER_CANTFINDWALKER
  773. //
  774. // MessageText:
  775. //
  776. //  Unable to load the appropriate file parser.%0
  777. //
  778. #define NS_E_MMSAUTOSERVER_CANTFINDWALKER 0xC00D0046L
  779.  
  780. //
  781. // MessageId: NS_E_MAX_BITRATE
  782. //
  783. // MessageText:
  784. //
  785. //  Cannot exceed the maximum bandwidth limit.%0
  786. //
  787. #define NS_E_MAX_BITRATE                 0xC00D0047L
  788.  
  789. //
  790. // MessageId: NS_E_LOGFILEPERIOD
  791. //
  792. // MessageText:
  793. //
  794. //  Invalid value for LogFilePeriod.%0
  795. //
  796. #define NS_E_LOGFILEPERIOD               0xC00D0048L
  797.  
  798. //
  799. // MessageId: NS_E_MAX_CLIENTS
  800. //
  801. // MessageText:
  802. //
  803. //  Cannot exceed the maximum client limit.%0
  804. //  
  805. //
  806. #define NS_E_MAX_CLIENTS                 0xC00D0049L
  807.  
  808. //
  809. // MessageId: NS_E_LOG_FILE_SIZE
  810. //
  811. // MessageText:
  812. //
  813. //  Log File Size too small.%0
  814. //  
  815. //
  816. #define NS_E_LOG_FILE_SIZE               0xC00D004AL
  817.  
  818. //
  819. // MessageId: NS_E_MAX_FILERATE
  820. //
  821. // MessageText:
  822. //
  823. //  Cannot exceed the maximum file rate.%0
  824. //
  825. #define NS_E_MAX_FILERATE                0xC00D004BL
  826.  
  827. //
  828. // File Walker Errors
  829. //
  830. //
  831. // MessageId: NS_E_WALKER_UNKNOWN
  832. //
  833. // MessageText:
  834. //
  835. //  Unknown file type.%0
  836. //
  837. #define NS_E_WALKER_UNKNOWN              0xC00D004CL
  838.  
  839. //
  840. // MessageId: NS_E_WALKER_SERVER
  841. //
  842. // MessageText:
  843. //
  844. //  The specified file, %1, cannot be loaded onto the specified server, %2.%0
  845. //
  846. #define NS_E_WALKER_SERVER               0xC00D004DL
  847.  
  848. //
  849. // MessageId: NS_E_WALKER_USAGE
  850. //
  851. // MessageText:
  852. //
  853. //  There was a usage error with file parser.%0
  854. //
  855. #define NS_E_WALKER_USAGE                0xC00D004EL
  856.  
  857.  
  858. /////////////////////////////////////////////////////////////////////////
  859. //
  860. // NETSHOW Monitor Events
  861. //
  862. /////////////////////////////////////////////////////////////////////////
  863.  
  864.  
  865.  // Tiger Events
  866.  
  867.  // %1 is the tiger name
  868.  
  869. //
  870. // MessageId: NS_I_TIGER_START
  871. //
  872. // MessageText:
  873. //
  874. //  The Title Server %1 is running.%0
  875. //
  876. #define NS_I_TIGER_START                 0x400D004FL
  877.  
  878. //
  879. // MessageId: NS_E_TIGER_FAIL
  880. //
  881. // MessageText:
  882. //
  883. //  The Title Server %1 has failed.%0
  884. //
  885. #define NS_E_TIGER_FAIL                  0xC00D0050L
  886.  
  887.  
  888.  // Cub Events
  889.  
  890.  // %1 is the cub ID
  891.  // %2 is the cub name
  892.  
  893. //
  894. // MessageId: NS_I_CUB_START
  895. //
  896. // MessageText:
  897. //
  898. //  Content Server %1 (%2) is starting.%0
  899. //
  900. #define NS_I_CUB_START                   0x400D0051L
  901.  
  902. //
  903. // MessageId: NS_I_CUB_RUNNING
  904. //
  905. // MessageText:
  906. //
  907. //  Content Server %1 (%2) is running.%0
  908. //
  909. #define NS_I_CUB_RUNNING                 0x400D0052L
  910.  
  911. //
  912. // MessageId: NS_E_CUB_FAIL
  913. //
  914. // MessageText:
  915. //
  916. //  Content Server %1 (%2) has failed.%0
  917. //
  918. #define NS_E_CUB_FAIL                    0xC00D0053L
  919.  
  920.  
  921.  // Disk Events
  922.  
  923.  // %1 is the tiger disk ID
  924.  // %2 is the device name
  925.  // %3 is the cub ID
  926. //
  927. // MessageId: NS_I_DISK_START
  928. //
  929. // MessageText:
  930. //
  931. //  Disk %1 ( %2 ) on Content Server %3, is running.%0
  932. //
  933. #define NS_I_DISK_START                  0x400D0054L
  934.  
  935. //
  936. // MessageId: NS_E_DISK_FAIL
  937. //
  938. // MessageText:
  939. //
  940. //  Disk %1 ( %2 ) on Content Server %3, has failed.%0
  941. //
  942. #define NS_E_DISK_FAIL                   0xC00D0055L
  943.  
  944. //
  945. // MessageId: NS_I_DISK_REBUILD_STARTED
  946. //
  947. // MessageText:
  948. //
  949. //  Started rebuilding disk %1 ( %2 ) on Content Server %3.%0
  950. //
  951. #define NS_I_DISK_REBUILD_STARTED        0x400D0056L
  952.  
  953. //
  954. // MessageId: NS_I_DISK_REBUILD_FINISHED
  955. //
  956. // MessageText:
  957. //
  958. //  Finished rebuilding disk %1 ( %2 ) on Content Server %3.%0
  959. //
  960. #define NS_I_DISK_REBUILD_FINISHED       0x400D0057L
  961.  
  962. //
  963. // MessageId: NS_I_DISK_REBUILD_ABORTED
  964. //
  965. // MessageText:
  966. //
  967. //  Aborted rebuilding disk %1 ( %2 ) on Content Server %3.%0
  968. //
  969. #define NS_I_DISK_REBUILD_ABORTED        0x400D0058L
  970.  
  971.  
  972.  // Admin Events
  973.  
  974. //
  975. // MessageId: NS_I_LIMIT_FUNNELS
  976. //
  977. // MessageText:
  978. //
  979. //  A NetShow administrator at network location %1 set the data stream limit to %2 streams.%0
  980. //
  981. #define NS_I_LIMIT_FUNNELS               0x400D0059L
  982.  
  983. //
  984. // MessageId: NS_I_START_DISK
  985. //
  986. // MessageText:
  987. //
  988. //  A NetShow administrator at network location %1 started disk %2.%0
  989. //
  990. #define NS_I_START_DISK                  0x400D005AL
  991.  
  992. //
  993. // MessageId: NS_I_STOP_DISK
  994. //
  995. // MessageText:
  996. //
  997. //  A NetShow administrator at network location %1 stopped disk %2.%0
  998. //
  999. #define NS_I_STOP_DISK                   0x400D005BL
  1000.  
  1001. //
  1002. // MessageId: NS_I_STOP_CUB
  1003. //
  1004. // MessageText:
  1005. //
  1006. //  A NetShow administrator at network location %1 stopped Content Server %2.%0
  1007. //
  1008. #define NS_I_STOP_CUB                    0x400D005CL
  1009.  
  1010. //
  1011. // MessageId: NS_I_KILL_VIEWER
  1012. //
  1013. // MessageText:
  1014. //
  1015. //  A NetShow administrator at network location %1 disconnected viewer %2 from the system.%0
  1016. //
  1017. #define NS_I_KILL_VIEWER                 0x400D005DL
  1018.  
  1019. //
  1020. // MessageId: NS_I_REBUILD_DISK
  1021. //
  1022. // MessageText:
  1023. //
  1024. //  A NetShow administrator at network location %1 started rebuilding disk %2.%0
  1025. //
  1026. #define NS_I_REBUILD_DISK                0x400D005EL
  1027.  
  1028. //
  1029. // MessageId: NS_W_UNKNOWN_EVENT
  1030. //
  1031. // MessageText:
  1032. //
  1033. //  Unknown %1 event encountered.%0
  1034. //
  1035. #define NS_W_UNKNOWN_EVENT               0x800D005FL
  1036.  
  1037.  
  1038.  // Alerts
  1039.  
  1040. //
  1041. // MessageId: NS_E_MAX_FUNNELS_ALERT
  1042. //
  1043. // MessageText:
  1044. //
  1045. //  The NetShow data stream limit of %1 streams was reached.%0
  1046. //
  1047. #define NS_E_MAX_FUNNELS_ALERT           0xC00D0060L
  1048.  
  1049. //
  1050. // MessageId: NS_E_ALLOCATE_FILE_FAIL
  1051. //
  1052. // MessageText:
  1053. //
  1054. //  The NetShow Video Server was unable to allocate a %1 block file named %2.%0
  1055. //
  1056. #define NS_E_ALLOCATE_FILE_FAIL          0xC00D0061L
  1057.  
  1058. //
  1059. // MessageId: NS_E_PAGING_ERROR
  1060. //
  1061. // MessageText:
  1062. //
  1063. //  A Content Server was unable to page a block.%0
  1064. //
  1065. #define NS_E_PAGING_ERROR                0xC00D0062L
  1066.  
  1067. //
  1068. // MessageId: NS_E_BAD_BLOCK0_VERSION
  1069. //
  1070. // MessageText:
  1071. //
  1072. //  Disk %1 has unrecognized control block version %2.%0
  1073. //
  1074. #define NS_E_BAD_BLOCK0_VERSION          0xC00D0063L
  1075.  
  1076. //
  1077. // MessageId: NS_E_BAD_DISK_UID
  1078. //
  1079. // MessageText:
  1080. //
  1081. //  Disk %1 has incorrect uid %2.%0
  1082. //
  1083. #define NS_E_BAD_DISK_UID                0xC00D0064L
  1084.  
  1085. //
  1086. // MessageId: NS_E_BAD_FSMAJOR_VERSION
  1087. //
  1088. // MessageText:
  1089. //
  1090. //  Disk %1 has unsupported file system major version %2.%0
  1091. //
  1092. #define NS_E_BAD_FSMAJOR_VERSION         0xC00D0065L
  1093.  
  1094. //
  1095. // MessageId: NS_E_BAD_STAMPNUMBER
  1096. //
  1097. // MessageText:
  1098. //
  1099. //  Disk %1 has bad stamp number in control block.%0
  1100. //
  1101. #define NS_E_BAD_STAMPNUMBER             0xC00D0066L
  1102.  
  1103. //
  1104. // MessageId: NS_E_PARTIALLY_REBUILT_DISK
  1105. //
  1106. // MessageText:
  1107. //
  1108. //  Disk %1 is partially reconstructed.%0
  1109. //
  1110. #define NS_E_PARTIALLY_REBUILT_DISK      0xC00D0067L
  1111.  
  1112. //
  1113. // MessageId: NS_E_ENACTPLAN_GIVEUP
  1114. //
  1115. // MessageText:
  1116. //
  1117. //  EnactPlan gives up.%0
  1118. //
  1119. #define NS_E_ENACTPLAN_GIVEUP            0xC00D0068L
  1120.  
  1121.  
  1122.  // MCMADM warnings/errors
  1123.  
  1124. //
  1125. // MessageId: MCMADM_I_NO_EVENTS
  1126. //
  1127. // MessageText:
  1128. //
  1129. //  Event initialization failed, there will be no MCM events.%0
  1130. //
  1131. #define MCMADM_I_NO_EVENTS               0x400D0069L
  1132.  
  1133. //
  1134. // MessageId: MCMADM_E_REGKEY_NOT_FOUND
  1135. //
  1136. // MessageText:
  1137. //
  1138. //  The key was not found in the registry.%0
  1139. //
  1140. #define MCMADM_E_REGKEY_NOT_FOUND        0xC00D006AL
  1141.  
  1142. //
  1143. // MessageId: NS_E_NO_FORMATS
  1144. //
  1145. // MessageText:
  1146. //
  1147. //  No stream formats were found in an NSC file.%0
  1148. //
  1149. #define NS_E_NO_FORMATS                  0xC00D006BL
  1150.  
  1151. //
  1152. // MessageId: NS_E_NO_REFERENCES
  1153. //
  1154. // MessageText:
  1155. //
  1156. //  No reference URLs were found in an ASX file.%0
  1157. //
  1158. #define NS_E_NO_REFERENCES               0xC00D006CL
  1159.  
  1160. //
  1161. // MessageId: NS_E_WAVE_OPEN
  1162. //
  1163. // MessageText:
  1164. //
  1165. //  Error opening wave device, the device might be in use.%0
  1166. //
  1167. #define NS_E_WAVE_OPEN                   0xC00D006DL
  1168.  
  1169. //
  1170. // MessageId: NS_I_LOGGING_FAILED
  1171. //
  1172. // MessageText:
  1173. //
  1174. //  The logging operation failed.
  1175. //
  1176. #define NS_I_LOGGING_FAILED              0x400D006EL
  1177.  
  1178. //
  1179. // MessageId: NS_E_CANNOTCONNECTEVENTS
  1180. //
  1181. // MessageText:
  1182. //
  1183. //  Unable to establish a connection to the NetShow event monitor service.%0
  1184. //
  1185. #define NS_E_CANNOTCONNECTEVENTS         0xC00D006FL
  1186.  
  1187. //
  1188. // MessageId: NS_I_LIMIT_BANDWIDTH
  1189. //
  1190. // MessageText:
  1191. //
  1192. //  A NetShow administrator at network location %1 set the maximum bandwidth limit to %2 bps.%0
  1193. //
  1194. #define NS_I_LIMIT_BANDWIDTH             0x400D0070L
  1195.  
  1196. //
  1197. // MessageId: NS_E_NO_DEVICE
  1198. //
  1199. // MessageText:
  1200. //
  1201. //  No device driver is present on the system.%0
  1202. //
  1203. #define NS_E_NO_DEVICE                   0xC00D0071L
  1204.  
  1205. //
  1206. // MessageId: NS_E_NO_SPECIFIED_DEVICE
  1207. //
  1208. // MessageText:
  1209. //
  1210. //  No specified device driver is present.%0
  1211. //
  1212. #define NS_E_NO_SPECIFIED_DEVICE         0xC00D0072L
  1213.  
  1214.  
  1215. // NOTENOTE!!!
  1216. //
  1217. // Due to legacy problems these error codes live inside the ASF error code range
  1218. //
  1219. //
  1220. // MessageId: NS_E_NOTHING_TO_DO
  1221. //
  1222. // MessageText:
  1223. //
  1224. //  NS_E_NOTHING_TO_DO
  1225. //
  1226. #define NS_E_NOTHING_TO_DO               0xC00D07F1L
  1227.  
  1228. //
  1229. // MessageId: NS_E_NO_MULTICAST
  1230. //
  1231. // MessageText:
  1232. //
  1233. //  Not receiving data from the server.%0
  1234. //
  1235. #define NS_E_NO_MULTICAST                0xC00D07F2L
  1236.  
  1237.  
  1238. /////////////////////////////////////////////////////////////////////////
  1239. //
  1240. // NETSHOW Error Events
  1241. //
  1242. // IdRange = 200..399
  1243. //
  1244. /////////////////////////////////////////////////////////////////////////
  1245.  
  1246. //
  1247. // MessageId: NS_E_MONITOR_GIVEUP
  1248. //
  1249. // MessageText:
  1250. //
  1251. //  Netshow Events Monitor is not operational and has been disconnected.%0
  1252. //
  1253. #define NS_E_MONITOR_GIVEUP              0xC00D00C8L
  1254.  
  1255. //
  1256. // MessageId: NS_E_REMIRRORED_DISK
  1257. //
  1258. // MessageText:
  1259. //
  1260. //  Disk %1 is remirrored.%0
  1261. //
  1262. #define NS_E_REMIRRORED_DISK             0xC00D00C9L
  1263.  
  1264. //
  1265. // MessageId: NS_E_INSUFFICIENT_DATA
  1266. //
  1267. // MessageText:
  1268. //
  1269. //  Insufficient data found.%0
  1270. //
  1271. #define NS_E_INSUFFICIENT_DATA           0xC00D00CAL
  1272.  
  1273. //
  1274. // MessageId: NS_E_ASSERT
  1275. //
  1276. // MessageText:
  1277. //
  1278. //  %1 failed in file %2 line %3.%0
  1279. //
  1280. #define NS_E_ASSERT                      0xC00D00CBL
  1281.  
  1282. //
  1283. // MessageId: NS_E_BAD_ADAPTER_NAME
  1284. //
  1285. // MessageText:
  1286. //
  1287. //  The specified adapter name is invalid.%0
  1288. //
  1289. #define NS_E_BAD_ADAPTER_NAME            0xC00D00CCL
  1290.  
  1291. //
  1292. // MessageId: NS_E_NOT_LICENSED
  1293. //
  1294. // MessageText:
  1295. //
  1296. //  The application is not licensed for this feature.%0
  1297. //
  1298. #define NS_E_NOT_LICENSED                0xC00D00CDL
  1299.  
  1300. //
  1301. // MessageId: NS_E_NO_SERVER_CONTACT
  1302. //
  1303. // MessageText:
  1304. //
  1305. //  Unable to contact the server.%0
  1306. //
  1307. #define NS_E_NO_SERVER_CONTACT           0xC00D00CEL
  1308.  
  1309. //
  1310. // MessageId: NS_E_TOO_MANY_TITLES
  1311. //
  1312. // MessageText:
  1313. //
  1314. //  Maximum number of titles exceeded.%0
  1315. //
  1316. #define NS_E_TOO_MANY_TITLES             0xC00D00CFL
  1317.  
  1318. //
  1319. // MessageId: NS_E_TITLE_SIZE_EXCEEDED
  1320. //
  1321. // MessageText:
  1322. //
  1323. //  Maximum size of a title exceeded.%0
  1324. //
  1325. #define NS_E_TITLE_SIZE_EXCEEDED         0xC00D00D0L
  1326.  
  1327. //
  1328. // MessageId: NS_E_UDP_DISABLED
  1329. //
  1330. // MessageText:
  1331. //
  1332. //  UDP protocol not enabled. Not trying %1!ls!.%0
  1333. //
  1334. #define NS_E_UDP_DISABLED                0xC00D00D1L
  1335.  
  1336. //
  1337. // MessageId: NS_E_TCP_DISABLED
  1338. //
  1339. // MessageText:
  1340. //
  1341. //  TCP protocol not enabled. Not trying %1!ls!.%0
  1342. //
  1343. #define NS_E_TCP_DISABLED                0xC00D00D2L
  1344.  
  1345. //
  1346. // MessageId: NS_E_HTTP_DISABLED
  1347. //
  1348. // MessageText:
  1349. //
  1350. //  HTTP protocol not enabled. Not trying %1!ls!.%0
  1351. //
  1352. #define NS_E_HTTP_DISABLED               0xC00D00D3L
  1353.  
  1354. //
  1355. // MessageId: NS_E_LICENSE_EXPIRED
  1356. //
  1357. // MessageText:
  1358. //
  1359. //  The product license has expired.%0
  1360. //
  1361. #define NS_E_LICENSE_EXPIRED             0xC00D00D4L
  1362.  
  1363. //
  1364. // MessageId: NS_E_TITLE_BITRATE
  1365. //
  1366. // MessageText:
  1367. //
  1368. //  Source file exceeds the per title maximum bitrate. See NetShow Theater documentation for more information.%0
  1369. //
  1370. #define NS_E_TITLE_BITRATE               0xC00D00D5L
  1371.  
  1372. //
  1373. // MessageId: NS_E_EMPTY_PROGRAM_NAME
  1374. //
  1375. // MessageText:
  1376. //
  1377. //  The program name cannot be empty.%0
  1378. //
  1379. #define NS_E_EMPTY_PROGRAM_NAME          0xC00D00D6L
  1380.  
  1381. //
  1382. // MessageId: NS_E_MISSING_CHANNEL
  1383. //
  1384. // MessageText:
  1385. //
  1386. //  Station %1 does not exist.%0
  1387. //
  1388. #define NS_E_MISSING_CHANNEL             0xC00D00D7L
  1389.  
  1390. //
  1391. // MessageId: NS_E_NO_CHANNELS
  1392. //
  1393. // MessageText:
  1394. //
  1395. //  You need to define at least one station before this operation can complete.%0
  1396. //
  1397. #define NS_E_NO_CHANNELS                 0xC00D00D8L
  1398.  
  1399.  
  1400. /////////////////////////////////////////////////////////////////////////
  1401. //
  1402. // NETSHOW Monitor Events
  1403. //
  1404. // IdRange = 400..599
  1405. //
  1406. // Admin Events:
  1407. //
  1408. // Alerts:
  1409. //
  1410. // Title Server:
  1411. //      %1 is the Title Server name
  1412. //
  1413. // Content Server:
  1414. //      %1 is the Content Server ID
  1415. //      %2 is the Content Server name
  1416. //      %3 is the Peer Content Server name (optional)
  1417. //
  1418. // Disks:
  1419. //      %1 is the Title Server disk ID
  1420. //      %2 is the device name
  1421. //      %3 is the Content Server ID
  1422. //
  1423. /////////////////////////////////////////////////////////////////////////
  1424.  
  1425. //
  1426. // MessageId: NS_E_CUB_FAIL_LINK
  1427. //
  1428. // MessageText:
  1429. //
  1430. //  Content Server %1 (%2) has failed its link to Content Server %3.%0
  1431. //
  1432. #define NS_E_CUB_FAIL_LINK               0xC00D0190L
  1433.  
  1434. //
  1435. // MessageId: NS_I_CUB_UNFAIL_LINK
  1436. //
  1437. // MessageText:
  1438. //
  1439. //  Content Server %1 (%2) has established its link to Content Server %3.%0
  1440. //
  1441. #define NS_I_CUB_UNFAIL_LINK             0x400D0191L
  1442.  
  1443. //
  1444. // MessageId: NS_E_BAD_CUB_UID
  1445. //
  1446. // MessageText:
  1447. //
  1448. //  Content Server %1 (%2) has incorrect uid %3.%0
  1449. //
  1450. #define NS_E_BAD_CUB_UID                 0xC00D0192L
  1451.  
  1452. //
  1453. // MessageId: NS_I_RESTRIPE_START
  1454. //
  1455. // MessageText:
  1456. //
  1457. //  Restripe operation has started.%0
  1458. //
  1459. #define NS_I_RESTRIPE_START              0x400D0193L
  1460.  
  1461. //
  1462. // MessageId: NS_I_RESTRIPE_DONE
  1463. //
  1464. // MessageText:
  1465. //
  1466. //  Restripe operation has completed.%0
  1467. //
  1468. #define NS_I_RESTRIPE_DONE               0x400D0194L
  1469.  
  1470. //
  1471. // MessageId: NS_E_GLITCH_MODE
  1472. //
  1473. // MessageText:
  1474. //
  1475. //  Server unreliable because multiple components failed.%0
  1476. //
  1477. #define NS_E_GLITCH_MODE                 0xC00D0195L
  1478.  
  1479. //
  1480. // MessageId: NS_I_RESTRIPE_DISK_OUT
  1481. //
  1482. // MessageText:
  1483. //
  1484. //  Content disk %1 (%2) on Content Server %3 has been restriped out.%0
  1485. //
  1486. #define NS_I_RESTRIPE_DISK_OUT           0x400D0196L
  1487.  
  1488. //
  1489. // MessageId: NS_I_RESTRIPE_CUB_OUT
  1490. //
  1491. // MessageText:
  1492. //
  1493. //  Content server %1 (%2) has been restriped out.%0
  1494. //
  1495. #define NS_I_RESTRIPE_CUB_OUT            0x400D0197L
  1496.  
  1497. //
  1498. // MessageId: NS_I_DISK_STOP
  1499. //
  1500. // MessageText:
  1501. //
  1502. //  Disk %1 ( %2 ) on Content Server %3, has been offlined.%0
  1503. //
  1504. #define NS_I_DISK_STOP                   0x400D0198L
  1505.  
  1506. //
  1507. // MessageId: NS_I_CATATONIC_FAILURE
  1508. //
  1509. // MessageText:
  1510. //
  1511. //  Disk %1 ( %2 ) on Content Server %3, will be failed because it is catatonic.%0
  1512. //
  1513. #define NS_I_CATATONIC_FAILURE           0x800D0199L
  1514.  
  1515. //
  1516. // MessageId: NS_I_CATATONIC_AUTO_UNFAIL
  1517. //
  1518. // MessageText:
  1519. //
  1520. //  Disk %1 ( %2 ) on Content Server %3, auto online from catatonic state.%0
  1521. //
  1522. #define NS_I_CATATONIC_AUTO_UNFAIL       0x800D019AL
  1523.  
  1524. //
  1525. // MessageId: NS_E_NO_MEDIA_PROTOCOL
  1526. //
  1527. // MessageText:
  1528. //
  1529. //  Content Server %1 (%2) is unable to communicate with the Media System Network Protocol.%0
  1530. //
  1531. #define NS_E_NO_MEDIA_PROTOCOL           0xC00D019BL
  1532.  
  1533.  
  1534. //
  1535. // Advanced Streaming Format (ASF) codes occupy MessageIds 2000-2999
  1536. //
  1537. // See ASFErr.mc for more details - please do not define any symbols
  1538. // in that range in this file.
  1539. //
  1540.  
  1541.  
  1542. /////////////////////////////////////////////////////////////////////////
  1543. //
  1544. // Windows Media SDK Errors
  1545. //
  1546. // IdRange = 3000-3199
  1547. //
  1548. /////////////////////////////////////////////////////////////////////////
  1549.  
  1550. //
  1551. // MessageId: NS_E_INVALID_INPUT_FORMAT
  1552. //
  1553. // MessageText:
  1554. //
  1555. //  The input media format is invalid.%0
  1556. //
  1557. #define NS_E_INVALID_INPUT_FORMAT        0xC00D0BB8L
  1558.  
  1559. //
  1560. // MessageId: NS_E_MSAUDIO_NOT_INSTALLED
  1561. //
  1562. // MessageText:
  1563. //
  1564. //  The MSAudio codec is not installed on this system.%0
  1565. //
  1566. #define NS_E_MSAUDIO_NOT_INSTALLED       0xC00D0BB9L
  1567.  
  1568. //
  1569. // MessageId: NS_E_UNEXPECTED_MSAUDIO_ERROR
  1570. //
  1571. // MessageText:
  1572. //
  1573. //  An unexpected error occured with the MSAudio codec.%0
  1574. //
  1575. #define NS_E_UNEXPECTED_MSAUDIO_ERROR    0xC00D0BBAL
  1576.  
  1577. //
  1578. // MessageId: NS_E_INVALID_OUTPUT_FORMAT
  1579. //
  1580. // MessageText:
  1581. //
  1582. //  The output media format is invalid.%0
  1583. //
  1584. #define NS_E_INVALID_OUTPUT_FORMAT       0xC00D0BBBL
  1585.  
  1586. //
  1587. // MessageId: NS_E_NOT_CONFIGURED
  1588. //
  1589. // MessageText:
  1590. //
  1591. //  The object must be fully configured before audio samples can be processed.%0
  1592. //
  1593. #define NS_E_NOT_CONFIGURED              0xC00D0BBCL
  1594.  
  1595. //
  1596. // MessageId: NS_E_PROTECTED_CONTENT
  1597. //
  1598. // MessageText:
  1599. //
  1600. //  You need a license to perform the requested operation on this media file.%0
  1601. //
  1602. #define NS_E_PROTECTED_CONTENT           0xC00D0BBDL
  1603.  
  1604. //
  1605. // MessageId: NS_E_LICENSE_REQUIRED
  1606. //
  1607. // MessageText:
  1608. //
  1609. //  You need a license to perform the requested operation on this media file.%0
  1610. //
  1611. #define NS_E_LICENSE_REQUIRED            0xC00D0BBEL
  1612.  
  1613. //
  1614. // MessageId: NS_E_TAMPERED_CONTENT
  1615. //
  1616. // MessageText:
  1617. //
  1618. //  This media file is corrupted or invalid. Contact the content provider for a new file.%0
  1619. //
  1620. #define NS_E_TAMPERED_CONTENT            0xC00D0BBFL
  1621.  
  1622. //
  1623. // MessageId: NS_E_LICENSE_OUTOFDATE
  1624. //
  1625. // MessageText:
  1626. //
  1627. //  The license for this media file has expired. Get a new license or contact the content provider for further assistance.%0
  1628. //
  1629. #define NS_E_LICENSE_OUTOFDATE           0xC00D0BC0L
  1630.  
  1631. //
  1632. // MessageId: NS_E_LICENSE_INCORRECT_RIGHTS
  1633. //
  1634. // MessageText:
  1635. //
  1636. //  You are not allowed to open this file. Contact the content provider for further assistance.%0
  1637. //
  1638. #define NS_E_LICENSE_INCORRECT_RIGHTS    0xC00D0BC1L
  1639.  
  1640. //
  1641. // MessageId: NS_E_AUDIO_CODEC_NOT_INSTALLED
  1642. //
  1643. // MessageText:
  1644. //
  1645. //  The requested audio codec is not installed on this system.%0
  1646. //
  1647. #define NS_E_AUDIO_CODEC_NOT_INSTALLED   0xC00D0BC2L
  1648.  
  1649. //
  1650. // MessageId: NS_E_AUDIO_CODEC_ERROR
  1651. //
  1652. // MessageText:
  1653. //
  1654. //  An unexpected error occurred with the audio codec.%0
  1655. //
  1656. #define NS_E_AUDIO_CODEC_ERROR           0xC00D0BC3L
  1657.  
  1658. //
  1659. // MessageId: NS_E_VIDEO_CODEC_NOT_INSTALLED
  1660. //
  1661. // MessageText:
  1662. //
  1663. //  The requested video codec is not installed on this system.%0
  1664. //
  1665. #define NS_E_VIDEO_CODEC_NOT_INSTALLED   0xC00D0BC4L
  1666.  
  1667. //
  1668. // MessageId: NS_E_VIDEO_CODEC_ERROR
  1669. //
  1670. // MessageText:
  1671. //
  1672. //  An unexpected error occurred with the video codec.%0
  1673. //
  1674. #define NS_E_VIDEO_CODEC_ERROR           0xC00D0BC5L
  1675.  
  1676. //
  1677. // MessageId: NS_E_INVALIDPROFILE
  1678. //
  1679. // MessageText:
  1680. //
  1681. //  The Profile is invalid.%0
  1682. //
  1683. #define NS_E_INVALIDPROFILE              0xC00D0BC6L
  1684.  
  1685. //
  1686. // MessageId: NS_E_INCOMPATIBLE_VERSION
  1687. //
  1688. // MessageText:
  1689. //
  1690. //  A new version of the SDK is needed to play the requested content.%0
  1691. //
  1692. #define NS_E_INCOMPATIBLE_VERSION        0xC00D0BC7L
  1693.  
  1694. //
  1695. // MessageId: NS_S_REBUFFERING
  1696. //
  1697. // MessageText:
  1698. //
  1699. //  The requested operation has caused the source to rebuffer.%0
  1700. //
  1701. #define NS_S_REBUFFERING                 0x000D0BC8L
  1702.  
  1703. //
  1704. // MessageId: NS_S_DEGRADING_QUALITY
  1705. //
  1706. // MessageText:
  1707. //
  1708. //  The requested operation has caused the source to degrade codec quality.%0
  1709. //
  1710. #define NS_S_DEGRADING_QUALITY           0x000D0BC9L
  1711.  
  1712. //
  1713. // MessageId: NS_E_OFFLINE_MODE
  1714. //
  1715. // MessageText:
  1716. //
  1717. //  The requested URL is not available in offline mode.%0
  1718. //
  1719. #define NS_E_OFFLINE_MODE                0xC00D0BCAL
  1720.  
  1721. //
  1722. // MessageId: NS_E_NOT_CONNECTED
  1723. //
  1724. // MessageText:
  1725. //
  1726. //  The requested URL cannot be accessed because there is no network connection.%0
  1727. //
  1728. #define NS_E_NOT_CONNECTED               0xC00D0BCBL
  1729.  
  1730. //
  1731. // MessageId: NS_E_TOO_MUCH_DATA
  1732. //
  1733. // MessageText:
  1734. //
  1735. //  The encoding process was unable to keep up with the amount of supplied data.%0
  1736. //
  1737. #define NS_E_TOO_MUCH_DATA               0xC00D0BCCL
  1738.  
  1739.  
  1740.  
  1741. /////////////////////////////////////////////////////////////////////////
  1742. //
  1743. // Windows Media Player Errors
  1744. //
  1745. // IdRange = 4000 - 4999
  1746. //
  1747. /////////////////////////////////////////////////////////////////////////
  1748.  
  1749. //
  1750. // WMP CD Filter Error codes
  1751. //
  1752. //
  1753. // MessageId: NS_E_NO_CD
  1754. //
  1755. // MessageText:
  1756. //
  1757. //  There is no compact disc in the drive.%0
  1758. //
  1759. #define NS_E_NO_CD                       0xC00D0FA0L
  1760.  
  1761. //
  1762. // MessageId: NS_E_CANT_READ_DIGITAL
  1763. //
  1764. // MessageText:
  1765. //
  1766. //  Unable to perform digital reads on this compact disc drive.  Please try analog playback via the Tools Options menu.%0
  1767. //
  1768. #define NS_E_CANT_READ_DIGITAL           0xC00D0FA1L
  1769.  
  1770. //
  1771. // MessageId: NS_E_DEVICE_DISCONNECTED
  1772. //
  1773. // MessageText:
  1774. //
  1775. //  The portable device appears to have been disconnected.%0
  1776. //
  1777. #define NS_E_DEVICE_DISCONNECTED         0xC00D0FA2L
  1778.  
  1779. //
  1780. // MessageId: NS_E_DEVICE_NOT_SUPPORT_FORMAT
  1781. //
  1782. // MessageText:
  1783. //
  1784. //  Your Music Player does not support this song's format.%0
  1785. //
  1786. #define NS_E_DEVICE_NOT_SUPPORT_FORMAT   0xC00D0FA3L
  1787.  
  1788. //
  1789. // MessageId: NS_E_SLOW_READ_DIGITAL
  1790. //
  1791. // MessageText:
  1792. //
  1793. //  Digital reads on this compact disc drive are too slow.  Please try analog playback via the Tools Options menu.%0
  1794. //
  1795. #define NS_E_SLOW_READ_DIGITAL           0xC00D0FA4L
  1796.  
  1797. //
  1798. // MessageId: NS_E_MIXER_INVALID_LINE
  1799. //
  1800. // MessageText:
  1801. //
  1802. //  An invalid line error occurred in the mixer.%0
  1803. //
  1804. #define NS_E_MIXER_INVALID_LINE          0xC00D0FA5L
  1805.  
  1806. //
  1807. // MessageId: NS_E_MIXER_INVALID_CONTROL
  1808. //
  1809. // MessageText:
  1810. //
  1811. //  An invalid control error occurred in the mixer.%0
  1812. //
  1813. #define NS_E_MIXER_INVALID_CONTROL       0xC00D0FA6L
  1814.  
  1815. //
  1816. // MessageId: NS_E_MIXER_INVALID_VALUE
  1817. //
  1818. // MessageText:
  1819. //
  1820. //  An invalid value error occurred in the mixer.%0
  1821. //
  1822. #define NS_E_MIXER_INVALID_VALUE         0xC00D0FA7L
  1823.  
  1824. //
  1825. // MessageId: NS_E_MIXER_UNKNOWN_MMRESULT
  1826. //
  1827. // MessageText:
  1828. //
  1829. //  An unrecognized MMRESULT occurred in the mixer.%0
  1830. //
  1831. #define NS_E_MIXER_UNKNOWN_MMRESULT      0xC00D0FA8L
  1832.  
  1833. //
  1834. // MessageId: NS_E_USER_STOP
  1835. //
  1836. // MessageText:
  1837. //
  1838. //  User has stopped the operation.%0
  1839. //
  1840. #define NS_E_USER_STOP                   0xC00D0FA9L
  1841.  
  1842. //
  1843. // WMP IWMPXMLParser Error codes
  1844. //
  1845. //
  1846. // MessageId: NS_E_WMPXML_NOERROR
  1847. //
  1848. // MessageText:
  1849. //
  1850. //  A call was made to GetParseError on the XML parser but there was no error to retrieve.%0
  1851. //
  1852. #define NS_E_WMPXML_NOERROR              0xC00D0FB4L
  1853.  
  1854. //
  1855. // MessageId: NS_E_WMPXML_ENDOFDATA
  1856. //
  1857. // MessageText:
  1858. //
  1859. //  The XML Parser ran out of data while parsing.%0
  1860. //
  1861. #define NS_E_WMPXML_ENDOFDATA            0xC00D0FB5L
  1862.  
  1863. //
  1864. // MessageId: NS_E_WMPXML_PARSEERROR
  1865. //
  1866. // MessageText:
  1867. //
  1868. //  A generic parse error occurred in the XML parser but no information is available.%0
  1869. //
  1870. #define NS_E_WMPXML_PARSEERROR           0xC00D0FB6L
  1871.  
  1872. //
  1873. // MessageId: NS_E_WMPXML_ATTRIBUTENOTFOUND
  1874. //
  1875. // MessageText:
  1876. //
  1877. //  A call get GetNamedAttribute or GetNamedAttributeIndex on the XML parser resulted in the index not being found.%0
  1878. //
  1879. #define NS_E_WMPXML_ATTRIBUTENOTFOUND    0xC00D0FB7L
  1880.  
  1881. //
  1882. // MessageId: NS_E_WMPXML_PINOTFOUND
  1883. //
  1884. // MessageText:
  1885. //
  1886. //  A call was made go GetNamedPI on the XML parser, but the requested Processing Instruction was not found.%0
  1887. //
  1888. #define NS_E_WMPXML_PINOTFOUND           0xC00D0FB8L
  1889.  
  1890. //
  1891. // MessageId: NS_E_WMPXML_EMPTYDOC
  1892. //
  1893. // MessageText:
  1894. //
  1895. //  Persist was called on the XML parser, but the parser has no data to persist.%0
  1896. //
  1897. #define NS_E_WMPXML_EMPTYDOC             0xC00D0FB9L
  1898.  
  1899. //
  1900. // Miscellaneous Media Player Error codes
  1901. //
  1902. //
  1903. // MessageId: NS_E_WMP_WINDOWSAPIFAILURE
  1904. //
  1905. // MessageText:
  1906. //
  1907. //  A Windows API call failed but no error information was available.%0
  1908. //
  1909. #define NS_E_WMP_WINDOWSAPIFAILURE       0xC00D0FC8L
  1910.  
  1911. //
  1912. // MessageId: NS_E_WMP_RECORDING_NOT_ALLOWED
  1913. //
  1914. // MessageText:
  1915. //
  1916. //  Copying of this media item is not allowed.%0
  1917. //
  1918. #define NS_E_WMP_RECORDING_NOT_ALLOWED   0xC00D0FC9L
  1919.  
  1920. //
  1921. // MessageId: NS_E_DEVICE_NOT_READY
  1922. //
  1923. // MessageText:
  1924. //
  1925. //  The device is not ready, please check the drive and try again.%0
  1926. //
  1927. #define NS_E_DEVICE_NOT_READY            0xC00D0FCAL
  1928.  
  1929. //
  1930. // MessageId: NS_E_DAMAGED_FILE
  1931. //
  1932. // MessageText:
  1933. //
  1934. //  Windows Media Player cannot play the selected file because it is either damaged or corrupt. Please select a different file.%0
  1935. //
  1936. #define NS_E_DAMAGED_FILE                0xC00D0FCBL
  1937.  
  1938. //
  1939. // Generic Media PlayerUI error codes
  1940. //
  1941. //
  1942. // MessageId: NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED
  1943. //
  1944. // MessageText:
  1945. //
  1946. //  The control (%s) does not support creation of sub-controls, yet (%d) sub-controls have been specified.%0
  1947. //
  1948. #define NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED 0xC00D0FDEL
  1949.  
  1950. //
  1951. // MessageId: NS_E_WMP_UI_VERSIONMISMATCH
  1952. //
  1953. // MessageText:
  1954. //
  1955. //  Version mismatch: (%.1f required, %.1f found).%0
  1956. //
  1957. #define NS_E_WMP_UI_VERSIONMISMATCH      0xC00D0FDFL
  1958.  
  1959. //
  1960. // MessageId: NS_E_WMP_UI_NOTATHEMEFILE
  1961. //
  1962. // MessageText:
  1963. //
  1964. //  The layout manager was given valid XML that wasn't a theme file.%0
  1965. //
  1966. #define NS_E_WMP_UI_NOTATHEMEFILE        0xC00D0FE0L
  1967.  
  1968. //
  1969. // MessageId: NS_E_WMP_UI_SUBELEMENTNOTFOUND
  1970. //
  1971. // MessageText:
  1972. //
  1973. //  The %s subelement could not be found on the %s object.%0
  1974. //
  1975. #define NS_E_WMP_UI_SUBELEMENTNOTFOUND   0xC00D0FE1L
  1976.  
  1977. //
  1978. // MessageId: NS_E_WMP_UI_VERSIONPARSE
  1979. //
  1980. // MessageText:
  1981. //
  1982. //  An error occurred parsing the version tag.\nValid version tags are of the form:\n\n\t<?wmp version='1.0'?>.%0
  1983. //
  1984. #define NS_E_WMP_UI_VERSIONPARSE         0xC00D0FE2L
  1985.  
  1986. //
  1987. // MessageId: NS_E_WMP_UI_VIEWIDNOTFOUND
  1988. //
  1989. // MessageText:
  1990. //
  1991. //  The view specified in for the 'currentViewID' property (%s) was not found in this theme file.%0
  1992. //
  1993. #define NS_E_WMP_UI_VIEWIDNOTFOUND       0xC00D0FE3L
  1994.  
  1995. //
  1996. // MessageId: NS_E_WMP_UI_PASSTHROUGH
  1997. //
  1998. // MessageText:
  1999. //
  2000. //  This error used internally for hit testing.%0
  2001. //
  2002. #define NS_E_WMP_UI_PASSTHROUGH          0xC00D0FE4L
  2003.  
  2004. //
  2005. // MessageId: NS_E_WMP_UI_OBJECTNOTFOUND
  2006. //
  2007. // MessageText:
  2008. //
  2009. //  Attributes were specified for the %s object, but the object was not available to send them to.%0
  2010. //
  2011. #define NS_E_WMP_UI_OBJECTNOTFOUND       0xC00D0FE5L
  2012.  
  2013. //
  2014. // MessageId: NS_E_WMP_UI_SECONDHANDLER
  2015. //
  2016. // MessageText:
  2017. //
  2018. //  The %s event already has a handler, the second handler was ignored.%0
  2019. //
  2020. #define NS_E_WMP_UI_SECONDHANDLER        0xC00D0FE6L
  2021.  
  2022. //
  2023. // MessageId: NS_E_WMP_UI_NOSKININZIP
  2024. //
  2025. // MessageText:
  2026. //
  2027. //  No .wms file found in skin archive.%0
  2028. //
  2029. #define NS_E_WMP_UI_NOSKININZIP          0xC00D0FE7L
  2030.  
  2031. //
  2032. // MessageId: NS_S_WMP_UI_VERSIONMISMATCH
  2033. //
  2034. // MessageText:
  2035. //
  2036. //  An upgrade may be needed for the theme manager to correctly show this skin. Skin reports version: %.1f.%0
  2037. //
  2038. #define NS_S_WMP_UI_VERSIONMISMATCH      0x000D0FE8L
  2039.  
  2040. //
  2041. // MessageId: NS_S_WMP_EXCEPTION
  2042. //
  2043. // MessageText:
  2044. //
  2045. //  An error occurred in one of the UI components.%0
  2046. //
  2047. #define NS_S_WMP_EXCEPTION               0x000D0FE9L
  2048.  
  2049. //
  2050. // WMP Regional button control
  2051. //
  2052. //
  2053. // MessageId: NS_E_WMP_RBC_JPGMAPPINGIMAGE
  2054. //
  2055. // MessageText:
  2056. //
  2057. //  JPG Images are not recommended for use as a mappingImage.%0
  2058. //
  2059. #define NS_E_WMP_RBC_JPGMAPPINGIMAGE     0xC00D1004L
  2060.  
  2061. //
  2062. // MessageId: NS_E_WMP_JPGTRANSPARENCY
  2063. //
  2064. // MessageText:
  2065. //
  2066. //  JPG Images are not recommended when using a transparencyColor.%0
  2067. //
  2068. #define NS_E_WMP_JPGTRANSPARENCY         0xC00D1005L
  2069.  
  2070. //
  2071. // WMP CustomSlider control
  2072. //
  2073. //
  2074. // MessageId: NS_E_WMP_CS_JPGPOSITIONIMAGE
  2075. //
  2076. // MessageText:
  2077. //
  2078. //  JPG Images are not recommended for use as a positionImage.%0
  2079. //
  2080. #define NS_E_WMP_CS_JPGPOSITIONIMAGE     0xC00D100EL
  2081.  
  2082. //
  2083. // MessageId: NS_E_WMP_CS_NOTEVENLYDIVISIBLE
  2084. //
  2085. // MessageText:
  2086. //
  2087. //  The (%s) image's size is not evenly divisible by the positionImage's size.%0
  2088. //
  2089. #define NS_E_WMP_CS_NOTEVENLYDIVISIBLE   0xC00D100FL
  2090.  
  2091. //
  2092. // WMP ZIP Decoder
  2093. //
  2094. //
  2095. // MessageId: NS_E_WMPZIP_NOTAZIPFILE
  2096. //
  2097. // MessageText:
  2098. //
  2099. //  The ZIP reader opened a file and its signature didn't match that of ZIP files.%0
  2100. //
  2101. #define NS_E_WMPZIP_NOTAZIPFILE          0xC00D1018L
  2102.  
  2103. //
  2104. // MessageId: NS_E_WMPZIP_CORRUPT
  2105. //
  2106. // MessageText:
  2107. //
  2108. //  The ZIP reader has detected that the file is corrupt.%0
  2109. //
  2110. #define NS_E_WMPZIP_CORRUPT              0xC00D1019L
  2111.  
  2112. //
  2113. // MessageId: NS_E_WMPZIP_FILENOTFOUND
  2114. //
  2115. // MessageText:
  2116. //
  2117. //  GetFileStream, SaveToFile, or SaveTemp file was called on the ZIP reader with a filename that was not found in the zip file.%0
  2118. //
  2119. #define NS_E_WMPZIP_FILENOTFOUND         0xC00D101AL
  2120.  
  2121. //
  2122. // WMP Image Decoding Error codes
  2123. //
  2124. //
  2125. // MessageId: NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED
  2126. //
  2127. // MessageText:
  2128. //
  2129. //  Image type not supported.%0
  2130. //
  2131. #define NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED 0xC00D1022L
  2132.  
  2133. //
  2134. // MessageId: NS_E_WMP_IMAGE_INVALID_FORMAT
  2135. //
  2136. // MessageText:
  2137. //
  2138. //  Image file may be corrupt.%0
  2139. //
  2140. #define NS_E_WMP_IMAGE_INVALID_FORMAT    0xC00D1023L
  2141.  
  2142. //
  2143. // MessageId: NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE
  2144. //
  2145. // MessageText:
  2146. //
  2147. //  Unexpected end of file. GIF file may be corrupt.%0
  2148. //
  2149. #define NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE 0xC00D1024L
  2150.  
  2151. //
  2152. // MessageId: NS_E_WMP_GIF_INVALID_FORMAT
  2153. //
  2154. // MessageText:
  2155. //
  2156. //  Invalid GIF file.%0
  2157. //
  2158. #define NS_E_WMP_GIF_INVALID_FORMAT      0xC00D1025L
  2159.  
  2160. //
  2161. // MessageId: NS_E_WMP_GIF_BAD_VERSION_NUMBER
  2162. //
  2163. // MessageText:
  2164. //
  2165. //  Invalid GIF version. Only 87a or 89a supported.%0
  2166. //
  2167. #define NS_E_WMP_GIF_BAD_VERSION_NUMBER  0xC00D1026L
  2168.  
  2169. //
  2170. // MessageId: NS_E_WMP_GIF_NO_IMAGE_IN_FILE
  2171. //
  2172. // MessageText:
  2173. //
  2174. //  No images found in GIF file.%0
  2175. //
  2176. #define NS_E_WMP_GIF_NO_IMAGE_IN_FILE    0xC00D1027L
  2177.  
  2178. //
  2179. // MessageId: NS_E_WMP_PNG_INVALIDFORMAT
  2180. //
  2181. // MessageText:
  2182. //
  2183. //  Invalid PNG image file format.%0
  2184. //
  2185. #define NS_E_WMP_PNG_INVALIDFORMAT       0xC00D1028L
  2186.  
  2187. //
  2188. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH
  2189. //
  2190. // MessageText:
  2191. //
  2192. //  PNG bitdepth not supported.%0
  2193. //
  2194. #define NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH 0xC00D1029L
  2195.  
  2196. //
  2197. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION
  2198. //
  2199. // MessageText:
  2200. //
  2201. //  Compression format defined in PNG file not supported,%0
  2202. //
  2203. #define NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION 0xC00D102AL
  2204.  
  2205. //
  2206. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_FILTER
  2207. //
  2208. // MessageText:
  2209. //
  2210. //  Filter method defined in PNG file not supported.%0
  2211. //
  2212. #define NS_E_WMP_PNG_UNSUPPORTED_FILTER  0xC00D102BL
  2213.  
  2214. //
  2215. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_INTERLACE
  2216. //
  2217. // MessageText:
  2218. //
  2219. //  Interlace method defined in PNG file not supported.%0
  2220. //
  2221. #define NS_E_WMP_PNG_UNSUPPORTED_INTERLACE 0xC00D102CL
  2222.  
  2223. //
  2224. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC
  2225. //
  2226. // MessageText:
  2227. //
  2228. //  Bad CRC in PNG file.%0
  2229. //
  2230. #define NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC 0xC00D102DL
  2231.  
  2232. //
  2233. // MessageId: NS_E_WMP_BMP_INVALID_BITMASK
  2234. //
  2235. // MessageText:
  2236. //
  2237. //  Invalid bitmask in BMP file.%0
  2238. //
  2239. #define NS_E_WMP_BMP_INVALID_BITMASK     0xC00D102EL
  2240.  
  2241. //
  2242. // MessageId: NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED
  2243. //
  2244. // MessageText:
  2245. //
  2246. //  Topdown DIB not supported.%0
  2247. //
  2248. #define NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED 0xC00D102FL
  2249.  
  2250. //
  2251. // MessageId: NS_E_WMP_BMP_BITMAP_NOT_CREATED
  2252. //
  2253. // MessageText:
  2254. //
  2255. //  Bitmap could not be created.%0
  2256. //
  2257. #define NS_E_WMP_BMP_BITMAP_NOT_CREATED  0xC00D1030L
  2258.  
  2259. //
  2260. // MessageId: NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED
  2261. //
  2262. // MessageText:
  2263. //
  2264. //  Compression format defined in BMP not supported.%0
  2265. //
  2266. #define NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED 0xC00D1031L
  2267.  
  2268. //
  2269. // MessageId: NS_E_WMP_BMP_INVALID_FORMAT
  2270. //
  2271. // MessageText:
  2272. //
  2273. //  Invalid Bitmap format.%0
  2274. //
  2275. #define NS_E_WMP_BMP_INVALID_FORMAT      0xC00D1032L
  2276.  
  2277. //
  2278. // MessageId: NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL
  2279. //
  2280. // MessageText:
  2281. //
  2282. //  JPEG Arithmetic coding not supported.%0
  2283. //
  2284. #define NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL 0xC00D1033L
  2285.  
  2286. //
  2287. // MessageId: NS_E_WMP_JPG_INVALID_FORMAT
  2288. //
  2289. // MessageText:
  2290. //
  2291. //  Invalid JPEG format.%0
  2292. //
  2293. #define NS_E_WMP_JPG_INVALID_FORMAT      0xC00D1034L
  2294.  
  2295. //
  2296. // MessageId: NS_E_WMP_JPG_BAD_DCTSIZE
  2297. //
  2298. // MessageText:
  2299. //
  2300. //  Invalid JPEG format.%0
  2301. //
  2302. #define NS_E_WMP_JPG_BAD_DCTSIZE         0xC00D1035L
  2303.  
  2304. //
  2305. // MessageId: NS_E_WMP_JPG_BAD_VERSION_NUMBER
  2306. //
  2307. // MessageText:
  2308. //
  2309. //  Internal version error. Unexpected JPEG library version.%0
  2310. //
  2311. #define NS_E_WMP_JPG_BAD_VERSION_NUMBER  0xC00D1036L
  2312.  
  2313. //
  2314. // MessageId: NS_E_WMP_JPG_BAD_PRECISION
  2315. //
  2316. // MessageText:
  2317. //
  2318. //  Internal JPEG Library error. Unsupported JPEG data precision.%0
  2319. //
  2320. #define NS_E_WMP_JPG_BAD_PRECISION       0xC00D1037L
  2321.  
  2322. //
  2323. // MessageId: NS_E_WMP_JPG_CCIR601_NOTIMPL
  2324. //
  2325. // MessageText:
  2326. //
  2327. //  JPEG CCIR601 not supported.%0
  2328. //
  2329. #define NS_E_WMP_JPG_CCIR601_NOTIMPL     0xC00D1038L
  2330.  
  2331. //
  2332. // MessageId: NS_E_WMP_JPG_NO_IMAGE_IN_FILE
  2333. //
  2334. // MessageText:
  2335. //
  2336. //  No image found in JPEG file.%0
  2337. //
  2338. #define NS_E_WMP_JPG_NO_IMAGE_IN_FILE    0xC00D1039L
  2339.  
  2340. //
  2341. // MessageId: NS_E_WMP_JPG_READ_ERROR
  2342. //
  2343. // MessageText:
  2344. //
  2345. //  Could not read JPEG file.%0
  2346. //
  2347. #define NS_E_WMP_JPG_READ_ERROR          0xC00D103AL
  2348.  
  2349. //
  2350. // MessageId: NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL
  2351. //
  2352. // MessageText:
  2353. //
  2354. //  JPEG Fractional sampling not supported.%0
  2355. //
  2356. #define NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL 0xC00D103BL
  2357.  
  2358. //
  2359. // MessageId: NS_E_WMP_JPG_IMAGE_TOO_BIG
  2360. //
  2361. // MessageText:
  2362. //
  2363. //  JPEG image too large. Maximum image size supported is 65500 X 65500.%0
  2364. //
  2365. #define NS_E_WMP_JPG_IMAGE_TOO_BIG       0xC00D103CL
  2366.  
  2367. //
  2368. // MessageId: NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE
  2369. //
  2370. // MessageText:
  2371. //
  2372. //  Unexpected end of file reached in JPEG file.%0
  2373. //
  2374. #define NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE 0xC00D103DL
  2375.  
  2376. //
  2377. // MessageId: NS_E_WMP_JPG_SOF_UNSUPPORTED
  2378. //
  2379. // MessageText:
  2380. //
  2381. //  Unsupported JPEG SOF marker found.%0
  2382. //
  2383. #define NS_E_WMP_JPG_SOF_UNSUPPORTED     0xC00D103EL
  2384.  
  2385. //
  2386. // MessageId: NS_E_WMP_JPG_UNKNOWN_MARKER
  2387. //
  2388. // MessageText:
  2389. //
  2390. //  Unknown JPEG marker found.%0
  2391. //
  2392. #define NS_E_WMP_JPG_UNKNOWN_MARKER      0xC00D103FL
  2393.  
  2394. //
  2395. // MessageId: NS_S_WMP_LOADED_GIF_IMAGE
  2396. //
  2397. // MessageText:
  2398. //
  2399. //  Successfully loaded a GIF file.%0
  2400. //
  2401. #define NS_S_WMP_LOADED_GIF_IMAGE        0x000D1040L
  2402.  
  2403. //
  2404. // MessageId: NS_S_WMP_LOADED_PNG_IMAGE
  2405. //
  2406. // MessageText:
  2407. //
  2408. //  Successfully loaded a PNG file.%0
  2409. //
  2410. #define NS_S_WMP_LOADED_PNG_IMAGE        0x000D1041L
  2411.  
  2412. //
  2413. // MessageId: NS_S_WMP_LOADED_BMP_IMAGE
  2414. //
  2415. // MessageText:
  2416. //
  2417. //  Successfully loaded a BMP file.%0
  2418. //
  2419. #define NS_S_WMP_LOADED_BMP_IMAGE        0x000D1042L
  2420.  
  2421. //
  2422. // MessageId: NS_S_WMP_LOADED_JPG_IMAGE
  2423. //
  2424. // MessageText:
  2425. //
  2426. //  Successfully loaded a JPG file.%0
  2427. //
  2428. #define NS_S_WMP_LOADED_JPG_IMAGE        0x000D1043L
  2429.  
  2430. //
  2431. // WMP WM Runtime Error codes
  2432. //
  2433. //
  2434. // MessageId: NS_E_WMG_INVALIDSTATE
  2435. //
  2436. // MessageText:
  2437. //
  2438. //  Operation attempted in an invalid graph state.%0
  2439. //
  2440. #define NS_E_WMG_INVALIDSTATE            0xC00D1054L
  2441.  
  2442. //
  2443. // MessageId: NS_E_WMG_SINKALREADYEXISTS
  2444. //
  2445. // MessageText:
  2446. //
  2447. //  A renderer cannot be inserted in a stream while one already exists.%0
  2448. //
  2449. #define NS_E_WMG_SINKALREADYEXISTS       0xC00D1055L
  2450.  
  2451. //
  2452. // MessageId: NS_E_WMG_NOSDKINTERFACE
  2453. //
  2454. // MessageText:
  2455. //
  2456. //  A necessary WM SDK interface to complete the operation doesn't exist at this time.%0
  2457. //
  2458. #define NS_E_WMG_NOSDKINTERFACE          0xC00D1056L
  2459.  
  2460. //
  2461. // MessageId: NS_E_WMG_NOTALLOUTPUTSRENDERED
  2462. //
  2463. // MessageText:
  2464. //
  2465. //  Some streams in the current media couldn't be rendered.%0
  2466. //
  2467. #define NS_E_WMG_NOTALLOUTPUTSRENDERED   0xC00D1057L
  2468.  
  2469. //
  2470. // MessageId: NS_E_WMR_RENDERFAILED
  2471. //
  2472. // MessageText:
  2473. //
  2474. //  Failed to render current media.%0
  2475. //
  2476. #define NS_E_WMR_RENDERFAILED            0xC00D1058L
  2477.  
  2478. //
  2479. // MessageId: NS_E_WMR_UNSUPPORTEDSTREAM
  2480. //
  2481. // MessageText:
  2482. //
  2483. //  The stream you are attempting to render is currently not supported.%0
  2484. //
  2485. #define NS_E_WMR_UNSUPPORTEDSTREAM       0xC00D1059L
  2486.  
  2487. //
  2488. // MessageId: NS_E_WMR_PINNOTFOUND
  2489. //
  2490. // MessageText:
  2491. //
  2492. //  An operation was attempted on a pin that doesn't exist in the DirectShow filter graph.%0
  2493. //
  2494. #define NS_E_WMR_PINNOTFOUND             0xC00D105AL
  2495.  
  2496. //
  2497. // MessageId: NS_E_WMR_WAITINGONFORMATSWITCH
  2498. //
  2499. // MessageText:
  2500. //
  2501. //  Specified operation cannot be completed while waiting for a media format change from the SDK.%0
  2502. //
  2503. #define NS_E_WMR_WAITINGONFORMATSWITCH   0xC00D105BL
  2504.  
  2505. //
  2506. // WMP Playlist Error codes
  2507. //
  2508. //
  2509. // MessageId: NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT
  2510. //
  2511. // MessageText:
  2512. //
  2513. //  The format of this file was not recognized as a valid playlist format.%0
  2514. //
  2515. #define NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT 0xC00D1068L
  2516.  
  2517. //
  2518. // MessageId: NS_E_ASX_INVALIDFORMAT
  2519. //
  2520. // MessageText:
  2521. //
  2522. //  This file was believed to be an ASX playlist, but the format was not recognized.%0
  2523. //
  2524. #define NS_E_ASX_INVALIDFORMAT           0xC00D1069L
  2525.  
  2526. //
  2527. // MessageId: NS_E_ASX_INVALIDVERSION
  2528. //
  2529. // MessageText:
  2530. //
  2531. //  The version of this playlist is not supported.%0
  2532. //
  2533. #define NS_E_ASX_INVALIDVERSION          0xC00D106AL
  2534.  
  2535. //
  2536. // MessageId: NS_E_ASX_INVALID_REPEAT_BLOCK
  2537. //
  2538. // MessageText:
  2539. //
  2540. //  Format of a REPEAT loop within the current playlist file is invalid.%0
  2541. //
  2542. #define NS_E_ASX_INVALID_REPEAT_BLOCK    0xC00D106BL
  2543.  
  2544. //
  2545. // MessageId: NS_E_ASX_NOTHING_TO_WRITE
  2546. //
  2547. // MessageText:
  2548. //
  2549. //  You can not write an empty playlist.%0
  2550. //
  2551. #define NS_E_ASX_NOTHING_TO_WRITE        0xC00D106CL
  2552.  
  2553. //
  2554. // MessageId: NS_E_URLLIST_INVALIDFORMAT
  2555. //
  2556. // MessageText:
  2557. //
  2558. //  This playlist was believed to be a simple list of files, but the format was not recoginized.%0
  2559. //
  2560. #define NS_E_URLLIST_INVALIDFORMAT       0xC00D106DL
  2561.  
  2562. //
  2563. // MessageId: NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST
  2564. //
  2565. // MessageText:
  2566. //
  2567. //  The specified attribute does not exist.%0
  2568. //
  2569. #define NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST 0xC00D106EL
  2570.  
  2571. //
  2572. // MessageId: NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS
  2573. //
  2574. // MessageText:
  2575. //
  2576. //  The specified attribute already exists.%0
  2577. //
  2578. #define NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS 0xC00D106FL
  2579.  
  2580. //
  2581. // MessageId: NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE
  2582. //
  2583. // MessageText:
  2584. //
  2585. //  Can not retrieve the specified attribute.%0
  2586. //
  2587. #define NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE 0xC00D1070L
  2588.  
  2589. //
  2590. // MessageId: NS_E_WMX_ITEM_DOES_NOT_EXIST
  2591. //
  2592. // MessageText:
  2593. //
  2594. //  The specified item does not exist in the current playlist.%0
  2595. //
  2596. #define NS_E_WMX_ITEM_DOES_NOT_EXIST     0xC00D1071L
  2597.  
  2598. //
  2599. // MessageId: NS_E_WMX_ITEM_TYPE_ILLEGAL
  2600. //
  2601. // MessageText:
  2602. //
  2603. //  Items of the specified type can not be created within the current playlist.%0
  2604. //
  2605. #define NS_E_WMX_ITEM_TYPE_ILLEGAL       0xC00D1072L
  2606.  
  2607. //
  2608. // MessageId: NS_E_WMX_ITEM_UNSETTABLE
  2609. //
  2610. // MessageText:
  2611. //
  2612. //  The specified item can not be set in the current playlist.%0
  2613. //
  2614. #define NS_E_WMX_ITEM_UNSETTABLE         0xC00D1073L
  2615.  
  2616. //
  2617. // WMP Core  Error codes
  2618. //
  2619. //
  2620. // MessageId: NS_E_WMPCORE_NOSOURCEURLSTRING
  2621. //
  2622. // MessageText:
  2623. //
  2624. //  Could not find the source URL for this media.%0
  2625. //
  2626. #define NS_E_WMPCORE_NOSOURCEURLSTRING   0xC00D107CL
  2627.  
  2628. //
  2629. // MessageId: NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT
  2630. //
  2631. // MessageText:
  2632. //
  2633. //  Failed to create the Global Interface Table.%0
  2634. //
  2635. #define NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT 0xC00D107DL
  2636.  
  2637. //
  2638. // MessageId: NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE
  2639. //
  2640. // MessageText:
  2641. //
  2642. //  Failed to get the marshalled graph event handler interface.%0
  2643. //
  2644. #define NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE 0xC00D107EL
  2645.  
  2646. //
  2647. // MessageId: NS_E_WMPCORE_BUFFERTOOSMALL
  2648. //
  2649. // MessageText:
  2650. //
  2651. //  Buffer is too small for copying media type.%0
  2652. //
  2653. #define NS_E_WMPCORE_BUFFERTOOSMALL      0xC00D107FL
  2654.  
  2655. //
  2656. // MessageId: NS_E_WMPCORE_UNAVAILABLE
  2657. //
  2658. // MessageText:
  2659. //
  2660. //  Current state of the player does not allow the operation.%0
  2661. //
  2662. #define NS_E_WMPCORE_UNAVAILABLE         0xC00D1080L
  2663.  
  2664. //
  2665. // MessageId: NS_E_WMPCORE_INVALIDPLAYLISTMODE
  2666. //
  2667. // MessageText:
  2668. //
  2669. //  Playlist manager does not understand the current play mode (shuffle, normal etc).%0
  2670. //
  2671. #define NS_E_WMPCORE_INVALIDPLAYLISTMODE 0xC00D1081L
  2672.  
  2673. //
  2674. // MessageId: NS_E_WMPCORE_ITEMNOTINPLAYLIST
  2675. //
  2676. // MessageText:
  2677. //
  2678. //  Operation failed because the media item is not in the playlist.%0
  2679. //
  2680. #define NS_E_WMPCORE_ITEMNOTINPLAYLIST   0xC00D1086L
  2681.  
  2682. //
  2683. // MessageId: NS_E_WMPCORE_PLAYLISTEMPTY
  2684. //
  2685. // MessageText:
  2686. //
  2687. //  Operation failed because there are no items in the playlist.%0
  2688. //
  2689. #define NS_E_WMPCORE_PLAYLISTEMPTY       0xC00D1087L
  2690.  
  2691. //
  2692. // MessageId: NS_E_WMPCORE_NOBROWSER
  2693. //
  2694. // MessageText:
  2695. //
  2696. //  URL could not be launched since WMP could not find a browser associated with it.%0
  2697. //
  2698. #define NS_E_WMPCORE_NOBROWSER           0xC00D1088L
  2699.  
  2700. //
  2701. // MessageId: NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL
  2702. //
  2703. // MessageText:
  2704. //
  2705. //  URL unrecognized by WMP runtime.%0
  2706. //
  2707. #define NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL 0xC00D1089L
  2708.  
  2709. //
  2710. // MessageId: NS_E_WMPCORE_GRAPH_NOT_IN_LIST
  2711. //
  2712. // MessageText:
  2713. //
  2714. //  Graph with the specified URL was not found in the prerolled graph list.%0
  2715. //
  2716. #define NS_E_WMPCORE_GRAPH_NOT_IN_LIST   0xC00D108AL
  2717.  
  2718. //
  2719. // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA
  2720. //
  2721. // MessageText:
  2722. //
  2723. //  Operation could not be performed because the playlist does not have more than one item.%0
  2724. //
  2725. #define NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA 0xC00D108BL
  2726.  
  2727. //
  2728. // MessageId: NS_E_WMPCORE_ERRORSINKNOTREGISTERED
  2729. //
  2730. // MessageText:
  2731. //
  2732. //  An error sink was never registered for the calling object.%0
  2733. //
  2734. #define NS_E_WMPCORE_ERRORSINKNOTREGISTERED 0xC00D108CL
  2735.  
  2736. //
  2737. // MessageId: NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE
  2738. //
  2739. // MessageText:
  2740. //
  2741. //  The error manager is not available to respond to errors.%0
  2742. //
  2743. #define NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE 0xC00D108DL
  2744.  
  2745. //
  2746. // MessageId: NS_E_WMPCORE_WEBHELPFAILED
  2747. //
  2748. // MessageText:
  2749. //
  2750. //  Failed launching WebHelp URL.%0
  2751. //
  2752. #define NS_E_WMPCORE_WEBHELPFAILED       0xC00D108EL
  2753.  
  2754. //
  2755. // MessageId: NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED
  2756. //
  2757. // MessageText:
  2758. //
  2759. //  Could not resume playing next item in playlist.%0
  2760. //
  2761. #define NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED 0xC00D108FL
  2762.  
  2763. //
  2764. // MessageId: NS_E_WMPCORE_NO_REF_IN_ENTRY
  2765. //
  2766. // MessageText:
  2767. //
  2768. //  No URL specified in the Ref attribute in playlist file.%0
  2769. //
  2770. #define NS_E_WMPCORE_NO_REF_IN_ENTRY     0xC00D1090L
  2771.  
  2772. //
  2773. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY
  2774. //
  2775. // MessageText:
  2776. //
  2777. //  An empty string for playlist attribute name was found.%0
  2778. //
  2779. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY 0xC00D1091L
  2780.  
  2781. //
  2782. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL
  2783. //
  2784. // MessageText:
  2785. //
  2786. //  An invalid playlist attribute name was found.%0
  2787. //
  2788. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL 0xC00D1092L
  2789.  
  2790. //
  2791. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY
  2792. //
  2793. // MessageText:
  2794. //
  2795. //  An empty string for a playlist attribute value was found.%0
  2796. //
  2797. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY 0xC00D1093L
  2798.  
  2799. //
  2800. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL
  2801. //
  2802. // MessageText:
  2803. //
  2804. //  An illegal value for a playlist attribute was found.%0
  2805. //
  2806. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL 0xC00D1094L
  2807.  
  2808. //
  2809. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY
  2810. //
  2811. // MessageText:
  2812. //
  2813. //  An empty string for a playlist item attribute name was found.%0
  2814. //
  2815. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY 0xC00D1095L
  2816.  
  2817. //
  2818. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL
  2819. //
  2820. // MessageText:
  2821. //
  2822. //  An illegal value for a playlist item attribute name was found.%0
  2823. //
  2824. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL 0xC00D1096L
  2825.  
  2826. //
  2827. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY
  2828. //
  2829. // MessageText:
  2830. //
  2831. //  An illegal value for a playlist item attribute was found.%0
  2832. //
  2833. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY 0xC00D1097L
  2834.  
  2835. //
  2836. // MessageId: NS_E_WMPCORE_LIST_ENTRY_NO_REF
  2837. //
  2838. // MessageText:
  2839. //
  2840. //  No entries found in the playlist file.%0
  2841. //
  2842. #define NS_E_WMPCORE_LIST_ENTRY_NO_REF   0xC00D1098L
  2843.  
  2844. //
  2845. // MessageId: NS_E_WMPCORE_CODEC_NOT_TRUSTED
  2846. //
  2847. // MessageText:
  2848. //
  2849. //  The codec downloaded for this media does not appear to be properly signed. Installation is not possible.%0
  2850. //
  2851. #define NS_E_WMPCORE_CODEC_NOT_TRUSTED   0xC00D109AL
  2852.  
  2853. //
  2854. // MessageId: NS_E_WMPCORE_CODEC_NOT_FOUND
  2855. //
  2856. // MessageText:
  2857. //
  2858. //  One or more codecs required to play this media could not be found on the codec server.%0
  2859. //
  2860. #define NS_E_WMPCORE_CODEC_NOT_FOUND     0xC00D109BL
  2861.  
  2862. //
  2863. // MessageId: NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED
  2864. //
  2865. // MessageText:
  2866. //
  2867. //  Some of the codecs required by this media are not installed on your system. Since the option for automatic codec acquisition is disabled, no codecs will be downloaded.%0
  2868. //
  2869. #define NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED 0xC00D109CL
  2870.  
  2871. //
  2872. // MessageId: NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST
  2873. //
  2874. // MessageText:
  2875. //
  2876. //  Failed to download the playlist file.%0
  2877. //
  2878. #define NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST 0xC00D109DL
  2879.  
  2880. //
  2881. // MessageId: NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST
  2882. //
  2883. // MessageText:
  2884. //
  2885. //  Failed to build the playlist.%0
  2886. //
  2887. #define NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST 0xC00D109EL
  2888.  
  2889. //
  2890. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE
  2891. //
  2892. // MessageText:
  2893. //
  2894. //  Playlist has no alternates to switch into.%0
  2895. //
  2896. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE 0xC00D109FL
  2897.  
  2898. //
  2899. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED
  2900. //
  2901. // MessageText:
  2902. //
  2903. //  No more playlist alternates available to switch to.%0
  2904. //
  2905. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED 0xC00D10A0L
  2906.  
  2907. //
  2908. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND
  2909. //
  2910. // MessageText:
  2911. //
  2912. //  Could not find the name of the alternate playlist to switch into.%0
  2913. //
  2914. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND 0xC00D10A1L
  2915.  
  2916. //
  2917. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED
  2918. //
  2919. // MessageText:
  2920. //
  2921. //  Failed to switch to an alternate for this media.%0
  2922. //
  2923. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED 0xC00D10A2L
  2924.  
  2925. //
  2926. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED
  2927. //
  2928. // MessageText:
  2929. //
  2930. //  Failed to initialize an alternate for the media.%0
  2931. //
  2932. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED 0xC00D10A3L
  2933.  
  2934. //
  2935. // MessageId: NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY
  2936. //
  2937. // MessageText:
  2938. //
  2939. //  No URL specified for the roll over Refs in the playlist file.%0
  2940. //
  2941. #define NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY 0xC00D10A4L
  2942.  
  2943. //
  2944. // MessageId: NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME
  2945. //
  2946. // MessageText:
  2947. //
  2948. //  Encountered a playlist with no name.%0
  2949. //
  2950. #define NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME 0xC00D10A5L
  2951.  
  2952. //
  2953. // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT
  2954. //
  2955. // MessageText:
  2956. //
  2957. //  A required attribute in the event block of the playlist was not found.%0
  2958. //
  2959. #define NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT 0xC00D10A6L
  2960.  
  2961. //
  2962. // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY
  2963. //
  2964. // MessageText:
  2965. //
  2966. //  No items were found in the event block of the playlist.%0
  2967. //
  2968. #define NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY 0xC00D10A7L
  2969.  
  2970. //
  2971. // MessageId: NS_E_WMPCORE_PLAYLIST_STACK_EMPTY
  2972. //
  2973. // MessageText:
  2974. //
  2975. //  No playlist was found while returning from a nested playlist.%0
  2976. //
  2977. #define NS_E_WMPCORE_PLAYLIST_STACK_EMPTY 0xC00D10A8L
  2978.  
  2979. //
  2980. // MessageId: NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE
  2981. //
  2982. // MessageText:
  2983. //
  2984. //  The media item is not active currently.%0
  2985. //
  2986. #define NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE 0xC00D10A9L
  2987.  
  2988. //
  2989. // MessageId: NS_E_WMPCORE_USER_CANCEL
  2990. //
  2991. // MessageText:
  2992. //
  2993. //  Open was aborted by user.%0
  2994. //
  2995. #define NS_E_WMPCORE_USER_CANCEL         0xC00D10ABL
  2996.  
  2997. //
  2998. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY
  2999. //
  3000. // MessageText:
  3001. //
  3002. //  No items were found inside the playlist repeat block.%0
  3003. //
  3004. #define NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY 0xC00D10ACL
  3005.  
  3006. //
  3007. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE
  3008. //
  3009. // MessageText:
  3010. //
  3011. //  Media object corresponding to start of a playlist repeat block was not found.%0
  3012. //
  3013. #define NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE 0xC00D10ADL
  3014.  
  3015. //
  3016. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE
  3017. //
  3018. // MessageText:
  3019. //
  3020. //  Media object corresponding to the end of a playlist repeat block was not found.%0
  3021. //
  3022. #define NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE 0xC00D10AEL
  3023.  
  3024. //
  3025. // MessageId: NS_E_WMPCORE_INVALID_PLAYLIST_URL
  3026. //
  3027. // MessageText:
  3028. //
  3029. //  Playlist URL supplied to the playlist manager is invalid.%0
  3030. //
  3031. #define NS_E_WMPCORE_INVALID_PLAYLIST_URL 0xC00D10AFL
  3032.  
  3033. //
  3034. // MessageId: NS_E_WMPCORE_MISMATCHED_RUNTIME
  3035. //
  3036. // MessageText:
  3037. //
  3038. //  Player is selecting a runtime that is not valid for this media file type.%0
  3039. //
  3040. #define NS_E_WMPCORE_MISMATCHED_RUNTIME  0xC00D10B0L
  3041.  
  3042. //
  3043. // MessageId: NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS
  3044. //
  3045. // MessageText:
  3046. //
  3047. //  The import has failed because none of the items in the playlist could be imported.%0
  3048. //
  3049. #define NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS 0xC00D10B1L
  3050.  
  3051. //
  3052. // MessageId: NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION
  3053. //
  3054. // MessageText:
  3055. //
  3056. //  An error has occurred that could prevent the changing of the video contrast on this media.%0
  3057. //
  3058. #define NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION 0xC00D10B2L
  3059.  
  3060. //
  3061. // MessageId: NS_E_WMPCORE_MEDIA_UNAVAILABLE
  3062. //
  3063. // MessageText:
  3064. //
  3065. //  Unable to acess this media, you may not be connected to the network.%0
  3066. //
  3067. #define NS_E_WMPCORE_MEDIA_UNAVAILABLE   0xC00D10B3L
  3068.  
  3069. //
  3070. // MessageId: NS_E_WMPCORE_WMX_ENTRYREF_NO_REF
  3071. //
  3072. // MessageText:
  3073. //
  3074. //  The playlist contains an ENTRYREF for which no href was parsed. Check the syntax of playlist file.%0
  3075. //
  3076. #define NS_E_WMPCORE_WMX_ENTRYREF_NO_REF 0xC00D10B4L
  3077.  
  3078. //
  3079. // MessageId: NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST
  3080. //
  3081. // MessageText:
  3082. //
  3083. //  Could not play any media in the playlist.%0
  3084. //
  3085. #define NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST 0xC00D10B5L
  3086.  
  3087. //
  3088. // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS
  3089. //
  3090. // MessageText:
  3091. //
  3092. //  Failed to open the nested playlist because it has no items after player has ignored entries which are pointing to other playlists.%0
  3093. //
  3094. #define NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS 0xC00D10B6L
  3095.  
  3096. //
  3097. // MessageId: NS_E_WMPCORE_BUSY
  3098. //
  3099. // MessageText:
  3100. //
  3101. //  The player could not handle your request for multimedia content in a timely manner. Please try again later.%0
  3102. //
  3103. #define NS_E_WMPCORE_BUSY                0xC00D10B7L
  3104.  
  3105. //
  3106. // WMP Core  Success codes
  3107. //
  3108. //
  3109. // MessageId: NS_S_WMPCORE_PLAYLISTCLEARABORT
  3110. //
  3111. // MessageText:
  3112. //
  3113. //  Failed to clear playlist because it was aborted by user.%0
  3114. //
  3115. #define NS_S_WMPCORE_PLAYLISTCLEARABORT  0x000D10FEL
  3116.  
  3117. //
  3118. // MessageId: NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT
  3119. //
  3120. // MessageText:
  3121. //
  3122. //  Failed to remove item in the playlist since it was aborted by user.%0
  3123. //
  3124. #define NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT 0x000D10FFL
  3125.  
  3126. //
  3127. // MessageId: NS_S_WMPCORE_PLAYLIST_CREATION_PENDING
  3128. //
  3129. // MessageText:
  3130. //
  3131. //  Playlist is being generated asynchronously.%0
  3132. //
  3133. #define NS_S_WMPCORE_PLAYLIST_CREATION_PENDING 0x000D1102L
  3134.  
  3135. //
  3136. // MessageId: NS_S_WMPCORE_MEDIA_VALIDATION_PENDING
  3137. //
  3138. // MessageText:
  3139. //
  3140. //  Validation of the media is pending...%0
  3141. //
  3142. #define NS_S_WMPCORE_MEDIA_VALIDATION_PENDING 0x000D1103L
  3143.  
  3144. //
  3145. // MessageId: NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED
  3146. //
  3147. // MessageText:
  3148. //
  3149. //  Encountered more than one Repeat block during ASX processing.%0
  3150. //
  3151. #define NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED 0x000D1104L
  3152.  
  3153. //
  3154. // MessageId: NS_S_WMPCORE_COMMAND_NOT_AVAILABLE
  3155. //
  3156. // MessageText:
  3157. //
  3158. //  Current state of WMP disallows calling this method or property.%0
  3159. //
  3160. #define NS_S_WMPCORE_COMMAND_NOT_AVAILABLE 0x000D1105L
  3161.  
  3162. //
  3163. // MessageId: NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED
  3164. //
  3165. // MessageText:
  3166. //
  3167. //  Name for the playlist has been auto generated.%0
  3168. //
  3169. #define NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED 0x000D1106L
  3170.  
  3171. //
  3172. // MessageId: NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS
  3173. //
  3174. // MessageText:
  3175. //
  3176. //  The imported playlist does not contain all items from the original.%0
  3177. //
  3178. #define NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS 0x000D1107L
  3179.  
  3180. //
  3181. // MessageId: NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA
  3182. //
  3183. // MessageText:
  3184. //
  3185. //  The playlist has been collapsed into a single media.%0
  3186. //
  3187. #define NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA 0x000D1108L
  3188.  
  3189. //
  3190. // WMP Internet Manager error codes
  3191. //
  3192. //
  3193. // MessageId: NS_E_WMPIM_USEROFFLINE
  3194. //
  3195. // MessageText:
  3196. //
  3197. //  System is not connected to the Internet.%0
  3198. //
  3199. #define NS_E_WMPIM_USEROFFLINE           0xC00D1126L
  3200.  
  3201. //
  3202. // MessageId: NS_E_WMPIM_USERCANCELED
  3203. //
  3204. // MessageText:
  3205. //
  3206. //  User cancelled attempt to connect to the Internet.%0
  3207. //
  3208. #define NS_E_WMPIM_USERCANCELED          0xC00D1127L
  3209.  
  3210. //
  3211. // MessageId: NS_E_WMPIM_DIALUPFAILED
  3212. //
  3213. // MessageText:
  3214. //
  3215. //  Attempt to dial connection to the Internet failed.%0
  3216. //
  3217. #define NS_E_WMPIM_DIALUPFAILED          0xC00D1128L
  3218.  
  3219. //
  3220. // WMP Backup and restore error and success codes
  3221. //
  3222. //
  3223. // MessageId: NS_E_WMPBR_NOLISTENER
  3224. //
  3225. // MessageText:
  3226. //
  3227. //  No window is currently listening to Backup and Restore events.%0
  3228. //
  3229. #define NS_E_WMPBR_NOLISTENER            0xC00D1130L
  3230.  
  3231. //
  3232. // MessageId: NS_E_WMPBR_BACKUPCANCEL
  3233. //
  3234. // MessageText:
  3235. //
  3236. //  Backup of your licenses has been cancelled.  Please try again to ensure license backup.%0
  3237. //
  3238. #define NS_E_WMPBR_BACKUPCANCEL          0xC00D1131L
  3239.  
  3240. //
  3241. // MessageId: NS_E_WMPBR_RESTORECANCEL
  3242. //
  3243. // MessageText:
  3244. //
  3245. //  Restoration of your licenses has been cancelled.  Please try again to ensure license restoration.%0
  3246. //
  3247. #define NS_E_WMPBR_RESTORECANCEL         0xC00D1132L
  3248.  
  3249. //
  3250. // MessageId: NS_E_WMPBR_ERRORWITHURL
  3251. //
  3252. // MessageText:
  3253. //
  3254. //  An error occured during the backup or restore operation that requires a web page be displayed to the user.%0
  3255. //
  3256. #define NS_E_WMPBR_ERRORWITHURL          0xC00D1133L
  3257.  
  3258. //
  3259. // MessageId: NS_E_WMPBR_NAMECOLLISION
  3260. //
  3261. // MessageText:
  3262. //
  3263. //  Backup of your licenses was not successfully completed.  Please try again or click Details for additional assistance.%0
  3264. //
  3265. #define NS_E_WMPBR_NAMECOLLISION         0xC00D1134L
  3266.  
  3267. //
  3268. // MessageId: NS_S_WMPBR_SUCCESS
  3269. //
  3270. // MessageText:
  3271. //
  3272. //  Backup or Restore successful!.%0
  3273. //
  3274. #define NS_S_WMPBR_SUCCESS               0x000D1135L
  3275.  
  3276. //
  3277. // MessageId: NS_S_WMPBR_PARTIALSUCCESS
  3278. //
  3279. // MessageText:
  3280. //
  3281. //  Transfer complete with limitations.%0
  3282. //
  3283. #define NS_S_WMPBR_PARTIALSUCCESS        0x000D1136L
  3284.  
  3285. //
  3286. // WMP Effects Success codes
  3287. //
  3288. //
  3289. // MessageId: NS_S_WMPEFFECT_TRANSPARENT
  3290. //
  3291. // MessageText:
  3292. //
  3293. //  Request to the effects control to change transparency status to transparent.%0
  3294. //
  3295. #define NS_S_WMPEFFECT_TRANSPARENT       0x000D1144L
  3296.  
  3297. //
  3298. // MessageId: NS_S_WMPEFFECT_OPAQUE
  3299. //
  3300. // MessageText:
  3301. //
  3302. //  Request to the effects control to change transparency status to opaque.%0
  3303. //
  3304. #define NS_S_WMPEFFECT_OPAQUE            0x000D1145L
  3305.  
  3306. //
  3307. // WMP Application Success codes
  3308. //
  3309. //
  3310. // MessageId: NS_S_OPERATION_PENDING
  3311. //
  3312. // MessageText:
  3313. //
  3314. //  The requested application pane is performing an operation and will not be relased.%0
  3315. //
  3316. #define NS_S_OPERATION_PENDING           0x000D114EL
  3317.  
  3318.  
  3319.  
  3320. /////////////////////////////////////////////////////////////////////////
  3321. //
  3322. // Windows Media Server Errors
  3323. //
  3324. // IdRange = 5000 - 5999
  3325. //
  3326. /////////////////////////////////////////////////////////////////////////
  3327.  
  3328. //
  3329. // MessageId: NS_E_REDIRECT
  3330. //
  3331. // MessageText:
  3332. //
  3333. //  The client is redirected to another server.%0
  3334. //
  3335. #define NS_E_REDIRECT                    0xC00D1388L
  3336.  
  3337. //
  3338. // MessageId: NS_E_STALE_PRESENTATION
  3339. //
  3340. // MessageText:
  3341. //
  3342. //  The streaming media description is no longer current.%0
  3343. //
  3344. #define NS_E_STALE_PRESENTATION          0xC00D1389L
  3345.  
  3346.  
  3347.  // Namespace Errors
  3348.  
  3349. //
  3350. // MessageId: NS_E_NAMESPACE_WRONG_PERSIST
  3351. //
  3352. // MessageText:
  3353. //
  3354. //  Attempt to create a persistent namespace node under a transient parent node.%0
  3355. //
  3356. #define NS_E_NAMESPACE_WRONG_PERSIST     0xC00D138AL
  3357.  
  3358. //
  3359. // MessageId: NS_E_NAMESPACE_WRONG_TYPE
  3360. //
  3361. // MessageText:
  3362. //
  3363. //  Unable to store a value in a namespace node of different value type.%0
  3364. //
  3365. #define NS_E_NAMESPACE_WRONG_TYPE        0xC00D138BL
  3366.  
  3367. //
  3368. // MessageId: NS_E_NAMESPACE_NODE_CONFLICT
  3369. //
  3370. // MessageText:
  3371. //
  3372. //  Unable to remove the root namespace node.%0
  3373. //
  3374. #define NS_E_NAMESPACE_NODE_CONFLICT     0xC00D138CL
  3375.  
  3376. //
  3377. // MessageId: NS_E_NAMESPACE_NODE_NOT_FOUND
  3378. //
  3379. // MessageText:
  3380. //
  3381. //  Could not find the specified namespace node.%0
  3382. //
  3383. #define NS_E_NAMESPACE_NODE_NOT_FOUND    0xC00D138DL
  3384.  
  3385. //
  3386. // MessageId: NS_E_NAMESPACE_BUFFER_TOO_SMALL
  3387. //
  3388. // MessageText:
  3389. //
  3390. //  The buffer supplied to hold namespace node string is too small.%0
  3391. //
  3392. #define NS_E_NAMESPACE_BUFFER_TOO_SMALL  0xC00D138EL
  3393.  
  3394. //
  3395. // MessageId: NS_E_NAMESPACE_TOO_MANY_CALLBACKS
  3396. //
  3397. // MessageText:
  3398. //
  3399. //  Callback list on a namespace node is at maximum size.%0
  3400. //
  3401. #define NS_E_NAMESPACE_TOO_MANY_CALLBACKS 0xC00D138FL
  3402.  
  3403. //
  3404. // MessageId: NS_E_NAMESPACE_DUPLICATE_CALLBACK
  3405. //
  3406. // MessageText:
  3407. //
  3408. //  Attempt to register an already-registered callback on a namespace node.%0
  3409. //
  3410. #define NS_E_NAMESPACE_DUPLICATE_CALLBACK 0xC00D1390L
  3411.  
  3412. //
  3413. // MessageId: NS_E_NAMESPACE_CALLBACK_NOT_FOUND
  3414. //
  3415. // MessageText:
  3416. //
  3417. //  Could not find callback in namespace when attempting to remove callback.%0
  3418. //
  3419. #define NS_E_NAMESPACE_CALLBACK_NOT_FOUND 0xC00D1391L
  3420.  
  3421. //
  3422. // MessageId: NS_E_NAMESPACE_NAME_TOO_LONG
  3423. //
  3424. // MessageText:
  3425. //
  3426. //  The length of a namespace node name exceeds the allowed maximum length.%0
  3427. //
  3428. #define NS_E_NAMESPACE_NAME_TOO_LONG     0xC00D1392L
  3429.  
  3430. //
  3431. // MessageId: NS_E_NAMESPACE_DUPLICATE_NAME
  3432. //
  3433. // MessageText:
  3434. //
  3435. //  Cannot create a namespace node which already exists.%0
  3436. //
  3437. #define NS_E_NAMESPACE_DUPLICATE_NAME    0xC00D1393L
  3438.  
  3439. //
  3440. // MessageId: NS_E_NAMESPACE_EMPTY_NAME
  3441. //
  3442. // MessageText:
  3443. //
  3444. //  The name of a namespace node cannot be a null string.%0
  3445. //
  3446. #define NS_E_NAMESPACE_EMPTY_NAME        0xC00D1394L
  3447.  
  3448. //
  3449. // MessageId: NS_E_NAMESPACE_INDEX_TOO_LARGE
  3450. //
  3451. // MessageText:
  3452. //
  3453. //  Finding a child namespace node by index failed because the index exceeded the number of children.%0
  3454. //
  3455. #define NS_E_NAMESPACE_INDEX_TOO_LARGE   0xC00D1395L
  3456.  
  3457. //
  3458. // MessageId: NS_E_NAMESPACE_BAD_NAME
  3459. //
  3460. // MessageText:
  3461. //
  3462. //  The name supplied for a namespace node is not valid.%0
  3463. //
  3464. #define NS_E_NAMESPACE_BAD_NAME          0xC00D1396L
  3465.  
  3466.  
  3467.  // Cache Errors
  3468.  
  3469. //
  3470. // MessageId: NS_E_CACHE_ARCHIVE_CONFLICT
  3471. //
  3472. // MessageText:
  3473. //
  3474. //  Archive request conflicts with other requests in progress.%0
  3475. //
  3476. #define NS_E_CACHE_ARCHIVE_CONFLICT      0xC00D1397L
  3477.  
  3478. //
  3479. // MessageId: NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND
  3480. //
  3481. // MessageText:
  3482. //
  3483. //  The specified origin server cannot be found.%0
  3484. //
  3485. #define NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND 0xC00D1398L
  3486.  
  3487. //
  3488. // MessageId: NS_E_CACHE_ORIGIN_SERVER_TIMEOUT
  3489. //
  3490. // MessageText:
  3491. //
  3492. //  The specified origin server does not respond.%0
  3493. //
  3494. #define NS_E_CACHE_ORIGIN_SERVER_TIMEOUT 0xC00D1399L
  3495.  
  3496. //
  3497. // MessageId: NS_E_CACHE_NOT_BROADCAST
  3498. //
  3499. // MessageText:
  3500. //
  3501. //  The internal code for HTTP status code 412 Precondition Failed due to not broadcast type.%0
  3502. //
  3503. #define NS_E_CACHE_NOT_BROADCAST         0xC00D139AL
  3504.  
  3505. //
  3506. // MessageId: NS_E_CACHE_CANNOT_BE_CACHED
  3507. //
  3508. // MessageText:
  3509. //
  3510. //  The internal code for HTTP status code 403 Forbidden due to not cacheable.%0
  3511. //
  3512. #define NS_E_CACHE_CANNOT_BE_CACHED      0xC00D139BL
  3513.  
  3514. //
  3515. // MessageId: NS_E_CACHE_NOT_MODIFIED
  3516. //
  3517. // MessageText:
  3518. //
  3519. //  The internal code for HTTP status code 304 Not Modified.%0
  3520. //
  3521. #define NS_E_CACHE_NOT_MODIFIED          0xC00D139CL
  3522.  
  3523.  
  3524.  // Publishing Point Errors
  3525. //
  3526. // MessageId: NS_E_CANNOT_REMOVE_PUBPOINT
  3527. //
  3528. // MessageText:
  3529. //
  3530. //  The Publishing Point can not be removed.%0
  3531. //
  3532. #define NS_E_CANNOT_REMOVE_PUBPOINT      0xC00D139DL
  3533.  
  3534.  
  3535.  
  3536. /////////////////////////////////////////////////////////////////////////
  3537. //
  3538. // Windows Media Tools Errors
  3539. //
  3540. // IdRange = 7000 - 7999
  3541. //
  3542. /////////////////////////////////////////////////////////////////////////
  3543.  
  3544. //
  3545. // MessageId: NS_E_BAD_MARKIN
  3546. //
  3547. // MessageText:
  3548. //
  3549. //  The Mark In time should be greater than 0 and less than Mark Out time: %1.%0
  3550. //
  3551. #define NS_E_BAD_MARKIN                  0xC00D1B58L
  3552.  
  3553. //
  3554. // MessageId: NS_E_BAD_MARKOUT
  3555. //
  3556. // MessageText:
  3557. //
  3558. //  The Mark Out time should be greater than Mark In time: %1.%0
  3559. //
  3560. #define NS_E_BAD_MARKOUT                 0xC00D1B59L
  3561.  
  3562. //
  3563. // MessageId: NS_E_NOMATCHING_MEDIASOURCE
  3564. //
  3565. // MessageText:
  3566. //
  3567. //  No matching media source is found in source group %1.%0
  3568. //
  3569. #define NS_E_NOMATCHING_MEDIASOURCE      0xC00D1B5AL
  3570.  
  3571. //
  3572. // MessageId: NS_E_UNSUPPORTED_SOURCETYPE
  3573. //
  3574. // MessageText:
  3575. //
  3576. //  Unsupported source type.%0
  3577. //
  3578. #define NS_E_UNSUPPORTED_SOURCETYPE      0xC00D1B5BL
  3579.  
  3580. //
  3581. // MessageId: NS_E_TOO_MANY_AUDIO
  3582. //
  3583. // MessageText:
  3584. //
  3585. //  No more than 1 audio input is allowed.%0
  3586. //
  3587. #define NS_E_TOO_MANY_AUDIO              0xC00D1B5CL
  3588.  
  3589. //
  3590. // MessageId: NS_E_TOO_MANY_VIDEO
  3591. //
  3592. // MessageText:
  3593. //
  3594. //  No more than 2 video inputs are allowed.%0
  3595. //
  3596. #define NS_E_TOO_MANY_VIDEO              0xC00D1B5DL
  3597.  
  3598. //
  3599. // MessageId: NS_E_NOMATCHING_ELEMENT
  3600. //
  3601. // MessageText:
  3602. //
  3603. //  No matching element is found in the list.%0
  3604. //
  3605. #define NS_E_NOMATCHING_ELEMENT          0xC00D1B5EL
  3606.  
  3607. //
  3608. // MessageId: NS_E_MISMATCHED_MEDIACONTENT
  3609. //
  3610. // MessageText:
  3611. //
  3612. //  The profile's media content doesn't match the media content defined in the source group.%0
  3613. //
  3614. #define NS_E_MISMATCHED_MEDIACONTENT     0xC00D1B5FL
  3615.  
  3616. //
  3617. // MessageId: NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP
  3618. //
  3619. // MessageText:
  3620. //
  3621. //  Cannot remove an active source group from the source group collection while encoder is currently running.%0
  3622. //
  3623. #define NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP 0xC00D1B60L
  3624.  
  3625. //
  3626. // MessageId: NS_E_AUDIODEVICE_BUSY
  3627. //
  3628. // MessageText:
  3629. //
  3630. //  Cannot open specified audio capture device because it is in use right now.%0
  3631. //
  3632. #define NS_E_AUDIODEVICE_BUSY            0xC00D1B61L
  3633.  
  3634. //
  3635. // MessageId: NS_E_AUDIODEVICE_UNEXPECTED
  3636. //
  3637. // MessageText:
  3638. //
  3639. //  Cannot open specified audio capture device because unexpected error occurred.%0
  3640. //
  3641. #define NS_E_AUDIODEVICE_UNEXPECTED      0xC00D1B62L
  3642.  
  3643. //
  3644. // MessageId: NS_E_AUDIODEVICE_BADFORMAT
  3645. //
  3646. // MessageText:
  3647. //
  3648. //  Audio capture device doesn't support specified audio format.%0
  3649. //
  3650. #define NS_E_AUDIODEVICE_BADFORMAT       0xC00D1B63L
  3651.  
  3652. //
  3653. // MessageId: NS_E_VIDEODEVICE_BUSY
  3654. //
  3655. // MessageText:
  3656. //
  3657. //  Cannot open specified video capture device because it is in use right now.%0
  3658. //
  3659. #define NS_E_VIDEODEVICE_BUSY            0xC00D1B64L
  3660.  
  3661. //
  3662. // MessageId: NS_E_VIDEODEVICE_UNEXPECTED
  3663. //
  3664. // MessageText:
  3665. //
  3666. //  Cannot open specified video capture device because unexpected error occurred.%0
  3667. //
  3668. #define NS_E_VIDEODEVICE_UNEXPECTED      0xC00D1B65L
  3669.  
  3670. //
  3671. // MessageId: NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING
  3672. //
  3673. // MessageText:
  3674. //
  3675. //  This operation is not allowed while encoder is running.%0
  3676. //
  3677. #define NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING 0xC00D1B66L
  3678.  
  3679. //
  3680. // MessageId: NS_E_NO_PROFILE_IN_SOURCEGROUP
  3681. //
  3682. // MessageText:
  3683. //
  3684. //  No profile is set in source group.%0
  3685. //
  3686. #define NS_E_NO_PROFILE_IN_SOURCEGROUP   0xC00D1B67L
  3687.  
  3688. //
  3689. // MessageId: NS_E_VIDEODRIVER_UNSTABLE
  3690. //
  3691. // MessageText:
  3692. //
  3693. //  The video capture driver returned an unrecoverable error.  It is now in an unstable state.%0
  3694. //
  3695. #define NS_E_VIDEODRIVER_UNSTABLE        0xC00D1B68L
  3696.  
  3697. //
  3698. // MessageId: NS_E_VIDCAPSTARTFAILED
  3699. //
  3700. // MessageText:
  3701. //
  3702. //  The video input device could not be started.%0
  3703. //
  3704. #define NS_E_VIDCAPSTARTFAILED           0xC00D1B69L
  3705.  
  3706. //
  3707. // MessageId: NS_E_VIDSOURCECOMPRESSION
  3708. //
  3709. // MessageText:
  3710. //
  3711. //  The video input source does not support the requested output format or color depth.%0
  3712. //
  3713. #define NS_E_VIDSOURCECOMPRESSION        0xC00D1B6AL
  3714.  
  3715. //
  3716. // MessageId: NS_E_VIDSOURCESIZE
  3717. //
  3718. // MessageText:
  3719. //
  3720. //  The video input source does not support the request capture size.%0
  3721. //
  3722. #define NS_E_VIDSOURCESIZE               0xC00D1B6BL
  3723.  
  3724. //
  3725. // MessageId: NS_E_ICMQUERYFORMAT
  3726. //
  3727. // MessageText:
  3728. //
  3729. //  Unable to obtain output information from video compressor.%0
  3730. //
  3731. #define NS_E_ICMQUERYFORMAT              0xC00D1B6CL
  3732.  
  3733. //
  3734. // MessageId: NS_E_VIDCAPCREATEWINDOW
  3735. //
  3736. // MessageText:
  3737. //
  3738. //  Unable to create video capture window.%0
  3739. //
  3740. #define NS_E_VIDCAPCREATEWINDOW          0xC00D1B6DL
  3741.  
  3742. //
  3743. // MessageId: NS_E_VIDCAPDRVINUSE
  3744. //
  3745. // MessageText:
  3746. //
  3747. //  There already is a running stream active on this video input device.%0
  3748. //
  3749. #define NS_E_VIDCAPDRVINUSE              0xC00D1B6EL
  3750.  
  3751. //
  3752. // MessageId: NS_E_NO_MEDIAFORMAT_IN_SOURCE
  3753. //
  3754. // MessageText:
  3755. //
  3756. //  No media format is set in source.%0
  3757. //
  3758. #define NS_E_NO_MEDIAFORMAT_IN_SOURCE    0xC00D1B6FL
  3759.  
  3760. //
  3761. // MessageId: NS_E_NO_VALID_OUTPUT_STREAM
  3762. //
  3763. // MessageText:
  3764. //
  3765. //  Cannot find valid output stream from source.%0
  3766. //
  3767. #define NS_E_NO_VALID_OUTPUT_STREAM      0xC00D1B70L
  3768.  
  3769. //
  3770. // MessageId: NS_E_NO_VALID_SOURCE_PLUGIN
  3771. //
  3772. // MessageText:
  3773. //
  3774. //  Cannot find valid source plugin to support specified source.%0
  3775. //
  3776. #define NS_E_NO_VALID_SOURCE_PLUGIN      0xC00D1B71L
  3777.  
  3778. //
  3779. // MessageId: NS_E_NO_ACTIVE_SOURCEGROUP
  3780. //
  3781. // MessageText:
  3782. //
  3783. //  No source group is currently active.%0
  3784. //
  3785. #define NS_E_NO_ACTIVE_SOURCEGROUP       0xC00D1B72L
  3786.  
  3787. //
  3788. // MessageId: NS_E_NO_SCRIPT_STREAM
  3789. //
  3790. // MessageText:
  3791. //
  3792. //  No script stream is set in current active source group.%0
  3793. //
  3794. #define NS_E_NO_SCRIPT_STREAM            0xC00D1B73L
  3795.  
  3796. //
  3797. // MessageId: NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING
  3798. //
  3799. // MessageText:
  3800. //
  3801. //  This operation is not allowed when file archival is started.%0
  3802. //
  3803. #define NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING 0xC00D1B74L
  3804.  
  3805. //
  3806. // MessageId: NS_E_INVALIDPACKETSIZE
  3807. //
  3808. // MessageText:
  3809. //
  3810. //  The MaxPacketSize value specified is invalid.%0
  3811. //
  3812. #define NS_E_INVALIDPACKETSIZE           0xC00D1B75L
  3813.  
  3814. //
  3815. // MessageId: NS_E_PLUGIN_CLSID_NOTINVALID
  3816. //
  3817. // MessageText:
  3818. //
  3819. //  The plugin CLSID specified is invalid.%0
  3820. //
  3821. #define NS_E_PLUGIN_CLSID_NOTINVALID     0xC00D1B76L
  3822.  
  3823. //
  3824. // MessageId: NS_E_UNSUPPORTED_ARCHIVETYPE
  3825. //
  3826. // MessageText:
  3827. //
  3828. //  This Archive type is not supported.%0
  3829. //
  3830. #define NS_E_UNSUPPORTED_ARCHIVETYPE     0xC00D1B77L
  3831.  
  3832. //
  3833. // MessageId: NS_E_UNSUPPORTED_ARCHIVEOPERATION
  3834. //
  3835. // MessageText:
  3836. //
  3837. //  This Archive operation is not supported.%0
  3838. //
  3839. #define NS_E_UNSUPPORTED_ARCHIVEOPERATION 0xC00D1B78L
  3840.  
  3841. //
  3842. // MessageId: NS_E_ARCHIVE_FILENAME_NOTSET
  3843. //
  3844. // MessageText:
  3845. //
  3846. //  The local archive filename was not set.%0
  3847. //
  3848. #define NS_E_ARCHIVE_FILENAME_NOTSET     0xC00D1B79L
  3849.  
  3850. //
  3851. // MessageId: NS_E_SOURCEGROUP_NOTPREPARED
  3852. //
  3853. // MessageText:
  3854. //
  3855. //  The SourceGroup is not yet prepared.%0
  3856. //
  3857. #define NS_E_SOURCEGROUP_NOTPREPARED     0xC00D1B7AL
  3858.  
  3859. //
  3860. // MessageId: NS_E_PROFILE_MISMATCH
  3861. //
  3862. // MessageText:
  3863. //
  3864. //  Profiles on the sourcegroups do not match.%0
  3865. //
  3866. #define NS_E_PROFILE_MISMATCH            0xC00D1B7BL
  3867.  
  3868. //
  3869. // MessageId: NS_E_INCORRECTCLIPSETTINGS
  3870. //
  3871. // MessageText:
  3872. //
  3873. //  The clip settings specified on the source are incorrect.%0
  3874. //
  3875. #define NS_E_INCORRECTCLIPSETTINGS       0xC00D1B7CL
  3876.  
  3877. //
  3878. // MessageId: NS_E_NOSTATSAVAILABLE
  3879. //
  3880. // MessageText:
  3881. //
  3882. //  No statistics are available at this time.%0
  3883. //
  3884. #define NS_E_NOSTATSAVAILABLE            0xC00D1B7DL
  3885.  
  3886. //
  3887. // MessageId: NS_E_NOTARCHIVING
  3888. //
  3889. // MessageText:
  3890. //
  3891. //  Encoder is not archiving.%0
  3892. //
  3893. #define NS_E_NOTARCHIVING                0xC00D1B7EL
  3894.  
  3895. //
  3896. // MessageId: NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED
  3897. //
  3898. // MessageText:
  3899. //
  3900. //  This operation is not allowed while encoder is not running.%0
  3901. //
  3902. #define NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED 0xC00D1B7FL
  3903.  
  3904. //
  3905. // MessageId: NE_E_NOSOURCEGROUPS
  3906. //
  3907. // MessageText:
  3908. //
  3909. //  This SourceGroupCollection doesnt contain any SourceGroups.%0
  3910. //
  3911. #define NE_E_NOSOURCEGROUPS              0xC00D1B80L
  3912.  
  3913. //
  3914. // MessageId: NS_E_INVALIDINPUTFPS
  3915. //
  3916. // MessageText:
  3917. //
  3918. //  Because this source group does not have a frame rate of 30 frames per second, you cannot use the inverse telecine feature.%0
  3919. //
  3920. #define NS_E_INVALIDINPUTFPS             0xC00D1B81L
  3921.  
  3922. //
  3923. // MessageId: NS_E_NO_DATAVIEW_SUPPORT
  3924. //
  3925. // MessageText:
  3926. //
  3927. //  Internal problems are preventing the preview or postview of your content.%0
  3928. //
  3929. #define NS_E_NO_DATAVIEW_SUPPORT         0xC00D1B82L
  3930.  
  3931. //
  3932. // MessageId: NS_E_CODEC_UNAVAILABLE
  3933. //
  3934. // MessageText:
  3935. //
  3936. //  One or more codecs required to open this media could not be found.%0
  3937. //
  3938. #define NS_E_CODEC_UNAVAILABLE           0xC00D1B83L
  3939.  
  3940. //
  3941. // MessageId: NS_E_ARCHIVE_SAME_AS_INPUT
  3942. //
  3943. // MessageText:
  3944. //
  3945. //  The output archive file specified is the same as an input source in one of the source groups.%0
  3946. //
  3947. #define NS_E_ARCHIVE_SAME_AS_INPUT       0xC00D1B84L
  3948.  
  3949. //
  3950. // MessageId: NS_E_SOURCE_NOTSPECIFIED
  3951. //
  3952. // MessageText:
  3953. //
  3954. //  The input source has not been setup completely.%0
  3955. //
  3956. #define NS_E_SOURCE_NOTSPECIFIED         0xC00D1B85L
  3957.  
  3958. //
  3959. // MessageId: NS_E_NO_REALTIME_TIMECOMPRESSION
  3960. //
  3961. // MessageText:
  3962. //
  3963. //  Cannot apply time compression transform plug-in to a real time broadcast session.%0
  3964. //
  3965. #define NS_E_NO_REALTIME_TIMECOMPRESSION 0xC00D1B86L
  3966.  
  3967. //
  3968. // MessageId: NS_E_UNSUPPORTED_ENCODER_DEVICE
  3969. //
  3970. // MessageText:
  3971. //
  3972. //  The Encoder was unable to open this device. Please see the system requirements for more information.%0
  3973. //
  3974. #define NS_E_UNSUPPORTED_ENCODER_DEVICE  0xC00D1B87L
  3975.  
  3976. //
  3977. // MessageId: NS_E_UNEXPECTED_DISPLAY_SETTINGS
  3978. //
  3979. // MessageText:
  3980. //
  3981. //  Encoding cannot start because the display size or color setting has changed since the current session was defined. Restore the previous settings or create a new session.%0
  3982. //
  3983. #define NS_E_UNEXPECTED_DISPLAY_SETTINGS 0xC00D1B88L
  3984.  
  3985.  
  3986. /////////////////////////////////////////////////////////////////////////
  3987. //
  3988. // DRM Specific Errors
  3989. //
  3990. // IdRange = 10000..10999
  3991. /////////////////////////////////////////////////////////////////////////
  3992. //
  3993. // MessageId: NS_E_DRM_INVALID_APPLICATION
  3994. //
  3995. // MessageText:
  3996. //
  3997. //  A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0
  3998. //
  3999. #define NS_E_DRM_INVALID_APPLICATION     0xC00D2711L
  4000.  
  4001. //
  4002. // MessageId: NS_E_DRM_LICENSE_STORE_ERROR
  4003. //
  4004. // MessageText:
  4005. //
  4006. //  License storage is not working. Contact Microsoft product support.%0
  4007. //
  4008. #define NS_E_DRM_LICENSE_STORE_ERROR     0xC00D2712L
  4009.  
  4010. //
  4011. // MessageId: NS_E_DRM_SECURE_STORE_ERROR
  4012. //
  4013. // MessageText:
  4014. //
  4015. //  Secure storage is not working. Contact Microsoft product support.%0
  4016. //
  4017. #define NS_E_DRM_SECURE_STORE_ERROR      0xC00D2713L
  4018.  
  4019. //
  4020. // MessageId: NS_E_DRM_LICENSE_STORE_SAVE_ERROR
  4021. //
  4022. // MessageText:
  4023. //
  4024. //  License acquisition did not work. Acquire a new license or contact the content provider for further assistance.%0
  4025. //
  4026. #define NS_E_DRM_LICENSE_STORE_SAVE_ERROR 0xC00D2714L
  4027.  
  4028. //
  4029. // MessageId: NS_E_DRM_SECURE_STORE_UNLOCK_ERROR
  4030. //
  4031. // MessageText:
  4032. //
  4033. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  4034. //
  4035. #define NS_E_DRM_SECURE_STORE_UNLOCK_ERROR 0xC00D2715L
  4036.  
  4037. //
  4038. // MessageId: NS_E_DRM_INVALID_CONTENT
  4039. //
  4040. // MessageText:
  4041. //
  4042. //  The media file is corrupted. Contact the content provider to get a new file.%0
  4043. //
  4044. #define NS_E_DRM_INVALID_CONTENT         0xC00D2716L
  4045.  
  4046. //
  4047. // MessageId: NS_E_DRM_UNABLE_TO_OPEN_LICENSE
  4048. //
  4049. // MessageText:
  4050. //
  4051. //  The license is corrupted. Acquire a new license.%0
  4052. //
  4053. #define NS_E_DRM_UNABLE_TO_OPEN_LICENSE  0xC00D2717L
  4054.  
  4055. //
  4056. // MessageId: NS_E_DRM_INVALID_LICENSE
  4057. //
  4058. // MessageText:
  4059. //
  4060. //  The license is corrupted or invalid. Acquire a new license%0
  4061. //
  4062. #define NS_E_DRM_INVALID_LICENSE         0xC00D2718L
  4063.  
  4064. //
  4065. // MessageId: NS_E_DRM_INVALID_MACHINE
  4066. //
  4067. // MessageText:
  4068. //
  4069. //  Licenses cannot be copied from one computer to another. Use License Management to transfer licenses, or get a new license for the media file.%0
  4070. //
  4071. #define NS_E_DRM_INVALID_MACHINE         0xC00D2719L
  4072.  
  4073. //
  4074. // MessageId: NS_E_DRM_LICENSE_EVAL_FAILED
  4075. //
  4076. // MessageText:
  4077. //
  4078. //  The license is corrupted or invalid. Acquire a new license or reinstall the application.%0
  4079. //
  4080. #define NS_E_DRM_LICENSE_EVAL_FAILED     0xC00D271AL
  4081.  
  4082. //
  4083. // MessageId: NS_E_DRM_ENUM_LICENSE_FAILED
  4084. //
  4085. // MessageText:
  4086. //
  4087. //  License storage is not working. Contact Microsoft product support.%0
  4088. //
  4089. #define NS_E_DRM_ENUM_LICENSE_FAILED     0xC00D271BL
  4090.  
  4091. //
  4092. // MessageId: NS_E_DRM_INVALID_LICENSE_REQUEST
  4093. //
  4094. // MessageText:
  4095. //
  4096. //  The media file is corrupted. Contact the content provider to get a new file.%0
  4097. //
  4098. #define NS_E_DRM_INVALID_LICENSE_REQUEST 0xC00D271CL
  4099.  
  4100. //
  4101. // MessageId: NS_E_DRM_UNABLE_TO_INITIALIZE
  4102. //
  4103. // MessageText:
  4104. //
  4105. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  4106. //
  4107. #define NS_E_DRM_UNABLE_TO_INITIALIZE    0xC00D271DL
  4108.  
  4109. //
  4110. // MessageId: NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE
  4111. //
  4112. // MessageText:
  4113. //
  4114. //  The license could not be acquired. Try again later.%0
  4115. //
  4116. #define NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE 0xC00D271EL
  4117.  
  4118. //
  4119. // MessageId: NS_E_DRM_INVALID_LICENSE_ACQUIRED
  4120. //
  4121. // MessageText:
  4122. //
  4123. //  License acquisition did not work. Acquire a new license or contact the content provider for further assistance.%0
  4124. //
  4125. #define NS_E_DRM_INVALID_LICENSE_ACQUIRED 0xC00D271FL
  4126.  
  4127. //
  4128. // MessageId: NS_E_DRM_NO_RIGHTS
  4129. //
  4130. // MessageText:
  4131. //
  4132. //  The requested operation cannot be performed on this file.%0
  4133. //
  4134. #define NS_E_DRM_NO_RIGHTS               0xC00D2720L
  4135.  
  4136. //
  4137. // MessageId: NS_E_DRM_KEY_ERROR
  4138. //
  4139. // MessageText:
  4140. //
  4141. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4142. //
  4143. #define NS_E_DRM_KEY_ERROR               0xC00D2721L
  4144.  
  4145. //
  4146. // MessageId: NS_E_DRM_ENCRYPT_ERROR
  4147. //
  4148. // MessageText:
  4149. //
  4150. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  4151. //
  4152. #define NS_E_DRM_ENCRYPT_ERROR           0xC00D2722L
  4153.  
  4154. //
  4155. // MessageId: NS_E_DRM_DECRYPT_ERROR
  4156. //
  4157. // MessageText:
  4158. //
  4159. //  The media file is corrupted. Contact the content provider to get a new file.%0
  4160. //
  4161. #define NS_E_DRM_DECRYPT_ERROR           0xC00D2723L
  4162.  
  4163. //
  4164. // MessageId: NS_E_DRM_LICENSE_PREVENTS_STORING
  4165. //
  4166. // MessageText:
  4167. //
  4168. //  You cannot save this file.%0
  4169. //
  4170. #define NS_E_DRM_LICENSE_PREVENTS_STORING 0xC00D2724L
  4171.  
  4172. //
  4173. // MessageId: NS_E_DRM_LICENSE_INVALID_XML
  4174. //
  4175. // MessageText:
  4176. //
  4177. //  The license is corrupted. Acquire a new license.%0
  4178. //
  4179. #define NS_E_DRM_LICENSE_INVALID_XML     0xC00D2725L
  4180.  
  4181. //
  4182. // MessageId: NS_S_DRM_LICENSE_ACQUIRED
  4183. //
  4184. // MessageText:
  4185. //
  4186. //  Status message: The license was acquired.%0
  4187. //
  4188. #define NS_S_DRM_LICENSE_ACQUIRED        0x000D2726L
  4189.  
  4190. //
  4191. // MessageId: NS_S_DRM_INDIVIDUALIZED
  4192. //
  4193. // MessageText:
  4194. //
  4195. //  Status message: The security upgrade has been completed.%0
  4196. //
  4197. #define NS_S_DRM_INDIVIDUALIZED          0x000D2727L
  4198.  
  4199. //
  4200. // MessageId: NS_E_DRM_NEEDS_INDIVIDUALIZATION
  4201. //
  4202. // MessageText:
  4203. //
  4204. //  A security upgrade is required to perform the operation on this media file.%0
  4205. //
  4206. #define NS_E_DRM_NEEDS_INDIVIDUALIZATION 0xC00D2728L
  4207.  
  4208. //
  4209. // MessageId: NS_E_DRM_INDIVIDUALIZATION_FAILED
  4210. //
  4211. // MessageText:
  4212. //
  4213. //  The security upgrade failed. Try again later.%0
  4214. //
  4215. #define NS_E_DRM_INDIVIDUALIZATION_FAILED 0xC00D2729L
  4216.  
  4217. //
  4218. // MessageId: NS_E_DRM_ACTION_NOT_QUERIED
  4219. //
  4220. // MessageText:
  4221. //
  4222. //  The application cannot perform this action. Contact product support for this application.%0
  4223. //
  4224. #define NS_E_DRM_ACTION_NOT_QUERIED      0xC00D272AL
  4225.  
  4226. //
  4227. // MessageId: NS_E_DRM_ACQUIRING_LICENSE
  4228. //
  4229. // MessageText:
  4230. //
  4231. //  You cannot begin a new license acquisition process until the current one has been completed.%0
  4232. //
  4233. #define NS_E_DRM_ACQUIRING_LICENSE       0xC00D272BL
  4234.  
  4235. //
  4236. // MessageId: NS_E_DRM_INDIVIDUALIZING
  4237. //
  4238. // MessageText:
  4239. //
  4240. //  You cannot begin a new security upgrade until the current one has been completed.%0
  4241. //
  4242. #define NS_E_DRM_INDIVIDUALIZING         0xC00D272CL
  4243.  
  4244. //
  4245. // MessageId: NS_E_DRM_ENCRYPTING
  4246. //
  4247. // MessageText:
  4248. //
  4249. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4250. //
  4251. #define NS_E_DRM_ENCRYPTING              0xC00D272DL
  4252.  
  4253. //
  4254. // MessageId: NS_E_DRM_PARAMETERS_MISMATCHED
  4255. //
  4256. // MessageText:
  4257. //
  4258. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4259. //
  4260. #define NS_E_DRM_PARAMETERS_MISMATCHED   0xC00D272FL
  4261.  
  4262. //
  4263. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT
  4264. //
  4265. // MessageText:
  4266. //
  4267. //  A license cannot be created for this media file. Reinstall the application.%0
  4268. //
  4269. #define NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT 0xC00D2730L
  4270.  
  4271. //
  4272. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT
  4273. //
  4274. // MessageText:
  4275. //
  4276. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4277. //
  4278. #define NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT 0xC00D2731L
  4279.  
  4280. //
  4281. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT
  4282. //
  4283. // MessageText:
  4284. //
  4285. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4286. //
  4287. #define NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT 0xC00D2732L
  4288.  
  4289. //
  4290. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT
  4291. //
  4292. // MessageText:
  4293. //
  4294. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4295. //
  4296. #define NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT 0xC00D2733L
  4297.  
  4298. //
  4299. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT
  4300. //
  4301. // MessageText:
  4302. //
  4303. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4304. //
  4305. #define NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT 0xC00D2734L
  4306.  
  4307. //
  4308. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT
  4309. //
  4310. // MessageText:
  4311. //
  4312. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4313. //
  4314. #define NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT 0xC00D2735L
  4315.  
  4316. //
  4317. // MessageId: NS_E_DRM_INDIVIDUALIZE_ERROR
  4318. //
  4319. // MessageText:
  4320. //
  4321. //  The security upgrade failed. Try again later.%0
  4322. //
  4323. #define NS_E_DRM_INDIVIDUALIZE_ERROR     0xC00D2736L
  4324.  
  4325. //
  4326. // MessageId: NS_E_DRM_LICENSE_OPEN_ERROR
  4327. //
  4328. // MessageText:
  4329. //
  4330. //  License storage is not working. Contact Microsoft product support.%0
  4331. //
  4332. #define NS_E_DRM_LICENSE_OPEN_ERROR      0xC00D2737L
  4333.  
  4334. //
  4335. // MessageId: NS_E_DRM_LICENSE_CLOSE_ERROR
  4336. //
  4337. // MessageText:
  4338. //
  4339. //  License storage is not working. Contact Microsoft product support.%0
  4340. //
  4341. #define NS_E_DRM_LICENSE_CLOSE_ERROR     0xC00D2738L
  4342.  
  4343. //
  4344. // MessageId: NS_E_DRM_GET_LICENSE_ERROR
  4345. //
  4346. // MessageText:
  4347. //
  4348. //  License storage is not working. Contact Microsoft product support.%0
  4349. //
  4350. #define NS_E_DRM_GET_LICENSE_ERROR       0xC00D2739L
  4351.  
  4352. //
  4353. // MessageId: NS_E_DRM_QUERY_ERROR
  4354. //
  4355. // MessageText:
  4356. //
  4357. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4358. //
  4359. #define NS_E_DRM_QUERY_ERROR             0xC00D273AL
  4360.  
  4361. //
  4362. // MessageId: NS_E_DRM_REPORT_ERROR
  4363. //
  4364. // MessageText:
  4365. //
  4366. //  A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0
  4367. //
  4368. #define NS_E_DRM_REPORT_ERROR            0xC00D273BL
  4369.  
  4370. //
  4371. // MessageId: NS_E_DRM_GET_LICENSESTRING_ERROR
  4372. //
  4373. // MessageText:
  4374. //
  4375. //  License storage is not working. Contact Microsoft product support.%0
  4376. //
  4377. #define NS_E_DRM_GET_LICENSESTRING_ERROR 0xC00D273CL
  4378.  
  4379. //
  4380. // MessageId: NS_E_DRM_GET_CONTENTSTRING_ERROR
  4381. //
  4382. // MessageText:
  4383. //
  4384. //  The media file is corrupted. Contact the content provider to get a new file.%0
  4385. //
  4386. #define NS_E_DRM_GET_CONTENTSTRING_ERROR 0xC00D273DL
  4387.  
  4388. //
  4389. // MessageId: NS_E_DRM_MONITOR_ERROR
  4390. //
  4391. // MessageText:
  4392. //
  4393. //  A problem has occurred in the Digital Rights Management component. Try again later.%0
  4394. //
  4395. #define NS_E_DRM_MONITOR_ERROR           0xC00D273EL
  4396.  
  4397. //
  4398. // MessageId: NS_E_DRM_UNABLE_TO_SET_PARAMETER
  4399. //
  4400. // MessageText:
  4401. //
  4402. //  The application has made an invalid call to the Digital Rights Management component. Contact product support for this application.%0
  4403. //
  4404. #define NS_E_DRM_UNABLE_TO_SET_PARAMETER 0xC00D273FL
  4405.  
  4406. //
  4407. // MessageId: NS_E_DRM_INVALID_APPDATA
  4408. //
  4409. // MessageText:
  4410. //
  4411. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4412. //
  4413. #define NS_E_DRM_INVALID_APPDATA         0xC00D2740L
  4414.  
  4415. //
  4416. // MessageId: NS_E_DRM_INVALID_APPDATA_VERSION
  4417. //
  4418. // MessageText:
  4419. //
  4420. //  A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0.
  4421. //
  4422. #define NS_E_DRM_INVALID_APPDATA_VERSION 0xC00D2741L
  4423.  
  4424. //
  4425. // MessageId: NS_E_DRM_BACKUP_EXISTS
  4426. //
  4427. // MessageText:
  4428. //
  4429. //  Licenses are already backed up in this location.%0
  4430. //
  4431. #define NS_E_DRM_BACKUP_EXISTS           0xC00D2742L
  4432.  
  4433. //
  4434. // MessageId: NS_E_DRM_BACKUP_CORRUPT
  4435. //
  4436. // MessageText:
  4437. //
  4438. //  One or more backed-up licenses are missing or corrupt.%0
  4439. //
  4440. #define NS_E_DRM_BACKUP_CORRUPT          0xC00D2743L
  4441.  
  4442. //
  4443. // MessageId: NS_E_DRM_BACKUPRESTORE_BUSY
  4444. //
  4445. // MessageText:
  4446. //
  4447. //  You cannot begin a new backup process until the current process has been completed.%0
  4448. //
  4449. #define NS_E_DRM_BACKUPRESTORE_BUSY      0xC00D2744L
  4450.  
  4451. //
  4452. // MessageId: NS_E_DRM_GET_ATTRIBUTE_ERROR
  4453. //
  4454. // MessageText:
  4455. //
  4456. //  A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0.
  4457. //
  4458. #define NS_E_DRM_GET_ATTRIBUTE_ERROR     0xC00D2745L
  4459.  
  4460. //
  4461. // MessageId: NS_S_DRM_MONITOR_CANCELLED
  4462. //
  4463. // MessageText:
  4464. //
  4465. //  Status message: License monitoring has been cancelled.%0
  4466. //
  4467. #define NS_S_DRM_MONITOR_CANCELLED       0x000D2746L
  4468.  
  4469. //
  4470. // MessageId: NS_S_DRM_ACQUIRE_CANCELLED
  4471. //
  4472. // MessageText:
  4473. //
  4474. //  Status message: License acquisition has been cancelled.%0
  4475. //
  4476. #define NS_S_DRM_ACQUIRE_CANCELLED       0x000D2747L
  4477.  
  4478. //
  4479. // MessageId: NS_E_DRM_LICENSE_UNUSABLE
  4480. //
  4481. // MessageText:
  4482. //
  4483. //  The license is invalid. Contact the content provider for further assistance.%0
  4484. //
  4485. #define NS_E_DRM_LICENSE_UNUSABLE        0xC00D2748L
  4486.  
  4487. //
  4488. // MessageId: NS_E_DRM_INVALID_PROPERTY
  4489. //
  4490. // MessageText:
  4491. //
  4492. //  A required property was not set by the application. Contact product support for this application.%0.
  4493. //
  4494. #define NS_E_DRM_INVALID_PROPERTY        0xC00D2749L
  4495.  
  4496. //
  4497. // MessageId: NS_E_DRM_SECURE_STORE_NOT_FOUND
  4498. //
  4499. // MessageText:
  4500. //
  4501. //  A problem has occurred in the Digital Rights Management component of this application. Try to acquire a license again.%0
  4502. //
  4503. #define NS_E_DRM_SECURE_STORE_NOT_FOUND  0xC00D274AL
  4504.  
  4505. //
  4506. // MessageId: NS_E_DRM_CACHED_CONTENT_ERROR
  4507. //
  4508. // MessageText:
  4509. //
  4510. //  A license cannot be found for this media file. Use License Management to transfer a license for this file from the original computer, or acquire a new license.%0
  4511. //
  4512. #define NS_E_DRM_CACHED_CONTENT_ERROR    0xC00D274BL
  4513.  
  4514. //
  4515. // MessageId: NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE
  4516. //
  4517. // MessageText:
  4518. //
  4519. //  A problem occurred during the security upgrade. Try again later.%0
  4520. //
  4521. #define NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE 0xC00D274CL
  4522.  
  4523. //
  4524. // MessageId: NS_E_DRM_DRIVER_AUTH_FAILURE
  4525. //
  4526. // MessageText:
  4527. //
  4528. //  Certified driver components are required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware.%0
  4529. //
  4530. #define NS_E_DRM_DRIVER_AUTH_FAILURE     0xC00D274DL
  4531.  
  4532. //
  4533. // MessageId: NS_E_DRM_NEED_UPGRADE
  4534. //
  4535. // MessageText:
  4536. //
  4537. //  A new version of the Digital Rights Management component is required. Contact product support for this application to get the latest version.%0
  4538. //
  4539. #define NS_E_DRM_NEED_UPGRADE            0xC00D274EL
  4540.  
  4541. //
  4542. // MessageId: NS_E_DRM_REOPEN_CONTENT
  4543. //
  4544. // MessageText:
  4545. //
  4546. //  Status message: Reopen the file.%0
  4547. //
  4548. #define NS_E_DRM_REOPEN_CONTENT          0xC00D274FL
  4549.  
  4550. //
  4551. // MessageId: NS_E_DRM_DRIVER_DIGIOUT_FAILURE
  4552. //
  4553. // MessageText:
  4554. //
  4555. //  Certain driver functionality is required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware.%0
  4556. //
  4557. #define NS_E_DRM_DRIVER_DIGIOUT_FAILURE  0xC00D2750L
  4558.  
  4559. //
  4560. // MessageId: NS_E_DRM_INVALID_SECURESTORE_PASSWORD
  4561. //
  4562. // MessageText:
  4563. //
  4564. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4565. //
  4566. #define NS_E_DRM_INVALID_SECURESTORE_PASSWORD 0xC00D2751L
  4567.  
  4568. //
  4569. // MessageId: NS_E_DRM_APPCERT_REVOKED
  4570. //
  4571. // MessageText:
  4572. //
  4573. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  4574. //
  4575. #define NS_E_DRM_APPCERT_REVOKED         0xC00D2752L
  4576.  
  4577. //
  4578. // MessageId: NS_E_DRM_RESTORE_FRAUD
  4579. //
  4580. // MessageText:
  4581. //
  4582. //  You cannot restore your license(s).%0
  4583. //
  4584. #define NS_E_DRM_RESTORE_FRAUD           0xC00D2753L
  4585.  
  4586. //
  4587. // MessageId: NS_E_DRM_HARDWARE_INCONSISTENT
  4588. //
  4589. // MessageText:
  4590. //
  4591. //  The licenses for your media files are corrupted. Contact Microsoft product support.%0
  4592. //
  4593. #define NS_E_DRM_HARDWARE_INCONSISTENT   0xC00D2754L
  4594.  
  4595. //
  4596. // MessageId: NS_E_DRM_SDMI_TRIGGER
  4597. //
  4598. // MessageText:
  4599. //
  4600. //  To transfer this media file, you must upgrade the application.%0
  4601. //
  4602. #define NS_E_DRM_SDMI_TRIGGER            0xC00D2755L
  4603.  
  4604. //
  4605. // MessageId: NS_E_DRM_SDMI_NOMORECOPIES
  4606. //
  4607. // MessageText:
  4608. //
  4609. //  You cannot make any more copies of this media file.%0
  4610. //
  4611. #define NS_E_DRM_SDMI_NOMORECOPIES       0xC00D2756L
  4612.  
  4613.  
  4614.  
  4615. /////////////////////////////////////////////////////////////////////////
  4616. //
  4617. // Windows Media Setup Specific Errors
  4618. //
  4619. // IdRange = 11000..11999
  4620. /////////////////////////////////////////////////////////////////////////
  4621. //
  4622. // MessageId: NS_S_REBOOT_RECOMMENDED
  4623. //
  4624. // MessageText:
  4625. //
  4626. //  The requested operation is successful.  Some cleanup will not be complete until the system is rebooted.%0
  4627. //
  4628. #define NS_S_REBOOT_RECOMMENDED          0x000D2AF8L
  4629.  
  4630. //
  4631. // MessageId: NS_S_REBOOT_REQUIRED
  4632. //
  4633. // MessageText:
  4634. //
  4635. //  The requested operation is successful.  The system will not function correctly until the system is rebooted.%0
  4636. //
  4637. #define NS_S_REBOOT_REQUIRED             0x000D2AF9L
  4638.  
  4639. //
  4640. // MessageId: NS_E_REBOOT_RECOMMENDED
  4641. //
  4642. // MessageText:
  4643. //
  4644. //  The requested operation failed.  Some cleanup will not be complete until the system is rebooted.%0
  4645. //
  4646. #define NS_E_REBOOT_RECOMMENDED          0xC00D2AFAL
  4647.  
  4648. //
  4649. // MessageId: NS_E_REBOOT_REQUIRED
  4650. //
  4651. // MessageText:
  4652. //
  4653. //  The requested operation failed.  The system will not function correctly until the system is rebooted.%0
  4654. //
  4655. #define NS_E_REBOOT_REQUIRED             0xC00D2AFBL
  4656.  
  4657.  
  4658. /////////////////////////////////////////////////////////////////////////
  4659. //
  4660. // Windows Media Networking Errors
  4661. //
  4662. // IdRange = 12000..12999
  4663. /////////////////////////////////////////////////////////////////////////
  4664. //
  4665. // MessageId: NS_E_UNKNOWN_PROTOCOL
  4666. //
  4667. // MessageText:
  4668. //
  4669. //  The specified protocol is not supported.%0
  4670. //
  4671. #define NS_E_UNKNOWN_PROTOCOL            0xC00D2EE0L
  4672.  
  4673. //
  4674. // MessageId: NS_E_REDIRECT_TO_PROXY
  4675. //
  4676. // MessageText:
  4677. //
  4678. //  The client is redirected to a proxy server.%0
  4679. //
  4680. #define NS_E_REDIRECT_TO_PROXY           0xC00D2EE1L
  4681.  
  4682. //
  4683. // MessageId: NS_E_INTERNAL_SERVER_ERROR
  4684. //
  4685. // MessageText:
  4686. //
  4687. //  The server encountered an unexpected condition which prevented it from fulfilling the request.%0
  4688. //
  4689. #define NS_E_INTERNAL_SERVER_ERROR       0xC00D2EE2L
  4690.  
  4691. //
  4692. // MessageId: NS_E_BAD_REQUEST
  4693. //
  4694. // MessageText:
  4695. //
  4696. //  The request could not be understood by the server.%0
  4697. //
  4698. #define NS_E_BAD_REQUEST                 0xC00D2EE3L
  4699.  
  4700. //
  4701. // MessageId: NS_E_ERROR_FROM_PROXY
  4702. //
  4703. // MessageText:
  4704. //
  4705. //  The proxy experienced an error while attempting to contact the media server.%0
  4706. //
  4707. #define NS_E_ERROR_FROM_PROXY            0xC00D2EE4L
  4708.  
  4709. //
  4710. // MessageId: NS_E_PROXY_TIMEOUT
  4711. //
  4712. // MessageText:
  4713. //
  4714. //  The proxy did not receive a timely response while attempting to contact the media server.%0
  4715. //
  4716. #define NS_E_PROXY_TIMEOUT               0xC00D2EE5L
  4717.  
  4718. //
  4719. // MessageId: NS_E_SERVER_UNAVAILABLE
  4720. //
  4721. // MessageText:
  4722. //
  4723. //  The server is currently unable to handle the request due to a temporary overloading or maintenance of the server.%0
  4724. //
  4725. #define NS_E_SERVER_UNAVAILABLE          0xC00D2EE6L
  4726.  
  4727. //
  4728. // MessageId: NS_E_REFUSED_BY_SERVER
  4729. //
  4730. // MessageText:
  4731. //
  4732. //  The server is refusing to fulfill the requested operation.%0
  4733. //
  4734. #define NS_E_REFUSED_BY_SERVER           0xC00D2EE7L
  4735.  
  4736. //
  4737. // MessageId: NS_E_INCOMPATIBLE_SERVER
  4738. //
  4739. // MessageText:
  4740. //
  4741. //  The server is not a compatible streaming media server.%0
  4742. //
  4743. #define NS_E_INCOMPATIBLE_SERVER         0xC00D2EE8L
  4744.  
  4745. //
  4746. // MessageId: NS_E_MULTICAST_DISABLED
  4747. //
  4748. // MessageText:
  4749. //
  4750. //  The content cannot be streamed because the Multicast protocol has been disabled.%0
  4751. //
  4752. #define NS_E_MULTICAST_DISABLED          0xC00D2EE9L
  4753.  
  4754. //
  4755. // MessageId: NS_E_INVALID_REDIRECT
  4756. //
  4757. // MessageText:
  4758. //
  4759. //  The server redirected the player to an invalid location.%0
  4760. //
  4761. #define NS_E_INVALID_REDIRECT            0xC00D2EEAL
  4762.  
  4763. //
  4764. // MessageId: NS_E_ALL_PROTOCOLS_DISABLED
  4765. //
  4766. // MessageText:
  4767. //
  4768. //  The content cannot be streamed because all protocols have been disabled.%0
  4769. //
  4770. #define NS_E_ALL_PROTOCOLS_DISABLED      0xC00D2EEBL
  4771.  
  4772. //
  4773. // MessageId: NS_E_MSBD_NO_LONGER_SUPPORTED
  4774. //
  4775. // MessageText:
  4776. //
  4777. //  The MSBD protocol is no longer supported. Please use HTTP to connect to the Windows Media stream.%0
  4778. //
  4779. #define NS_E_MSBD_NO_LONGER_SUPPORTED    0xC00D2EECL
  4780.  
  4781. //
  4782. // MessageId: NS_E_PROXY_NOT_FOUND
  4783. //
  4784. // MessageText:
  4785. //
  4786. //  The proxy server could not be located. Please check your proxy server configuration.%0
  4787. //
  4788. #define NS_E_PROXY_NOT_FOUND             0xC00D2EEDL
  4789.  
  4790. //
  4791. // MessageId: NS_E_CANNOT_CONNECT_TO_PROXY
  4792. //
  4793. // MessageText:
  4794. //
  4795. //  Unable to establish a connection to the proxy server. Please check your proxy server configuration.%0
  4796. //
  4797. #define NS_E_CANNOT_CONNECT_TO_PROXY     0xC00D2EEEL
  4798.  
  4799. //
  4800. // MessageId: NS_E_SERVER_DNS_TIMEOUT
  4801. //
  4802. // MessageText:
  4803. //
  4804. //  Unable to locate the media server. The operation timed out.%0
  4805. //
  4806. #define NS_E_SERVER_DNS_TIMEOUT          0xC00D2EEFL
  4807.  
  4808. //
  4809. // MessageId: NS_E_PROXY_DNS_TIMEOUT
  4810. //
  4811. // MessageText:
  4812. //
  4813. //  Unable to locate the proxy server. The operation timed out.%0
  4814. //
  4815. #define NS_E_PROXY_DNS_TIMEOUT           0xC00D2EF0L
  4816.  
  4817. //
  4818. // MessageId: NS_E_CLOSED_ON_SUSPEND
  4819. //
  4820. // MessageText:
  4821. //
  4822. //  Media closed because Windows was shut down.%0
  4823. //
  4824. #define NS_E_CLOSED_ON_SUSPEND           0xC00D2EF1L
  4825.  
  4826.  
  4827. #endif _NSERROR_H
  4828.  
  4829.