nserror.h
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:234k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. /*++
  2.   Microsoft Windows Media Technology
  3.   Copyright (C) Microsoft Corporation.  All Rights Reserved.
  4. Module Name:
  5.     nserror.mc
  6. Abstract:
  7.     Definitions for Windows Media events.
  8. Author:
  9. Revision History:
  10. Notes:
  11.     This file is used by the MC tool to generate the nserror.h file
  12. **************************** READ ME ******************************************
  13.  Here are the commented error ranges for the Windows Media Technologies Group
  14.  LEGACY RANGES
  15.      0  -  199 = General NetShow errors
  16.    200  -  399 = NetShow error events
  17.    400  -  599 = NetShow monitor events
  18.    600  -  799 = NetShow IMmsAutoServer errors
  19.   1000  - 1199 = NetShow MCMADM errors
  20.  NEW RANGES
  21.   2000 -  2999 = ASF (defined in ASFERR.MC)
  22.   3000 -  3999 = Windows Media SDK
  23.   4000 -  4999 = Windows Media Player
  24.   5000 -  5999 = Windows Media Server
  25.   6000 -  6999 = Windows Media HTTP/RTSP result codes (defined in NETERROR.MC)
  26.   7000 -  7999 = Windows Media Tools
  27.   8000 -  8999 = Windows Media Content Discovery
  28.   9000 -  9999 = Windows Media Real Time Collaboration
  29.  10000 - 10999 = Windows Media Digital Rights Management
  30.  11000 - 11999 = Windows Media Setup
  31.  12000 - 12999 = Windows Media Networking
  32.  13000 - 13999 = Windows Media Client Media Services
  33. **************************** READ ME ******************************************
  34. --*/
  35. #ifndef _NSERROR_H
  36. #define _NSERROR_H
  37. #define STATUS_SEVERITY(hr)  (((hr) >> 30) & 0x3)
  38. #ifdef RC_INVOKED
  39. #define _HRESULT_TYPEDEF_(_sc) _sc
  40. #else // RC_INVOKED
  41. #define _HRESULT_TYPEDEF_(_sc) ((HRESULT)_sc)
  42. #endif // RC_INVOKED
  43. /////////////////////////////////////////////////////////////////////////
  44. //
  45. // NETSHOW Success Events
  46. //
  47. /////////////////////////////////////////////////////////////////////////
  48. //
  49. //  Values are 32 bit values layed out as follows:
  50. //
  51. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  52. //   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
  53. //  +---+-+-+-----------------------+-------------------------------+
  54. //  |Sev|C|R|     Facility          |               Code            |
  55. //  +---+-+-+-----------------------+-------------------------------+
  56. //
  57. //  where
  58. //
  59. //      Sev - is the severity code
  60. //
  61. //          00 - Success
  62. //          01 - Informational
  63. //          10 - Warning
  64. //          11 - Error
  65. //
  66. //      C - is the Customer code flag
  67. //
  68. //      R - is a reserved bit
  69. //
  70. //      Facility - is the facility code
  71. //
  72. //      Code - is the facility's status code
  73. //
  74. //
  75. // Define the facility codes
  76. //
  77. #define FACILITY_NS_WIN32                0x7
  78. #define FACILITY_NS                      0xD
  79. //
  80. // Define the severity codes
  81. //
  82. #define STATUS_SEVERITY_WARNING          0x2
  83. #define STATUS_SEVERITY_SUCCESS          0x0
  84. #define STATUS_SEVERITY_INFORMATIONAL    0x1
  85. #define STATUS_SEVERITY_ERROR            0x3
  86. //
  87. // MessageId: NS_S_CALLPENDING
  88. //
  89. // MessageText:
  90. //
  91. //  The requested operation is pending completion.%0
  92. //
  93. #define NS_S_CALLPENDING                 _HRESULT_TYPEDEF_(0x000D0000L)
  94. //
  95. // MessageId: NS_S_CALLABORTED
  96. //
  97. // MessageText:
  98. //
  99. //  The requested operation was aborted by the client.%0
  100. //
  101. #define NS_S_CALLABORTED                 _HRESULT_TYPEDEF_(0x000D0001L)
  102. //
  103. // MessageId: NS_S_STREAM_TRUNCATED
  104. //
  105. // MessageText:
  106. //
  107. //  The stream was purposefully stopped before completion.%0
  108. //
  109. #define NS_S_STREAM_TRUNCATED            _HRESULT_TYPEDEF_(0x000D0002L)
  110. /////////////////////////////////////////////////////////////////////////
  111. //
  112. // NETSHOW Warning Events
  113. //
  114. /////////////////////////////////////////////////////////////////////////
  115. //
  116. // MessageId: NS_W_SERVER_BANDWIDTH_LIMIT
  117. //
  118. // MessageText:
  119. //
  120. //  The maximum filebitrate value specified is greater than the server's configured maximum bandwidth.%0
  121. //
  122. #define NS_W_SERVER_BANDWIDTH_LIMIT      _HRESULT_TYPEDEF_(0x800D0003L)
  123. //
  124. // MessageId: NS_W_FILE_BANDWIDTH_LIMIT
  125. //
  126. // MessageText:
  127. //
  128. //  The maximum bandwidth value specified is less than the maximum filebitrate.%0
  129. //
  130. #define NS_W_FILE_BANDWIDTH_LIMIT        _HRESULT_TYPEDEF_(0x800D0004L)
  131. /////////////////////////////////////////////////////////////////////////
  132. //
  133. // NETSHOW Error Events
  134. //
  135. /////////////////////////////////////////////////////////////////////////
  136. //
  137. // MessageId: NS_E_NOCONNECTION
  138. //
  139. // MessageText:
  140. //
  141. //  There is no connection established with the Windows Media server. The operation failed.%0
  142. //
  143. #define NS_E_NOCONNECTION                _HRESULT_TYPEDEF_(0xC00D0005L)
  144. //
  145. // MessageId: NS_E_CANNOTCONNECT
  146. //
  147. // MessageText:
  148. //
  149. //  Unable to establish a connection to the server.%0
  150. //
  151. #define NS_E_CANNOTCONNECT               _HRESULT_TYPEDEF_(0xC00D0006L)
  152. //
  153. // MessageId: NS_E_CANNOTDESTROYTITLE
  154. //
  155. // MessageText:
  156. //
  157. //  Unable to destroy the title.%0
  158. //
  159. #define NS_E_CANNOTDESTROYTITLE          _HRESULT_TYPEDEF_(0xC00D0007L)
  160. //
  161. // MessageId: NS_E_CANNOTRENAMETITLE
  162. //
  163. // MessageText:
  164. //
  165. //  Unable to rename the title.%0
  166. //
  167. #define NS_E_CANNOTRENAMETITLE           _HRESULT_TYPEDEF_(0xC00D0008L)
  168. //
  169. // MessageId: NS_E_CANNOTOFFLINEDISK
  170. //
  171. // MessageText:
  172. //
  173. //  Unable to offline disk.%0
  174. //
  175. #define NS_E_CANNOTOFFLINEDISK           _HRESULT_TYPEDEF_(0xC00D0009L)
  176. //
  177. // MessageId: NS_E_CANNOTONLINEDISK
  178. //
  179. // MessageText:
  180. //
  181. //  Unable to online disk.%0
  182. //
  183. #define NS_E_CANNOTONLINEDISK            _HRESULT_TYPEDEF_(0xC00D000AL)
  184. //
  185. // MessageId: NS_E_NOREGISTEREDWALKER
  186. //
  187. // MessageText:
  188. //
  189. //  There is no file parser registered for this type of file.%0
  190. //
  191. #define NS_E_NOREGISTEREDWALKER          _HRESULT_TYPEDEF_(0xC00D000BL)
  192. //
  193. // MessageId: NS_E_NOFUNNEL
  194. //
  195. // MessageText:
  196. //
  197. //  There is no data connection established.%0
  198. //
  199. #define NS_E_NOFUNNEL                    _HRESULT_TYPEDEF_(0xC00D000CL)
  200. //
  201. // MessageId: NS_E_NO_LOCALPLAY
  202. //
  203. // MessageText:
  204. //
  205. //  Failed to load the local play DLL.%0
  206. //
  207. #define NS_E_NO_LOCALPLAY                _HRESULT_TYPEDEF_(0xC00D000DL)
  208. //
  209. // MessageId: NS_E_NETWORK_BUSY
  210. //
  211. // MessageText:
  212. //
  213. //  The network is busy.%0
  214. //
  215. #define NS_E_NETWORK_BUSY                _HRESULT_TYPEDEF_(0xC00D000EL)
  216. //
  217. // MessageId: NS_E_TOO_MANY_SESS
  218. //
  219. // MessageText:
  220. //
  221. //  The server session limit was exceeded.%0
  222. //
  223. #define NS_E_TOO_MANY_SESS               _HRESULT_TYPEDEF_(0xC00D000FL)
  224. //
  225. // MessageId: NS_E_ALREADY_CONNECTED
  226. //
  227. // MessageText:
  228. //
  229. //  The network connection already exists.%0
  230. //
  231. #define NS_E_ALREADY_CONNECTED           _HRESULT_TYPEDEF_(0xC00D0010L)
  232. //
  233. // MessageId: NS_E_INVALID_INDEX
  234. //
  235. // MessageText:
  236. //
  237. //  Index %1 is invalid.%0
  238. //
  239. #define NS_E_INVALID_INDEX               _HRESULT_TYPEDEF_(0xC00D0011L)
  240. //
  241. // MessageId: NS_E_PROTOCOL_MISMATCH
  242. //
  243. // MessageText:
  244. //
  245. //  There is no protocol or protocol version supported by both the client and the server.%0
  246. //
  247. #define NS_E_PROTOCOL_MISMATCH           _HRESULT_TYPEDEF_(0xC00D0012L)
  248. //
  249. // MessageId: NS_E_TIMEOUT
  250. //
  251. // MessageText:
  252. //
  253. //  The server, a computer set up to offer multimedia content to other computers, could not handle your request for multimedia content in a timely manner.  Please try again later.%0
  254. //
  255. #define NS_E_TIMEOUT                     _HRESULT_TYPEDEF_(0xC00D0013L)
  256. //
  257. // MessageId: NS_E_NET_WRITE
  258. //
  259. // MessageText:
  260. //
  261. //  Error writing to the network.%0
  262. //
  263. #define NS_E_NET_WRITE                   _HRESULT_TYPEDEF_(0xC00D0014L)
  264. //
  265. // MessageId: NS_E_NET_READ
  266. //
  267. // MessageText:
  268. //
  269. //  Error reading from the network.%0
  270. //
  271. #define NS_E_NET_READ                    _HRESULT_TYPEDEF_(0xC00D0015L)
  272. //
  273. // MessageId: NS_E_DISK_WRITE
  274. //
  275. // MessageText:
  276. //
  277. //  Error writing to a disk.%0
  278. //
  279. #define NS_E_DISK_WRITE                  _HRESULT_TYPEDEF_(0xC00D0016L)
  280. //
  281. // MessageId: NS_E_DISK_READ
  282. //
  283. // MessageText:
  284. //
  285. //  Error reading from a disk.%0
  286. //
  287. #define NS_E_DISK_READ                   _HRESULT_TYPEDEF_(0xC00D0017L)
  288. //
  289. // MessageId: NS_E_FILE_WRITE
  290. //
  291. // MessageText:
  292. //
  293. //  Error writing to a file.%0
  294. //
  295. #define NS_E_FILE_WRITE                  _HRESULT_TYPEDEF_(0xC00D0018L)
  296. //
  297. // MessageId: NS_E_FILE_READ
  298. //
  299. // MessageText:
  300. //
  301. //  Error reading from a file.%0
  302. //
  303. #define NS_E_FILE_READ                   _HRESULT_TYPEDEF_(0xC00D0019L)
  304. //
  305. // MessageId: NS_E_FILE_NOT_FOUND
  306. //
  307. // MessageText:
  308. //
  309. //  The system cannot find the file specified.%0
  310. //
  311. #define NS_E_FILE_NOT_FOUND              _HRESULT_TYPEDEF_(0xC00D001AL)
  312. //
  313. // MessageId: NS_E_FILE_EXISTS
  314. //
  315. // MessageText:
  316. //
  317. //  The file already exists.%0
  318. //
  319. #define NS_E_FILE_EXISTS                 _HRESULT_TYPEDEF_(0xC00D001BL)
  320. //
  321. // MessageId: NS_E_INVALID_NAME
  322. //
  323. // MessageText:
  324. //
  325. //  The file name, directory name, or volume label syntax is incorrect.%0
  326. //
  327. #define NS_E_INVALID_NAME                _HRESULT_TYPEDEF_(0xC00D001CL)
  328. //
  329. // MessageId: NS_E_FILE_OPEN_FAILED
  330. //
  331. // MessageText:
  332. //
  333. //  Failed to open a file.%0
  334. //
  335. #define NS_E_FILE_OPEN_FAILED            _HRESULT_TYPEDEF_(0xC00D001DL)
  336. //
  337. // MessageId: NS_E_FILE_ALLOCATION_FAILED
  338. //
  339. // MessageText:
  340. //
  341. //  Unable to allocate a file.%0
  342. //
  343. #define NS_E_FILE_ALLOCATION_FAILED      _HRESULT_TYPEDEF_(0xC00D001EL)
  344. //
  345. // MessageId: NS_E_FILE_INIT_FAILED
  346. //
  347. // MessageText:
  348. //
  349. //  Unable to initialize a file.%0
  350. //
  351. #define NS_E_FILE_INIT_FAILED            _HRESULT_TYPEDEF_(0xC00D001FL)
  352. //
  353. // MessageId: NS_E_FILE_PLAY_FAILED
  354. //
  355. // MessageText:
  356. //
  357. //  Unable to play a file.%0
  358. //
  359. #define NS_E_FILE_PLAY_FAILED            _HRESULT_TYPEDEF_(0xC00D0020L)
  360. //
  361. // MessageId: NS_E_SET_DISK_UID_FAILED
  362. //
  363. // MessageText:
  364. //
  365. //  Could not set the disk UID.%0
  366. //
  367. #define NS_E_SET_DISK_UID_FAILED         _HRESULT_TYPEDEF_(0xC00D0021L)
  368. //
  369. // MessageId: NS_E_INDUCED
  370. //
  371. // MessageText:
  372. //
  373. //  An error was induced for testing purposes.%0
  374. //
  375. #define NS_E_INDUCED                     _HRESULT_TYPEDEF_(0xC00D0022L)
  376. //
  377. // MessageId: NS_E_CCLINK_DOWN
  378. //
  379. // MessageText:
  380. //
  381. //  Two Content Servers failed to communicate.%0
  382. //
  383. #define NS_E_CCLINK_DOWN                 _HRESULT_TYPEDEF_(0xC00D0023L)
  384. //
  385. // MessageId: NS_E_INTERNAL
  386. //
  387. // MessageText:
  388. //
  389. //  An unknown error occurred.%0
  390. //
  391. #define NS_E_INTERNAL                    _HRESULT_TYPEDEF_(0xC00D0024L)
  392. //
  393. // MessageId: NS_E_BUSY
  394. //
  395. // MessageText:
  396. //
  397. //  The requested resource is in use.%0
  398. //
  399. #define NS_E_BUSY                        _HRESULT_TYPEDEF_(0xC00D0025L)
  400. //
  401. // MessageId: NS_E_UNRECOGNIZED_STREAM_TYPE
  402. //
  403. // MessageText:
  404. //
  405. //  The specified protocol is not recognized. Be sure that the file name and syntax, such as slashes, are correct for the protocol.%0
  406. //
  407. #define NS_E_UNRECOGNIZED_STREAM_TYPE    _HRESULT_TYPEDEF_(0xC00D0026L)
  408. //
  409. // MessageId: NS_E_NETWORK_SERVICE_FAILURE
  410. //
  411. // MessageText:
  412. //
  413. //  The network service provider failed.%0
  414. //
  415. #define NS_E_NETWORK_SERVICE_FAILURE     _HRESULT_TYPEDEF_(0xC00D0027L)
  416. //
  417. // MessageId: NS_E_NETWORK_RESOURCE_FAILURE
  418. //
  419. // MessageText:
  420. //
  421. //  An attempt to acquire a network resource failed.%0
  422. //
  423. #define NS_E_NETWORK_RESOURCE_FAILURE    _HRESULT_TYPEDEF_(0xC00D0028L)
  424. //
  425. // MessageId: NS_E_CONNECTION_FAILURE
  426. //
  427. // MessageText:
  428. //
  429. //  The network connection has failed.%0
  430. //
  431. #define NS_E_CONNECTION_FAILURE          _HRESULT_TYPEDEF_(0xC00D0029L)
  432. //
  433. // MessageId: NS_E_SHUTDOWN
  434. //
  435. // MessageText:
  436. //
  437. //  The session is being terminated locally.%0
  438. //
  439. #define NS_E_SHUTDOWN                    _HRESULT_TYPEDEF_(0xC00D002AL)
  440. //
  441. // MessageId: NS_E_INVALID_REQUEST
  442. //
  443. // MessageText:
  444. //
  445. //  The request is invalid in the current state.%0
  446. //
  447. #define NS_E_INVALID_REQUEST             _HRESULT_TYPEDEF_(0xC00D002BL)
  448. //
  449. // MessageId: NS_E_INSUFFICIENT_BANDWIDTH
  450. //
  451. // MessageText:
  452. //
  453. //  There is insufficient bandwidth available to fulfill the request.%0
  454. //
  455. #define NS_E_INSUFFICIENT_BANDWIDTH      _HRESULT_TYPEDEF_(0xC00D002CL)
  456. //
  457. // MessageId: NS_E_NOT_REBUILDING
  458. //
  459. // MessageText:
  460. //
  461. //  The disk is not rebuilding.%0
  462. //
  463. #define NS_E_NOT_REBUILDING              _HRESULT_TYPEDEF_(0xC00D002DL)
  464. //
  465. // MessageId: NS_E_LATE_OPERATION
  466. //
  467. // MessageText:
  468. //
  469. //  An operation requested for a particular time could not be carried out on schedule.%0
  470. //
  471. #define NS_E_LATE_OPERATION              _HRESULT_TYPEDEF_(0xC00D002EL)
  472. //
  473. // MessageId: NS_E_INVALID_DATA
  474. //
  475. // MessageText:
  476. //
  477. //  Invalid or corrupt data was encountered.%0
  478. //
  479. #define NS_E_INVALID_DATA                _HRESULT_TYPEDEF_(0xC00D002FL)
  480. //
  481. // MessageId: NS_E_FILE_BANDWIDTH_LIMIT
  482. //
  483. // MessageText:
  484. //
  485. //  The bandwidth required to stream a file is higher than the maximum file bandwidth allowed on the server.%0
  486. //
  487. #define NS_E_FILE_BANDWIDTH_LIMIT        _HRESULT_TYPEDEF_(0xC00D0030L)
  488. //
  489. // MessageId: NS_E_OPEN_FILE_LIMIT
  490. //
  491. // MessageText:
  492. //
  493. //  The client cannot have any more files open simultaneously.%0
  494. //
  495. #define NS_E_OPEN_FILE_LIMIT             _HRESULT_TYPEDEF_(0xC00D0031L)
  496. //
  497. // MessageId: NS_E_BAD_CONTROL_DATA
  498. //
  499. // MessageText:
  500. //
  501. //  The server received invalid data from the client on the control connection.%0
  502. //
  503. #define NS_E_BAD_CONTROL_DATA            _HRESULT_TYPEDEF_(0xC00D0032L)
  504. //
  505. // MessageId: NS_E_NO_STREAM
  506. //
  507. // MessageText:
  508. //
  509. //  There is no stream available.%0
  510. //
  511. #define NS_E_NO_STREAM                   _HRESULT_TYPEDEF_(0xC00D0033L)
  512. //
  513. // MessageId: NS_E_STREAM_END
  514. //
  515. // MessageText:
  516. //
  517. //  There is no more data in the stream.%0
  518. //
  519. #define NS_E_STREAM_END                  _HRESULT_TYPEDEF_(0xC00D0034L)
  520. //
  521. // MessageId: NS_E_SERVER_NOT_FOUND
  522. //
  523. // MessageText:
  524. //
  525. //  The specified server could not be found.%0
  526. //
  527. #define NS_E_SERVER_NOT_FOUND            _HRESULT_TYPEDEF_(0xC00D0035L)
  528. //
  529. // MessageId: NS_E_DUPLICATE_NAME
  530. //
  531. // MessageText:
  532. //
  533. //  The specified name is already in use.
  534. //
  535. #define NS_E_DUPLICATE_NAME              _HRESULT_TYPEDEF_(0xC00D0036L)
  536. //
  537. // MessageId: NS_E_DUPLICATE_ADDRESS
  538. //
  539. // MessageText:
  540. //
  541. //  The specified address is already in use.
  542. //
  543. #define NS_E_DUPLICATE_ADDRESS           _HRESULT_TYPEDEF_(0xC00D0037L)
  544. //
  545. // MessageId: NS_E_BAD_MULTICAST_ADDRESS
  546. //
  547. // MessageText:
  548. //
  549. //  The specified address is not a valid multicast address.
  550. //
  551. #define NS_E_BAD_MULTICAST_ADDRESS       _HRESULT_TYPEDEF_(0xC00D0038L)
  552. //
  553. // MessageId: NS_E_BAD_ADAPTER_ADDRESS
  554. //
  555. // MessageText:
  556. //
  557. //  The specified adapter address is invalid.
  558. //
  559. #define NS_E_BAD_ADAPTER_ADDRESS         _HRESULT_TYPEDEF_(0xC00D0039L)
  560. //
  561. // MessageId: NS_E_BAD_DELIVERY_MODE
  562. //
  563. // MessageText:
  564. //
  565. //  The specified delivery mode is invalid.
  566. //
  567. #define NS_E_BAD_DELIVERY_MODE           _HRESULT_TYPEDEF_(0xC00D003AL)
  568. //
  569. // MessageId: NS_E_INVALID_CHANNEL
  570. //
  571. // MessageText:
  572. //
  573. //  The specified station does not exist.
  574. //
  575. #define NS_E_INVALID_CHANNEL             _HRESULT_TYPEDEF_(0xC00D003BL)
  576. //
  577. // MessageId: NS_E_INVALID_STREAM
  578. //
  579. // MessageText:
  580. //
  581. //  The specified stream does not exist.
  582. //
  583. #define NS_E_INVALID_STREAM              _HRESULT_TYPEDEF_(0xC00D003CL)
  584. //
  585. // MessageId: NS_E_INVALID_ARCHIVE
  586. //
  587. // MessageText:
  588. //
  589. //  The specified archive could not be opened.
  590. //
  591. #define NS_E_INVALID_ARCHIVE             _HRESULT_TYPEDEF_(0xC00D003DL)
  592. //
  593. // MessageId: NS_E_NOTITLES
  594. //
  595. // MessageText:
  596. //
  597. //  The system cannot find any titles on the server.%0
  598. //
  599. #define NS_E_NOTITLES                    _HRESULT_TYPEDEF_(0xC00D003EL)
  600. //
  601. // MessageId: NS_E_INVALID_CLIENT
  602. //
  603. // MessageText:
  604. //
  605. //  The system cannot find the client specified.%0
  606. //
  607. #define NS_E_INVALID_CLIENT              _HRESULT_TYPEDEF_(0xC00D003FL)
  608. //
  609. // MessageId: NS_E_INVALID_BLACKHOLE_ADDRESS
  610. //
  611. // MessageText:
  612. //
  613. //  The Blackhole Address is not initialized.%0
  614. //
  615. #define NS_E_INVALID_BLACKHOLE_ADDRESS   _HRESULT_TYPEDEF_(0xC00D0040L)
  616. //
  617. // MessageId: NS_E_INCOMPATIBLE_FORMAT
  618. //
  619. // MessageText:
  620. //
  621. //  The station does not support the stream format.
  622. //
  623. #define NS_E_INCOMPATIBLE_FORMAT         _HRESULT_TYPEDEF_(0xC00D0041L)
  624. //
  625. // MessageId: NS_E_INVALID_KEY
  626. //
  627. // MessageText:
  628. //
  629. //  The specified key is not valid.
  630. //
  631. #define NS_E_INVALID_KEY                 _HRESULT_TYPEDEF_(0xC00D0042L)
  632. //
  633. // MessageId: NS_E_INVALID_PORT
  634. //
  635. // MessageText:
  636. //
  637. //  The specified port is not valid.
  638. //
  639. #define NS_E_INVALID_PORT                _HRESULT_TYPEDEF_(0xC00D0043L)
  640. //
  641. // MessageId: NS_E_INVALID_TTL
  642. //
  643. // MessageText:
  644. //
  645. //  The specified TTL is not valid.
  646. //
  647. #define NS_E_INVALID_TTL                 _HRESULT_TYPEDEF_(0xC00D0044L)
  648. //
  649. // MessageId: NS_E_STRIDE_REFUSED
  650. //
  651. // MessageText:
  652. //
  653. //  The request to fast forward or rewind could not be fulfilled.
  654. //
  655. #define NS_E_STRIDE_REFUSED              _HRESULT_TYPEDEF_(0xC00D0045L)
  656. //
  657. // IMmsAutoServer Errors
  658. //
  659. //
  660. // MessageId: NS_E_MMSAUTOSERVER_CANTFINDWALKER
  661. //
  662. // MessageText:
  663. //
  664. //  Unable to load the appropriate file parser.%0
  665. //
  666. #define NS_E_MMSAUTOSERVER_CANTFINDWALKER _HRESULT_TYPEDEF_(0xC00D0046L)
  667. //
  668. // MessageId: NS_E_MAX_BITRATE
  669. //
  670. // MessageText:
  671. //
  672. //  Cannot exceed the maximum bandwidth limit.%0
  673. //
  674. #define NS_E_MAX_BITRATE                 _HRESULT_TYPEDEF_(0xC00D0047L)
  675. //
  676. // MessageId: NS_E_LOGFILEPERIOD
  677. //
  678. // MessageText:
  679. //
  680. //  Invalid value for LogFilePeriod.%0
  681. //
  682. #define NS_E_LOGFILEPERIOD               _HRESULT_TYPEDEF_(0xC00D0048L)
  683. //
  684. // MessageId: NS_E_MAX_CLIENTS
  685. //
  686. // MessageText:
  687. //
  688. //  Cannot exceed the maximum client limit.%0
  689. //  
  690. //
  691. #define NS_E_MAX_CLIENTS                 _HRESULT_TYPEDEF_(0xC00D0049L)
  692. //
  693. // MessageId: NS_E_LOG_FILE_SIZE
  694. //
  695. // MessageText:
  696. //
  697. //  The maximum log file size has been reached.%0
  698. //  
  699. //
  700. #define NS_E_LOG_FILE_SIZE               _HRESULT_TYPEDEF_(0xC00D004AL)
  701. //
  702. // MessageId: NS_E_MAX_FILERATE
  703. //
  704. // MessageText:
  705. //
  706. //  Cannot exceed the maximum file rate.%0
  707. //
  708. #define NS_E_MAX_FILERATE                _HRESULT_TYPEDEF_(0xC00D004BL)
  709. //
  710. // File Walker Errors
  711. //
  712. //
  713. // MessageId: NS_E_WALKER_UNKNOWN
  714. //
  715. // MessageText:
  716. //
  717. //  Unknown file type.%0
  718. //
  719. #define NS_E_WALKER_UNKNOWN              _HRESULT_TYPEDEF_(0xC00D004CL)
  720. //
  721. // MessageId: NS_E_WALKER_SERVER
  722. //
  723. // MessageText:
  724. //
  725. //  The specified file, %1, cannot be loaded onto the specified server, %2.%0
  726. //
  727. #define NS_E_WALKER_SERVER               _HRESULT_TYPEDEF_(0xC00D004DL)
  728. //
  729. // MessageId: NS_E_WALKER_USAGE
  730. //
  731. // MessageText:
  732. //
  733. //  There was a usage error with file parser.%0
  734. //
  735. #define NS_E_WALKER_USAGE                _HRESULT_TYPEDEF_(0xC00D004EL)
  736. /////////////////////////////////////////////////////////////////////////
  737. //
  738. // NETSHOW Monitor Events
  739. //
  740. /////////////////////////////////////////////////////////////////////////
  741.  // Tiger Events
  742.  // %1 is the tiger name
  743. //
  744. // MessageId: NS_I_TIGER_START
  745. //
  746. // MessageText:
  747. //
  748. //  The Title Server %1 is running.%0
  749. //
  750. #define NS_I_TIGER_START                 _HRESULT_TYPEDEF_(0x400D004FL)
  751. //
  752. // MessageId: NS_E_TIGER_FAIL
  753. //
  754. // MessageText:
  755. //
  756. //  The Title Server %1 has failed.%0
  757. //
  758. #define NS_E_TIGER_FAIL                  _HRESULT_TYPEDEF_(0xC00D0050L)
  759.  // Cub Events
  760.  // %1 is the cub ID
  761.  // %2 is the cub name
  762. //
  763. // MessageId: NS_I_CUB_START
  764. //
  765. // MessageText:
  766. //
  767. //  Content Server %1 (%2) is starting.%0
  768. //
  769. #define NS_I_CUB_START                   _HRESULT_TYPEDEF_(0x400D0051L)
  770. //
  771. // MessageId: NS_I_CUB_RUNNING
  772. //
  773. // MessageText:
  774. //
  775. //  Content Server %1 (%2) is running.%0
  776. //
  777. #define NS_I_CUB_RUNNING                 _HRESULT_TYPEDEF_(0x400D0052L)
  778. //
  779. // MessageId: NS_E_CUB_FAIL
  780. //
  781. // MessageText:
  782. //
  783. //  Content Server %1 (%2) has failed.%0
  784. //
  785. #define NS_E_CUB_FAIL                    _HRESULT_TYPEDEF_(0xC00D0053L)
  786.  // Disk Events
  787.  // %1 is the tiger disk ID
  788.  // %2 is the device name
  789.  // %3 is the cub ID
  790. //
  791. // MessageId: NS_I_DISK_START
  792. //
  793. // MessageText:
  794. //
  795. //  Disk %1 ( %2 ) on Content Server %3, is running.%0
  796. //
  797. #define NS_I_DISK_START                  _HRESULT_TYPEDEF_(0x400D0054L)
  798. //
  799. // MessageId: NS_E_DISK_FAIL
  800. //
  801. // MessageText:
  802. //
  803. //  Disk %1 ( %2 ) on Content Server %3, has failed.%0
  804. //
  805. #define NS_E_DISK_FAIL                   _HRESULT_TYPEDEF_(0xC00D0055L)
  806. //
  807. // MessageId: NS_I_DISK_REBUILD_STARTED
  808. //
  809. // MessageText:
  810. //
  811. //  Started rebuilding disk %1 ( %2 ) on Content Server %3.%0
  812. //
  813. #define NS_I_DISK_REBUILD_STARTED        _HRESULT_TYPEDEF_(0x400D0056L)
  814. //
  815. // MessageId: NS_I_DISK_REBUILD_FINISHED
  816. //
  817. // MessageText:
  818. //
  819. //  Finished rebuilding disk %1 ( %2 ) on Content Server %3.%0
  820. //
  821. #define NS_I_DISK_REBUILD_FINISHED       _HRESULT_TYPEDEF_(0x400D0057L)
  822. //
  823. // MessageId: NS_I_DISK_REBUILD_ABORTED
  824. //
  825. // MessageText:
  826. //
  827. //  Aborted rebuilding disk %1 ( %2 ) on Content Server %3.%0
  828. //
  829. #define NS_I_DISK_REBUILD_ABORTED        _HRESULT_TYPEDEF_(0x400D0058L)
  830.  // Admin Events
  831. //
  832. // MessageId: NS_I_LIMIT_FUNNELS
  833. //
  834. // MessageText:
  835. //
  836. //  A NetShow administrator at network location %1 set the data stream limit to %2 streams.%0
  837. //
  838. #define NS_I_LIMIT_FUNNELS               _HRESULT_TYPEDEF_(0x400D0059L)
  839. //
  840. // MessageId: NS_I_START_DISK
  841. //
  842. // MessageText:
  843. //
  844. //  A NetShow administrator at network location %1 started disk %2.%0
  845. //
  846. #define NS_I_START_DISK                  _HRESULT_TYPEDEF_(0x400D005AL)
  847. //
  848. // MessageId: NS_I_STOP_DISK
  849. //
  850. // MessageText:
  851. //
  852. //  A NetShow administrator at network location %1 stopped disk %2.%0
  853. //
  854. #define NS_I_STOP_DISK                   _HRESULT_TYPEDEF_(0x400D005BL)
  855. //
  856. // MessageId: NS_I_STOP_CUB
  857. //
  858. // MessageText:
  859. //
  860. //  A NetShow administrator at network location %1 stopped Content Server %2.%0
  861. //
  862. #define NS_I_STOP_CUB                    _HRESULT_TYPEDEF_(0x400D005CL)
  863. //
  864. // MessageId: NS_I_KILL_USERSESSION
  865. //
  866. // MessageText:
  867. //
  868. //  A NetShow administrator at network location %1 aborted user session %2 from the system.%0
  869. //
  870. #define NS_I_KILL_USERSESSION            _HRESULT_TYPEDEF_(0x400D005DL)
  871. //
  872. // MessageId: NS_I_KILL_CONNECTION
  873. //
  874. // MessageText:
  875. //
  876. //  A NetShow administrator at network location %1 aborted obsolete connection %2 from the system.%0
  877. //
  878. #define NS_I_KILL_CONNECTION             _HRESULT_TYPEDEF_(0x400D005EL)
  879. //
  880. // MessageId: NS_I_REBUILD_DISK
  881. //
  882. // MessageText:
  883. //
  884. //  A NetShow administrator at network location %1 started rebuilding disk %2.%0
  885. //
  886. #define NS_I_REBUILD_DISK                _HRESULT_TYPEDEF_(0x400D005FL)
  887. //
  888. // MessageId: NS_W_UNKNOWN_EVENT
  889. //
  890. // MessageText:
  891. //
  892. //  Unknown %1 event encountered.%0
  893. //
  894. #define NS_W_UNKNOWN_EVENT               _HRESULT_TYPEDEF_(0x800D0060L)
  895.  // Alerts
  896. //
  897. // MessageId: NS_E_MAX_FUNNELS_ALERT
  898. //
  899. // MessageText:
  900. //
  901. //  The NetShow data stream limit of %1 streams was reached.%0
  902. //
  903. #define NS_E_MAX_FUNNELS_ALERT           _HRESULT_TYPEDEF_(0xC00D0060L)
  904. //
  905. // MessageId: NS_E_ALLOCATE_FILE_FAIL
  906. //
  907. // MessageText:
  908. //
  909. //  The NetShow Video Server was unable to allocate a %1 block file named %2.%0
  910. //
  911. #define NS_E_ALLOCATE_FILE_FAIL          _HRESULT_TYPEDEF_(0xC00D0061L)
  912. //
  913. // MessageId: NS_E_PAGING_ERROR
  914. //
  915. // MessageText:
  916. //
  917. //  A Content Server was unable to page a block.%0
  918. //
  919. #define NS_E_PAGING_ERROR                _HRESULT_TYPEDEF_(0xC00D0062L)
  920. //
  921. // MessageId: NS_E_BAD_BLOCK0_VERSION
  922. //
  923. // MessageText:
  924. //
  925. //  Disk %1 has unrecognized control block version %2.%0
  926. //
  927. #define NS_E_BAD_BLOCK0_VERSION          _HRESULT_TYPEDEF_(0xC00D0063L)
  928. //
  929. // MessageId: NS_E_BAD_DISK_UID
  930. //
  931. // MessageText:
  932. //
  933. //  Disk %1 has incorrect uid %2.%0
  934. //
  935. #define NS_E_BAD_DISK_UID                _HRESULT_TYPEDEF_(0xC00D0064L)
  936. //
  937. // MessageId: NS_E_BAD_FSMAJOR_VERSION
  938. //
  939. // MessageText:
  940. //
  941. //  Disk %1 has unsupported file system major version %2.%0
  942. //
  943. #define NS_E_BAD_FSMAJOR_VERSION         _HRESULT_TYPEDEF_(0xC00D0065L)
  944. //
  945. // MessageId: NS_E_BAD_STAMPNUMBER
  946. //
  947. // MessageText:
  948. //
  949. //  Disk %1 has bad stamp number in control block.%0
  950. //
  951. #define NS_E_BAD_STAMPNUMBER             _HRESULT_TYPEDEF_(0xC00D0066L)
  952. //
  953. // MessageId: NS_E_PARTIALLY_REBUILT_DISK
  954. //
  955. // MessageText:
  956. //
  957. //  Disk %1 is partially reconstructed.%0
  958. //
  959. #define NS_E_PARTIALLY_REBUILT_DISK      _HRESULT_TYPEDEF_(0xC00D0067L)
  960. //
  961. // MessageId: NS_E_ENACTPLAN_GIVEUP
  962. //
  963. // MessageText:
  964. //
  965. //  EnactPlan gives up.%0
  966. //
  967. #define NS_E_ENACTPLAN_GIVEUP            _HRESULT_TYPEDEF_(0xC00D0068L)
  968.  // MCMADM warnings/errors
  969. //
  970. // MessageId: MCMADM_I_NO_EVENTS
  971. //
  972. // MessageText:
  973. //
  974. //  Event initialization failed, there will be no MCM events.%0
  975. //
  976. #define MCMADM_I_NO_EVENTS               _HRESULT_TYPEDEF_(0x400D0069L)
  977. //
  978. // MessageId: MCMADM_E_REGKEY_NOT_FOUND
  979. //
  980. // MessageText:
  981. //
  982. //  The key was not found in the registry.%0
  983. //
  984. #define MCMADM_E_REGKEY_NOT_FOUND        _HRESULT_TYPEDEF_(0xC00D006AL)
  985. //
  986. // MessageId: NS_E_NO_FORMATS
  987. //
  988. // MessageText:
  989. //
  990. //  The publishing point cannot be started because the server does not have the appropriate stream formats. Use the Multicast Announcement Wizard to create a new announcement for this publishing point.%0
  991. //
  992. #define NS_E_NO_FORMATS                  _HRESULT_TYPEDEF_(0xC00D006BL)
  993. //
  994. // MessageId: NS_E_NO_REFERENCES
  995. //
  996. // MessageText:
  997. //
  998. //  No reference URLs were found in an ASX file.%0
  999. //
  1000. #define NS_E_NO_REFERENCES               _HRESULT_TYPEDEF_(0xC00D006CL)
  1001. //
  1002. // MessageId: NS_E_WAVE_OPEN
  1003. //
  1004. // MessageText:
  1005. //
  1006. //  Error opening wave device, the device might be in use.%0
  1007. //
  1008. #define NS_E_WAVE_OPEN                   _HRESULT_TYPEDEF_(0xC00D006DL)
  1009. //
  1010. // MessageId: NS_I_LOGGING_FAILED
  1011. //
  1012. // MessageText:
  1013. //
  1014. //  The logging operation failed.
  1015. //
  1016. #define NS_I_LOGGING_FAILED              _HRESULT_TYPEDEF_(0x400D006EL)
  1017. //
  1018. // MessageId: NS_E_CANNOTCONNECTEVENTS
  1019. //
  1020. // MessageText:
  1021. //
  1022. //  Unable to establish a connection to the NetShow event monitor service.%0
  1023. //
  1024. #define NS_E_CANNOTCONNECTEVENTS         _HRESULT_TYPEDEF_(0xC00D006FL)
  1025. //
  1026. // MessageId: NS_I_LIMIT_BANDWIDTH
  1027. //
  1028. // MessageText:
  1029. //
  1030. //  A NetShow administrator at network location %1 set the maximum bandwidth limit to %2 bps.%0
  1031. //
  1032. #define NS_I_LIMIT_BANDWIDTH             _HRESULT_TYPEDEF_(0x400D0070L)
  1033. //
  1034. // MessageId: NS_E_NO_DEVICE
  1035. //
  1036. // MessageText:
  1037. //
  1038. //  No device driver is present on the system.%0
  1039. //
  1040. #define NS_E_NO_DEVICE                   _HRESULT_TYPEDEF_(0xC00D0071L)
  1041. //
  1042. // MessageId: NS_E_NO_SPECIFIED_DEVICE
  1043. //
  1044. // MessageText:
  1045. //
  1046. //  No specified device driver is present.%0
  1047. //
  1048. #define NS_E_NO_SPECIFIED_DEVICE         _HRESULT_TYPEDEF_(0xC00D0072L)
  1049. // NOTENOTE!!!
  1050. //
  1051. // Due to legacy problems these error codes live inside the ASF error code range
  1052. //
  1053. //
  1054. // MessageId: NS_E_NOTHING_TO_DO
  1055. //
  1056. // MessageText:
  1057. //
  1058. //  NS_E_NOTHING_TO_DO
  1059. //
  1060. #define NS_E_NOTHING_TO_DO               _HRESULT_TYPEDEF_(0xC00D07F1L)
  1061. //
  1062. // MessageId: NS_E_NO_MULTICAST
  1063. //
  1064. // MessageText:
  1065. //
  1066. //  Not receiving data from the server.%0
  1067. //
  1068. #define NS_E_NO_MULTICAST                _HRESULT_TYPEDEF_(0xC00D07F2L)
  1069. /////////////////////////////////////////////////////////////////////////
  1070. //
  1071. // NETSHOW Error Events
  1072. //
  1073. // IdRange = 200..399
  1074. //
  1075. /////////////////////////////////////////////////////////////////////////
  1076. //
  1077. // MessageId: NS_E_MONITOR_GIVEUP
  1078. //
  1079. // MessageText:
  1080. //
  1081. //  Netshow Events Monitor is not operational and has been disconnected.%0
  1082. //
  1083. #define NS_E_MONITOR_GIVEUP              _HRESULT_TYPEDEF_(0xC00D00C8L)
  1084. //
  1085. // MessageId: NS_E_REMIRRORED_DISK
  1086. //
  1087. // MessageText:
  1088. //
  1089. //  Disk %1 is remirrored.%0
  1090. //
  1091. #define NS_E_REMIRRORED_DISK             _HRESULT_TYPEDEF_(0xC00D00C9L)
  1092. //
  1093. // MessageId: NS_E_INSUFFICIENT_DATA
  1094. //
  1095. // MessageText:
  1096. //
  1097. //  Insufficient data found.%0
  1098. //
  1099. #define NS_E_INSUFFICIENT_DATA           _HRESULT_TYPEDEF_(0xC00D00CAL)
  1100. //
  1101. // MessageId: NS_E_ASSERT
  1102. //
  1103. // MessageText:
  1104. //
  1105. //  %1 failed in file %2 line %3.%0
  1106. //
  1107. #define NS_E_ASSERT                      _HRESULT_TYPEDEF_(0xC00D00CBL)
  1108. //
  1109. // MessageId: NS_E_BAD_ADAPTER_NAME
  1110. //
  1111. // MessageText:
  1112. //
  1113. //  The specified adapter name is invalid.%0
  1114. //
  1115. #define NS_E_BAD_ADAPTER_NAME            _HRESULT_TYPEDEF_(0xC00D00CCL)
  1116. //
  1117. // MessageId: NS_E_NOT_LICENSED
  1118. //
  1119. // MessageText:
  1120. //
  1121. //  The application is not licensed for this feature.%0
  1122. //
  1123. #define NS_E_NOT_LICENSED                _HRESULT_TYPEDEF_(0xC00D00CDL)
  1124. //
  1125. // MessageId: NS_E_NO_SERVER_CONTACT
  1126. //
  1127. // MessageText:
  1128. //
  1129. //  Unable to contact the server.%0
  1130. //
  1131. #define NS_E_NO_SERVER_CONTACT           _HRESULT_TYPEDEF_(0xC00D00CEL)
  1132. //
  1133. // MessageId: NS_E_TOO_MANY_TITLES
  1134. //
  1135. // MessageText:
  1136. //
  1137. //  Maximum number of titles exceeded.%0
  1138. //
  1139. #define NS_E_TOO_MANY_TITLES             _HRESULT_TYPEDEF_(0xC00D00CFL)
  1140. //
  1141. // MessageId: NS_E_TITLE_SIZE_EXCEEDED
  1142. //
  1143. // MessageText:
  1144. //
  1145. //  Maximum size of a title exceeded.%0
  1146. //
  1147. #define NS_E_TITLE_SIZE_EXCEEDED         _HRESULT_TYPEDEF_(0xC00D00D0L)
  1148. //
  1149. // MessageId: NS_E_UDP_DISABLED
  1150. //
  1151. // MessageText:
  1152. //
  1153. //  UDP protocol not enabled. Not trying %1!ls!.%0
  1154. //
  1155. #define NS_E_UDP_DISABLED                _HRESULT_TYPEDEF_(0xC00D00D1L)
  1156. //
  1157. // MessageId: NS_E_TCP_DISABLED
  1158. //
  1159. // MessageText:
  1160. //
  1161. //  TCP protocol not enabled. Not trying %1!ls!.%0
  1162. //
  1163. #define NS_E_TCP_DISABLED                _HRESULT_TYPEDEF_(0xC00D00D2L)
  1164. //
  1165. // MessageId: NS_E_HTTP_DISABLED
  1166. //
  1167. // MessageText:
  1168. //
  1169. //  HTTP protocol not enabled. Not trying %1!ls!.%0
  1170. //
  1171. #define NS_E_HTTP_DISABLED               _HRESULT_TYPEDEF_(0xC00D00D3L)
  1172. //
  1173. // MessageId: NS_E_LICENSE_EXPIRED
  1174. //
  1175. // MessageText:
  1176. //
  1177. //  The product license has expired.%0
  1178. //
  1179. #define NS_E_LICENSE_EXPIRED             _HRESULT_TYPEDEF_(0xC00D00D4L)
  1180. //
  1181. // MessageId: NS_E_TITLE_BITRATE
  1182. //
  1183. // MessageText:
  1184. //
  1185. //  Source file exceeds the per title maximum bitrate. See NetShow Theater documentation for more information.%0
  1186. //
  1187. #define NS_E_TITLE_BITRATE               _HRESULT_TYPEDEF_(0xC00D00D5L)
  1188. //
  1189. // MessageId: NS_E_EMPTY_PROGRAM_NAME
  1190. //
  1191. // MessageText:
  1192. //
  1193. //  The program name cannot be empty.%0
  1194. //
  1195. #define NS_E_EMPTY_PROGRAM_NAME          _HRESULT_TYPEDEF_(0xC00D00D6L)
  1196. //
  1197. // MessageId: NS_E_MISSING_CHANNEL
  1198. //
  1199. // MessageText:
  1200. //
  1201. //  Station %1 does not exist.%0
  1202. //
  1203. #define NS_E_MISSING_CHANNEL             _HRESULT_TYPEDEF_(0xC00D00D7L)
  1204. //
  1205. // MessageId: NS_E_NO_CHANNELS
  1206. //
  1207. // MessageText:
  1208. //
  1209. //  You need to define at least one station before this operation can complete.%0
  1210. //
  1211. #define NS_E_NO_CHANNELS                 _HRESULT_TYPEDEF_(0xC00D00D8L)
  1212. /////////////////////////////////////////////////////////////////////
  1213. // This error message is to replace previous NS_E_INVALID_INDEX which
  1214. // takes an index value for the error message string.  For some application
  1215. // obtain the idex value at reporting error time is very difficult, so we
  1216. // use this string to avoid the problem.
  1217. //////////////////////////////////////////////////////////////////////
  1218. //
  1219. // MessageId: NS_E_INVALID_INDEX2
  1220. //
  1221. // MessageText:
  1222. //
  1223. //  The index specified is invalid.%0
  1224. //
  1225. #define NS_E_INVALID_INDEX2              _HRESULT_TYPEDEF_(0xC00D00D9L)
  1226. /////////////////////////////////////////////////////////////////////////
  1227. //
  1228. // NETSHOW Monitor Events
  1229. //
  1230. // IdRange = 400..599
  1231. //
  1232. // Admin Events:
  1233. //
  1234. // Alerts:
  1235. //
  1236. // Title Server:
  1237. //      %1 is the Title Server name
  1238. //
  1239. // Content Server:
  1240. //      %1 is the Content Server ID
  1241. //      %2 is the Content Server name
  1242. //      %3 is the Peer Content Server name (optional)
  1243. //
  1244. // Disks:
  1245. //      %1 is the Title Server disk ID
  1246. //      %2 is the device name
  1247. //      %3 is the Content Server ID
  1248. //
  1249. /////////////////////////////////////////////////////////////////////////
  1250. //
  1251. // MessageId: NS_E_CUB_FAIL_LINK
  1252. //
  1253. // MessageText:
  1254. //
  1255. //  Content Server %1 (%2) has failed its link to Content Server %3.%0
  1256. //
  1257. #define NS_E_CUB_FAIL_LINK               _HRESULT_TYPEDEF_(0xC00D0190L)
  1258. //
  1259. // MessageId: NS_I_CUB_UNFAIL_LINK
  1260. //
  1261. // MessageText:
  1262. //
  1263. //  Content Server %1 (%2) has established its link to Content Server %3.%0
  1264. //
  1265. #define NS_I_CUB_UNFAIL_LINK             _HRESULT_TYPEDEF_(0x400D0191L)
  1266. //
  1267. // MessageId: NS_E_BAD_CUB_UID
  1268. //
  1269. // MessageText:
  1270. //
  1271. //  Content Server %1 (%2) has incorrect uid %3.%0
  1272. //
  1273. #define NS_E_BAD_CUB_UID                 _HRESULT_TYPEDEF_(0xC00D0192L)
  1274. //
  1275. // MessageId: NS_I_RESTRIPE_START
  1276. //
  1277. // MessageText:
  1278. //
  1279. //  Restripe operation has started.%0
  1280. //
  1281. #define NS_I_RESTRIPE_START              _HRESULT_TYPEDEF_(0x400D0193L)
  1282. //
  1283. // MessageId: NS_I_RESTRIPE_DONE
  1284. //
  1285. // MessageText:
  1286. //
  1287. //  Restripe operation has completed.%0
  1288. //
  1289. #define NS_I_RESTRIPE_DONE               _HRESULT_TYPEDEF_(0x400D0194L)
  1290. //
  1291. // MessageId: NS_E_GLITCH_MODE
  1292. //
  1293. // MessageText:
  1294. //
  1295. //  Server unreliable because multiple components failed.%0
  1296. //
  1297. #define NS_E_GLITCH_MODE                 _HRESULT_TYPEDEF_(0xC00D0195L)
  1298. //
  1299. // MessageId: NS_I_RESTRIPE_DISK_OUT
  1300. //
  1301. // MessageText:
  1302. //
  1303. //  Content disk %1 (%2) on Content Server %3 has been restriped out.%0
  1304. //
  1305. #define NS_I_RESTRIPE_DISK_OUT           _HRESULT_TYPEDEF_(0x400D0196L)
  1306. //
  1307. // MessageId: NS_I_RESTRIPE_CUB_OUT
  1308. //
  1309. // MessageText:
  1310. //
  1311. //  Content server %1 (%2) has been restriped out.%0
  1312. //
  1313. #define NS_I_RESTRIPE_CUB_OUT            _HRESULT_TYPEDEF_(0x400D0197L)
  1314. //
  1315. // MessageId: NS_I_DISK_STOP
  1316. //
  1317. // MessageText:
  1318. //
  1319. //  Disk %1 ( %2 ) on Content Server %3, has been offlined.%0
  1320. //
  1321. #define NS_I_DISK_STOP                   _HRESULT_TYPEDEF_(0x400D0198L)
  1322. //
  1323. // MessageId: NS_I_CATATONIC_FAILURE
  1324. //
  1325. // MessageText:
  1326. //
  1327. //  Disk %1 ( %2 ) on Content Server %3, will be failed because it is catatonic.%0
  1328. //
  1329. #define NS_I_CATATONIC_FAILURE           _HRESULT_TYPEDEF_(0x800D0199L)
  1330. //
  1331. // MessageId: NS_I_CATATONIC_AUTO_UNFAIL
  1332. //
  1333. // MessageText:
  1334. //
  1335. //  Disk %1 ( %2 ) on Content Server %3, auto online from catatonic state.%0
  1336. //
  1337. #define NS_I_CATATONIC_AUTO_UNFAIL       _HRESULT_TYPEDEF_(0x800D019AL)
  1338. //
  1339. // MessageId: NS_E_NO_MEDIA_PROTOCOL
  1340. //
  1341. // MessageText:
  1342. //
  1343. //  Content Server %1 (%2) is unable to communicate with the Media System Network Protocol.%0
  1344. //
  1345. #define NS_E_NO_MEDIA_PROTOCOL           _HRESULT_TYPEDEF_(0xC00D019BL)
  1346. //
  1347. // Advanced Streaming Format (ASF) codes occupy MessageIds 2000-2999
  1348. //
  1349. // See ASFErr.mc for more details - please do not define any symbols
  1350. // in that range in this file.
  1351. //
  1352. /////////////////////////////////////////////////////////////////////////
  1353. //
  1354. // Windows Media SDK Errors
  1355. //
  1356. // IdRange = 3000-3199
  1357. //
  1358. /////////////////////////////////////////////////////////////////////////
  1359. //
  1360. // MessageId: NS_E_INVALID_INPUT_FORMAT
  1361. //
  1362. // MessageText:
  1363. //
  1364. //  The input media format is invalid.%0
  1365. //
  1366. #define NS_E_INVALID_INPUT_FORMAT        _HRESULT_TYPEDEF_(0xC00D0BB8L)
  1367. //
  1368. // MessageId: NS_E_MSAUDIO_NOT_INSTALLED
  1369. //
  1370. // MessageText:
  1371. //
  1372. //  The MSAudio codec is not installed on this system.%0
  1373. //
  1374. #define NS_E_MSAUDIO_NOT_INSTALLED       _HRESULT_TYPEDEF_(0xC00D0BB9L)
  1375. //
  1376. // MessageId: NS_E_UNEXPECTED_MSAUDIO_ERROR
  1377. //
  1378. // MessageText:
  1379. //
  1380. //  An unexpected error occurred with the MSAudio codec.%0
  1381. //
  1382. #define NS_E_UNEXPECTED_MSAUDIO_ERROR    _HRESULT_TYPEDEF_(0xC00D0BBAL)
  1383. //
  1384. // MessageId: NS_E_INVALID_OUTPUT_FORMAT
  1385. //
  1386. // MessageText:
  1387. //
  1388. //  The output media format is invalid.%0
  1389. //
  1390. #define NS_E_INVALID_OUTPUT_FORMAT       _HRESULT_TYPEDEF_(0xC00D0BBBL)
  1391. //
  1392. // MessageId: NS_E_NOT_CONFIGURED
  1393. //
  1394. // MessageText:
  1395. //
  1396. //  The object must be fully configured before audio samples can be processed.%0
  1397. //
  1398. #define NS_E_NOT_CONFIGURED              _HRESULT_TYPEDEF_(0xC00D0BBCL)
  1399. //
  1400. // MessageId: NS_E_PROTECTED_CONTENT
  1401. //
  1402. // MessageText:
  1403. //
  1404. //  You need a license to perform the requested operation on this media file.%0
  1405. //
  1406. #define NS_E_PROTECTED_CONTENT           _HRESULT_TYPEDEF_(0xC00D0BBDL)
  1407. //
  1408. // MessageId: NS_E_LICENSE_REQUIRED
  1409. //
  1410. // MessageText:
  1411. //
  1412. //  You need a license to perform the requested operation on this media file.%0
  1413. //
  1414. #define NS_E_LICENSE_REQUIRED            _HRESULT_TYPEDEF_(0xC00D0BBEL)
  1415. //
  1416. // MessageId: NS_E_TAMPERED_CONTENT
  1417. //
  1418. // MessageText:
  1419. //
  1420. //  This media file is corrupted or invalid. Contact the content provider for a new file.%0
  1421. //
  1422. #define NS_E_TAMPERED_CONTENT            _HRESULT_TYPEDEF_(0xC00D0BBFL)
  1423. //
  1424. // MessageId: NS_E_LICENSE_OUTOFDATE
  1425. //
  1426. // MessageText:
  1427. //
  1428. //  The license for this media file has expired. Get a new license or contact the content provider for further assistance.%0
  1429. //
  1430. #define NS_E_LICENSE_OUTOFDATE           _HRESULT_TYPEDEF_(0xC00D0BC0L)
  1431. //
  1432. // MessageId: NS_E_LICENSE_INCORRECT_RIGHTS
  1433. //
  1434. // MessageText:
  1435. //
  1436. //  You are not allowed to open this file. Contact the content provider for further assistance.%0
  1437. //
  1438. #define NS_E_LICENSE_INCORRECT_RIGHTS    _HRESULT_TYPEDEF_(0xC00D0BC1L)
  1439. //
  1440. // MessageId: NS_E_AUDIO_CODEC_NOT_INSTALLED
  1441. //
  1442. // MessageText:
  1443. //
  1444. //  The requested audio codec is not installed on this system.%0
  1445. //
  1446. #define NS_E_AUDIO_CODEC_NOT_INSTALLED   _HRESULT_TYPEDEF_(0xC00D0BC2L)
  1447. //
  1448. // MessageId: NS_E_AUDIO_CODEC_ERROR
  1449. //
  1450. // MessageText:
  1451. //
  1452. //  An unexpected error occurred with the audio codec.%0
  1453. //
  1454. #define NS_E_AUDIO_CODEC_ERROR           _HRESULT_TYPEDEF_(0xC00D0BC3L)
  1455. //
  1456. // MessageId: NS_E_VIDEO_CODEC_NOT_INSTALLED
  1457. //
  1458. // MessageText:
  1459. //
  1460. //  The requested video codec is not installed on this system.%0
  1461. //
  1462. #define NS_E_VIDEO_CODEC_NOT_INSTALLED   _HRESULT_TYPEDEF_(0xC00D0BC4L)
  1463. //
  1464. // MessageId: NS_E_VIDEO_CODEC_ERROR
  1465. //
  1466. // MessageText:
  1467. //
  1468. //  An unexpected error occurred with the video codec.%0
  1469. //
  1470. #define NS_E_VIDEO_CODEC_ERROR           _HRESULT_TYPEDEF_(0xC00D0BC5L)
  1471. //
  1472. // MessageId: NS_E_INVALIDPROFILE
  1473. //
  1474. // MessageText:
  1475. //
  1476. //  The Profile is invalid.%0
  1477. //
  1478. #define NS_E_INVALIDPROFILE              _HRESULT_TYPEDEF_(0xC00D0BC6L)
  1479. //
  1480. // MessageId: NS_E_INCOMPATIBLE_VERSION
  1481. //
  1482. // MessageText:
  1483. //
  1484. //  A new version of the SDK is needed to play the requested content.%0
  1485. //
  1486. #define NS_E_INCOMPATIBLE_VERSION        _HRESULT_TYPEDEF_(0xC00D0BC7L)
  1487. //
  1488. // MessageId: NS_S_REBUFFERING
  1489. //
  1490. // MessageText:
  1491. //
  1492. //  The requested operation has caused the source to rebuffer.%0
  1493. //
  1494. #define NS_S_REBUFFERING                 _HRESULT_TYPEDEF_(0x000D0BC8L)
  1495. //
  1496. // MessageId: NS_S_DEGRADING_QUALITY
  1497. //
  1498. // MessageText:
  1499. //
  1500. //  The requested operation has caused the source to degrade codec quality.%0
  1501. //
  1502. #define NS_S_DEGRADING_QUALITY           _HRESULT_TYPEDEF_(0x000D0BC9L)
  1503. //
  1504. // MessageId: NS_E_OFFLINE_MODE
  1505. //
  1506. // MessageText:
  1507. //
  1508. //  The requested URL is not available in offline mode.%0
  1509. //
  1510. #define NS_E_OFFLINE_MODE                _HRESULT_TYPEDEF_(0xC00D0BCAL)
  1511. //
  1512. // MessageId: NS_E_NOT_CONNECTED
  1513. //
  1514. // MessageText:
  1515. //
  1516. //  The requested URL cannot be accessed because there is no network connection.%0
  1517. //
  1518. #define NS_E_NOT_CONNECTED               _HRESULT_TYPEDEF_(0xC00D0BCBL)
  1519. //
  1520. // MessageId: NS_E_TOO_MUCH_DATA
  1521. //
  1522. // MessageText:
  1523. //
  1524. //  The encoding process was unable to keep up with the amount of supplied data.%0
  1525. //
  1526. #define NS_E_TOO_MUCH_DATA               _HRESULT_TYPEDEF_(0xC00D0BCCL)
  1527. //
  1528. // MessageId: NS_E_UNSUPPORTED_PROPERTY
  1529. //
  1530. // MessageText:
  1531. //
  1532. //  The given property is not supported.%0
  1533. //
  1534. #define NS_E_UNSUPPORTED_PROPERTY        _HRESULT_TYPEDEF_(0xC00D0BCDL)
  1535. //
  1536. // MessageId: NS_E_8BIT_WAVE_UNSUPPORTED
  1537. //
  1538. // MessageText:
  1539. //
  1540. //  Windows Media Player cannot copy the files to the CD because they are 8-bit. Convert the files to 16-bit, 44-kHz stereo files by using Sound Recorder or another audio-processing program, and then try again.%0
  1541. //
  1542. #define NS_E_8BIT_WAVE_UNSUPPORTED       _HRESULT_TYPEDEF_(0xC00D0BCEL)
  1543. //
  1544. // MessageId: NS_E_NO_MORE_SAMPLES
  1545. //
  1546. // MessageText:
  1547. //
  1548. //  There are no more samples in the current range.%0
  1549. //
  1550. #define NS_E_NO_MORE_SAMPLES             _HRESULT_TYPEDEF_(0xC00D0BCFL)
  1551. //
  1552. // MessageId: NS_E_INVALID_SAMPLING_RATE
  1553. //
  1554. // MessageText:
  1555. //
  1556. //  The given sampling rate is invalid.%0
  1557. //
  1558. #define NS_E_INVALID_SAMPLING_RATE       _HRESULT_TYPEDEF_(0xC00D0BD0L)
  1559. //
  1560. // MessageId: NS_E_MAX_PACKET_SIZE_TOO_SMALL
  1561. //
  1562. // MessageText:
  1563. //
  1564. //  The given maximum packet size is too small to accommodate this profile
  1565. //
  1566. #define NS_E_MAX_PACKET_SIZE_TOO_SMALL   _HRESULT_TYPEDEF_(0xC00D0BD1L)
  1567. //
  1568. // MessageId: NS_E_LATE_PACKET
  1569. //
  1570. // MessageText:
  1571. //
  1572. //  The packet arrived too late to be of use
  1573. //
  1574. #define NS_E_LATE_PACKET                 _HRESULT_TYPEDEF_(0xC00D0BD2L)
  1575. //
  1576. // MessageId: NS_E_DUPLICATE_PACKET
  1577. //
  1578. // MessageText:
  1579. //
  1580. //  The packet is a duplicate of one received before
  1581. //
  1582. #define NS_E_DUPLICATE_PACKET            _HRESULT_TYPEDEF_(0xC00D0BD3L)
  1583. //
  1584. // MessageId: NS_E_SDK_BUFFERTOOSMALL
  1585. //
  1586. // MessageText:
  1587. //
  1588. //  Supplied buffer is too small
  1589. //
  1590. #define NS_E_SDK_BUFFERTOOSMALL          _HRESULT_TYPEDEF_(0xC00D0BD4L)
  1591. //
  1592. // MessageId: NS_E_INVALID_NUM_PASSES
  1593. //
  1594. // MessageText:
  1595. //
  1596. //  The wrong number of preprocessing passes was used for the stream's output type
  1597. //
  1598. #define NS_E_INVALID_NUM_PASSES          _HRESULT_TYPEDEF_(0xC00D0BD5L)
  1599. //
  1600. // MessageId: NS_E_ATTRIBUTE_READ_ONLY
  1601. //
  1602. // MessageText:
  1603. //
  1604. //  An attempt was made to add, modify, or delete a read only attribute
  1605. //
  1606. #define NS_E_ATTRIBUTE_READ_ONLY         _HRESULT_TYPEDEF_(0xC00D0BD6L)
  1607. //
  1608. // MessageId: NS_E_ATTRIBUTE_NOT_ALLOWED
  1609. //
  1610. // MessageText:
  1611. //
  1612. //  An attempt was made to add attribute that is not allowed for the given media type
  1613. //
  1614. #define NS_E_ATTRIBUTE_NOT_ALLOWED       _HRESULT_TYPEDEF_(0xC00D0BD7L)
  1615. //
  1616. // MessageId: NS_E_INVALID_EDL
  1617. //
  1618. // MessageText:
  1619. //
  1620. //  The EDL provided is invalid
  1621. //
  1622. #define NS_E_INVALID_EDL                 _HRESULT_TYPEDEF_(0xC00D0BD8L)
  1623. //
  1624. // MessageId: NS_E_DATA_UNIT_EXTENSION_TOO_LARGE
  1625. //
  1626. // MessageText:
  1627. //
  1628. //  The Data Unit Extension data was too large to be used.%0
  1629. //
  1630. #define NS_E_DATA_UNIT_EXTENSION_TOO_LARGE _HRESULT_TYPEDEF_(0xC00D0BD9L)
  1631. //
  1632. // MessageId: NS_E_CODEC_DMO_ERROR
  1633. //
  1634. // MessageText:
  1635. //
  1636. //  An unexpected error occurred with a DMO codec.%0
  1637. //
  1638. #define NS_E_CODEC_DMO_ERROR             _HRESULT_TYPEDEF_(0xC00D0BDAL)
  1639. /////////////////////////////////////////////////////////////////////////
  1640. //
  1641. // Windows Media Player Errors
  1642. //
  1643. // IdRange = 4000 - 4999
  1644. //
  1645. /////////////////////////////////////////////////////////////////////////
  1646. //
  1647. // WMP CD Filter Error codes
  1648. //
  1649. //
  1650. // MessageId: NS_E_NO_CD
  1651. //
  1652. // MessageText:
  1653. //
  1654. //  There is no CD in the CD-ROM drive. Insert a CD, and try again.%0
  1655. //
  1656. #define NS_E_NO_CD                       _HRESULT_TYPEDEF_(0xC00D0FA0L)
  1657. //
  1658. // MessageId: NS_E_CANT_READ_DIGITAL
  1659. //
  1660. // MessageText:
  1661. //
  1662. //  Unable to perform digital reads on this compact disc drive.  Please try analog playback via the Tools Options menu.%0
  1663. //
  1664. #define NS_E_CANT_READ_DIGITAL           _HRESULT_TYPEDEF_(0xC00D0FA1L)
  1665. //
  1666. // MessageId: NS_E_DEVICE_DISCONNECTED
  1667. //
  1668. // MessageText:
  1669. //
  1670. //  Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and then try copying the file again.%0
  1671. //
  1672. #define NS_E_DEVICE_DISCONNECTED         _HRESULT_TYPEDEF_(0xC00D0FA2L)
  1673. //
  1674. // MessageId: NS_E_DEVICE_NOT_SUPPORT_FORMAT
  1675. //
  1676. // MessageText:
  1677. //
  1678. //  Windows Media Player cannot play the file. The portable device does not support the specified format.%0
  1679. //
  1680. #define NS_E_DEVICE_NOT_SUPPORT_FORMAT   _HRESULT_TYPEDEF_(0xC00D0FA3L)
  1681. //
  1682. // MessageId: NS_E_SLOW_READ_DIGITAL
  1683. //
  1684. // MessageText:
  1685. //
  1686. //  Windows Media Player encountered a problem while attempting to play the CD using digital playback. The Player has automatically switched the CD-ROM drive to analog playback. To switch back to digital CD playback, use the Devices tab.%0
  1687. //
  1688. #define NS_E_SLOW_READ_DIGITAL           _HRESULT_TYPEDEF_(0xC00D0FA4L)
  1689. //
  1690. // MessageId: NS_E_MIXER_INVALID_LINE
  1691. //
  1692. // MessageText:
  1693. //
  1694. //  An invalid line error occurred in the mixer.%0
  1695. //
  1696. #define NS_E_MIXER_INVALID_LINE          _HRESULT_TYPEDEF_(0xC00D0FA5L)
  1697. //
  1698. // MessageId: NS_E_MIXER_INVALID_CONTROL
  1699. //
  1700. // MessageText:
  1701. //
  1702. //  An invalid control error occurred in the mixer.%0
  1703. //
  1704. #define NS_E_MIXER_INVALID_CONTROL       _HRESULT_TYPEDEF_(0xC00D0FA6L)
  1705. //
  1706. // MessageId: NS_E_MIXER_INVALID_VALUE
  1707. //
  1708. // MessageText:
  1709. //
  1710. //  An invalid value error occurred in the mixer.%0
  1711. //
  1712. #define NS_E_MIXER_INVALID_VALUE         _HRESULT_TYPEDEF_(0xC00D0FA7L)
  1713. //
  1714. // MessageId: NS_E_MIXER_UNKNOWN_MMRESULT
  1715. //
  1716. // MessageText:
  1717. //
  1718. //  An unrecognized MMRESULT occurred in the mixer.%0
  1719. //
  1720. #define NS_E_MIXER_UNKNOWN_MMRESULT      _HRESULT_TYPEDEF_(0xC00D0FA8L)
  1721. //
  1722. // MessageId: NS_E_USER_STOP
  1723. //
  1724. // MessageText:
  1725. //
  1726. //  User has stopped the operation.%0
  1727. //
  1728. #define NS_E_USER_STOP                   _HRESULT_TYPEDEF_(0xC00D0FA9L)
  1729. //
  1730. // MessageId: NS_E_MP3_FORMAT_NOT_FOUND
  1731. //
  1732. // MessageText:
  1733. //
  1734. //  Windows Media Player cannot copy the file because a compatible MP3 encoder is not installed on your computer. Install a compatible MP3 encoder, or choose a different format to copy to (such as Windows Media Audio).%0
  1735. //
  1736. #define NS_E_MP3_FORMAT_NOT_FOUND        _HRESULT_TYPEDEF_(0xC00D0FAAL)
  1737. //
  1738. // MessageId: NS_E_CD_READ_ERROR_NO_CORRECTION
  1739. //
  1740. // MessageText:
  1741. //
  1742. //  Windows Media Player cannot read the CD. It may contain flaws. Turn on error correction and try again.%0
  1743. //
  1744. #define NS_E_CD_READ_ERROR_NO_CORRECTION _HRESULT_TYPEDEF_(0xC00D0FABL)
  1745. //
  1746. // MessageId: NS_E_CD_READ_ERROR
  1747. //
  1748. // MessageText:
  1749. //
  1750. //  Windows Media Player cannot read the CD. Be sure the CD is free of dirt and scratches and the CD-ROM drive is functioning properly.%0
  1751. //
  1752. #define NS_E_CD_READ_ERROR               _HRESULT_TYPEDEF_(0xC00D0FACL)
  1753. //
  1754. // MessageId: NS_E_CD_SLOW_COPY
  1755. //
  1756. // MessageText:
  1757. //
  1758. //  To speed up the copy process, do not play CD tracks while copying.%0
  1759. //
  1760. #define NS_E_CD_SLOW_COPY                _HRESULT_TYPEDEF_(0xC00D0FADL)
  1761. //
  1762. // MessageId: NS_E_CD_COPYTO_CD
  1763. //
  1764. // MessageText:
  1765. //
  1766. //  Cannot copy directly from a CDROM to a CD drive.%0
  1767. //
  1768. #define NS_E_CD_COPYTO_CD                _HRESULT_TYPEDEF_(0xC00D0FAEL)
  1769. //
  1770. // MessageId: NS_E_MIXER_NODRIVER
  1771. //
  1772. // MessageText:
  1773. //
  1774. //  Could not open a sound mixer driver.%0
  1775. //
  1776. #define NS_E_MIXER_NODRIVER              _HRESULT_TYPEDEF_(0xC00D0FAFL)
  1777. //
  1778. // MessageId: NS_E_REDBOOK_ENABLED_WHILE_COPYING
  1779. //
  1780. // MessageText:
  1781. //
  1782. //  Windows Media Player has detected that a setting for the CD-ROM drive will cause audio CDs to copy incorrectly; no audio is copied. Change the CD-ROM drive setting in Device Manager, and then try again.%0
  1783. //
  1784. #define NS_E_REDBOOK_ENABLED_WHILE_COPYING _HRESULT_TYPEDEF_(0xC00D0FB0L)
  1785. //
  1786. // MessageId: NS_E_CD_REFRESH
  1787. //
  1788. // MessageText:
  1789. //
  1790. //  Trying to refresh the CD playlist.%0
  1791. //
  1792. #define NS_E_CD_REFRESH                  _HRESULT_TYPEDEF_(0xC00D0FB1L)
  1793. //
  1794. // MessageId: NS_E_CD_DRIVER_PROBLEM
  1795. //
  1796. // MessageText:
  1797. //
  1798. //  Windows Media Player must switch to analog  mode  because there is a problem reading the CD-ROM drive in digital mode. Verify that the CD-ROM drive is installed correctly or try to update the drivers for the CD-ROM drive, and then try to use digital mode again.%0
  1799. //
  1800. #define NS_E_CD_DRIVER_PROBLEM           _HRESULT_TYPEDEF_(0xC00D0FB2L)
  1801. //
  1802. // MessageId: NS_E_WONT_DO_DIGITAL
  1803. //
  1804. // MessageText:
  1805. //
  1806. //  Windows Media Player must switch to analog mode because there is a problem reading the CD-ROM drive  in digital mode.%0
  1807. //
  1808. #define NS_E_WONT_DO_DIGITAL             _HRESULT_TYPEDEF_(0xC00D0FB3L)
  1809. //
  1810. // WMP IWMPXMLParser Error codes
  1811. //
  1812. //
  1813. // MessageId: NS_E_WMPXML_NOERROR
  1814. //
  1815. // MessageText:
  1816. //
  1817. //  A call was made to GetParseError on the XML parser but there was no error to retrieve.%0
  1818. //
  1819. #define NS_E_WMPXML_NOERROR              _HRESULT_TYPEDEF_(0xC00D0FB4L)
  1820. //
  1821. // MessageId: NS_E_WMPXML_ENDOFDATA
  1822. //
  1823. // MessageText:
  1824. //
  1825. //  The XML Parser ran out of data while parsing.%0
  1826. //
  1827. #define NS_E_WMPXML_ENDOFDATA            _HRESULT_TYPEDEF_(0xC00D0FB5L)
  1828. //
  1829. // MessageId: NS_E_WMPXML_PARSEERROR
  1830. //
  1831. // MessageText:
  1832. //
  1833. //  A generic parse error occurred in the XML parser but no information is available.%0
  1834. //
  1835. #define NS_E_WMPXML_PARSEERROR           _HRESULT_TYPEDEF_(0xC00D0FB6L)
  1836. //
  1837. // MessageId: NS_E_WMPXML_ATTRIBUTENOTFOUND
  1838. //
  1839. // MessageText:
  1840. //
  1841. //  A call get GetNamedAttribute or GetNamedAttributeIndex on the XML parser resulted in the index not being found.%0
  1842. //
  1843. #define NS_E_WMPXML_ATTRIBUTENOTFOUND    _HRESULT_TYPEDEF_(0xC00D0FB7L)
  1844. //
  1845. // MessageId: NS_E_WMPXML_PINOTFOUND
  1846. //
  1847. // MessageText:
  1848. //
  1849. //  A call was made go GetNamedPI on the XML parser, but the requested Processing Instruction was not found.%0
  1850. //
  1851. #define NS_E_WMPXML_PINOTFOUND           _HRESULT_TYPEDEF_(0xC00D0FB8L)
  1852. //
  1853. // MessageId: NS_E_WMPXML_EMPTYDOC
  1854. //
  1855. // MessageText:
  1856. //
  1857. //  Persist was called on the XML parser, but the parser has no data to persist.%0
  1858. //
  1859. #define NS_E_WMPXML_EMPTYDOC             _HRESULT_TYPEDEF_(0xC00D0FB9L)
  1860. //
  1861. // Miscellaneous Media Player Error codes
  1862. //
  1863. //
  1864. // MessageId: NS_E_WMP_WINDOWSAPIFAILURE
  1865. //
  1866. // MessageText:
  1867. //
  1868. //  A Windows API call failed but no error information was available.%0
  1869. //
  1870. #define NS_E_WMP_WINDOWSAPIFAILURE       _HRESULT_TYPEDEF_(0xC00D0FC8L)
  1871. //
  1872. // MessageId: NS_E_WMP_RECORDING_NOT_ALLOWED
  1873. //
  1874. // MessageText:
  1875. //
  1876. //  Windows Media Player cannot copy the file. Either the license restricts copying, or you must obtain a license to copy the file.%0
  1877. //
  1878. #define NS_E_WMP_RECORDING_NOT_ALLOWED   _HRESULT_TYPEDEF_(0xC00D0FC9L)
  1879. //
  1880. // MessageId: NS_E_DEVICE_NOT_READY
  1881. //
  1882. // MessageText:
  1883. //
  1884. //  Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and try again.%0
  1885. //
  1886. #define NS_E_DEVICE_NOT_READY            _HRESULT_TYPEDEF_(0xC00D0FCAL)
  1887. //
  1888. // MessageId: NS_E_DAMAGED_FILE
  1889. //
  1890. // MessageText:
  1891. //
  1892. //  Windows Media Player cannot play the file because it is either damaged or corrupt.%0
  1893. //
  1894. #define NS_E_DAMAGED_FILE                _HRESULT_TYPEDEF_(0xC00D0FCBL)
  1895. //
  1896. // MessageId: NS_E_MPDB_GENERIC
  1897. //
  1898. // MessageText:
  1899. //
  1900. //  An error occurred when the Player was attempting to access information in your media library. Try closing and then reopening the Player.%0
  1901. //
  1902. #define NS_E_MPDB_GENERIC                _HRESULT_TYPEDEF_(0xC00D0FCCL)
  1903. //
  1904. // MessageId: NS_E_FILE_FAILED_CHECKS
  1905. //
  1906. // MessageText:
  1907. //
  1908. //  The file cannot be added to Media Library because it is smaller than the minimum-size requirement. Adjust the size requirements, and then try again.%0
  1909. //
  1910. #define NS_E_FILE_FAILED_CHECKS          _HRESULT_TYPEDEF_(0xC00D0FCDL)
  1911. //
  1912. // MessageId: NS_E_MEDIA_LIBRARY_FAILED
  1913. //
  1914. // MessageText:
  1915. //
  1916. //  Windows Media Player could not create Media Library. Check with your system administrator to get the necessary permissions to create Media Library on your computer, and then try installing the Player again.%0
  1917. //
  1918. #define NS_E_MEDIA_LIBRARY_FAILED        _HRESULT_TYPEDEF_(0xC00D0FCEL)
  1919. //
  1920. // MessageId: NS_E_SHARING_VIOLATION
  1921. //
  1922. // MessageText:
  1923. //
  1924. //  The file is already in use. Close other programs that may be using the file, or stop playing the file, and try again.%0
  1925. //
  1926. #define NS_E_SHARING_VIOLATION           _HRESULT_TYPEDEF_(0xC00D0FCFL)
  1927. //
  1928. // MessageId: NS_E_NO_ERROR_STRING_FOUND
  1929. //
  1930. // MessageText:
  1931. //
  1932. //  Windows Media Player has encountered an unknown error.%0
  1933. //
  1934. #define NS_E_NO_ERROR_STRING_FOUND       _HRESULT_TYPEDEF_(0xC00D0FD0L)
  1935. //
  1936. // MessageId: NS_E_WMPOCX_NO_REMOTE_CORE
  1937. //
  1938. // MessageText:
  1939. //
  1940. //  The Windows Media Player control was unable to connect to remote media services, but will continue with local media services.%0
  1941. //
  1942. #define NS_E_WMPOCX_NO_REMOTE_CORE       _HRESULT_TYPEDEF_(0xC00D0FD1L)
  1943. //
  1944. // MessageId: NS_E_WMPOCX_NO_ACTIVE_CORE
  1945. //
  1946. // MessageText:
  1947. //
  1948. //  The requested method or property is not available because the Windows Media Player control has not been properly activated.%0
  1949. //
  1950. #define NS_E_WMPOCX_NO_ACTIVE_CORE       _HRESULT_TYPEDEF_(0xC00D0FD2L)
  1951. //
  1952. // MessageId: NS_E_WMPOCX_NOT_RUNNING_REMOTELY
  1953. //
  1954. // MessageText:
  1955. //
  1956. //  Windows Media Player ActiveX control is not running in remote mode.%0
  1957. //
  1958. #define NS_E_WMPOCX_NOT_RUNNING_REMOTELY _HRESULT_TYPEDEF_(0xC00D0FD3L)
  1959. //
  1960. // MessageId: NS_E_WMPOCX_NO_REMOTE_WINDOW
  1961. //
  1962. // MessageText:
  1963. //
  1964. //  An error occurred when trying to get remote Windows Media Player window.%0
  1965. //
  1966. #define NS_E_WMPOCX_NO_REMOTE_WINDOW     _HRESULT_TYPEDEF_(0xC00D0FD4L)
  1967. //
  1968. // MessageId: NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE
  1969. //
  1970. // MessageText:
  1971. //
  1972. //  Windows Media Player has encountered an unknown error.%0
  1973. //
  1974. #define NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE _HRESULT_TYPEDEF_(0xC00D0FD5L)
  1975. //
  1976. // MessageId: NS_E_PLUGIN_NOTSHUTDOWN
  1977. //
  1978. // MessageText:
  1979. //
  1980. //  Windows Media Player was not closed properly. A damaged or incompatible plug-in may have caused the problem to occur. As a precaution, all third-party plug-ins have been disabled.%0
  1981. //
  1982. #define NS_E_PLUGIN_NOTSHUTDOWN          _HRESULT_TYPEDEF_(0xC00D0FD6L)
  1983. //
  1984. // MessageId: NS_E_WMP_CANNOT_FIND_FOLDER
  1985. //
  1986. // MessageText:
  1987. //
  1988. //  Windows Media Player cannot find the specified path. Be sure the path is typed correctly. If it is, the path does not exist in the specified location, or the computer where the path is located is offline.%0
  1989. //
  1990. #define NS_E_WMP_CANNOT_FIND_FOLDER      _HRESULT_TYPEDEF_(0xC00D0FD7L)
  1991. //
  1992. // MessageId: NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED
  1993. //
  1994. // MessageText:
  1995. //
  1996. //  Windows Media Player cannot copy streaming media.%0
  1997. //
  1998. #define NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D0FD8L)
  1999. //
  2000. // MessageId: NS_E_WMP_PLUGINDLL_NOTFOUND
  2001. //
  2002. // MessageText:
  2003. //
  2004. //  Windows Media Player cannot find the selected plug-in. The Player will try to remove it from the menu. To use this plug-in, install it again.%0
  2005. //
  2006. #define NS_E_WMP_PLUGINDLL_NOTFOUND      _HRESULT_TYPEDEF_(0xC00D0FD9L)
  2007. //
  2008. // MessageId: NS_E_NEED_TO_ASK_USER
  2009. //
  2010. // MessageText:
  2011. //
  2012. //  Action requires input from the user.%0
  2013. //
  2014. #define NS_E_NEED_TO_ASK_USER            _HRESULT_TYPEDEF_(0xC00D0FDAL)
  2015. //
  2016. // MessageId: NS_E_WMPOCX_PLAYER_NOT_DOCKED
  2017. //
  2018. // MessageText:
  2019. //
  2020. //  The Windows Media Player control must be in a docked state for this action to succeed.%0
  2021. //
  2022. #define NS_E_WMPOCX_PLAYER_NOT_DOCKED    _HRESULT_TYPEDEF_(0xC00D0FDBL)
  2023. //
  2024. // MessageId: NS_E_WMP_EXTERNAL_NOTREADY
  2025. //
  2026. // MessageText:
  2027. //
  2028. //  Media Player external object is not ready.%0
  2029. //
  2030. #define NS_E_WMP_EXTERNAL_NOTREADY       _HRESULT_TYPEDEF_(0xC00D0FDCL)
  2031. //
  2032. // MessageId: NS_E_WMP_MLS_STALE_DATA
  2033. //
  2034. // MessageText:
  2035. //
  2036. //  Metadata is stale. The operation failed.%0
  2037. //
  2038. #define NS_E_WMP_MLS_STALE_DATA          _HRESULT_TYPEDEF_(0xC00D0FDDL)    
  2039. //
  2040. // Generic Media PlayerUI error codes
  2041. //
  2042. //
  2043. // MessageId: NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED
  2044. //
  2045. // MessageText:
  2046. //
  2047. //  The control (%s) does not support creation of sub-controls, yet (%d) sub-controls have been specified.%0
  2048. //
  2049. #define NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED _HRESULT_TYPEDEF_(0xC00D0FDEL)
  2050. //
  2051. // MessageId: NS_E_WMP_UI_VERSIONMISMATCH
  2052. //
  2053. // MessageText:
  2054. //
  2055. //  Version mismatch: (%.1f required, %.1f found).%0
  2056. //
  2057. #define NS_E_WMP_UI_VERSIONMISMATCH      _HRESULT_TYPEDEF_(0xC00D0FDFL)
  2058. //
  2059. // MessageId: NS_E_WMP_UI_NOTATHEMEFILE
  2060. //
  2061. // MessageText:
  2062. //
  2063. //  The layout manager was given valid XML that wasn't a theme file.%0
  2064. //
  2065. #define NS_E_WMP_UI_NOTATHEMEFILE        _HRESULT_TYPEDEF_(0xC00D0FE0L)
  2066. //
  2067. // MessageId: NS_E_WMP_UI_SUBELEMENTNOTFOUND
  2068. //
  2069. // MessageText:
  2070. //
  2071. //  The %s subelement could not be found on the %s object.%0
  2072. //
  2073. #define NS_E_WMP_UI_SUBELEMENTNOTFOUND   _HRESULT_TYPEDEF_(0xC00D0FE1L)
  2074. //
  2075. // MessageId: NS_E_WMP_UI_VERSIONPARSE
  2076. //
  2077. // MessageText:
  2078. //
  2079. //  An error occurred parsing the version tag.nValid version tags are of the form:nnt<?wmp version='1.0'?>.%0
  2080. //
  2081. #define NS_E_WMP_UI_VERSIONPARSE         _HRESULT_TYPEDEF_(0xC00D0FE2L)
  2082. //
  2083. // MessageId: NS_E_WMP_UI_VIEWIDNOTFOUND
  2084. //
  2085. // MessageText:
  2086. //
  2087. //  The view specified in for the 'currentViewID' property (%s) was not found in this theme file.%0
  2088. //
  2089. #define NS_E_WMP_UI_VIEWIDNOTFOUND       _HRESULT_TYPEDEF_(0xC00D0FE3L)
  2090. //
  2091. // MessageId: NS_E_WMP_UI_PASSTHROUGH
  2092. //
  2093. // MessageText:
  2094. //
  2095. //  This error used internally for hit testing.%0
  2096. //
  2097. #define NS_E_WMP_UI_PASSTHROUGH          _HRESULT_TYPEDEF_(0xC00D0FE4L)
  2098. //
  2099. // MessageId: NS_E_WMP_UI_OBJECTNOTFOUND
  2100. //
  2101. // MessageText:
  2102. //
  2103. //  Attributes were specified for the %s object, but the object was not available to send them to.%0
  2104. //
  2105. #define NS_E_WMP_UI_OBJECTNOTFOUND       _HRESULT_TYPEDEF_(0xC00D0FE5L)
  2106. //
  2107. // MessageId: NS_E_WMP_UI_SECONDHANDLER
  2108. //
  2109. // MessageText:
  2110. //
  2111. //  The %s event already has a handler, the second handler was ignored.%0
  2112. //
  2113. #define NS_E_WMP_UI_SECONDHANDLER        _HRESULT_TYPEDEF_(0xC00D0FE6L)
  2114. //
  2115. // MessageId: NS_E_WMP_UI_NOSKININZIP
  2116. //
  2117. // MessageText:
  2118. //
  2119. //  No .wms file found in skin archive.%0
  2120. //
  2121. #define NS_E_WMP_UI_NOSKININZIP          _HRESULT_TYPEDEF_(0xC00D0FE7L)
  2122. //
  2123. // MessageId: NS_S_WMP_UI_VERSIONMISMATCH
  2124. //
  2125. // MessageText:
  2126. //
  2127. //  An upgrade may be needed for the theme manager to correctly show this skin. Skin reports version: %.1f.%0
  2128. //
  2129. #define NS_S_WMP_UI_VERSIONMISMATCH      _HRESULT_TYPEDEF_(0x000D0FE8L)
  2130. //
  2131. // MessageId: NS_S_WMP_EXCEPTION
  2132. //
  2133. // MessageText:
  2134. //
  2135. //  An error occurred in one of the UI components.%0
  2136. //
  2137. #define NS_S_WMP_EXCEPTION               _HRESULT_TYPEDEF_(0x000D0FE9L)
  2138. //
  2139. // MessageId: NS_E_WMP_URLDOWNLOADFAILED
  2140. //
  2141. // MessageText:
  2142. //
  2143. //  Windows Media Player cannot save the file.%0
  2144. //
  2145. #define NS_E_WMP_URLDOWNLOADFAILED       _HRESULT_TYPEDEF_(0xC00D0FEAL)
  2146. //
  2147. // MessageId: NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN
  2148. //
  2149. // MessageText:
  2150. //
  2151. //  The Windows Media Player Control was unable to load the requested uiMode and could not successfully roll back to the existing uiMode.%0
  2152. //
  2153. #define NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN  _HRESULT_TYPEDEF_(0xC00D0FEBL)
  2154. //
  2155. // MessageId: NS_E_WMP_INVALID_SKIN
  2156. //
  2157. // MessageText:
  2158. //
  2159. //  The skin file is invalid.%0
  2160. //
  2161. #define NS_E_WMP_INVALID_SKIN            _HRESULT_TYPEDEF_(0xC00D0FECL)
  2162. //
  2163. // MessageId: NS_E_WMP_SENDMAILFAILED
  2164. //
  2165. // MessageText:
  2166. //
  2167. //  Windows Media Player cannot send the link because your e-mail program is not responding. Verify that your e-mail program is configured properly, and then try again. For more information about e-mail, see Windows Help%0
  2168. //
  2169. #define NS_E_WMP_SENDMAILFAILED          _HRESULT_TYPEDEF_(0xC00D0FEDL)
  2170. //Save As
  2171. //
  2172. // MessageId: NS_E_WMP_SAVEAS_READONLY
  2173. //
  2174. // MessageText:
  2175. //
  2176. //  The Windows Media Player cannot overwrite a read only file. Choose another file to save as or change the file attributes.%0
  2177. //
  2178. #define NS_E_WMP_SAVEAS_READONLY         _HRESULT_TYPEDEF_(0xC00D0FF0L)
  2179. //
  2180. // WMP Regional button control
  2181. //
  2182. //
  2183. // MessageId: NS_E_WMP_RBC_JPGMAPPINGIMAGE
  2184. //
  2185. // MessageText:
  2186. //
  2187. //  JPG Images are not recommended for use as a mappingImage.%0
  2188. //
  2189. #define NS_E_WMP_RBC_JPGMAPPINGIMAGE     _HRESULT_TYPEDEF_(0xC00D1004L)
  2190. //
  2191. // MessageId: NS_E_WMP_JPGTRANSPARENCY
  2192. //
  2193. // MessageText:
  2194. //
  2195. //  JPG Images are not recommended when using a transparencyColor.%0
  2196. //
  2197. #define NS_E_WMP_JPGTRANSPARENCY         _HRESULT_TYPEDEF_(0xC00D1005L)
  2198. //
  2199. // WMP Slider control
  2200. //
  2201. //
  2202. // MessageId: NS_E_WMP_INVALID_MAX_VAL
  2203. //
  2204. // MessageText:
  2205. //
  2206. //  The Max property cannot be less than Min property.%0
  2207. //
  2208. #define NS_E_WMP_INVALID_MAX_VAL         _HRESULT_TYPEDEF_(0xC00D1009L)
  2209. //
  2210. // MessageId: NS_E_WMP_INVALID_MIN_VAL
  2211. //
  2212. // MessageText:
  2213. //
  2214. //  The Min property cannot be greater than Max property.%0
  2215. //
  2216. #define NS_E_WMP_INVALID_MIN_VAL         _HRESULT_TYPEDEF_(0xC00D100AL)
  2217. //
  2218. // WMP CustomSlider control
  2219. //
  2220. //
  2221. // MessageId: NS_E_WMP_CS_JPGPOSITIONIMAGE
  2222. //
  2223. // MessageText:
  2224. //
  2225. //  JPG Images are not recommended for use as a positionImage.%0
  2226. //
  2227. #define NS_E_WMP_CS_JPGPOSITIONIMAGE     _HRESULT_TYPEDEF_(0xC00D100EL)
  2228. //
  2229. // MessageId: NS_E_WMP_CS_NOTEVENLYDIVISIBLE
  2230. //
  2231. // MessageText:
  2232. //
  2233. //  The (%s) image's size is not evenly divisible by the positionImage's size.%0
  2234. //
  2235. #define NS_E_WMP_CS_NOTEVENLYDIVISIBLE   _HRESULT_TYPEDEF_(0xC00D100FL)
  2236. //
  2237. // WMP ZIP Decoder
  2238. //
  2239. //
  2240. // MessageId: NS_E_WMPZIP_NOTAZIPFILE
  2241. //
  2242. // MessageText:
  2243. //
  2244. //  The ZIP reader opened a file and its signature didn't match that of ZIP files.%0
  2245. //
  2246. #define NS_E_WMPZIP_NOTAZIPFILE          _HRESULT_TYPEDEF_(0xC00D1018L)
  2247. //
  2248. // MessageId: NS_E_WMPZIP_CORRUPT
  2249. //
  2250. // MessageText:
  2251. //
  2252. //  The ZIP reader has detected that the file is corrupt.%0
  2253. //
  2254. #define NS_E_WMPZIP_CORRUPT              _HRESULT_TYPEDEF_(0xC00D1019L)
  2255. //
  2256. // MessageId: NS_E_WMPZIP_FILENOTFOUND
  2257. //
  2258. // MessageText:
  2259. //
  2260. //  GetFileStream, SaveToFile, or SaveTemp file was called on the ZIP reader with a filename that was not found in the zip file.%0
  2261. //
  2262. #define NS_E_WMPZIP_FILENOTFOUND         _HRESULT_TYPEDEF_(0xC00D101AL)
  2263. //
  2264. // WMP Image Decoding Error codes
  2265. //
  2266. //
  2267. // MessageId: NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED
  2268. //
  2269. // MessageText:
  2270. //
  2271. //  Image type not supported.%0
  2272. //
  2273. #define NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D1022L)
  2274. //
  2275. // MessageId: NS_E_WMP_IMAGE_INVALID_FORMAT
  2276. //
  2277. // MessageText:
  2278. //
  2279. //  Image file may be corrupt.%0
  2280. //
  2281. #define NS_E_WMP_IMAGE_INVALID_FORMAT    _HRESULT_TYPEDEF_(0xC00D1023L)
  2282. //
  2283. // MessageId: NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE
  2284. //
  2285. // MessageText:
  2286. //
  2287. //  Unexpected end of file. GIF file may be corrupt.%0
  2288. //
  2289. #define NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE _HRESULT_TYPEDEF_(0xC00D1024L)
  2290. //
  2291. // MessageId: NS_E_WMP_GIF_INVALID_FORMAT
  2292. //
  2293. // MessageText:
  2294. //
  2295. //  Invalid GIF file.%0
  2296. //
  2297. #define NS_E_WMP_GIF_INVALID_FORMAT      _HRESULT_TYPEDEF_(0xC00D1025L)
  2298. //
  2299. // MessageId: NS_E_WMP_GIF_BAD_VERSION_NUMBER
  2300. //
  2301. // MessageText:
  2302. //
  2303. //  Invalid GIF version. Only 87a or 89a supported.%0
  2304. //
  2305. #define NS_E_WMP_GIF_BAD_VERSION_NUMBER  _HRESULT_TYPEDEF_(0xC00D1026L)
  2306. //
  2307. // MessageId: NS_E_WMP_GIF_NO_IMAGE_IN_FILE
  2308. //
  2309. // MessageText:
  2310. //
  2311. //  No images found in GIF file.%0
  2312. //
  2313. #define NS_E_WMP_GIF_NO_IMAGE_IN_FILE    _HRESULT_TYPEDEF_(0xC00D1027L)
  2314. //
  2315. // MessageId: NS_E_WMP_PNG_INVALIDFORMAT
  2316. //
  2317. // MessageText:
  2318. //
  2319. //  Invalid PNG image file format.%0
  2320. //
  2321. #define NS_E_WMP_PNG_INVALIDFORMAT       _HRESULT_TYPEDEF_(0xC00D1028L)
  2322. //
  2323. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH
  2324. //
  2325. // MessageText:
  2326. //
  2327. //  PNG bitdepth not supported.%0
  2328. //
  2329. #define NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH _HRESULT_TYPEDEF_(0xC00D1029L)
  2330. //
  2331. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION
  2332. //
  2333. // MessageText:
  2334. //
  2335. //  Compression format defined in PNG file not supported,%0
  2336. //
  2337. #define NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION _HRESULT_TYPEDEF_(0xC00D102AL)
  2338. //
  2339. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_FILTER
  2340. //
  2341. // MessageText:
  2342. //
  2343. //  Filter method defined in PNG file not supported.%0
  2344. //
  2345. #define NS_E_WMP_PNG_UNSUPPORTED_FILTER  _HRESULT_TYPEDEF_(0xC00D102BL)
  2346. //
  2347. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_INTERLACE
  2348. //
  2349. // MessageText:
  2350. //
  2351. //  Interlace method defined in PNG file not supported.%0
  2352. //
  2353. #define NS_E_WMP_PNG_UNSUPPORTED_INTERLACE _HRESULT_TYPEDEF_(0xC00D102CL)
  2354. //
  2355. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC
  2356. //
  2357. // MessageText:
  2358. //
  2359. //  Bad CRC in PNG file.%0
  2360. //
  2361. #define NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC _HRESULT_TYPEDEF_(0xC00D102DL)
  2362. //
  2363. // MessageId: NS_E_WMP_BMP_INVALID_BITMASK
  2364. //
  2365. // MessageText:
  2366. //
  2367. //  Invalid bitmask in BMP file.%0
  2368. //
  2369. #define NS_E_WMP_BMP_INVALID_BITMASK     _HRESULT_TYPEDEF_(0xC00D102EL)
  2370. //
  2371. // MessageId: NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED
  2372. //
  2373. // MessageText:
  2374. //
  2375. //  Topdown DIB not supported.%0
  2376. //
  2377. #define NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D102FL)
  2378. //
  2379. // MessageId: NS_E_WMP_BMP_BITMAP_NOT_CREATED
  2380. //
  2381. // MessageText:
  2382. //
  2383. //  Bitmap could not be created.%0
  2384. //
  2385. #define NS_E_WMP_BMP_BITMAP_NOT_CREATED  _HRESULT_TYPEDEF_(0xC00D1030L)
  2386. //
  2387. // MessageId: NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED
  2388. //
  2389. // MessageText:
  2390. //
  2391. //  Compression format defined in BMP not supported.%0
  2392. //
  2393. #define NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D1031L)
  2394. //
  2395. // MessageId: NS_E_WMP_BMP_INVALID_FORMAT
  2396. //
  2397. // MessageText:
  2398. //
  2399. //  Invalid Bitmap format.%0
  2400. //
  2401. #define NS_E_WMP_BMP_INVALID_FORMAT      _HRESULT_TYPEDEF_(0xC00D1032L)
  2402. //
  2403. // MessageId: NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL
  2404. //
  2405. // MessageText:
  2406. //
  2407. //  JPEG Arithmetic coding not supported.%0
  2408. //
  2409. #define NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL _HRESULT_TYPEDEF_(0xC00D1033L)
  2410. //
  2411. // MessageId: NS_E_WMP_JPG_INVALID_FORMAT
  2412. //
  2413. // MessageText:
  2414. //
  2415. //  Invalid JPEG format.%0
  2416. //
  2417. #define NS_E_WMP_JPG_INVALID_FORMAT      _HRESULT_TYPEDEF_(0xC00D1034L)
  2418. //
  2419. // MessageId: NS_E_WMP_JPG_BAD_DCTSIZE
  2420. //
  2421. // MessageText:
  2422. //
  2423. //  Invalid JPEG format.%0
  2424. //
  2425. #define NS_E_WMP_JPG_BAD_DCTSIZE         _HRESULT_TYPEDEF_(0xC00D1035L)
  2426. //
  2427. // MessageId: NS_E_WMP_JPG_BAD_VERSION_NUMBER
  2428. //
  2429. // MessageText:
  2430. //
  2431. //  Internal version error. Unexpected JPEG library version.%0
  2432. //
  2433. #define NS_E_WMP_JPG_BAD_VERSION_NUMBER  _HRESULT_TYPEDEF_(0xC00D1036L)
  2434. //
  2435. // MessageId: NS_E_WMP_JPG_BAD_PRECISION
  2436. //
  2437. // MessageText:
  2438. //
  2439. //  Internal JPEG Library error. Unsupported JPEG data precision.%0
  2440. //
  2441. #define NS_E_WMP_JPG_BAD_PRECISION       _HRESULT_TYPEDEF_(0xC00D1037L)
  2442. //
  2443. // MessageId: NS_E_WMP_JPG_CCIR601_NOTIMPL
  2444. //
  2445. // MessageText:
  2446. //
  2447. //  JPEG CCIR601 not supported.%0
  2448. //
  2449. #define NS_E_WMP_JPG_CCIR601_NOTIMPL     _HRESULT_TYPEDEF_(0xC00D1038L)
  2450. //
  2451. // MessageId: NS_E_WMP_JPG_NO_IMAGE_IN_FILE
  2452. //
  2453. // MessageText:
  2454. //
  2455. //  No image found in JPEG file.%0
  2456. //
  2457. #define NS_E_WMP_JPG_NO_IMAGE_IN_FILE    _HRESULT_TYPEDEF_(0xC00D1039L)
  2458. //
  2459. // MessageId: NS_E_WMP_JPG_READ_ERROR
  2460. //
  2461. // MessageText:
  2462. //
  2463. //  Could not read JPEG file.%0
  2464. //
  2465. #define NS_E_WMP_JPG_READ_ERROR          _HRESULT_TYPEDEF_(0xC00D103AL)
  2466. //
  2467. // MessageId: NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL
  2468. //
  2469. // MessageText:
  2470. //
  2471. //  JPEG Fractional sampling not supported.%0
  2472. //
  2473. #define NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL _HRESULT_TYPEDEF_(0xC00D103BL)
  2474. //
  2475. // MessageId: NS_E_WMP_JPG_IMAGE_TOO_BIG
  2476. //
  2477. // MessageText:
  2478. //
  2479. //  JPEG image too large. Maximum image size supported is 65500 X 65500.%0
  2480. //
  2481. #define NS_E_WMP_JPG_IMAGE_TOO_BIG       _HRESULT_TYPEDEF_(0xC00D103CL)
  2482. //
  2483. // MessageId: NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE
  2484. //
  2485. // MessageText:
  2486. //
  2487. //  Unexpected end of file reached in JPEG file.%0
  2488. //
  2489. #define NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE _HRESULT_TYPEDEF_(0xC00D103DL)
  2490. //
  2491. // MessageId: NS_E_WMP_JPG_SOF_UNSUPPORTED
  2492. //
  2493. // MessageText:
  2494. //
  2495. //  Unsupported JPEG SOF marker found.%0
  2496. //
  2497. #define NS_E_WMP_JPG_SOF_UNSUPPORTED     _HRESULT_TYPEDEF_(0xC00D103EL)
  2498. //
  2499. // MessageId: NS_E_WMP_JPG_UNKNOWN_MARKER
  2500. //
  2501. // MessageText:
  2502. //
  2503. //  Unknown JPEG marker found.%0
  2504. //
  2505. #define NS_E_WMP_JPG_UNKNOWN_MARKER      _HRESULT_TYPEDEF_(0xC00D103FL)
  2506. //
  2507. // MessageId: NS_S_WMP_LOADED_GIF_IMAGE
  2508. //
  2509. // MessageText:
  2510. //
  2511. //  Successfully loaded a GIF file.%0
  2512. //
  2513. #define NS_S_WMP_LOADED_GIF_IMAGE        _HRESULT_TYPEDEF_(0x000D1040L)
  2514. //
  2515. // MessageId: NS_S_WMP_LOADED_PNG_IMAGE
  2516. //
  2517. // MessageText:
  2518. //
  2519. //  Successfully loaded a PNG file.%0
  2520. //
  2521. #define NS_S_WMP_LOADED_PNG_IMAGE        _HRESULT_TYPEDEF_(0x000D1041L)
  2522. //
  2523. // MessageId: NS_S_WMP_LOADED_BMP_IMAGE
  2524. //
  2525. // MessageText:
  2526. //
  2527. //  Successfully loaded a BMP file.%0
  2528. //
  2529. #define NS_S_WMP_LOADED_BMP_IMAGE        _HRESULT_TYPEDEF_(0x000D1042L)
  2530. //
  2531. // MessageId: NS_S_WMP_LOADED_JPG_IMAGE
  2532. //
  2533. // MessageText:
  2534. //
  2535. //  Successfully loaded a JPG file.%0
  2536. //
  2537. #define NS_S_WMP_LOADED_JPG_IMAGE        _HRESULT_TYPEDEF_(0x000D1043L)
  2538. //
  2539. // WMP WM Runtime Error codes
  2540. //
  2541. //
  2542. // MessageId: NS_E_WMG_RATEUNAVAILABLE
  2543. //
  2544. // MessageText:
  2545. //
  2546. //  The requested playback rate is unavailable on this content.%0
  2547. //
  2548. #define NS_E_WMG_RATEUNAVAILABLE         _HRESULT_TYPEDEF_(0xC00D104AL)
  2549. //
  2550. // MessageId: NS_E_WMG_PLUGINUNAVAILABLE
  2551. //
  2552. // MessageText:
  2553. //
  2554. //  The rendering or digital signal processing plugin could not be instantiated.%0
  2555. //
  2556. #define NS_E_WMG_PLUGINUNAVAILABLE       _HRESULT_TYPEDEF_(0xC00D104BL)
  2557. //
  2558. // MessageId: NS_E_WMG_CANNOTQUEUE
  2559. //
  2560. // MessageText:
  2561. //
  2562. //  The file cannot be queued for seamless playback.%0
  2563. //
  2564. #define NS_E_WMG_CANNOTQUEUE             _HRESULT_TYPEDEF_(0xC00D104CL)
  2565. //
  2566. // MessageId: NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED
  2567. //
  2568. // MessageText:
  2569. //
  2570. //  Windows Media Player cannot acquire the license for a file that is being prerolled.%0
  2571. //
  2572. #define NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED _HRESULT_TYPEDEF_(0xC00D104DL)
  2573. //
  2574. // MessageId: NS_E_WMG_UNEXPECTEDPREROLLSTATUS
  2575. //
  2576. // MessageText:
  2577. //
  2578. //  Windows Media Player received an unexpected message while attempting to preroll a file.%0
  2579. //
  2580. #define NS_E_WMG_UNEXPECTEDPREROLLSTATUS _HRESULT_TYPEDEF_(0xC00D104EL)
  2581. //
  2582. // MessageId: NS_E_WMG_INVALIDSTATE
  2583. //
  2584. // MessageText:
  2585. //
  2586. //  Operation attempted in an invalid graph state.%0
  2587. //
  2588. #define NS_E_WMG_INVALIDSTATE            _HRESULT_TYPEDEF_(0xC00D1054L)
  2589. //
  2590. // MessageId: NS_E_WMG_SINKALREADYEXISTS
  2591. //
  2592. // MessageText:
  2593. //
  2594. //  A renderer cannot be inserted in a stream while one already exists.%0
  2595. //
  2596. #define NS_E_WMG_SINKALREADYEXISTS       _HRESULT_TYPEDEF_(0xC00D1055L)
  2597. //
  2598. // MessageId: NS_E_WMG_NOSDKINTERFACE
  2599. //
  2600. // MessageText:
  2601. //
  2602. //  A necessary WM SDK interface to complete the operation doesn't exist at this time.%0
  2603. //
  2604. #define NS_E_WMG_NOSDKINTERFACE          _HRESULT_TYPEDEF_(0xC00D1056L)
  2605. //
  2606. // MessageId: NS_E_WMG_NOTALLOUTPUTSRENDERED
  2607. //
  2608. // MessageText:
  2609. //
  2610. //  Windows Media Player cannot play the file. The file may be formatted with an unsupported codec, or the Player could not download the codec.%0
  2611. //
  2612. #define NS_E_WMG_NOTALLOUTPUTSRENDERED   _HRESULT_TYPEDEF_(0xC00D1057L)
  2613. //
  2614. // MessageId: NS_E_WMG_FILETRANSFERNOTALLOWED
  2615. //
  2616. // MessageText:
  2617. //
  2618. //  File transfer streams are not allowed in the stand alone player.%0
  2619. //
  2620. #define NS_E_WMG_FILETRANSFERNOTALLOWED  _HRESULT_TYPEDEF_(0xC00D1058L)
  2621. //
  2622. // MessageId: NS_E_WMR_UNSUPPORTEDSTREAM
  2623. //
  2624. // MessageText:
  2625. //
  2626. //  Windows Media Player cannot play the file. The Player does not support the format you are trying to play.%0
  2627. //
  2628. #define NS_E_WMR_UNSUPPORTEDSTREAM       _HRESULT_TYPEDEF_(0xC00D1059L)
  2629. //
  2630. // MessageId: NS_E_WMR_PINNOTFOUND
  2631. //
  2632. // MessageText:
  2633. //
  2634. //  An operation was attempted on a pin that doesn't exist in the DirectShow filter graph.%0
  2635. //
  2636. #define NS_E_WMR_PINNOTFOUND             _HRESULT_TYPEDEF_(0xC00D105AL)
  2637. //
  2638. // MessageId: NS_E_WMR_WAITINGONFORMATSWITCH
  2639. //
  2640. // MessageText:
  2641. //
  2642. //  Specified operation cannot be completed while waiting for a media format change from the SDK.%0
  2643. //
  2644. #define NS_E_WMR_WAITINGONFORMATSWITCH   _HRESULT_TYPEDEF_(0xC00D105BL)
  2645. //
  2646. // MessageId: NS_E_WMR_NOSOURCEFILTER
  2647. //
  2648. // MessageText:
  2649. //
  2650. //  Specified operation cannot be completed because the source filter does not exist.%0
  2651. //
  2652. #define NS_E_WMR_NOSOURCEFILTER          _HRESULT_TYPEDEF_(0xC00D105CL)
  2653. //
  2654. // MessageId: NS_E_WMR_PINTYPENOMATCH
  2655. //
  2656. // MessageText:
  2657. //
  2658. //  The specified type does not match this pin.%0
  2659. //
  2660. #define NS_E_WMR_PINTYPENOMATCH          _HRESULT_TYPEDEF_(0xC00D105DL)
  2661. //
  2662. // MessageId: NS_E_WMR_NOCALLBACKAVAILABLE
  2663. //
  2664. // MessageText:
  2665. //
  2666. //  The WMR Source Filter does not have a callback available.%0
  2667. //
  2668. #define NS_E_WMR_NOCALLBACKAVAILABLE     _HRESULT_TYPEDEF_(0xC00D105EL)
  2669. //
  2670. // MessageId: NS_S_WMR_ALREADYRENDERED
  2671. //
  2672. // MessageText:
  2673. //
  2674. //  The specified stream has already been rendered.%0
  2675. //
  2676. #define NS_S_WMR_ALREADYRENDERED         _HRESULT_TYPEDEF_(0x000D105FL)
  2677. //
  2678. // MessageId: NS_S_WMR_PINTYPEPARTIALMATCH
  2679. //
  2680. // MessageText:
  2681. //
  2682. //  The specified type partially matches this pin type.%0
  2683. //
  2684. #define NS_S_WMR_PINTYPEPARTIALMATCH     _HRESULT_TYPEDEF_(0x000D1060L)
  2685. //
  2686. // MessageId: NS_S_WMR_PINTYPEFULLMATCH
  2687. //
  2688. // MessageText:
  2689. //
  2690. //  The specified type fully matches this pin type.%0
  2691. //
  2692. #define NS_S_WMR_PINTYPEFULLMATCH        _HRESULT_TYPEDEF_(0x000D1061L)
  2693. //
  2694. // MessageId: NS_E_WMR_SAMPLEPROPERTYNOTSET
  2695. //
  2696. // MessageText:
  2697. //
  2698. //  The specified property has not been set on this sample.%0
  2699. //
  2700. #define NS_E_WMR_SAMPLEPROPERTYNOTSET    _HRESULT_TYPEDEF_(0xC00D1062L)
  2701. //
  2702. // MessageId: NS_E_WMR_CANNOT_RENDER_BINARY_STREAM
  2703. //
  2704. // MessageText:
  2705. //
  2706. //  A plugin is required to correctly play this file. To determine if this plugin is available to download from the Web, click Web Help.%0
  2707. //
  2708. #define NS_E_WMR_CANNOT_RENDER_BINARY_STREAM _HRESULT_TYPEDEF_(0xC00D1063L)
  2709. //
  2710. // MessageId: NS_E_WMG_LICENSE_TAMPERED
  2711. //
  2712. // MessageText:
  2713. //
  2714. //  The file cannot be played, the content has been tampered.%0
  2715. //
  2716. #define NS_E_WMG_LICENSE_TAMPERED        _HRESULT_TYPEDEF_(0xC00D1064L)
  2717. //
  2718. // MessageId: NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM
  2719. //
  2720. // MessageText:
  2721. //
  2722. //  The content you are trying to play is protected content and the player will not render binary streams from protected content.%0
  2723. //
  2724. #define NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM _HRESULT_TYPEDEF_(0xC00D1065L)
  2725. //
  2726. // WMP Playlist Error codes
  2727. //
  2728. //
  2729. // MessageId: NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT
  2730. //
  2731. // MessageText:
  2732. //
  2733. //  The format of this file was not recognized as a valid playlist format.%0
  2734. //
  2735. #define NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT _HRESULT_TYPEDEF_(0xC00D1068L)
  2736. //
  2737. // MessageId: NS_E_ASX_INVALIDFORMAT
  2738. //
  2739. // MessageText:
  2740. //
  2741. //  This file was believed to be an ASX playlist, but the format was not recognized.%0
  2742. //
  2743. #define NS_E_ASX_INVALIDFORMAT           _HRESULT_TYPEDEF_(0xC00D1069L)
  2744. //
  2745. // MessageId: NS_E_ASX_INVALIDVERSION
  2746. //
  2747. // MessageText:
  2748. //
  2749. //  The version of this playlist is not supported. Click More Information to go to the Microsoft web site and see if there is a newer version of the player to install.%0
  2750. //
  2751. #define NS_E_ASX_INVALIDVERSION          _HRESULT_TYPEDEF_(0xC00D106AL)
  2752. //
  2753. // MessageId: NS_E_ASX_INVALID_REPEAT_BLOCK
  2754. //
  2755. // MessageText:
  2756. //
  2757. //  Format of a REPEAT loop within the current playlist file is invalid.%0
  2758. //
  2759. #define NS_E_ASX_INVALID_REPEAT_BLOCK    _HRESULT_TYPEDEF_(0xC00D106BL)
  2760. //
  2761. // MessageId: NS_E_ASX_NOTHING_TO_WRITE
  2762. //
  2763. // MessageText:
  2764. //
  2765. //  Windows Media Player cannot export the playlist because it is empty.%0
  2766. //
  2767. #define NS_E_ASX_NOTHING_TO_WRITE        _HRESULT_TYPEDEF_(0xC00D106CL)
  2768. //
  2769. // MessageId: NS_E_URLLIST_INVALIDFORMAT
  2770. //
  2771. // MessageText:
  2772. //
  2773. //  Windows Media Player does not recognize this file as a supported playlist.%0
  2774. //
  2775. #define NS_E_URLLIST_INVALIDFORMAT       _HRESULT_TYPEDEF_(0xC00D106DL)
  2776. //
  2777. // MessageId: NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST
  2778. //
  2779. // MessageText:
  2780. //
  2781. //  The specified attribute does not exist.%0
  2782. //
  2783. #define NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST _HRESULT_TYPEDEF_(0xC00D106EL)
  2784. //
  2785. // MessageId: NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS
  2786. //
  2787. // MessageText:
  2788. //
  2789. //  The specified attribute already exists.%0
  2790. //
  2791. #define NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS _HRESULT_TYPEDEF_(0xC00D106FL)
  2792. //
  2793. // MessageId: NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE
  2794. //
  2795. // MessageText:
  2796. //
  2797. //  Can not retrieve the specified attribute.%0
  2798. //
  2799. #define NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE _HRESULT_TYPEDEF_(0xC00D1070L)
  2800. //
  2801. // MessageId: NS_E_WMX_ITEM_DOES_NOT_EXIST
  2802. //
  2803. // MessageText:
  2804. //
  2805. //  The specified item does not exist in the current playlist.%0
  2806. //
  2807. #define NS_E_WMX_ITEM_DOES_NOT_EXIST     _HRESULT_TYPEDEF_(0xC00D1071L)
  2808. //
  2809. // MessageId: NS_E_WMX_ITEM_TYPE_ILLEGAL
  2810. //
  2811. // MessageText:
  2812. //
  2813. //  Items of the specified type can not be created within the current playlist.%0
  2814. //
  2815. #define NS_E_WMX_ITEM_TYPE_ILLEGAL       _HRESULT_TYPEDEF_(0xC00D1072L)
  2816. //
  2817. // MessageId: NS_E_WMX_ITEM_UNSETTABLE
  2818. //
  2819. // MessageText:
  2820. //
  2821. //  The specified item can not be set in the current playlist.%0
  2822. //
  2823. #define NS_E_WMX_ITEM_UNSETTABLE         _HRESULT_TYPEDEF_(0xC00D1073L)
  2824. //
  2825. // MessageId: NS_E_WMX_PLAYLIST_EMPTY
  2826. //
  2827. // MessageText:
  2828. //
  2829. //  The specified playlist is empty.%0
  2830. //
  2831. #define NS_E_WMX_PLAYLIST_EMPTY          _HRESULT_TYPEDEF_(0xC00D1074L)
  2832. //
  2833. // MessageId: NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED
  2834. //
  2835. // MessageText:
  2836. //
  2837. //  Playlist load error: The specified autoplaylist contains a filter type which is either invalid or is not installed on this computer%0
  2838. //
  2839. #define NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED _HRESULT_TYPEDEF_(0xC00D1075L)
  2840. //
  2841. // MessageId: NS_E_WMX_INVALID_FORMAT_OVER_NESTING
  2842. //
  2843. // MessageText:
  2844. //
  2845. //  Windows Media Player cannot play the file because the associated Windows Media metafile playlist is not valid.%0
  2846. //
  2847. #define NS_E_WMX_INVALID_FORMAT_OVER_NESTING _HRESULT_TYPEDEF_(0xC00D1076L)
  2848. //
  2849. // WMP Core  Error codes
  2850. //
  2851. //
  2852. // MessageId: NS_E_WMPCORE_NOSOURCEURLSTRING
  2853. //
  2854. // MessageText:
  2855. //
  2856. //  Windows Media Player cannot find the file. Be sure the path is typed correctly. If it is, the file may not exist in the specified location, or the computer where the file is stored may be offline.%0
  2857. //
  2858. #define NS_E_WMPCORE_NOSOURCEURLSTRING   _HRESULT_TYPEDEF_(0xC00D107CL)
  2859. //
  2860. // MessageId: NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT
  2861. //
  2862. // MessageText:
  2863. //
  2864. //  Failed to create the Global Interface Table.%0
  2865. //
  2866. #define NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT _HRESULT_TYPEDEF_(0xC00D107DL)
  2867. //
  2868. // MessageId: NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE
  2869. //
  2870. // MessageText:
  2871. //
  2872. //  Failed to get the marshaled graph event handler interface.%0
  2873. //
  2874. #define NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE _HRESULT_TYPEDEF_(0xC00D107EL)
  2875. //
  2876. // MessageId: NS_E_WMPCORE_BUFFERTOOSMALL
  2877. //
  2878. // MessageText:
  2879. //
  2880. //  Buffer is too small for copying media type.%0
  2881. //
  2882. #define NS_E_WMPCORE_BUFFERTOOSMALL      _HRESULT_TYPEDEF_(0xC00D107FL)
  2883. //
  2884. // MessageId: NS_E_WMPCORE_UNAVAILABLE
  2885. //
  2886. // MessageText:
  2887. //
  2888. //  Current state of the player does not allow the operation.%0
  2889. //
  2890. #define NS_E_WMPCORE_UNAVAILABLE         _HRESULT_TYPEDEF_(0xC00D1080L)
  2891. //
  2892. // MessageId: NS_E_WMPCORE_INVALIDPLAYLISTMODE
  2893. //
  2894. // MessageText:
  2895. //
  2896. //  Playlist manager does not understand the current play mode (shuffle, normal etc).%0
  2897. //
  2898. #define NS_E_WMPCORE_INVALIDPLAYLISTMODE _HRESULT_TYPEDEF_(0xC00D1081L)
  2899. //
  2900. // MessageId: NS_E_WMPCORE_ITEMNOTINPLAYLIST
  2901. //
  2902. // MessageText:
  2903. //
  2904. //  The item is not in the playlist.%0
  2905. //
  2906. #define NS_E_WMPCORE_ITEMNOTINPLAYLIST   _HRESULT_TYPEDEF_(0xC00D1086L)
  2907. //
  2908. // MessageId: NS_E_WMPCORE_PLAYLISTEMPTY
  2909. //
  2910. // MessageText:
  2911. //
  2912. //  There are no items in this playlist. Add items to the playlist, and try again.%0
  2913. //
  2914. #define NS_E_WMPCORE_PLAYLISTEMPTY       _HRESULT_TYPEDEF_(0xC00D1087L)
  2915. //
  2916. // MessageId: NS_E_WMPCORE_NOBROWSER
  2917. //
  2918. // MessageText:
  2919. //
  2920. //  The Web site cannot be accessed. A Web browser is not detected on your computer.%0
  2921. //
  2922. #define NS_E_WMPCORE_NOBROWSER           _HRESULT_TYPEDEF_(0xC00D1088L)
  2923. //
  2924. // MessageId: NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL
  2925. //
  2926. // MessageText:
  2927. //
  2928. //  Windows Media Player cannot find the specified file. Be sure the path is typed correctly. If it is, the file does not exist in the specified location, or the computer where the file is stored is offline.%0
  2929. //
  2930. #define NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL _HRESULT_TYPEDEF_(0xC00D1089L)
  2931. //
  2932. // MessageId: NS_E_WMPCORE_GRAPH_NOT_IN_LIST
  2933. //
  2934. // MessageText:
  2935. //
  2936. //  Graph with the specified URL was not found in the prerolled graph list.%0
  2937. //
  2938. #define NS_E_WMPCORE_GRAPH_NOT_IN_LIST   _HRESULT_TYPEDEF_(0xC00D108AL)
  2939. //
  2940. // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA
  2941. //
  2942. // MessageText:
  2943. //
  2944. //  There is only one item in the playlist.%0
  2945. //
  2946. #define NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA _HRESULT_TYPEDEF_(0xC00D108BL)
  2947. //
  2948. // MessageId: NS_E_WMPCORE_ERRORSINKNOTREGISTERED
  2949. //
  2950. // MessageText:
  2951. //
  2952. //  An error sink was never registered for the calling object.%0
  2953. //
  2954. #define NS_E_WMPCORE_ERRORSINKNOTREGISTERED _HRESULT_TYPEDEF_(0xC00D108CL)
  2955. //
  2956. // MessageId: NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE
  2957. //
  2958. // MessageText:
  2959. //
  2960. //  The error manager is not available to respond to errors.%0
  2961. //
  2962. #define NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE _HRESULT_TYPEDEF_(0xC00D108DL)
  2963. //
  2964. // MessageId: NS_E_WMPCORE_WEBHELPFAILED
  2965. //
  2966. // MessageText:
  2967. //
  2968. //  Failed launching WebHelp URL.%0
  2969. //
  2970. #define NS_E_WMPCORE_WEBHELPFAILED       _HRESULT_TYPEDEF_(0xC00D108EL)
  2971. //
  2972. // MessageId: NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED
  2973. //
  2974. // MessageText:
  2975. //
  2976. //  Could not resume playing next item in playlist.%0
  2977. //
  2978. #define NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED _HRESULT_TYPEDEF_(0xC00D108FL)
  2979. //
  2980. // MessageId: NS_E_WMPCORE_NO_REF_IN_ENTRY
  2981. //
  2982. // MessageText:
  2983. //
  2984. //  Windows Media Player cannot play the file because the associated Windows Media metafile playlist is not valid.%0
  2985. //
  2986. #define NS_E_WMPCORE_NO_REF_IN_ENTRY     _HRESULT_TYPEDEF_(0xC00D1090L)
  2987. //
  2988. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY
  2989. //
  2990. // MessageText:
  2991. //
  2992. //  An empty string for playlist attribute name was found.%0
  2993. //
  2994. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY _HRESULT_TYPEDEF_(0xC00D1091L)
  2995. //
  2996. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL
  2997. //
  2998. // MessageText:
  2999. //
  3000. //  An invalid playlist attribute name was found.%0
  3001. //
  3002. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1092L)
  3003. //
  3004. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY
  3005. //
  3006. // MessageText:
  3007. //
  3008. //  An empty string for a playlist attribute value was found.%0
  3009. //
  3010. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY _HRESULT_TYPEDEF_(0xC00D1093L)
  3011. //
  3012. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL
  3013. //
  3014. // MessageText:
  3015. //
  3016. //  An illegal value for a playlist attribute was found.%0
  3017. //
  3018. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1094L)
  3019. //
  3020. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY
  3021. //
  3022. // MessageText:
  3023. //
  3024. //  An empty string for a playlist item attribute name was found.%0
  3025. //
  3026. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY _HRESULT_TYPEDEF_(0xC00D1095L)
  3027. //
  3028. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL
  3029. //
  3030. // MessageText:
  3031. //
  3032. //  An illegal value for a playlist item attribute name was found.%0
  3033. //
  3034. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1096L)
  3035. //
  3036. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY
  3037. //
  3038. // MessageText:
  3039. //
  3040. //  An illegal value for a playlist item attribute was found.%0
  3041. //
  3042. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY _HRESULT_TYPEDEF_(0xC00D1097L)
  3043. //
  3044. // MessageId: NS_E_WMPCORE_LIST_ENTRY_NO_REF
  3045. //
  3046. // MessageText:
  3047. //
  3048. //  No entries found in the playlist file.%0
  3049. //
  3050. #define NS_E_WMPCORE_LIST_ENTRY_NO_REF   _HRESULT_TYPEDEF_(0xC00D1098L)
  3051. //
  3052. // MessageId: NS_E_WMPCORE_MISNAMED_FILE
  3053. //
  3054. // MessageText:
  3055. //
  3056. //  Windows Media Player cannot play the file. The file is either corrupt or the Player does not support the format you are trying to play.%0
  3057. //
  3058. #define NS_E_WMPCORE_MISNAMED_FILE       _HRESULT_TYPEDEF_(0xC00D1099L)
  3059. //
  3060. // MessageId: NS_E_WMPCORE_CODEC_NOT_TRUSTED
  3061. //
  3062. // MessageText:
  3063. //
  3064. //  The codec downloaded for this media does not appear to be properly signed. Installation is not possible.%0
  3065. //
  3066. #define NS_E_WMPCORE_CODEC_NOT_TRUSTED   _HRESULT_TYPEDEF_(0xC00D109AL)
  3067. //
  3068. // MessageId: NS_E_WMPCORE_CODEC_NOT_FOUND
  3069. //
  3070. // MessageText:
  3071. //
  3072. //  Windows Media Player cannot play the file. One or more codecs required to play the file could not be found.%0
  3073. //
  3074. #define NS_E_WMPCORE_CODEC_NOT_FOUND     _HRESULT_TYPEDEF_(0xC00D109BL)
  3075. //
  3076. // MessageId: NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED
  3077. //
  3078. // MessageText:
  3079. //
  3080. //  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
  3081. //
  3082. #define NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D109CL)
  3083. //
  3084. // MessageId: NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST
  3085. //
  3086. // MessageText:
  3087. //
  3088. //  Failed to download the playlist file.%0
  3089. //
  3090. #define NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST _HRESULT_TYPEDEF_(0xC00D109DL)
  3091. //
  3092. // MessageId: NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST
  3093. //
  3094. // MessageText:
  3095. //
  3096. //  Failed to build the playlist.%0
  3097. //
  3098. #define NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST _HRESULT_TYPEDEF_(0xC00D109EL)
  3099. //
  3100. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE
  3101. //
  3102. // MessageText:
  3103. //
  3104. //  Playlist has no alternates to switch into.%0
  3105. //
  3106. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE _HRESULT_TYPEDEF_(0xC00D109FL)
  3107. //
  3108. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED
  3109. //
  3110. // MessageText:
  3111. //
  3112. //  No more playlist alternates available to switch to.%0
  3113. //
  3114. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED _HRESULT_TYPEDEF_(0xC00D10A0L)
  3115. //
  3116. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND
  3117. //
  3118. // MessageText:
  3119. //
  3120. //  Could not find the name of the alternate playlist to switch into.%0
  3121. //
  3122. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10A1L)
  3123. //
  3124. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED
  3125. //
  3126. // MessageText:
  3127. //
  3128. //  Failed to switch to an alternate for this media.%0
  3129. //
  3130. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED _HRESULT_TYPEDEF_(0xC00D10A2L)
  3131. //
  3132. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED
  3133. //
  3134. // MessageText:
  3135. //
  3136. //  Failed to initialize an alternate for the media.%0
  3137. //
  3138. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED _HRESULT_TYPEDEF_(0xC00D10A3L)
  3139. //
  3140. // MessageId: NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY
  3141. //
  3142. // MessageText:
  3143. //
  3144. //  No URL specified for the roll over Refs in the playlist file.%0
  3145. //
  3146. #define NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY _HRESULT_TYPEDEF_(0xC00D10A4L)
  3147. //
  3148. // MessageId: NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME
  3149. //
  3150. // MessageText:
  3151. //
  3152. //  Encountered a playlist with no name.%0
  3153. //
  3154. #define NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME _HRESULT_TYPEDEF_(0xC00D10A5L)
  3155. //
  3156. // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT
  3157. //
  3158. // MessageText:
  3159. //
  3160. //  A required attribute in the event block of the playlist was not found.%0
  3161. //
  3162. #define NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT _HRESULT_TYPEDEF_(0xC00D10A6L)
  3163. //
  3164. // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY
  3165. //
  3166. // MessageText:
  3167. //
  3168. //  No items were found in the event block of the playlist.%0
  3169. //
  3170. #define NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY _HRESULT_TYPEDEF_(0xC00D10A7L)
  3171. //
  3172. // MessageId: NS_E_WMPCORE_PLAYLIST_STACK_EMPTY
  3173. //
  3174. // MessageText:
  3175. //
  3176. //  No playlist was found while returning from a nested playlist.%0
  3177. //
  3178. #define NS_E_WMPCORE_PLAYLIST_STACK_EMPTY _HRESULT_TYPEDEF_(0xC00D10A8L)
  3179. //
  3180. // MessageId: NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE
  3181. //
  3182. // MessageText:
  3183. //
  3184. //  The media item is not active currently.%0
  3185. //
  3186. #define NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE _HRESULT_TYPEDEF_(0xC00D10A9L)
  3187. //
  3188. // MessageId: NS_E_WMPCORE_USER_CANCEL
  3189. //
  3190. // MessageText:
  3191. //
  3192. //  Open was aborted by user.%0
  3193. //
  3194. #define NS_E_WMPCORE_USER_CANCEL         _HRESULT_TYPEDEF_(0xC00D10ABL)
  3195. //
  3196. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY
  3197. //
  3198. // MessageText:
  3199. //
  3200. //  No items were found inside the playlist repeat block.%0
  3201. //
  3202. #define NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY _HRESULT_TYPEDEF_(0xC00D10ACL)
  3203. //
  3204. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE
  3205. //
  3206. // MessageText:
  3207. //
  3208. //  Media object corresponding to start of a playlist repeat block was not found.%0
  3209. //
  3210. #define NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE _HRESULT_TYPEDEF_(0xC00D10ADL)
  3211. //
  3212. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE
  3213. //
  3214. // MessageText:
  3215. //
  3216. //  Media object corresponding to the end of a playlist repeat block was not found.%0
  3217. //
  3218. #define NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE _HRESULT_TYPEDEF_(0xC00D10AEL)
  3219. //
  3220. // MessageId: NS_E_WMPCORE_INVALID_PLAYLIST_URL
  3221. //
  3222. // MessageText:
  3223. //
  3224. //  Playlist URL supplied to the playlist manager is invalid.%0
  3225. //
  3226. #define NS_E_WMPCORE_INVALID_PLAYLIST_URL _HRESULT_TYPEDEF_(0xC00D10AFL)
  3227. //
  3228. // MessageId: NS_E_WMPCORE_MISMATCHED_RUNTIME
  3229. //
  3230. // MessageText:
  3231. //
  3232. //  Windows Media Player cannot play the file because it is corrupted.%0
  3233. //
  3234. #define NS_E_WMPCORE_MISMATCHED_RUNTIME  _HRESULT_TYPEDEF_(0xC00D10B0L)
  3235. //
  3236. // MessageId: NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS
  3237. //
  3238. // MessageText:
  3239. //
  3240. //  Windows Media Player cannot import the playlist to Media Library because the playlist is empty.%0
  3241. //
  3242. #define NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS _HRESULT_TYPEDEF_(0xC00D10B1L)
  3243. //
  3244. // MessageId: NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION
  3245. //
  3246. // MessageText:
  3247. //
  3248. //  An error has occurred that could prevent the changing of the video contrast on this media.%0
  3249. //
  3250. #define NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION _HRESULT_TYPEDEF_(0xC00D10B2L)
  3251. //
  3252. // MessageId: NS_E_WMPCORE_MEDIA_UNAVAILABLE
  3253. //
  3254. // MessageText:
  3255. //
  3256. //  Windows Media Player cannot play this file. Connect to the Internet or insert the removable media on which the file is located, and then try to play the file again.%0
  3257. //
  3258. #define NS_E_WMPCORE_MEDIA_UNAVAILABLE   _HRESULT_TYPEDEF_(0xC00D10B3L)
  3259. //
  3260. // MessageId: NS_E_WMPCORE_WMX_ENTRYREF_NO_REF
  3261. //
  3262. // MessageText:
  3263. //
  3264. //  The playlist contains an ENTRYREF for which no href was parsed. Check the syntax of playlist file.%0
  3265. //
  3266. #define NS_E_WMPCORE_WMX_ENTRYREF_NO_REF _HRESULT_TYPEDEF_(0xC00D10B4L)
  3267. //
  3268. // MessageId: NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST
  3269. //
  3270. // MessageText:
  3271. //
  3272. //  Windows Media Player cannot play any items in this playlist. For additional information, right-click an item that cannot be played, and then click Error Details.%0
  3273. //
  3274. #define NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST _HRESULT_TYPEDEF_(0xC00D10B5L)
  3275. //
  3276. // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS
  3277. //
  3278. // MessageText:
  3279. //
  3280. //  Windows Media Player cannot play some or all of the playlist items.%0
  3281. //
  3282. #define NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS _HRESULT_TYPEDEF_(0xC00D10B6L)
  3283. //
  3284. // MessageId: NS_E_WMPCORE_BUSY
  3285. //
  3286. // MessageText:
  3287. //
  3288. //  Windows Media Player cannot play the file at this time. Try again later.%0
  3289. //
  3290. #define NS_E_WMPCORE_BUSY                _HRESULT_TYPEDEF_(0xC00D10B7L)
  3291. //
  3292. // MessageId: NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE
  3293. //
  3294. // MessageText:
  3295. //
  3296. //  There is no child playlist available for this media item at this time.%0
  3297. //
  3298. #define NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D10B8L)
  3299. //
  3300. // MessageId: NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST
  3301. //
  3302. // MessageText:
  3303. //
  3304. //  There is no child playlist for this media item.%0
  3305. //
  3306. #define NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST _HRESULT_TYPEDEF_(0xC00D10B9L)
  3307. //
  3308. // MessageId: NS_E_WMPCORE_FILE_NOT_FOUND
  3309. //
  3310. // MessageText:
  3311. //
  3312. //  Windows Media Player cannot play one or more files. Right-click the file, and then click Error Details to view information about the error.%0
  3313. //
  3314. #define NS_E_WMPCORE_FILE_NOT_FOUND      _HRESULT_TYPEDEF_(0xC00D10BAL)
  3315. //
  3316. // MessageId: NS_E_WMPCORE_TEMP_FILE_NOT_FOUND
  3317. //
  3318. // MessageText:
  3319. //
  3320. //  The temporary file was not found.%0
  3321. //
  3322. #define NS_E_WMPCORE_TEMP_FILE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10BBL)
  3323. //
  3324. // MessageId: NS_E_WMDM_REVOKED
  3325. //
  3326. // MessageText:
  3327. //
  3328. //  Windows Media Player cannot transfer media to the portable device without an update.  Please click More Information to find out how to update your device.%0
  3329. //
  3330. #define NS_E_WMDM_REVOKED                _HRESULT_TYPEDEF_(0xC00D10BCL)
  3331. //
  3332. // MessageId: NS_E_DDRAW_GENERIC
  3333. //
  3334. // MessageText:
  3335. //
  3336. //  Windows Media Player cannot play the video stream because of a problem with your video card.%0
  3337. //
  3338. #define NS_E_DDRAW_GENERIC               _HRESULT_TYPEDEF_(0xC00D10BDL)
  3339. //
  3340. // MessageId: NS_E_DISPLAY_MODE_CHANGE_FAILED
  3341. //
  3342. // MessageText:
  3343. //
  3344. //  Windows Media Player failed to change the screen mode for fullscreen video playback.%0
  3345. //
  3346. #define NS_E_DISPLAY_MODE_CHANGE_FAILED  _HRESULT_TYPEDEF_(0xC00D10BEL)
  3347. //
  3348. // MessageId: NS_E_PLAYLIST_CONTAINS_ERRORS
  3349. //
  3350. // MessageText:
  3351. //
  3352. //  One or more items in the playlist cannot be played. For more details, right-click an item in the playlist, and then click Error Details.%0
  3353. //
  3354. #define NS_E_PLAYLIST_CONTAINS_ERRORS    _HRESULT_TYPEDEF_(0xC00D10BFL)
  3355. //
  3356. // MessageId: NS_E_CHANGING_PROXY_NAME
  3357. //
  3358. // MessageText:
  3359. //
  3360. //  Can't change proxy name if the proxy setting is not set to custom.%0
  3361. //
  3362. #define NS_E_CHANGING_PROXY_NAME         _HRESULT_TYPEDEF_(0xC00D10C0L)
  3363. //
  3364. // MessageId: NS_E_CHANGING_PROXY_PORT
  3365. //
  3366. // MessageText:
  3367. //
  3368. //  Can't change proxy port if the proxy setting is not set to custom.%0
  3369. //
  3370. #define NS_E_CHANGING_PROXY_PORT         _HRESULT_TYPEDEF_(0xC00D10C1L)
  3371. //
  3372. // MessageId: NS_E_CHANGING_PROXY_EXCEPTIONLIST
  3373. //
  3374. // MessageText:
  3375. //
  3376. //  Can't change proxy exception list if the proxy setting is not set to custom.%0
  3377. //
  3378. #define NS_E_CHANGING_PROXY_EXCEPTIONLIST _HRESULT_TYPEDEF_(0xC00D10C2L)
  3379. //
  3380. // MessageId: NS_E_CHANGING_PROXYBYPASS
  3381. //
  3382. // MessageText:
  3383. //
  3384. //  Can't change proxy bypass flag if the proxy setting is not set to custom.%0
  3385. //
  3386. #define NS_E_CHANGING_PROXYBYPASS        _HRESULT_TYPEDEF_(0xC00D10C3L)
  3387. //
  3388. // MessageId: NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND
  3389. //
  3390. // MessageText:
  3391. //
  3392. //  Can't find specified protocol.%0
  3393. //
  3394. #define NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10C4L)
  3395. //
  3396. // MessageId: NS_E_GRAPH_NOAUDIOLANGUAGE
  3397. //
  3398. // MessageText:
  3399. //
  3400. //  Can't change language settings.  Either the graph has no audio, or the audio only supports one language.%0
  3401. //
  3402. #define NS_E_GRAPH_NOAUDIOLANGUAGE       _HRESULT_TYPEDEF_(0xC00D10C5L)
  3403. //
  3404. // MessageId: NS_E_GRAPH_NOAUDIOLANGUAGESELECTED
  3405. //
  3406. // MessageText:
  3407. //
  3408. //  The graph has no audio language selected.%0
  3409. //
  3410. #define NS_E_GRAPH_NOAUDIOLANGUAGESELECTED _HRESULT_TYPEDEF_(0xC00D10C6L)
  3411. //
  3412. // MessageId: NS_E_CORECD_NOTAMEDIACD
  3413. //
  3414. // MessageText:
  3415. //
  3416. //  This is not a media CD.%0
  3417. //
  3418. #define NS_E_CORECD_NOTAMEDIACD          _HRESULT_TYPEDEF_(0xC00D10C7L)
  3419. //
  3420. // MessageId: NS_E_WMPCORE_MEDIA_URL_TOO_LONG
  3421. //
  3422. // MessageText:
  3423. //
  3424. //  Windows Media Player cannot play this file because the URL is too long.%0
  3425. //
  3426. #define NS_E_WMPCORE_MEDIA_URL_TOO_LONG  _HRESULT_TYPEDEF_(0xC00D10C8L)
  3427. //
  3428. // MessageId: NS_E_WMPFLASH_CANT_FIND_COM_SERVER
  3429. //
  3430. // MessageText:
  3431. //
  3432. //  Windows Media Player needs the Macromedia Flash Player to play this content. Windows Media Player was not able to detect the Flash player on your system. To play the selected item, you must install the Macromedia Flash Player from the Macromedia Web site, and then try to play the item again.%0
  3433. //
  3434. #define NS_E_WMPFLASH_CANT_FIND_COM_SERVER _HRESULT_TYPEDEF_(0xC00D10C9L)
  3435. //
  3436. // MessageId: NS_E_WMPFLASH_INCOMPATIBLEVERSION
  3437. //
  3438. // MessageText:
  3439. //
  3440. //  To play the selected item, you must install an updated version of the Macromedia Flash Player from the Macromedia Web site, and then try to play the item again.%0
  3441. //
  3442. #define NS_E_WMPFLASH_INCOMPATIBLEVERSION _HRESULT_TYPEDEF_(0xC00D10CAL)
  3443. //
  3444. // MessageId: NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS
  3445. //
  3446. // MessageText:
  3447. //
  3448. //  The use of ActiveX controls has been turned off in Internet Explorer. As a result Windows Media Player will not be able to playback this content.%0
  3449. //
  3450. #define NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS _HRESULT_TYPEDEF_(0xC00D10CBL)
  3451. //
  3452. // MessageId: NS_E_NEED_CORE_REFERENCE
  3453. //
  3454. // MessageText:
  3455. //
  3456. //  The use of this method requires an existing reference to the Player object.%0
  3457. //
  3458. #define NS_E_NEED_CORE_REFERENCE         _HRESULT_TYPEDEF_(0xC00D10CCL)
  3459. //
  3460. // MessageId: NS_E_MEDIACD_READ_ERROR
  3461. //
  3462. // MessageText:
  3463. //
  3464. //  There was an error reading from the CD-ROM.%0
  3465. //
  3466. #define NS_E_MEDIACD_READ_ERROR          _HRESULT_TYPEDEF_(0xC00D10CDL)
  3467. //
  3468. // MessageId: NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS
  3469. //
  3470. // MessageText:
  3471. //
  3472. //  Internet Explorer is set to disallow ActiveX controls.%0
  3473. //
  3474. #define NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS _HRESULT_TYPEDEF_(0xC00D10CEL)
  3475. //
  3476. // MessageId: NS_E_FLASH_PLAYBACK_NOT_ALLOWED
  3477. //
  3478. // MessageText:
  3479. //
  3480. //  Flash playback has been turned off in Windows Media Player.%0
  3481. //
  3482. #define NS_E_FLASH_PLAYBACK_NOT_ALLOWED  _HRESULT_TYPEDEF_(0xC00D10CFL)
  3483. //
  3484. // MessageId: NS_E_UNABLE_TO_CREATE_RIP_LOCATION
  3485. //
  3486. // MessageText:
  3487. //
  3488. //  Media Player was unable to create a valid location to copy the CD track.%0
  3489. //
  3490. #define NS_E_UNABLE_TO_CREATE_RIP_LOCATION _HRESULT_TYPEDEF_(0xC00D10D0L)
  3491. //
  3492. // MessageId: NS_E_WMPCORE_SOME_CODECS_MISSING
  3493. //
  3494. // MessageText:
  3495. //
  3496. //  One or more codecs required to open this content could not be found.%0
  3497. //
  3498. #define NS_E_WMPCORE_SOME_CODECS_MISSING _HRESULT_TYPEDEF_(0xC00D10D1L)
  3499. //
  3500. // WMP Core  Success codes
  3501. //
  3502. //
  3503. // MessageId: NS_S_WMPCORE_PLAYLISTCLEARABORT
  3504. //
  3505. // MessageText:
  3506. //
  3507. //  Failed to clear playlist because it was aborted by user.%0
  3508. //
  3509. #define NS_S_WMPCORE_PLAYLISTCLEARABORT  _HRESULT_TYPEDEF_(0x000D10FEL)
  3510. //
  3511. // MessageId: NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT
  3512. //
  3513. // MessageText:
  3514. //
  3515. //  Failed to remove item in the playlist since it was aborted by user.%0
  3516. //
  3517. #define NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT _HRESULT_TYPEDEF_(0x000D10FFL)
  3518. //
  3519. // MessageId: NS_S_WMPCORE_PLAYLIST_CREATION_PENDING
  3520. //
  3521. // MessageText:
  3522. //
  3523. //  Playlist is being generated asynchronously.%0
  3524. //
  3525. #define NS_S_WMPCORE_PLAYLIST_CREATION_PENDING _HRESULT_TYPEDEF_(0x000D1102L)
  3526. //
  3527. // MessageId: NS_S_WMPCORE_MEDIA_VALIDATION_PENDING
  3528. //
  3529. // MessageText:
  3530. //
  3531. //  Validation of the media is pending...%0
  3532. //
  3533. #define NS_S_WMPCORE_MEDIA_VALIDATION_PENDING _HRESULT_TYPEDEF_(0x000D1103L)
  3534. //
  3535. // MessageId: NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED
  3536. //
  3537. // MessageText:
  3538. //
  3539. //  Encountered more than one Repeat block during ASX processing.%0
  3540. //
  3541. #define NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED _HRESULT_TYPEDEF_(0x000D1104L)
  3542. //
  3543. // MessageId: NS_S_WMPCORE_COMMAND_NOT_AVAILABLE
  3544. //
  3545. // MessageText:
  3546. //
  3547. //  Current state of WMP disallows calling this method or property.%0
  3548. //
  3549. #define NS_S_WMPCORE_COMMAND_NOT_AVAILABLE _HRESULT_TYPEDEF_(0x000D1105L)
  3550. //
  3551. // MessageId: NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED
  3552. //
  3553. // MessageText:
  3554. //
  3555. //  Name for the playlist has been auto generated.%0
  3556. //
  3557. #define NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED _HRESULT_TYPEDEF_(0x000D1106L)
  3558. //
  3559. // MessageId: NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS
  3560. //
  3561. // MessageText:
  3562. //
  3563. //  The imported playlist does not contain all items from the original.%0
  3564. //
  3565. #define NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS _HRESULT_TYPEDEF_(0x000D1107L)
  3566. //
  3567. // MessageId: NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA
  3568. //
  3569. // MessageText:
  3570. //
  3571. //  The M3U playlist has been ignored because it only contains one item.%0
  3572. //
  3573. #define NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA _HRESULT_TYPEDEF_(0x000D1108L)
  3574. //
  3575. // MessageId: NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING
  3576. //
  3577. // MessageText:
  3578. //
  3579. //  The open for the child playlist associated with this media is pending.%0
  3580. //
  3581. #define NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING _HRESULT_TYPEDEF_(0x000D1109L)
  3582. //
  3583. // MessageId: NS_S_WMPCORE_MORE_NODES_AVAIABLE
  3584. //
  3585. // MessageText:
  3586. //
  3587. //  More nodes support the interface requested, but the array for returning them is full.%0
  3588. //
  3589. #define NS_S_WMPCORE_MORE_NODES_AVAIABLE _HRESULT_TYPEDEF_(0x000D110AL)
  3590. //
  3591. // WMP Internet Manager error codes
  3592. //
  3593. //
  3594. // MessageId: NS_E_WMPIM_USEROFFLINE
  3595. //
  3596. // MessageText:
  3597. //
  3598. //  Windows Media Player has detected that you are not connected to the Internet. Connect to the Internet, and then try again.%0
  3599. //
  3600. #define NS_E_WMPIM_USEROFFLINE           _HRESULT_TYPEDEF_(0xC00D1126L)
  3601. //
  3602. // MessageId: NS_E_WMPIM_USERCANCELED
  3603. //
  3604. // MessageText:
  3605. //
  3606. //  User cancelled attempt to connect to the Internet.%0
  3607. //
  3608. #define NS_E_WMPIM_USERCANCELED          _HRESULT_TYPEDEF_(0xC00D1127L)
  3609. //
  3610. // MessageId: NS_E_WMPIM_DIALUPFAILED
  3611. //
  3612. // MessageText:
  3613. //
  3614. //  Attempt to dial connection to the Internet failed.%0
  3615. //
  3616. #define NS_E_WMPIM_DIALUPFAILED          _HRESULT_TYPEDEF_(0xC00D1128L)
  3617. //
  3618. // MessageId: NS_E_WINSOCK_ERROR_STRING
  3619. //
  3620. // MessageText:
  3621. //
  3622. //  Windows Media Player has encountered an unknown network error.%0
  3623. //
  3624. #define NS_E_WINSOCK_ERROR_STRING        _HRESULT_TYPEDEF_(0xC00D1129L)
  3625. //
  3626. // WMP Backup and restore error and success codes
  3627. //
  3628. //
  3629. // MessageId: NS_E_WMPBR_NOLISTENER
  3630. //
  3631. // MessageText:
  3632. //
  3633. //  No window is currently listening to Backup and Restore events.%0
  3634. //
  3635. #define NS_E_WMPBR_NOLISTENER            _HRESULT_TYPEDEF_(0xC00D1130L)
  3636. //
  3637. // MessageId: NS_E_WMPBR_BACKUPCANCEL
  3638. //
  3639. // MessageText:
  3640. //
  3641. //  Backup of your licenses has been cancelled.  Please try again to ensure license backup.%0
  3642. //
  3643. #define NS_E_WMPBR_BACKUPCANCEL          _HRESULT_TYPEDEF_(0xC00D1131L)
  3644. //
  3645. // MessageId: NS_E_WMPBR_RESTORECANCEL
  3646. //
  3647. // MessageText:
  3648. //
  3649. //  The licenses were not restored because the restoration was cancelled.%0
  3650. //
  3651. #define NS_E_WMPBR_RESTORECANCEL         _HRESULT_TYPEDEF_(0xC00D1132L)
  3652. //
  3653. // MessageId: NS_E_WMPBR_ERRORWITHURL
  3654. //
  3655. // MessageText:
  3656. //
  3657. //  An error occurred during the backup or restore operation that requires a web page be displayed to the user.%0
  3658. //
  3659. #define NS_E_WMPBR_ERRORWITHURL          _HRESULT_TYPEDEF_(0xC00D1133L)
  3660. //
  3661. // MessageId: NS_E_WMPBR_NAMECOLLISION
  3662. //
  3663. // MessageText:
  3664. //
  3665. //  The licenses were not backed up because the backup was cancelled.%0
  3666. //
  3667. #define NS_E_WMPBR_NAMECOLLISION         _HRESULT_TYPEDEF_(0xC00D1134L)
  3668. //
  3669. // MessageId: NS_S_WMPBR_SUCCESS
  3670. //
  3671. // MessageText:
  3672. //
  3673. //  Backup or Restore successful!.%0
  3674. //
  3675. #define NS_S_WMPBR_SUCCESS               _HRESULT_TYPEDEF_(0x000D1135L)
  3676. //
  3677. // MessageId: NS_S_WMPBR_PARTIALSUCCESS
  3678. //
  3679. // MessageText:
  3680. //
  3681. //  Transfer complete with limitations.%0
  3682. //
  3683. #define NS_S_WMPBR_PARTIALSUCCESS        _HRESULT_TYPEDEF_(0x000D1136L)
  3684. //
  3685. // MessageId: NS_E_WMPBR_DRIVE_INVALID
  3686. //
  3687. // MessageText:
  3688. //
  3689. //  The location specified for restoring licenses is not valid. Choose another location, and then try again.%0
  3690. //
  3691. #define NS_E_WMPBR_DRIVE_INVALID         _HRESULT_TYPEDEF_(0xC00D1137L)
  3692. //
  3693. // WMP Effects Success codes
  3694. //
  3695. //
  3696. // MessageId: NS_S_WMPEFFECT_TRANSPARENT
  3697. //
  3698. // MessageText:
  3699. //
  3700. //  Request to the effects control to change transparency status to transparent.%0
  3701. //
  3702. #define NS_S_WMPEFFECT_TRANSPARENT       _HRESULT_TYPEDEF_(0x000D1144L)
  3703. //
  3704. // MessageId: NS_S_WMPEFFECT_OPAQUE
  3705. //
  3706. // MessageText:
  3707. //
  3708. //  Request to the effects control to change transparency status to opaque.%0
  3709. //
  3710. #define NS_S_WMPEFFECT_OPAQUE            _HRESULT_TYPEDEF_(0x000D1145L)
  3711. //
  3712. // WMP Application Success codes
  3713. //
  3714. //
  3715. // MessageId: NS_S_OPERATION_PENDING
  3716. //
  3717. // MessageText:
  3718. //
  3719. //  The requested application pane is performing an operation and will not be relased.%0
  3720. //
  3721. #define NS_S_OPERATION_PENDING           _HRESULT_TYPEDEF_(0x000D114EL)
  3722. //
  3723. // WMP DVD Error Codes
  3724. //
  3725. //
  3726. // MessageId: NS_E_DVD_NO_SUBPICTURE_STREAM
  3727. //
  3728. // MessageText:
  3729. //
  3730. //  Windows Media Player cannot display subtitles or highlights in menus. Reinstall the DVD decoder or contact your device manufacturer to obtain an updated decoder, and then try again.%0
  3731. //
  3732. #define NS_E_DVD_NO_SUBPICTURE_STREAM    _HRESULT_TYPEDEF_(0xC00D1162L)
  3733. //
  3734. // MessageId: NS_E_DVD_COPY_PROTECT
  3735. //
  3736. // MessageText:
  3737. //
  3738. //  Windows Media Player cannot play this DVD because a problem occurred with digital copyright protection.%0
  3739. //
  3740. #define NS_E_DVD_COPY_PROTECT            _HRESULT_TYPEDEF_(0xC00D1163L)
  3741. //
  3742. // MessageId: NS_E_DVD_AUTHORING_PROBLEM
  3743. //
  3744. // MessageText:
  3745. //
  3746. //  Windows Media Player cannot play this DVD because the disc is incompatible with the Player.%0
  3747. //
  3748. #define NS_E_DVD_AUTHORING_PROBLEM       _HRESULT_TYPEDEF_(0xC00D1164L)
  3749. //
  3750. // MessageId: NS_E_DVD_INVALID_DISC_REGION
  3751. //
  3752. // MessageText:
  3753. //
  3754. //  Windows Media Player cannot play this DVD because the disc prohibits playback in your region of the world. You must obtain a disc that is intended for your geographic region.%0
  3755. //
  3756. #define NS_E_DVD_INVALID_DISC_REGION     _HRESULT_TYPEDEF_(0xC00D1165L)
  3757. //
  3758. // MessageId: NS_E_DVD_COMPATIBLE_VIDEO_CARD
  3759. //
  3760. // MessageText:
  3761. //
  3762. //  Windows Media Player cannot play this DVD because your video card does not support DVD playback.%0
  3763. //
  3764. #define NS_E_DVD_COMPATIBLE_VIDEO_CARD   _HRESULT_TYPEDEF_(0xC00D1166L)
  3765. //
  3766. // MessageId: NS_E_DVD_MACROVISION
  3767. //
  3768. // MessageText:
  3769. //
  3770. //  Windows Media Player cannot play this DVD because a problem occurred with copyright protection.%0
  3771. //
  3772. #define NS_E_DVD_MACROVISION             _HRESULT_TYPEDEF_(0xC00D1167L)
  3773. //
  3774. // MessageId: NS_E_DVD_SYSTEM_DECODER_REGION
  3775. //
  3776. // MessageText:
  3777. //
  3778. //  Windows Media Player cannot play this DVD because the region assigned to your DVD drive does not match the region assigned to your DVD decoder.%0
  3779. //
  3780. #define NS_E_DVD_SYSTEM_DECODER_REGION   _HRESULT_TYPEDEF_(0xC00D1168L)
  3781. //
  3782. // MessageId: NS_E_DVD_DISC_DECODER_REGION
  3783. //
  3784. // MessageText:
  3785. //
  3786. //  Windows Media Player cannot play this DVD because the disc prohibits playback in your region of the world. To play the disc by using the Player, you must obtain a disc that is intended for your geographic region.%0
  3787. //
  3788. #define NS_E_DVD_DISC_DECODER_REGION     _HRESULT_TYPEDEF_(0xC00D1169L)
  3789. //
  3790. // MessageId: NS_E_DVD_NO_VIDEO_STREAM
  3791. //
  3792. // MessageText:
  3793. //
  3794. //  Windows Media Player is currently unable to play DVD video. Try decreasing the number of colors displayed on your monitor or decreasing the screen resolution. For additional solutions, click More Information to access the DVD Troubleshooter.%0
  3795. //
  3796. #define NS_E_DVD_NO_VIDEO_STREAM         _HRESULT_TYPEDEF_(0xC00D116AL)
  3797. //
  3798. // MessageId: NS_E_DVD_NO_AUDIO_STREAM
  3799. //
  3800. // MessageText:
  3801. //
  3802. //  Windows Media Player cannot play DVD audio. Verify that your sound card is set up correctly, and then try again.%0
  3803. //
  3804. #define NS_E_DVD_NO_AUDIO_STREAM         _HRESULT_TYPEDEF_(0xC00D116BL)
  3805. //
  3806. // MessageId: NS_E_DVD_GRAPH_BUILDING
  3807. //
  3808. // MessageText:
  3809. //
  3810. //  Windows Media Player cannot play DVD video. Close any open files and quit any other running programs, and then try again. If the problem continues, restart your computer.%0
  3811. //
  3812. #define NS_E_DVD_GRAPH_BUILDING          _HRESULT_TYPEDEF_(0xC00D116CL)
  3813. //
  3814. // MessageId: NS_E_DVD_NO_DECODER
  3815. //
  3816. // MessageText:
  3817. //
  3818. //  Windows Media Player cannot play this DVD because a compatible DVD decoder is not installed on your computer.%0
  3819. //
  3820. #define NS_E_DVD_NO_DECODER              _HRESULT_TYPEDEF_(0xC00D116DL)
  3821. //
  3822. // MessageId: NS_E_DVD_PARENTAL
  3823. //
  3824. // MessageText:
  3825. //
  3826. //  Windows Media Player cannot play this DVD segment because the segment has a parental rating higher than the rating you are authorized to view.%0
  3827. //
  3828. #define NS_E_DVD_PARENTAL                _HRESULT_TYPEDEF_(0xC00D116EL)
  3829. //
  3830. // MessageId: NS_E_DVD_CANNOT_JUMP
  3831. //
  3832. // MessageText:
  3833. //
  3834. //  Windows Media Player cannot skip to the requested location in the DVD at this time.%0
  3835. //
  3836. #define NS_E_DVD_CANNOT_JUMP             _HRESULT_TYPEDEF_(0xC00D116FL)
  3837. //
  3838. // MessageId: NS_E_DVD_DEVICE_CONTENTION
  3839. //
  3840. // MessageText:
  3841. //
  3842. //  Windows Media Player cannot play this DVD because it is currently in use by another program. Quit the other program that is using the DVD, and then try to play it again.%0
  3843. //
  3844. #define NS_E_DVD_DEVICE_CONTENTION       _HRESULT_TYPEDEF_(0xC00D1170L)
  3845. //
  3846. // MessageId: NS_E_DVD_NO_VIDEO_MEMORY
  3847. //
  3848. // MessageText:
  3849. //
  3850. //  Windows Media Player cannot play DVD video. Double-click Display in Control Panel to lower your screen resolution and color quality settings.%0
  3851. //
  3852. #define NS_E_DVD_NO_VIDEO_MEMORY         _HRESULT_TYPEDEF_(0xC00D1171L)
  3853. //
  3854. // MessageId: NS_E_DVD_CANNOT_COPY_PROTECTED
  3855. //
  3856. // MessageText:
  3857. //
  3858. //  Windows Media Player cannot copy this DVD because it is copy protected.%0
  3859. //
  3860. #define NS_E_DVD_CANNOT_COPY_PROTECTED   _HRESULT_TYPEDEF_(0xC00D1172L)
  3861. //
  3862. // MessageId: NS_E_DVD_REQUIRED_PROPERTY_NOT_SET
  3863. //
  3864. // MessageText:
  3865. //
  3866. //  One of more of the required properties has not been set.%0
  3867. //
  3868. #define NS_E_DVD_REQUIRED_PROPERTY_NOT_SET _HRESULT_TYPEDEF_(0xC00D1173L)
  3869. //
  3870. // MessageId: NS_E_DVD_INVALID_TITLE_CHAPTER
  3871. //
  3872. // MessageText:
  3873. //
  3874. //  The specified title and/or chapter number does not exist on this DVD.%0
  3875. //
  3876. #define NS_E_DVD_INVALID_TITLE_CHAPTER   _HRESULT_TYPEDEF_(0xC00D1174L)
  3877. //
  3878. // WMP PDA Error codes
  3879. //
  3880. //
  3881. // MessageId: NS_E_NO_CD_BURNER
  3882. //
  3883. // MessageText:
  3884. //
  3885. //  A CD recorder (burner) was not detected. Connect a CD recorder, and try copying again.%0
  3886. //
  3887. #define NS_E_NO_CD_BURNER                _HRESULT_TYPEDEF_(0xC00D1176L)
  3888. //
  3889. // MessageId: NS_E_DEVICE_IS_NOT_READY
  3890. //
  3891. // MessageText:
  3892. //
  3893. //  Windows Media Player does not detect any storage media in the selected device. Insert media into the device.%0
  3894. //
  3895. #define NS_E_DEVICE_IS_NOT_READY         _HRESULT_TYPEDEF_(0xC00D1177L)
  3896. //
  3897. // MessageId: NS_E_PDA_UNSUPPORTED_FORMAT
  3898. //
  3899. // MessageText:
  3900. //
  3901. //  Windows Media Player cannot play the specified file. Your portable device does not support the specified format.%0
  3902. //
  3903. #define NS_E_PDA_UNSUPPORTED_FORMAT      _HRESULT_TYPEDEF_(0xC00D1178L)
  3904. //
  3905. // MessageId: NS_E_NO_PDA
  3906. //
  3907. // MessageText:
  3908. //
  3909. //  Windows Media Player cannot detect a connected portable device. Connect your portable device, and try again.%0
  3910. //
  3911. #define NS_E_NO_PDA                      _HRESULT_TYPEDEF_(0xC00D1179L)
  3912. //
  3913. // MessageId: NS_E_PDA_UNSPECIFIED_ERROR
  3914. //
  3915. // MessageText:
  3916. //
  3917. //  Windows Media Player has encountered an error on the portable device.%0
  3918. //
  3919. #define NS_E_PDA_UNSPECIFIED_ERROR       _HRESULT_TYPEDEF_(0xC00D117AL)
  3920. //
  3921. // MessageId: NS_E_MEMSTORAGE_BAD_DATA
  3922. //
  3923. // MessageText:
  3924. //
  3925. //  Windows Media Player encountered an internal error in accessing a memory-based storage during a CD burning task.%0
  3926. //
  3927. #define NS_E_MEMSTORAGE_BAD_DATA         _HRESULT_TYPEDEF_(0xC00D117BL)
  3928. //
  3929. // MessageId: NS_E_PDA_FAIL_SELECT_DEVICE
  3930. //
  3931. // MessageText:
  3932. //
  3933. //  Windows Media Player encountered an internal error when selecting a PDA or CD device.%0
  3934. //
  3935. #define NS_E_PDA_FAIL_SELECT_DEVICE      _HRESULT_TYPEDEF_(0xC00D117CL)
  3936. //
  3937. // MessageId: NS_E_PDA_FAIL_READ_WAVE_FILE
  3938. //
  3939. // MessageText:
  3940. //
  3941. //  Windows Media Player failed to open or read data from a wave file.%0
  3942. //
  3943. #define NS_E_PDA_FAIL_READ_WAVE_FILE     _HRESULT_TYPEDEF_(0xC00D117DL)
  3944. //
  3945. // MessageId: NS_E_IMAPI_LOSSOFSTREAMING
  3946. //
  3947. // MessageText:
  3948. //
  3949. //  Windows Media Player did not copy all the selected items. The Player has reduced the recording speed of your CD drive to solve the problem. To copy all the selected items, insert a blank CD in the drive, and try again.%0
  3950. //
  3951. #define NS_E_IMAPI_LOSSOFSTREAMING       _HRESULT_TYPEDEF_(0xC00D117EL)
  3952. //
  3953. // MessageId: NS_E_PDA_DEVICE_FULL
  3954. //
  3955. // MessageText:
  3956. //
  3957. //  There is not enough storage space on the portable device to complete this operation. Delete some unneeded files on the portable device, and then try again.%0
  3958. //
  3959. #define NS_E_PDA_DEVICE_FULL             _HRESULT_TYPEDEF_(0xC00D117FL)
  3960. //
  3961. // MessageId: NS_E_FAIL_LAUNCH_ROXIO_PLUGIN
  3962. //
  3963. // MessageText:
  3964. //
  3965. //  Windows Media Player cannot copy the files to the CD. Verify that a CD-R or CD-RW drive is connected to your computer, and then try again. If the problem continues, reinstall the Player.%0
  3966. //
  3967. #define NS_E_FAIL_LAUNCH_ROXIO_PLUGIN    _HRESULT_TYPEDEF_(0xC00D1180L)
  3968. //
  3969. // MessageId: NS_E_PDA_DEVICE_FULL_IN_SESSION
  3970. //
  3971. // MessageText:
  3972. //
  3973. //  Windows Media Player failed to copy some files to device because the device is out of space.%0
  3974. //
  3975. #define NS_E_PDA_DEVICE_FULL_IN_SESSION  _HRESULT_TYPEDEF_(0xC00D1181L)
  3976. //
  3977. // MessageId: NS_E_IMAPI_MEDIUM_INVALIDTYPE
  3978. //
  3979. // MessageText:
  3980. //
  3981. //  The medium in the drive is invalid. Please insert a blank CD-R or a CD-RW into the drive, and then try again.%0
  3982. //
  3983. #define NS_E_IMAPI_MEDIUM_INVALIDTYPE    _HRESULT_TYPEDEF_(0xC00D1182L)
  3984. //
  3985. // General Remapped Error codes in WMP
  3986. //
  3987. //
  3988. // MessageId: NS_E_WMP_PROTOCOL_PROBLEM
  3989. //
  3990. // MessageText:
  3991. //
  3992. //  Windows Media Player could not open the specified URL. Be sure Windows Media Player is configured to use all available protocols, and then try again.%0
  3993. //
  3994. #define NS_E_WMP_PROTOCOL_PROBLEM        _HRESULT_TYPEDEF_(0xC00D1194L)
  3995. //
  3996. // MessageId: NS_E_WMP_NO_DISK_SPACE
  3997. //
  3998. // MessageText:
  3999. //
  4000. //  Windows Media Player cannot open the file because there is not enough disk space on your computer. Delete some unneeded files on your hard disk, and then try again.%0
  4001. //
  4002. #define NS_E_WMP_NO_DISK_SPACE           _HRESULT_TYPEDEF_(0xC00D1195L)
  4003. //
  4004. // MessageId: NS_E_WMP_LOGON_FAILURE
  4005. //
  4006. // MessageText:
  4007. //
  4008. //  Windows Media Player cannot copy or play the file because the server denied access to it. Verify that you have access rights to the file, and then try again.%0
  4009. //
  4010. #define NS_E_WMP_LOGON_FAILURE           _HRESULT_TYPEDEF_(0xC00D1196L)
  4011. //
  4012. // MessageId: NS_E_WMP_CANNOT_FIND_FILE
  4013. //
  4014. // MessageText:
  4015. //
  4016. //  Windows Media Player cannot find the specified file. Be sure the path is typed correctly. If it is, the file does not exist at the specified location, or the computer where the file is stored is offline.%0
  4017. //
  4018. #define NS_E_WMP_CANNOT_FIND_FILE        _HRESULT_TYPEDEF_(0xC00D1197L)
  4019. //
  4020. // MessageId: NS_E_WMP_SERVER_INACCESSIBLE
  4021. //
  4022. // MessageText:
  4023. //
  4024. //  Windows Media Player cannot connect to the server. The server name may be incorrect or the server is busy. Try again later.%0
  4025. //
  4026. #define NS_E_WMP_SERVER_INACCESSIBLE     _HRESULT_TYPEDEF_(0xC00D1198L)
  4027. //
  4028. // MessageId: NS_E_WMP_UNSUPPORTED_FORMAT
  4029. //
  4030. // MessageText:
  4031. //
  4032. //  Windows Media Player cannot play the file. The file is either corrupt or the Player does not support the format you are trying to play.%0
  4033. //
  4034. #define NS_E_WMP_UNSUPPORTED_FORMAT      _HRESULT_TYPEDEF_(0xC00D1199L)
  4035. //
  4036. // MessageId: NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT
  4037. //
  4038. // MessageText:
  4039. //
  4040. //  Windows Media Player cannot play the file. The file may be formatted with an unsupported codec, or the Internet security setting on your computer is set too high. Lower your browser's security setting, and then try again.%0
  4041. //
  4042. #define NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT _HRESULT_TYPEDEF_(0xC00D119AL)
  4043. //
  4044. // MessageId: NS_E_WMP_PLAYLIST_EXISTS
  4045. //
  4046. // MessageText:
  4047. //
  4048. //  Windows Media Player cannot create the playlist because the name already exists. Type a different playlist name.%0
  4049. //
  4050. #define NS_E_WMP_PLAYLIST_EXISTS         _HRESULT_TYPEDEF_(0xC00D119BL)