Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9228 lines
234 KiB

  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:\n\n\t<?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)
  4051. //
  4052. // MessageId: NS_E_WMP_NONMEDIA_FILES
  4053. //
  4054. // MessageText:
  4055. //
  4056. // Windows Media Player could not delete the playlist because it contains non-digital media files. Any digital media files in the playlist were deleted. Use Windows Explorer to delete non-digital media files, and then try deleting the playlist again.%0
  4057. //
  4058. #define NS_E_WMP_NONMEDIA_FILES _HRESULT_TYPEDEF_(0xC00D119CL)
  4059. //
  4060. // MessageId: NS_E_WMP_INVALID_ASX
  4061. //
  4062. // MessageText:
  4063. //
  4064. // Windows Media Player cannot play the file because the associated playlist is not valid.%0
  4065. //
  4066. #define NS_E_WMP_INVALID_ASX _HRESULT_TYPEDEF_(0xC00D119DL)
  4067. //
  4068. // MessageId: NS_E_WMP_ALREADY_IN_USE
  4069. //
  4070. // MessageText:
  4071. //
  4072. // Windows Media Player is already in use. Stop playing any content and close all Player dialog boxes and then try again.%0
  4073. //
  4074. #define NS_E_WMP_ALREADY_IN_USE _HRESULT_TYPEDEF_(0xC00D119EL)
  4075. //
  4076. // MessageId: NS_E_WMP_IMAPI_FAILURE
  4077. //
  4078. // MessageText:
  4079. //
  4080. // Windows Media Player has encountered an unknown error with your recordable disc.%0
  4081. //
  4082. #define NS_E_WMP_IMAPI_FAILURE _HRESULT_TYPEDEF_(0xC00D119FL)
  4083. //
  4084. // MessageId: NS_E_WMP_WMDM_FAILURE
  4085. //
  4086. // MessageText:
  4087. //
  4088. // Windows Media Player has encountered an unknown error with your portable device. Reconnect your portable device and try again.%0
  4089. //
  4090. #define NS_E_WMP_WMDM_FAILURE _HRESULT_TYPEDEF_(0xC00D11A0L)
  4091. //
  4092. // MessageId: NS_E_WMP_CODEC_NEEDED_WITH_4CC
  4093. //
  4094. // MessageText:
  4095. //
  4096. // The %s codec is required to play this file. To determine if this codec is available to download from the Web, click Web Help.%0
  4097. //
  4098. #define NS_E_WMP_CODEC_NEEDED_WITH_4CC _HRESULT_TYPEDEF_(0xC00D11A1L)
  4099. //
  4100. // MessageId: NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG
  4101. //
  4102. // MessageText:
  4103. //
  4104. // The audio codec identified by the format tag %s is required to play this file. To determine if this codec is available to download from the Web, click Web Help.%0
  4105. //
  4106. #define NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG _HRESULT_TYPEDEF_(0xC00D11A2L)
  4107. //
  4108. // MessageId: NS_E_WMP_MSSAP_NOT_AVAILABLE
  4109. //
  4110. // MessageText:
  4111. //
  4112. // To play this file, you must install the latest Windows XP service pack. To install the service pack from the Windows Update Web site, click Web Help.%0
  4113. //
  4114. #define NS_E_WMP_MSSAP_NOT_AVAILABLE _HRESULT_TYPEDEF_(0xC00D11A3L)
  4115. //
  4116. // MessageId: NS_E_WMP_WMDM_INTERFACEDEAD
  4117. //
  4118. // MessageText:
  4119. //
  4120. // Windows Media Player no longer detects a portable device. Reconnect your portable device, and try again.%0
  4121. //
  4122. #define NS_E_WMP_WMDM_INTERFACEDEAD _HRESULT_TYPEDEF_(0xC00D11A4L)
  4123. //
  4124. // MessageId: NS_E_WMP_WMDM_NOTCERTIFIED
  4125. //
  4126. // MessageText:
  4127. //
  4128. // Windows Media Player cannot copy the file because the portable device does not support protected files.%0
  4129. //
  4130. #define NS_E_WMP_WMDM_NOTCERTIFIED _HRESULT_TYPEDEF_(0xC00D11A5L)
  4131. //
  4132. // MessageId: NS_E_WMP_WMDM_LICENSE_NOTEXIST
  4133. //
  4134. // MessageText:
  4135. //
  4136. // Windows Media Player cannot copy the file because a license for this file could not be found on your computer. If you obtained this file from a Web site, return to the site, and try downloading the file again.%0
  4137. //
  4138. #define NS_E_WMP_WMDM_LICENSE_NOTEXIST _HRESULT_TYPEDEF_(0xC00D11A6L)
  4139. //
  4140. // MessageId: NS_E_WMP_WMDM_LICENSE_EXPIRED
  4141. //
  4142. // MessageText:
  4143. //
  4144. // Windows Media Player cannot copy the file because the license for this file has expired. If you obtained this file from a Web site, return to the site, and try downloading the file again.%0
  4145. //
  4146. #define NS_E_WMP_WMDM_LICENSE_EXPIRED _HRESULT_TYPEDEF_(0xC00D11A7L)
  4147. //
  4148. // MessageId: NS_E_WMP_WMDM_BUSY
  4149. //
  4150. // MessageText:
  4151. //
  4152. // The portable device is already in use. Wait until the current process finishes or quit other programs that may be using the portable device, and then try again.%0
  4153. //
  4154. #define NS_E_WMP_WMDM_BUSY _HRESULT_TYPEDEF_(0xC00D11A8L)
  4155. //
  4156. // MessageId: NS_E_WMP_WMDM_NORIGHTS
  4157. //
  4158. // MessageText:
  4159. //
  4160. // Windows Media Player cannot copy the file because the license or device restricts it.%0
  4161. //
  4162. #define NS_E_WMP_WMDM_NORIGHTS _HRESULT_TYPEDEF_(0xC00D11A9L)
  4163. //
  4164. // MessageId: NS_E_WMP_WMDM_INCORRECT_RIGHTS
  4165. //
  4166. // MessageText:
  4167. //
  4168. // Windows Media Player cannot copy the file because the license associated with the file restricts it.%0
  4169. //
  4170. #define NS_E_WMP_WMDM_INCORRECT_RIGHTS _HRESULT_TYPEDEF_(0xC00D11AAL)
  4171. //
  4172. // MessageId: NS_E_WMP_IMAPI_GENERIC
  4173. //
  4174. // MessageText:
  4175. //
  4176. // Windows Media Player cannot copy files to the recordable disc.%0
  4177. //
  4178. #define NS_E_WMP_IMAPI_GENERIC _HRESULT_TYPEDEF_(0xC00D11ABL)
  4179. //
  4180. // MessageId: NS_E_WMP_IMAPI_DEVICE_NOTPRESENT
  4181. //
  4182. // MessageText:
  4183. //
  4184. // Windows Media Player cannot copy files to the recordable disc. Verify that the CD-R or CD-RW drive is connected, and then try again.%0
  4185. //
  4186. #define NS_E_WMP_IMAPI_DEVICE_NOTPRESENT _HRESULT_TYPEDEF_(0xC00D11ADL)
  4187. //
  4188. // MessageId: NS_E_WMP_IMAPI_STASHINUSE
  4189. //
  4190. // MessageText:
  4191. //
  4192. // The CD-R or CD-RW drive may already be in use. Wait until the current process finishes or quit other programs that may be using the CD-R or CD-RW drive, and then try again.%0
  4193. //
  4194. #define NS_E_WMP_IMAPI_STASHINUSE _HRESULT_TYPEDEF_(0xC00D11AEL)
  4195. //
  4196. // MessageId: NS_E_WMP_IMAPI_LOSS_OF_STREAMING
  4197. //
  4198. // MessageText:
  4199. //
  4200. // Windows Media Player cannot copy files to the recordable disc.%0
  4201. //
  4202. #define NS_E_WMP_IMAPI_LOSS_OF_STREAMING _HRESULT_TYPEDEF_(0xC00D11AFL)
  4203. //
  4204. // MessageId: NS_E_WMP_SERVER_UNAVAILABLE
  4205. //
  4206. // MessageText:
  4207. //
  4208. // Windows Media Player cannot play the file because the server is busy. Try again later.%0
  4209. //
  4210. #define NS_E_WMP_SERVER_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D11B0L)
  4211. //
  4212. // MessageId: NS_E_WMP_FILE_OPEN_FAILED
  4213. //
  4214. // MessageText:
  4215. //
  4216. // Windows Media Player cannot open the file.%0
  4217. //
  4218. #define NS_E_WMP_FILE_OPEN_FAILED _HRESULT_TYPEDEF_(0xC00D11B1L)
  4219. //
  4220. // MessageId: NS_E_WMP_VERIFY_ONLINE
  4221. //
  4222. // MessageText:
  4223. //
  4224. // To play the file, Windows Media Player must obtain a license from the Internet. Connect to the Internet, and then try again.%0
  4225. //
  4226. #define NS_E_WMP_VERIFY_ONLINE _HRESULT_TYPEDEF_(0xC00D11B2L)
  4227. //
  4228. // MessageId: NS_E_WMP_SERVER_NOT_RESPONDING
  4229. //
  4230. // MessageText:
  4231. //
  4232. // Windows Media Player cannot play the file because the server is not responding. If you entered a URL or path to play the file, verify that it is correct. If you clicked a link to play the file, the link may not be valid.%0
  4233. //
  4234. #define NS_E_WMP_SERVER_NOT_RESPONDING _HRESULT_TYPEDEF_(0xC00D11B3L)
  4235. //
  4236. // MessageId: NS_E_WMP_DRM_CORRUPT_BACKUP
  4237. //
  4238. // MessageText:
  4239. //
  4240. // Windows Media Player cannot restore your licenses because no backed up licenses were found on your computer.%0
  4241. //
  4242. #define NS_E_WMP_DRM_CORRUPT_BACKUP _HRESULT_TYPEDEF_(0xC00D11B4L)
  4243. //
  4244. // MessageId: NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE
  4245. //
  4246. // MessageText:
  4247. //
  4248. // To play the file, Windows Media Player must obtain a license from the Internet. However, the license server is currently not available. Try again later.%0
  4249. //
  4250. #define NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D11B5L)
  4251. //
  4252. // MessageId: NS_E_WMP_NETWORK_FIREWALL
  4253. //
  4254. // MessageText:
  4255. //
  4256. // Windows Media Player cannot play the file. A network firewall may be preventing the Player from opening the file by using the UDP transport protocol. To play this file, try opening the file without specifying UDP.%0
  4257. //
  4258. #define NS_E_WMP_NETWORK_FIREWALL _HRESULT_TYPEDEF_(0xC00D11B6L)
  4259. //
  4260. // MessageId: NS_E_WMP_NO_REMOVABLE_MEDIA
  4261. //
  4262. // MessageText:
  4263. //
  4264. // Insert the removable media, and then try again.%0
  4265. //
  4266. #define NS_E_WMP_NO_REMOVABLE_MEDIA _HRESULT_TYPEDEF_(0xC00D11B7L)
  4267. //
  4268. // MessageId: NS_E_WMP_PROXY_CONNECT_TIMEOUT
  4269. //
  4270. // MessageText:
  4271. //
  4272. // Windows Media Player cannot play the file because the proxy server is not responding. The proxy server may be temporarily unavailable or your Player proxy settings may not be valid.%0
  4273. //
  4274. #define NS_E_WMP_PROXY_CONNECT_TIMEOUT _HRESULT_TYPEDEF_(0xC00D11B8L)
  4275. //
  4276. // MessageId: NS_E_WMP_NEED_UPGRADE
  4277. //
  4278. // MessageText:
  4279. //
  4280. // To play this file, you must upgrade to the latest version of Windows Media Player. To upgrade the Player, on the Help menu, click Check For Player Updates, and then follow the instructions.%0
  4281. //
  4282. #define NS_E_WMP_NEED_UPGRADE _HRESULT_TYPEDEF_(0xC00D11B9L)
  4283. //
  4284. // MessageId: NS_E_WMP_AUDIO_HW_PROBLEM
  4285. //
  4286. // MessageText:
  4287. //
  4288. // Windows Media Player cannot play the file because there is a problem with your sound device. There may not be a sound device installed on your computer, it may be in use by another program, or it may not be functioning properly.%0
  4289. //
  4290. #define NS_E_WMP_AUDIO_HW_PROBLEM _HRESULT_TYPEDEF_(0xC00D11BAL)
  4291. //
  4292. // MessageId: NS_E_WMP_INVALID_PROTOCOL
  4293. //
  4294. // MessageText:
  4295. //
  4296. // Windows Media Player cannot play the file because the specified protocol is not supported. In the Open URL dialog, try opening the file using a different transport protocol (for example, "http:" or "rtsp:").%0
  4297. //
  4298. #define NS_E_WMP_INVALID_PROTOCOL _HRESULT_TYPEDEF_(0xC00D11BBL)
  4299. //
  4300. // MessageId: NS_E_WMP_INVALID_LIBRARY_ADD
  4301. //
  4302. // MessageText:
  4303. //
  4304. // Windows Media Player cannot add the file to Media Library because the file format is not supported.%0
  4305. //
  4306. #define NS_E_WMP_INVALID_LIBRARY_ADD _HRESULT_TYPEDEF_(0xC00D11BCL)
  4307. //
  4308. // MessageId: NS_E_WMP_MMS_NOT_SUPPORTED
  4309. //
  4310. // MessageText:
  4311. //
  4312. // Windows Media Player cannot play the file because the specified protocol is not supported. In the Open URL dialog, try opening the file using a different transport protocol (for example, "mms:").%0
  4313. //
  4314. #define NS_E_WMP_MMS_NOT_SUPPORTED _HRESULT_TYPEDEF_(0xC00D11BDL)
  4315. //
  4316. // MessageId: NS_E_WMP_NO_PROTOCOLS_SELECTED
  4317. //
  4318. // MessageText:
  4319. //
  4320. // Windows Media Player cannot play the file because there are no streaming protocols selected. Select one or more protocols, and then try again.%0
  4321. //
  4322. #define NS_E_WMP_NO_PROTOCOLS_SELECTED _HRESULT_TYPEDEF_(0xC00D11BEL)
  4323. //
  4324. // MessageId: NS_E_WMP_GOFULLSCREEN_FAILED
  4325. //
  4326. // MessageText:
  4327. //
  4328. // To use the Full Screen command, you may need to adjust your Windows display settings. Open Display in Control Panel, and try setting Hardware acceleration to Full.%0
  4329. //
  4330. #define NS_E_WMP_GOFULLSCREEN_FAILED _HRESULT_TYPEDEF_(0xC00D11BFL)
  4331. //
  4332. // MessageId: NS_E_WMP_NETWORK_ERROR
  4333. //
  4334. // MessageText:
  4335. //
  4336. // Windows Media Player cannot play the file because a network error occurred.%0
  4337. //
  4338. #define NS_E_WMP_NETWORK_ERROR _HRESULT_TYPEDEF_(0xC00D11C0L)
  4339. //
  4340. // MessageId: NS_E_WMP_CONNECT_TIMEOUT
  4341. //
  4342. // MessageText:
  4343. //
  4344. // Windows Media Player cannot play the file because the server is not responding. Verify that you are connected to the network, and then try again later.%0
  4345. //
  4346. #define NS_E_WMP_CONNECT_TIMEOUT _HRESULT_TYPEDEF_(0xC00D11C1L)
  4347. //
  4348. // MessageId: NS_E_WMP_MULTICAST_DISABLED
  4349. //
  4350. // MessageText:
  4351. //
  4352. // Windows Media Player cannot play the file because the multicast protocol is not enabled. On the Tools menu, click Options, click the Network tab, and then select the Multicast check box.%0
  4353. //
  4354. #define NS_E_WMP_MULTICAST_DISABLED _HRESULT_TYPEDEF_(0xC00D11C2L)
  4355. //
  4356. // MessageId: NS_E_WMP_SERVER_DNS_TIMEOUT
  4357. //
  4358. // MessageText:
  4359. //
  4360. // Windows Media Player cannot play the file because a network problem occurred. Verify that you are connected to the network, and then try again later.%0
  4361. //
  4362. #define NS_E_WMP_SERVER_DNS_TIMEOUT _HRESULT_TYPEDEF_(0xC00D11C3L)
  4363. //
  4364. // MessageId: NS_E_WMP_PROXY_NOT_FOUND
  4365. //
  4366. // MessageText:
  4367. //
  4368. // Windows Media Player cannot play the file because the network proxy server could not be found. Verify your proxy settings, and then try again.%0
  4369. //
  4370. #define NS_E_WMP_PROXY_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D11C4L)
  4371. //
  4372. // MessageId: NS_E_WMP_TAMPERED_CONTENT
  4373. //
  4374. // MessageText:
  4375. //
  4376. // Windows Media Player cannot play the file because it is damaged or corrupted.%0
  4377. //
  4378. #define NS_E_WMP_TAMPERED_CONTENT _HRESULT_TYPEDEF_(0xC00D11C5L)
  4379. //
  4380. // MessageId: NS_E_WMP_OUTOFMEMORY
  4381. //
  4382. // MessageText:
  4383. //
  4384. // Your computer is running low on memory. Quit other programs, and then try again.%0
  4385. //
  4386. #define NS_E_WMP_OUTOFMEMORY _HRESULT_TYPEDEF_(0xC00D11C6L)
  4387. //
  4388. // MessageId: NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED
  4389. //
  4390. // MessageText:
  4391. //
  4392. // Windows Media Player cannot play the file because the required audio codec is not installed on your computer.%0
  4393. //
  4394. #define NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D11C7L)
  4395. //
  4396. // MessageId: NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED
  4397. //
  4398. // MessageText:
  4399. //
  4400. // Windows Media Player cannot play the file because the required video codec is not installed on your computer.%0
  4401. //
  4402. #define NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D11C8L)
  4403. //
  4404. // MessageId: NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE
  4405. //
  4406. // MessageText:
  4407. //
  4408. // Windows Media Player cannot copy the files to the recordable disc.%0
  4409. //
  4410. #define NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE _HRESULT_TYPEDEF_(0xC00D11C9L)
  4411. //
  4412. // MessageId: NS_E_WMP_DRM_DRIVER_AUTH_FAILURE
  4413. //
  4414. // MessageText:
  4415. //
  4416. // Windows Media Player cannot play the licensed file because there is a problem with your sound device. Try installing a new device driver or use a different sound device.%0
  4417. //
  4418. #define NS_E_WMP_DRM_DRIVER_AUTH_FAILURE _HRESULT_TYPEDEF_(0xC00D11CAL)
  4419. //
  4420. // MessageId: NS_E_WMP_NETWORK_RESOURCE_FAILURE
  4421. //
  4422. // MessageText:
  4423. //
  4424. // Windows Media Player encountered a network problem. Restart the Player.%0
  4425. //
  4426. #define NS_E_WMP_NETWORK_RESOURCE_FAILURE _HRESULT_TYPEDEF_(0xC00D11CBL)
  4427. //
  4428. // MessageId: NS_E_WMP_UPGRADE_APPLICATION
  4429. //
  4430. // MessageText:
  4431. //
  4432. // Windows Media Player is not installed properly. Reinstall the Player.%0
  4433. //
  4434. #define NS_E_WMP_UPGRADE_APPLICATION _HRESULT_TYPEDEF_(0xC00D11CCL)
  4435. //
  4436. // MessageId: NS_E_WMP_UNKNOWN_ERROR
  4437. //
  4438. // MessageText:
  4439. //
  4440. // Windows Media Player encountered an unknown error.%0
  4441. //
  4442. #define NS_E_WMP_UNKNOWN_ERROR _HRESULT_TYPEDEF_(0xC00D11CDL)
  4443. //
  4444. // MessageId: NS_E_WMP_INVALID_KEY
  4445. //
  4446. // MessageText:
  4447. //
  4448. // Windows Media Player cannot play the file because the required codec is not valid.%0
  4449. //
  4450. #define NS_E_WMP_INVALID_KEY _HRESULT_TYPEDEF_(0xC00D11CEL)
  4451. //
  4452. // MessageId: NS_E_WMP_CD_ANOTHER_USER
  4453. //
  4454. // MessageText:
  4455. //
  4456. // The CD drive is in use by another user. Wait for the operation to complete, and then try again.%0
  4457. //
  4458. #define NS_E_WMP_CD_ANOTHER_USER _HRESULT_TYPEDEF_(0xC00D11CFL)
  4459. //
  4460. // MessageId: NS_E_WMP_DRM_NEEDS_AUTHORIZATION
  4461. //
  4462. // MessageText:
  4463. //
  4464. // Windows Media Player cannot play the licensed file because the required security upgrade is not available for download.%0
  4465. //
  4466. #define NS_E_WMP_DRM_NEEDS_AUTHORIZATION _HRESULT_TYPEDEF_(0xC00D11D0L)
  4467. //
  4468. // MessageId: NS_E_WMP_BAD_DRIVER
  4469. //
  4470. // MessageText:
  4471. //
  4472. // Windows Media Player cannot play the file because there may be a problem with your sound or video device. Try installing a new device driver.%0
  4473. //
  4474. #define NS_E_WMP_BAD_DRIVER _HRESULT_TYPEDEF_(0xC00D11D1L)
  4475. //
  4476. // MessageId: NS_E_WMP_ACCESS_DENIED
  4477. //
  4478. // MessageText:
  4479. //
  4480. // Windows Media Player cannot access the file.%0
  4481. //
  4482. #define NS_E_WMP_ACCESS_DENIED _HRESULT_TYPEDEF_(0xC00D11D2L)
  4483. //
  4484. // MessageId: NS_E_WMP_LICENSE_RESTRICTS
  4485. //
  4486. // MessageText:
  4487. //
  4488. // Windows Media Player cannot copy the file to the device because the license restricts it.%0
  4489. //
  4490. #define NS_E_WMP_LICENSE_RESTRICTS _HRESULT_TYPEDEF_(0xC00D11D3L)
  4491. //
  4492. // MessageId: NS_E_WMP_INVALID_REQUEST
  4493. //
  4494. // MessageText:
  4495. //
  4496. // Windows Media Player cannot perform the requested action at this time.%0
  4497. //
  4498. #define NS_E_WMP_INVALID_REQUEST _HRESULT_TYPEDEF_(0xC00D11D4L)
  4499. //
  4500. // MessageId: NS_E_WMP_CD_STASH_NO_SPACE
  4501. //
  4502. // MessageText:
  4503. //
  4504. // Windows Media Player cannot copy the files because there is not enough free disk space to store the temporary files. Delete some unneeded files on your hard disk, and then try again.%0
  4505. //
  4506. #define NS_E_WMP_CD_STASH_NO_SPACE _HRESULT_TYPEDEF_(0xC00D11D5L)
  4507. //
  4508. // MessageId: NS_E_WMP_DRM_NEW_HARDWARE
  4509. //
  4510. // MessageText:
  4511. //
  4512. // Windows Media Player cannot play the file because the associated license is either corrupted or not valid. The license may no longer be valid if you have replaced hardware components in your computer.%0
  4513. //
  4514. #define NS_E_WMP_DRM_NEW_HARDWARE _HRESULT_TYPEDEF_(0xC00D11D6L)
  4515. //
  4516. // MessageId: NS_E_WMP_DRM_INVALID_SIG
  4517. //
  4518. // MessageText:
  4519. //
  4520. // The required security upgrade cannot be validated. Try installing the latest Internet Explorer service pack. To install the service pack from the Windows Update Web site, click Web Help.%0
  4521. //
  4522. #define NS_E_WMP_DRM_INVALID_SIG _HRESULT_TYPEDEF_(0xC00D11D7L)
  4523. //
  4524. // MessageId: NS_E_WMP_DRM_CANNOT_RESTORE
  4525. //
  4526. // MessageText:
  4527. //
  4528. // Windows Media Player cannot restore your licenses because you have exceeded the restore limit for the day. Try again tomorrow.%0
  4529. //
  4530. #define NS_E_WMP_DRM_CANNOT_RESTORE _HRESULT_TYPEDEF_(0xC00D11D8L)
  4531. //
  4532. // WMP CD Filter Error codes extension
  4533. //
  4534. //
  4535. // MessageId: NS_E_CD_NO_BUFFERS_READ
  4536. //
  4537. // MessageText:
  4538. //
  4539. // Windows Media Player encountered an error when reading the CD-ROM drive in digital mode. You can try to use digital mode again, or you can switch the Player to analog mode.%0
  4540. //
  4541. #define NS_E_CD_NO_BUFFERS_READ _HRESULT_TYPEDEF_(0xC00D11F8L)
  4542. //
  4543. // MessageId: NS_E_CD_EMPTY_TRACK_QUEUE
  4544. //
  4545. // MessageText:
  4546. //
  4547. // No CD track was specified for playback.%0
  4548. //
  4549. #define NS_E_CD_EMPTY_TRACK_QUEUE _HRESULT_TYPEDEF_(0xC00D11F9L)
  4550. //
  4551. // MessageId: NS_E_CD_NO_READER
  4552. //
  4553. // MessageText:
  4554. //
  4555. // The CD filter was not able to create the CD reader.%0
  4556. //
  4557. #define NS_E_CD_NO_READER _HRESULT_TYPEDEF_(0xC00D11FAL)
  4558. //
  4559. // MessageId: NS_E_CD_ISRC_INVALID
  4560. //
  4561. // MessageText:
  4562. //
  4563. // Invalid ISRC code.%0
  4564. //
  4565. #define NS_E_CD_ISRC_INVALID _HRESULT_TYPEDEF_(0xC00D11FBL)
  4566. //
  4567. // MessageId: NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID
  4568. //
  4569. // MessageText:
  4570. //
  4571. // Invalid Media Catalog Number.%0
  4572. //
  4573. #define NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID _HRESULT_TYPEDEF_(0xC00D11FCL)
  4574. //
  4575. // MessageId: NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION
  4576. //
  4577. // MessageText:
  4578. //
  4579. // Media Player has detected that your CD drive cannot play back audio CDs correctly because the drive is too slow with error correction turned on. Please turn off error correction for this drive.%0
  4580. //
  4581. #define NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION _HRESULT_TYPEDEF_(0xC00D11FDL)
  4582. //
  4583. // MessageId: NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS
  4584. //
  4585. // MessageText:
  4586. //
  4587. // The CD track is too small to make a good estimate of the CD's speed.%0
  4588. //
  4589. #define NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS _HRESULT_TYPEDEF_(0xC00D11FEL)
  4590. //
  4591. // MessageId: NS_E_CD_QUEUEING_DISABLED
  4592. //
  4593. // MessageText:
  4594. //
  4595. // Cannot queue the given CD track as queuing is disabled.%0
  4596. //
  4597. #define NS_E_CD_QUEUEING_DISABLED _HRESULT_TYPEDEF_(0xC00D11FFL)
  4598. //
  4599. // WMP Policy error codes
  4600. //
  4601. //
  4602. // MessageId: NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED
  4603. //
  4604. // MessageText:
  4605. //
  4606. // Media Player failed to read a policy. This can happen when the policy is not present in the registry or when there is a failure to read from the registry.%0
  4607. //
  4608. #define NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED _HRESULT_TYPEDEF_(0xC00D122AL)
  4609. //
  4610. //Background download plugin
  4611. //
  4612. //
  4613. // MessageId: NS_E_WMP_HWND_NOTFOUND
  4614. //
  4615. // MessageText:
  4616. //
  4617. // Windows Media Player main window not found. The download manager needs to find it to work properly. Please try to run Windows Media Player again.%0
  4618. //
  4619. #define NS_E_WMP_HWND_NOTFOUND _HRESULT_TYPEDEF_(0xC00D125CL)
  4620. //
  4621. // MessageId: NS_E_BKGDOWNLOAD_WRONG_NO_FILES
  4622. //
  4623. // MessageText:
  4624. //
  4625. // Windows media player encountered a download with wrong number of files. This may happen if some other application is trying to create jobs with same signature as Windows Media Player.%0
  4626. //
  4627. #define NS_E_BKGDOWNLOAD_WRONG_NO_FILES _HRESULT_TYPEDEF_(0xC00D125DL)
  4628. //
  4629. // MessageId: NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB
  4630. //
  4631. // MessageText:
  4632. //
  4633. // Windows Media Player tried to complete a download that was already cancelled. The file will not be available.%0
  4634. //
  4635. #define NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB _HRESULT_TYPEDEF_(0xC00D125EL)
  4636. //
  4637. // MessageId: NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB
  4638. //
  4639. // MessageText:
  4640. //
  4641. // Windows Media Player tried to cancel a download that was already completed. The file will not be removed.%0
  4642. //
  4643. #define NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB _HRESULT_TYPEDEF_(0xC00D125FL)
  4644. //
  4645. // MessageId: NS_E_BKGDOWNLOAD_NOJOBPOINTER
  4646. //
  4647. // MessageText:
  4648. //
  4649. // Windows Media Player is trying to access an invalid download.%0
  4650. //
  4651. #define NS_E_BKGDOWNLOAD_NOJOBPOINTER _HRESULT_TYPEDEF_(0xC00D1260L)
  4652. //
  4653. // MessageId: NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE
  4654. //
  4655. // MessageText:
  4656. //
  4657. // This download was not created by Windows Media Player.%0
  4658. //
  4659. #define NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE _HRESULT_TYPEDEF_(0xC00D1261L)
  4660. //
  4661. // MessageId: NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE
  4662. //
  4663. // MessageText:
  4664. //
  4665. // The Windows Media Player download manager failed to create a temporary file name. This may happen if the path in invalid or if the disk is full. Please check your system and try again.%0
  4666. //
  4667. #define NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE _HRESULT_TYPEDEF_(0xC00D1262L)
  4668. //
  4669. // MessageId: NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE
  4670. //
  4671. // MessageText:
  4672. //
  4673. // The Windows Media Player download manager plugin failed to initialize. This may happen if the system is out of resources. Please check your system and try again.%0
  4674. //
  4675. #define NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE _HRESULT_TYPEDEF_(0xC00D1263L)
  4676. //
  4677. // MessageId: NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE
  4678. //
  4679. // MessageText:
  4680. //
  4681. // The Windows Media Player download manager failed to move the file.%0
  4682. //
  4683. #define NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE _HRESULT_TYPEDEF_(0xC00D1264L)
  4684. //
  4685. // MessageId: NS_E_BKGDOWNLOAD_CALLFUNCFAILED
  4686. //
  4687. // MessageText:
  4688. //
  4689. // Download manager failed to accomplish a task. This happened because the system has no resources to allocate.%0
  4690. //
  4691. #define NS_E_BKGDOWNLOAD_CALLFUNCFAILED _HRESULT_TYPEDEF_(0xC00D1265L)
  4692. //
  4693. // MessageId: NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT
  4694. //
  4695. // MessageText:
  4696. //
  4697. // The Windows Media Player download manager failed to accomplish a task because the task took too long to execute.%0
  4698. //
  4699. #define NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT _HRESULT_TYPEDEF_(0xC00D1266L)
  4700. //
  4701. // MessageId: NS_E_BKGDOWNLOAD_CALLFUNCENDED
  4702. //
  4703. // MessageText:
  4704. //
  4705. // The Windows Media Player download manager failed to accomplish a task because Windows Media Player is terminating the service. The task will be recovered when Windows Media Player starts again.%0
  4706. //
  4707. #define NS_E_BKGDOWNLOAD_CALLFUNCENDED _HRESULT_TYPEDEF_(0xC00D1267L)
  4708. //
  4709. // MessageId: NS_E_BKGDOWNLOAD_WMDUNPACKFAILED
  4710. //
  4711. // MessageText:
  4712. //
  4713. // The Windows Media Player download manager failed to unpack a WMD package that was transferred. The file will be deleted and the operation will not be successfully completed.%0
  4714. //
  4715. #define NS_E_BKGDOWNLOAD_WMDUNPACKFAILED _HRESULT_TYPEDEF_(0xC00D1268L)
  4716. //
  4717. // MessageId: NS_E_BKGDOWNLOAD_FAILEDINITIALIZE
  4718. //
  4719. // MessageText:
  4720. //
  4721. // The Windows Media Player download manager failed to initialize. This may happen if the system is out of resources. Please check your system and try again.%0
  4722. //
  4723. #define NS_E_BKGDOWNLOAD_FAILEDINITIALIZE _HRESULT_TYPEDEF_(0xC00D1269L)
  4724. //
  4725. // MessageId: NS_E_INTERFACE_NOT_REGISTERED_IN_GIT
  4726. //
  4727. // MessageText:
  4728. //
  4729. // Windows Media Player failed to access a required functionality. This could be caused by wrong system or media player dlls being loaded.%0
  4730. //
  4731. #define NS_E_INTERFACE_NOT_REGISTERED_IN_GIT _HRESULT_TYPEDEF_(0xC00D126AL)
  4732. //
  4733. // MessageId: NS_E_BKGDOWNLOAD_INVALID_FILE_NAME
  4734. //
  4735. // MessageText:
  4736. //
  4737. // Windows Media Player failed to get the file name of the requested download. The requested download will be canceled.%0
  4738. //
  4739. #define NS_E_BKGDOWNLOAD_INVALID_FILE_NAME _HRESULT_TYPEDEF_(0xC00D126BL)
  4740. //
  4741. //Image Graph Errors 4750 -- 4800
  4742. //
  4743. //
  4744. // MessageId: NS_E_IMAGE_DOWNLOAD_FAILED
  4745. //
  4746. // MessageText:
  4747. //
  4748. // An error was encountered downloading the image.%0
  4749. //
  4750. #define NS_E_IMAGE_DOWNLOAD_FAILED _HRESULT_TYPEDEF_(0xC00D128EL)
  4751. //
  4752. // UDRM errors
  4753. //
  4754. //
  4755. // MessageId: NS_E_WMP_UDRM_NOUSERLIST
  4756. //
  4757. // MessageText:
  4758. //
  4759. // There was a problem while trying to get the list of activated users for this machine. The License acquisition process will be stopped.%0
  4760. //
  4761. #define NS_E_WMP_UDRM_NOUSERLIST _HRESULT_TYPEDEF_(0xC00D12C0L)
  4762. //
  4763. // MessageId: NS_E_WMP_DRM_NOT_ACQUIRING
  4764. //
  4765. // MessageText:
  4766. //
  4767. // The Windows Media Player is trying to acquire a license for a file that is not being used anymore. The License acquisition process will stop.%0
  4768. //
  4769. #define NS_E_WMP_DRM_NOT_ACQUIRING _HRESULT_TYPEDEF_(0xC00D12C1L)
  4770. //
  4771. // String is too large
  4772. //
  4773. //
  4774. // MessageId: NS_E_WMP_BSTR_TOO_LONG
  4775. //
  4776. // MessageText:
  4777. //
  4778. // The parameter is invalid.%0
  4779. //
  4780. #define NS_E_WMP_BSTR_TOO_LONG _HRESULT_TYPEDEF_(0xC00D12F2L)
  4781. //
  4782. // Autoplay errors 4860 --- 4870
  4783. //
  4784. //
  4785. // MessageId: NS_E_WMP_AUTOPLAY_INVALID_STATE
  4786. //
  4787. // MessageText:
  4788. //
  4789. // Invalid state for this request.%0
  4790. //
  4791. #define NS_E_WMP_AUTOPLAY_INVALID_STATE _HRESULT_TYPEDEF_(0xC00D12FCL)
  4792. //
  4793. // CURL Errors 4900 -- 4949
  4794. //
  4795. //
  4796. // MessageId: NS_E_CURL_NOTSAFE
  4797. //
  4798. // MessageText:
  4799. //
  4800. // The URL is not safe for the operation specified.%0
  4801. //
  4802. #define NS_E_CURL_NOTSAFE _HRESULT_TYPEDEF_(0xC00D1324L)
  4803. //
  4804. // MessageId: NS_E_CURL_INVALIDCHAR
  4805. //
  4806. // MessageText:
  4807. //
  4808. // The URL contains one or more invalid characters.%0
  4809. //
  4810. #define NS_E_CURL_INVALIDCHAR _HRESULT_TYPEDEF_(0xC00D1325L)
  4811. //
  4812. // MessageId: NS_E_CURL_INVALIDHOSTNAME
  4813. //
  4814. // MessageText:
  4815. //
  4816. // The URL contains an invalid hostname.%0
  4817. //
  4818. #define NS_E_CURL_INVALIDHOSTNAME _HRESULT_TYPEDEF_(0xC00D1326L)
  4819. //
  4820. // MessageId: NS_E_CURL_INVALIDPATH
  4821. //
  4822. // MessageText:
  4823. //
  4824. // The URL contains an invalid path.%0
  4825. //
  4826. #define NS_E_CURL_INVALIDPATH _HRESULT_TYPEDEF_(0xC00D1327L)
  4827. //
  4828. // MessageId: NS_E_CURL_INVALIDSCHEME
  4829. //
  4830. // MessageText:
  4831. //
  4832. // The URL contains an invalid scheme.%0
  4833. //
  4834. #define NS_E_CURL_INVALIDSCHEME _HRESULT_TYPEDEF_(0xC00D1328L)
  4835. //
  4836. // MessageId: NS_E_CURL_INVALIDURL
  4837. //
  4838. // MessageText:
  4839. //
  4840. // The URL is invalid.%0
  4841. //
  4842. #define NS_E_CURL_INVALIDURL _HRESULT_TYPEDEF_(0xC00D1329L)
  4843. //
  4844. // MessageId: NS_E_CURL_CANTWALK
  4845. //
  4846. // MessageText:
  4847. //
  4848. // The URL would change the root.%0
  4849. //
  4850. #define NS_E_CURL_CANTWALK _HRESULT_TYPEDEF_(0xC00D132BL)
  4851. //
  4852. // MessageId: NS_E_CURL_INVALIDPORT
  4853. //
  4854. // MessageText:
  4855. //
  4856. // The URL port is invalid.%0
  4857. //
  4858. #define NS_E_CURL_INVALIDPORT _HRESULT_TYPEDEF_(0xC00D132CL)
  4859. //
  4860. // MessageId: NS_E_CURLHELPER_NOTADIRECTORY
  4861. //
  4862. // MessageText:
  4863. //
  4864. // The URL is not a directory.%0
  4865. //
  4866. #define NS_E_CURLHELPER_NOTADIRECTORY _HRESULT_TYPEDEF_(0xC00D132DL)
  4867. //
  4868. // MessageId: NS_E_CURLHELPER_NOTAFILE
  4869. //
  4870. // MessageText:
  4871. //
  4872. // The URL is not a file.%0
  4873. //
  4874. #define NS_E_CURLHELPER_NOTAFILE _HRESULT_TYPEDEF_(0xC00D132EL)
  4875. //
  4876. // MessageId: NS_E_CURL_CANTDECODE
  4877. //
  4878. // MessageText:
  4879. //
  4880. // The URL contains characters that could not be decoded. The URL may be truncated or incomplete.%0
  4881. //
  4882. #define NS_E_CURL_CANTDECODE _HRESULT_TYPEDEF_(0xC00D132FL)
  4883. //
  4884. // MessageId: NS_E_CURLHELPER_NOTRELATIVE
  4885. //
  4886. // MessageText:
  4887. //
  4888. // The specified relative URL is actually not a relative URL.%0
  4889. //
  4890. #define NS_E_CURLHELPER_NOTRELATIVE _HRESULT_TYPEDEF_(0xC00D1330L)
  4891. //
  4892. // MessageId: NS_E_CURL_INVALIDBUFFERSIZE
  4893. //
  4894. // MessageText:
  4895. //
  4896. // The buffer is smaller than the size specified.%0
  4897. //
  4898. #define NS_E_CURL_INVALIDBUFFERSIZE _HRESULT_TYPEDEF_(0xC00D1355L)
  4899. //
  4900. // Subscription Service Errors 4950 -- 4969
  4901. //
  4902. //
  4903. // MessageId: NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED
  4904. //
  4905. // MessageText:
  4906. //
  4907. // This content is provided by a music service. The content cannot be played, possibly because a valid license does not exist. Please contact the music service with questions.%0
  4908. //
  4909. #define NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED _HRESULT_TYPEDEF_(0xC00D1356L)
  4910. //
  4911. // Advanced Edit Dialog Errors 4970 -- 4989
  4912. //
  4913. //
  4914. // MessageId: NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES
  4915. //
  4916. // MessageText:
  4917. //
  4918. // Not all your images were saved to the file. Only 7MB of images may be saved to a media file.%0
  4919. //
  4920. #define NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES _HRESULT_TYPEDEF_(0xC00D136AL)
  4921. /////////////////////////////////////////////////////////////////////////
  4922. //
  4923. // Windows Media Server Errors
  4924. //
  4925. // IdRange = 5000 - 5999
  4926. //
  4927. /////////////////////////////////////////////////////////////////////////
  4928. //
  4929. // MessageId: NS_E_REDIRECT
  4930. //
  4931. // MessageText:
  4932. //
  4933. // The client redirected to another server.%0
  4934. //
  4935. #define NS_E_REDIRECT _HRESULT_TYPEDEF_(0xC00D1388L)
  4936. //
  4937. // MessageId: NS_E_STALE_PRESENTATION
  4938. //
  4939. // MessageText:
  4940. //
  4941. // The streaming media description is no longer current.%0
  4942. //
  4943. #define NS_E_STALE_PRESENTATION _HRESULT_TYPEDEF_(0xC00D1389L)
  4944. // Namespace Errors
  4945. //
  4946. // MessageId: NS_E_NAMESPACE_WRONG_PERSIST
  4947. //
  4948. // MessageText:
  4949. //
  4950. // It is not possible to create a persistent namespace node under a transient parent node.%0
  4951. //
  4952. #define NS_E_NAMESPACE_WRONG_PERSIST _HRESULT_TYPEDEF_(0xC00D138AL)
  4953. //
  4954. // MessageId: NS_E_NAMESPACE_WRONG_TYPE
  4955. //
  4956. // MessageText:
  4957. //
  4958. // It is not possible to store a value in a namespace node that has a different value type.%0
  4959. //
  4960. #define NS_E_NAMESPACE_WRONG_TYPE _HRESULT_TYPEDEF_(0xC00D138BL)
  4961. //
  4962. // MessageId: NS_E_NAMESPACE_NODE_CONFLICT
  4963. //
  4964. // MessageText:
  4965. //
  4966. // It is not possible to remove the root namespace node.%0
  4967. //
  4968. #define NS_E_NAMESPACE_NODE_CONFLICT _HRESULT_TYPEDEF_(0xC00D138CL)
  4969. //
  4970. // MessageId: NS_E_NAMESPACE_NODE_NOT_FOUND
  4971. //
  4972. // MessageText:
  4973. //
  4974. // The specified namespace node could not be found.%0
  4975. //
  4976. #define NS_E_NAMESPACE_NODE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D138DL)
  4977. //
  4978. // MessageId: NS_E_NAMESPACE_BUFFER_TOO_SMALL
  4979. //
  4980. // MessageText:
  4981. //
  4982. // The buffer supplied to hold namespace node string is too small.%0
  4983. //
  4984. #define NS_E_NAMESPACE_BUFFER_TOO_SMALL _HRESULT_TYPEDEF_(0xC00D138EL)
  4985. //
  4986. // MessageId: NS_E_NAMESPACE_TOO_MANY_CALLBACKS
  4987. //
  4988. // MessageText:
  4989. //
  4990. // The callback list on a namespace node is at the maximum size.%0
  4991. //
  4992. #define NS_E_NAMESPACE_TOO_MANY_CALLBACKS _HRESULT_TYPEDEF_(0xC00D138FL)
  4993. //
  4994. // MessageId: NS_E_NAMESPACE_DUPLICATE_CALLBACK
  4995. //
  4996. // MessageText:
  4997. //
  4998. // It is not possible to register an already-registered callback on a namespace node.%0
  4999. //
  5000. #define NS_E_NAMESPACE_DUPLICATE_CALLBACK _HRESULT_TYPEDEF_(0xC00D1390L)
  5001. //
  5002. // MessageId: NS_E_NAMESPACE_CALLBACK_NOT_FOUND
  5003. //
  5004. // MessageText:
  5005. //
  5006. // Cannot find the callback in the namespace when attempting to remove the callback.%0
  5007. //
  5008. #define NS_E_NAMESPACE_CALLBACK_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D1391L)
  5009. //
  5010. // MessageId: NS_E_NAMESPACE_NAME_TOO_LONG
  5011. //
  5012. // MessageText:
  5013. //
  5014. // The namespace node name exceeds the allowed maximum length.%0
  5015. //
  5016. #define NS_E_NAMESPACE_NAME_TOO_LONG _HRESULT_TYPEDEF_(0xC00D1392L)
  5017. //
  5018. // MessageId: NS_E_NAMESPACE_DUPLICATE_NAME
  5019. //
  5020. // MessageText:
  5021. //
  5022. // Cannot create a namespace node that already exists.%0
  5023. //
  5024. #define NS_E_NAMESPACE_DUPLICATE_NAME _HRESULT_TYPEDEF_(0xC00D1393L)
  5025. //
  5026. // MessageId: NS_E_NAMESPACE_EMPTY_NAME
  5027. //
  5028. // MessageText:
  5029. //
  5030. // The namespace node name cannot be a null string.%0
  5031. //
  5032. #define NS_E_NAMESPACE_EMPTY_NAME _HRESULT_TYPEDEF_(0xC00D1394L)
  5033. //
  5034. // MessageId: NS_E_NAMESPACE_INDEX_TOO_LARGE
  5035. //
  5036. // MessageText:
  5037. //
  5038. // Finding a child namespace node by index failed because the index exceeded the number of children.%0
  5039. //
  5040. #define NS_E_NAMESPACE_INDEX_TOO_LARGE _HRESULT_TYPEDEF_(0xC00D1395L)
  5041. //
  5042. // MessageId: NS_E_NAMESPACE_BAD_NAME
  5043. //
  5044. // MessageText:
  5045. //
  5046. // The namespace node name is invalid.%0
  5047. //
  5048. #define NS_E_NAMESPACE_BAD_NAME _HRESULT_TYPEDEF_(0xC00D1396L)
  5049. //
  5050. // MessageId: NS_E_NAMESPACE_WRONG_SECURITY
  5051. //
  5052. // MessageText:
  5053. //
  5054. // It is not possible to store a value in a namespace node that has a different security type.%0
  5055. //
  5056. #define NS_E_NAMESPACE_WRONG_SECURITY _HRESULT_TYPEDEF_(0xC00D1397L)
  5057. // Cache Errors 5100-5199
  5058. //
  5059. // MessageId: NS_E_CACHE_ARCHIVE_CONFLICT
  5060. //
  5061. // MessageText:
  5062. //
  5063. // The archive request conflicts with other requests in progress.%0
  5064. //
  5065. #define NS_E_CACHE_ARCHIVE_CONFLICT _HRESULT_TYPEDEF_(0xC00D13ECL)
  5066. //
  5067. // MessageId: NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND
  5068. //
  5069. // MessageText:
  5070. //
  5071. // The specified origin server cannot be found.%0
  5072. //
  5073. #define NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D13EDL)
  5074. //
  5075. // MessageId: NS_E_CACHE_ORIGIN_SERVER_TIMEOUT
  5076. //
  5077. // MessageText:
  5078. //
  5079. // The specified origin server is not responding.%0
  5080. //
  5081. #define NS_E_CACHE_ORIGIN_SERVER_TIMEOUT _HRESULT_TYPEDEF_(0xC00D13EEL)
  5082. //
  5083. // MessageId: NS_E_CACHE_NOT_BROADCAST
  5084. //
  5085. // MessageText:
  5086. //
  5087. // The internal code for HTTP status code 412 Precondition Failed due to not broadcast type.%0
  5088. //
  5089. #define NS_E_CACHE_NOT_BROADCAST _HRESULT_TYPEDEF_(0xC00D13EFL)
  5090. //
  5091. // MessageId: NS_E_CACHE_CANNOT_BE_CACHED
  5092. //
  5093. // MessageText:
  5094. //
  5095. // The internal code for HTTP status code 403 Forbidden due to not cacheable.%0
  5096. //
  5097. #define NS_E_CACHE_CANNOT_BE_CACHED _HRESULT_TYPEDEF_(0xC00D13F0L)
  5098. //
  5099. // MessageId: NS_E_CACHE_NOT_MODIFIED
  5100. //
  5101. // MessageText:
  5102. //
  5103. // The internal code for HTTP status code 304 Not Modified.%0
  5104. //
  5105. #define NS_E_CACHE_NOT_MODIFIED _HRESULT_TYPEDEF_(0xC00D13F1L)
  5106. // Object Model Errors 5200-5299
  5107. //
  5108. // MessageId: NS_E_CANNOT_REMOVE_PUBLISHING_POINT
  5109. //
  5110. // MessageText:
  5111. //
  5112. // It is not possible to remove a cache or proxy publishing point.%0
  5113. //
  5114. #define NS_E_CANNOT_REMOVE_PUBLISHING_POINT _HRESULT_TYPEDEF_(0xC00D1450L)
  5115. //
  5116. // MessageId: NS_E_CANNOT_REMOVE_PLUGIN
  5117. //
  5118. // MessageText:
  5119. //
  5120. // It is not possible to remove the last instance of a type of plug-in.%0
  5121. //
  5122. #define NS_E_CANNOT_REMOVE_PLUGIN _HRESULT_TYPEDEF_(0xC00D1451L)
  5123. //
  5124. // MessageId: NS_E_WRONG_PUBLISHING_POINT_TYPE
  5125. //
  5126. // MessageText:
  5127. //
  5128. // Cache and proxy publishing points do not support this property or method.%0
  5129. //
  5130. #define NS_E_WRONG_PUBLISHING_POINT_TYPE _HRESULT_TYPEDEF_(0xC00D1452L)
  5131. //
  5132. // MessageId: NS_E_UNSUPPORTED_LOAD_TYPE
  5133. //
  5134. // MessageText:
  5135. //
  5136. // The plug-in does not support the specified load type.%0
  5137. //
  5138. #define NS_E_UNSUPPORTED_LOAD_TYPE _HRESULT_TYPEDEF_(0xC00D1453L)
  5139. //
  5140. // MessageId: NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION
  5141. //
  5142. // MessageText:
  5143. //
  5144. // The plug-in does not support any load types. The plug-in must support at least one load type.%0
  5145. //
  5146. #define NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION _HRESULT_TYPEDEF_(0xC00D1454L)
  5147. //
  5148. // MessageId: NS_E_INVALID_PUBLISHING_POINT_NAME
  5149. //
  5150. // MessageText:
  5151. //
  5152. // The publishing point name is invalid.%0
  5153. //
  5154. #define NS_E_INVALID_PUBLISHING_POINT_NAME _HRESULT_TYPEDEF_(0xC00D1455L)
  5155. //
  5156. // MessageId: NS_E_TOO_MANY_MULTICAST_SINKS
  5157. //
  5158. // MessageText:
  5159. //
  5160. // Only one multicast data writer plug-in can be enabled for a publishing point.%0
  5161. //
  5162. #define NS_E_TOO_MANY_MULTICAST_SINKS _HRESULT_TYPEDEF_(0xC00D1456L)
  5163. //
  5164. // MessageId: NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED
  5165. //
  5166. // MessageText:
  5167. //
  5168. // The requested operation cannot be completed while the publishing point is started.%0
  5169. //
  5170. #define NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED _HRESULT_TYPEDEF_(0xC00D1457L)
  5171. //
  5172. // MessageId: NS_E_MULTICAST_PLUGIN_NOT_ENABLED
  5173. //
  5174. // MessageText:
  5175. //
  5176. // A multicast data writer plug-in must be enabled in order for this operation to be completed.%0
  5177. //
  5178. #define NS_E_MULTICAST_PLUGIN_NOT_ENABLED _HRESULT_TYPEDEF_(0xC00D1458L)
  5179. //
  5180. // MessageId: NS_E_INVALID_OPERATING_SYSTEM_VERSION
  5181. //
  5182. // MessageText:
  5183. //
  5184. // This feature requires WIndows Server 2003, Enterprise Edition.%0
  5185. //
  5186. #define NS_E_INVALID_OPERATING_SYSTEM_VERSION _HRESULT_TYPEDEF_(0xC00D1459L)
  5187. //
  5188. // MessageId: NS_E_PUBLISHING_POINT_REMOVED
  5189. //
  5190. // MessageText:
  5191. //
  5192. // The requested operation cannot be completed because the specified publishing point has been removed.%0
  5193. //
  5194. #define NS_E_PUBLISHING_POINT_REMOVED _HRESULT_TYPEDEF_(0xC00D145AL)
  5195. //
  5196. // MessageId: NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST
  5197. //
  5198. // MessageText:
  5199. //
  5200. // Push publishing points are started when the encoder starts pushing the stream. This publishing point cannot be started by the server administrator.%0
  5201. //
  5202. #define NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST _HRESULT_TYPEDEF_(0xC00D145BL)
  5203. //
  5204. // MessageId: NS_E_UNSUPPORTED_LANGUAGE
  5205. //
  5206. // MessageText:
  5207. //
  5208. // The specified language is not supported.%0
  5209. //
  5210. #define NS_E_UNSUPPORTED_LANGUAGE _HRESULT_TYPEDEF_(0xC00D145CL)
  5211. //
  5212. // MessageId: NS_E_WRONG_OS_VERSION
  5213. //
  5214. // MessageText:
  5215. //
  5216. // Windows Media Services will only run on Windows Server 2003, Standard Edition and Windows Server 2003, Enterprise Edition.%0
  5217. //
  5218. #define NS_E_WRONG_OS_VERSION _HRESULT_TYPEDEF_(0xC00D145DL)
  5219. //
  5220. // MessageId: NS_E_PUBLISHING_POINT_STOPPED
  5221. //
  5222. // MessageText:
  5223. //
  5224. // The operation cannot be completed because the publishing point has been stopped.%0
  5225. //
  5226. #define NS_E_PUBLISHING_POINT_STOPPED _HRESULT_TYPEDEF_(0xC00D145EL)
  5227. // Playlist Errors 5300-5399
  5228. //
  5229. // MessageId: NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING
  5230. //
  5231. // MessageText:
  5232. //
  5233. // The playlist entry is already playing.%0
  5234. //
  5235. #define NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING _HRESULT_TYPEDEF_(0xC00D14B4L)
  5236. //
  5237. // MessageId: NS_E_EMPTY_PLAYLIST
  5238. //
  5239. // MessageText:
  5240. //
  5241. // The playlist or directory you are requesting does not contain content.%0
  5242. //
  5243. #define NS_E_EMPTY_PLAYLIST _HRESULT_TYPEDEF_(0xC00D14B5L)
  5244. //
  5245. // MessageId: NS_E_PLAYLIST_PARSE_FAILURE
  5246. //
  5247. // MessageText:
  5248. //
  5249. // The server was unable to parse the requested playlist file.%0
  5250. //
  5251. #define NS_E_PLAYLIST_PARSE_FAILURE _HRESULT_TYPEDEF_(0xC00D14B6L)
  5252. //
  5253. // MessageId: NS_E_PLAYLIST_UNSUPPORTED_ENTRY
  5254. //
  5255. // MessageText:
  5256. //
  5257. // The requested operation is not supported for this type of playlist entry.%0
  5258. //
  5259. #define NS_E_PLAYLIST_UNSUPPORTED_ENTRY _HRESULT_TYPEDEF_(0xC00D14B7L)
  5260. //
  5261. // MessageId: NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST
  5262. //
  5263. // MessageText:
  5264. //
  5265. // Cannot jump to a playlist entry that is not inserted in the playlist.%0
  5266. //
  5267. #define NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST _HRESULT_TYPEDEF_(0xC00D14B8L)
  5268. //
  5269. // MessageId: NS_E_PLAYLIST_ENTRY_SEEK
  5270. //
  5271. // MessageText:
  5272. //
  5273. // Cannot seek to the desired playlist entry.%0
  5274. //
  5275. #define NS_E_PLAYLIST_ENTRY_SEEK _HRESULT_TYPEDEF_(0xC00D14B9L)
  5276. //
  5277. // MessageId: NS_E_PLAYLIST_RECURSIVE_PLAYLISTS
  5278. //
  5279. // MessageText:
  5280. //
  5281. // Cannot play recursive playlist.%0
  5282. //
  5283. #define NS_E_PLAYLIST_RECURSIVE_PLAYLISTS _HRESULT_TYPEDEF_(0xC00D14BAL)
  5284. //
  5285. // MessageId: NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS
  5286. //
  5287. // MessageText:
  5288. //
  5289. // The number of nested playlists exceeded the limit the server can handle.%0
  5290. //
  5291. #define NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS _HRESULT_TYPEDEF_(0xC00D14BBL)
  5292. //
  5293. // MessageId: NS_E_PLAYLIST_SHUTDOWN
  5294. //
  5295. // MessageText:
  5296. //
  5297. // Cannot execute the requested operation because the playlist has been shut down by the Media Server.%0
  5298. //
  5299. #define NS_E_PLAYLIST_SHUTDOWN _HRESULT_TYPEDEF_(0xC00D14BCL)
  5300. //
  5301. // MessageId: NS_E_PLAYLIST_END_RECEDING
  5302. //
  5303. // MessageText:
  5304. //
  5305. // The playlist has ended while receding.%0
  5306. //
  5307. #define NS_E_PLAYLIST_END_RECEDING _HRESULT_TYPEDEF_(0xC00D14BDL)
  5308. //
  5309. // MessageId: NS_I_PLAYLIST_CHANGE_RECEDING
  5310. //
  5311. // MessageText:
  5312. //
  5313. // The playlist change occurred while receding.%0
  5314. //
  5315. #define NS_I_PLAYLIST_CHANGE_RECEDING _HRESULT_TYPEDEF_(0x400D14BEL)
  5316. // Datapath Errors -- 5400 - 5499
  5317. //
  5318. // MessageId: NS_E_DATAPATH_NO_SINK
  5319. //
  5320. // MessageText:
  5321. //
  5322. // The data path does not have an associated data writer plug-in.%0
  5323. //
  5324. #define NS_E_DATAPATH_NO_SINK _HRESULT_TYPEDEF_(0xC00D1518L)
  5325. //
  5326. // MessageId: NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS
  5327. //
  5328. // MessageText:
  5329. //
  5330. // The publishing point successfully started, but one or more of the requested data writer plug-ins failed.%0
  5331. //
  5332. #define NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS _HRESULT_TYPEDEF_(0x000D1519L)
  5333. //
  5334. // MessageId: NS_E_INVALID_PUSH_TEMPLATE
  5335. //
  5336. // MessageText:
  5337. //
  5338. // The specified push template is invalid.%0
  5339. //
  5340. #define NS_E_INVALID_PUSH_TEMPLATE _HRESULT_TYPEDEF_(0xC00D151AL)
  5341. //
  5342. // MessageId: NS_E_INVALID_PUSH_PUBLISHING_POINT
  5343. //
  5344. // MessageText:
  5345. //
  5346. // The specified push publishing point is invalid.%0
  5347. //
  5348. #define NS_E_INVALID_PUSH_PUBLISHING_POINT _HRESULT_TYPEDEF_(0xC00D151BL)
  5349. //
  5350. // MessageId: NS_E_CRITICAL_ERROR
  5351. //
  5352. // MessageText:
  5353. //
  5354. // The requested operation cannot be performed because the server or publishing point is in a critical error state.%0
  5355. //
  5356. #define NS_E_CRITICAL_ERROR _HRESULT_TYPEDEF_(0xC00D151CL)
  5357. //
  5358. // MessageId: NS_E_NO_NEW_CONNECTIONS
  5359. //
  5360. // MessageText:
  5361. //
  5362. // The content can not be played because the server is not currently accepting connections. Try connecting at a later time.%0
  5363. //
  5364. #define NS_E_NO_NEW_CONNECTIONS _HRESULT_TYPEDEF_(0xC00D151DL)
  5365. //
  5366. // MessageId: NS_E_WSX_INVALID_VERSION
  5367. //
  5368. // MessageText:
  5369. //
  5370. // The version of this playlist is not supported by the server.%0
  5371. //
  5372. #define NS_E_WSX_INVALID_VERSION _HRESULT_TYPEDEF_(0xC00D151EL)
  5373. //
  5374. // MessageId: NS_E_HEADER_MISMATCH
  5375. //
  5376. // MessageText:
  5377. //
  5378. // The command does not apply to the current media header user by a server component.%0
  5379. //
  5380. #define NS_E_HEADER_MISMATCH _HRESULT_TYPEDEF_(0xC00D151FL)
  5381. //
  5382. // MessageId: NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME
  5383. //
  5384. // MessageText:
  5385. //
  5386. // The specified publishing point name is already in use.%0
  5387. //
  5388. #define NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME _HRESULT_TYPEDEF_(0xC00D1520L)
  5389. // Plugin Errors -- 5500 - 5599
  5390. //
  5391. // MessageId: NS_E_NO_SCRIPT_ENGINE
  5392. //
  5393. // MessageText:
  5394. //
  5395. // There is no script engine available for this file.%0
  5396. //
  5397. #define NS_E_NO_SCRIPT_ENGINE _HRESULT_TYPEDEF_(0xC00D157CL)
  5398. //
  5399. // MessageId: NS_E_PLUGIN_ERROR_REPORTED
  5400. //
  5401. // MessageText:
  5402. //
  5403. // The plug-in has reported an error. See the Troubleshooting tab or the NT Application Event Log for details.%0
  5404. //
  5405. #define NS_E_PLUGIN_ERROR_REPORTED _HRESULT_TYPEDEF_(0xC00D157DL)
  5406. //
  5407. // MessageId: NS_E_SOURCE_PLUGIN_NOT_FOUND
  5408. //
  5409. // MessageText:
  5410. //
  5411. // No enabled data source plug-in is available to access the requested content.%0
  5412. //
  5413. #define NS_E_SOURCE_PLUGIN_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D157EL)
  5414. //
  5415. // MessageId: NS_E_PLAYLIST_PLUGIN_NOT_FOUND
  5416. //
  5417. // MessageText:
  5418. //
  5419. // No enabled playlist parser plug-in is available to access the requested content.%0
  5420. //
  5421. #define NS_E_PLAYLIST_PLUGIN_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D157FL)
  5422. //
  5423. // MessageId: NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED
  5424. //
  5425. // MessageText:
  5426. //
  5427. // The data source plug-in does not support enumeration.%0
  5428. //
  5429. #define NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED _HRESULT_TYPEDEF_(0xC00D1580L)
  5430. //
  5431. // MessageId: NS_E_MEDIA_PARSER_INVALID_FORMAT
  5432. //
  5433. // MessageText:
  5434. //
  5435. // The server cannot stream the selected file because it is either damaged or corrupt. Select a different file.%0
  5436. //
  5437. #define NS_E_MEDIA_PARSER_INVALID_FORMAT _HRESULT_TYPEDEF_(0xC00D1581L)
  5438. //
  5439. // MessageId: NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED
  5440. //
  5441. // MessageText:
  5442. //
  5443. // The plug-in cannot be enabled because a compatible script debugger is not installed on this system. Install a script debugger, or disable the script debugger option on the general tab of the plug-in's properties page and try again.%0
  5444. //
  5445. #define NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D1582L)
  5446. //
  5447. // MessageId: NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER
  5448. //
  5449. // MessageText:
  5450. //
  5451. // The plug-in cannot be loaded because it requires Windows Server 2003, Enterprise Edition.%0
  5452. //
  5453. #define NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER _HRESULT_TYPEDEF_(0xC00D1583L)
  5454. //
  5455. // MessageId: NS_E_WIZARD_RUNNING
  5456. //
  5457. // MessageText:
  5458. //
  5459. // Another wizard is currently running. Please close the other wizard or wait until it finishes before attempting to run this wizard again.%0
  5460. //
  5461. #define NS_E_WIZARD_RUNNING _HRESULT_TYPEDEF_(0xC00D1584L)
  5462. //
  5463. // MessageId: NS_E_INVALID_LOG_URL
  5464. //
  5465. // MessageText:
  5466. //
  5467. // Invalid log URL. Multicast logging URL must look like "http://servername/isapibackend.dll" .%0
  5468. //
  5469. #define NS_E_INVALID_LOG_URL _HRESULT_TYPEDEF_(0xC00D1585L)
  5470. //
  5471. // MessageId: NS_E_INVALID_MTU_RANGE
  5472. //
  5473. // MessageText:
  5474. //
  5475. // Invalid MTU specified. The valid range for maximum packet size is between 36 and 65507 bytes .%0
  5476. //
  5477. #define NS_E_INVALID_MTU_RANGE _HRESULT_TYPEDEF_(0xC00D1586L)
  5478. //
  5479. // MessageId: NS_E_INVALID_PLAY_STATISTICS
  5480. //
  5481. // MessageText:
  5482. //
  5483. // Invalid play statistics for logging .%0
  5484. //
  5485. #define NS_E_INVALID_PLAY_STATISTICS _HRESULT_TYPEDEF_(0xC00D1587L)
  5486. //
  5487. // MessageId: NS_E_LOG_NEED_TO_BE_SKIPPED
  5488. //
  5489. // MessageText:
  5490. //
  5491. // The log needs to be skipped .%0
  5492. //
  5493. #define NS_E_LOG_NEED_TO_BE_SKIPPED _HRESULT_TYPEDEF_(0xC00D1588L)
  5494. //
  5495. // MessageId: NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED
  5496. //
  5497. // MessageText:
  5498. //
  5499. // The size of the data exceeded the limit the WMS HTTP Download Data Source plugin can handle.%0
  5500. //
  5501. #define NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED _HRESULT_TYPEDEF_(0xC00D1589L)
  5502. //
  5503. // MessageId: NS_E_PORT_IN_USE
  5504. //
  5505. // MessageText:
  5506. //
  5507. // One usage of each socket address (protocol/network address/port) is permitted. Verify that other services or applications are not attempting to use the same port and then try to enable the plug-in again.%0
  5508. //
  5509. #define NS_E_PORT_IN_USE _HRESULT_TYPEDEF_(0xC00D158AL)
  5510. //
  5511. // MessageId: NS_E_PORT_IN_USE_HTTP
  5512. //
  5513. // MessageText:
  5514. //
  5515. // One usage of each socket address (protocol/network address/port) is permitted. Verify that other services (such as IIS) or applications are not attempting to use the same port and then try to enable the plug-in again.%0
  5516. //
  5517. #define NS_E_PORT_IN_USE_HTTP _HRESULT_TYPEDEF_(0xC00D158BL)
  5518. //
  5519. // MessageId: NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE
  5520. //
  5521. // MessageText:
  5522. //
  5523. // The WMS HTTP Download Data Source plugin was unable to receive the remote server's response.%0
  5524. //
  5525. #define NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE _HRESULT_TYPEDEF_(0xC00D158CL)
  5526. //
  5527. // MessageId: NS_E_ARCHIVE_REACH_QUOTA
  5528. //
  5529. // MessageText:
  5530. //
  5531. // The archive plug-in has reached its quota.%0
  5532. //
  5533. #define NS_E_ARCHIVE_REACH_QUOTA _HRESULT_TYPEDEF_(0xC00D158DL)
  5534. //
  5535. // MessageId: NS_E_ARCHIVE_ABORT_DUE_TO_BCAST
  5536. //
  5537. // MessageText:
  5538. //
  5539. // The archive plug-in aborted because the source was from broadcast.%0
  5540. //
  5541. #define NS_E_ARCHIVE_ABORT_DUE_TO_BCAST _HRESULT_TYPEDEF_(0xC00D158EL)
  5542. //
  5543. // MessageId: NS_E_ARCHIVE_GAP_DETECTED
  5544. //
  5545. // MessageText:
  5546. //
  5547. // The archive plug-in detected an interrupt in the source.%0
  5548. //
  5549. #define NS_E_ARCHIVE_GAP_DETECTED _HRESULT_TYPEDEF_(0xC00D158FL)
  5550. //
  5551. // MessageId: NS_E_AUTHORIZATION_FILE_NOT_FOUND
  5552. //
  5553. // MessageText:
  5554. //
  5555. // The system cannot find the file specified.%0
  5556. //
  5557. #define NS_E_AUTHORIZATION_FILE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D1590L)
  5558. /////////////////////////////////////////////////////////////////////////
  5559. //
  5560. // Windows Media Tools Errors
  5561. //
  5562. // IdRange = 7000 - 7999
  5563. //
  5564. /////////////////////////////////////////////////////////////////////////
  5565. //
  5566. // MessageId: NS_E_BAD_MARKIN
  5567. //
  5568. // MessageText:
  5569. //
  5570. // The mark-in time should be greater than 0 and less than the mark-out time.%0
  5571. //
  5572. #define NS_E_BAD_MARKIN _HRESULT_TYPEDEF_(0xC00D1B58L)
  5573. //
  5574. // MessageId: NS_E_BAD_MARKOUT
  5575. //
  5576. // MessageText:
  5577. //
  5578. // The mark-out time should be greater than the mark-in time and less than the file duration.%0
  5579. //
  5580. #define NS_E_BAD_MARKOUT _HRESULT_TYPEDEF_(0xC00D1B59L)
  5581. //
  5582. // MessageId: NS_E_NOMATCHING_MEDIASOURCE
  5583. //
  5584. // MessageText:
  5585. //
  5586. // No matching media type is found in the source %1.%0
  5587. //
  5588. #define NS_E_NOMATCHING_MEDIASOURCE _HRESULT_TYPEDEF_(0xC00D1B5AL)
  5589. //
  5590. // MessageId: NS_E_UNSUPPORTED_SOURCETYPE
  5591. //
  5592. // MessageText:
  5593. //
  5594. // The specified source type is not supported.%0
  5595. //
  5596. #define NS_E_UNSUPPORTED_SOURCETYPE _HRESULT_TYPEDEF_(0xC00D1B5BL)
  5597. //
  5598. // MessageId: NS_E_TOO_MANY_AUDIO
  5599. //
  5600. // MessageText:
  5601. //
  5602. // It is not possible to specify more than one audio input.%0
  5603. //
  5604. #define NS_E_TOO_MANY_AUDIO _HRESULT_TYPEDEF_(0xC00D1B5CL)
  5605. //
  5606. // MessageId: NS_E_TOO_MANY_VIDEO
  5607. //
  5608. // MessageText:
  5609. //
  5610. // It is not possible to specify more than two video inputs.%0
  5611. //
  5612. #define NS_E_TOO_MANY_VIDEO _HRESULT_TYPEDEF_(0xC00D1B5DL)
  5613. //
  5614. // MessageId: NS_E_NOMATCHING_ELEMENT
  5615. //
  5616. // MessageText:
  5617. //
  5618. // No matching element is found in the list.%0
  5619. //
  5620. #define NS_E_NOMATCHING_ELEMENT _HRESULT_TYPEDEF_(0xC00D1B5EL)
  5621. //
  5622. // MessageId: NS_E_MISMATCHED_MEDIACONTENT
  5623. //
  5624. // MessageText:
  5625. //
  5626. // The profile's media types must match the media types defined for the session.%0
  5627. //
  5628. #define NS_E_MISMATCHED_MEDIACONTENT _HRESULT_TYPEDEF_(0xC00D1B5FL)
  5629. //
  5630. // MessageId: NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP
  5631. //
  5632. // MessageText:
  5633. //
  5634. // It is not possible to remove an active source while encoding.%0
  5635. //
  5636. #define NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP _HRESULT_TYPEDEF_(0xC00D1B60L)
  5637. //
  5638. // MessageId: NS_E_AUDIODEVICE_BUSY
  5639. //
  5640. // MessageText:
  5641. //
  5642. // It is not possible to open the specified audio capture device because it is currently in use.%0
  5643. //
  5644. #define NS_E_AUDIODEVICE_BUSY _HRESULT_TYPEDEF_(0xC00D1B61L)
  5645. //
  5646. // MessageId: NS_E_AUDIODEVICE_UNEXPECTED
  5647. //
  5648. // MessageText:
  5649. //
  5650. // It is not possible to open the specified audio capture device because an unexpected error has occurred.%0
  5651. //
  5652. #define NS_E_AUDIODEVICE_UNEXPECTED _HRESULT_TYPEDEF_(0xC00D1B62L)
  5653. //
  5654. // MessageId: NS_E_AUDIODEVICE_BADFORMAT
  5655. //
  5656. // MessageText:
  5657. //
  5658. // The audio capture device does not support the specified audio format.%0
  5659. //
  5660. #define NS_E_AUDIODEVICE_BADFORMAT _HRESULT_TYPEDEF_(0xC00D1B63L)
  5661. //
  5662. // MessageId: NS_E_VIDEODEVICE_BUSY
  5663. //
  5664. // MessageText:
  5665. //
  5666. // It is not possible to open the specified video capture device because it is currently in use.%0
  5667. //
  5668. #define NS_E_VIDEODEVICE_BUSY _HRESULT_TYPEDEF_(0xC00D1B64L)
  5669. //
  5670. // MessageId: NS_E_VIDEODEVICE_UNEXPECTED
  5671. //
  5672. // MessageText:
  5673. //
  5674. // It is not possible to open the specified video capture device because an unexpected error has occurred.%0
  5675. //
  5676. #define NS_E_VIDEODEVICE_UNEXPECTED _HRESULT_TYPEDEF_(0xC00D1B65L)
  5677. //
  5678. // MessageId: NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING
  5679. //
  5680. // MessageText:
  5681. //
  5682. // This operation is not allowed while encoding.%0
  5683. //
  5684. #define NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING _HRESULT_TYPEDEF_(0xC00D1B66L)
  5685. //
  5686. // MessageId: NS_E_NO_PROFILE_IN_SOURCEGROUP
  5687. //
  5688. // MessageText:
  5689. //
  5690. // No profile is set for the source.%0
  5691. //
  5692. #define NS_E_NO_PROFILE_IN_SOURCEGROUP _HRESULT_TYPEDEF_(0xC00D1B67L)
  5693. //
  5694. // MessageId: NS_E_VIDEODRIVER_UNSTABLE
  5695. //
  5696. // MessageText:
  5697. //
  5698. // The video capture driver returned an unrecoverable error. It is now in an unstable state.%0
  5699. //
  5700. #define NS_E_VIDEODRIVER_UNSTABLE _HRESULT_TYPEDEF_(0xC00D1B68L)
  5701. //
  5702. // MessageId: NS_E_VIDCAPSTARTFAILED
  5703. //
  5704. // MessageText:
  5705. //
  5706. // It was not possible to start the video device.%0
  5707. //
  5708. #define NS_E_VIDCAPSTARTFAILED _HRESULT_TYPEDEF_(0xC00D1B69L)
  5709. //
  5710. // MessageId: NS_E_VIDSOURCECOMPRESSION
  5711. //
  5712. // MessageText:
  5713. //
  5714. // The video source does not support the requested output format or color depth.%0
  5715. //
  5716. #define NS_E_VIDSOURCECOMPRESSION _HRESULT_TYPEDEF_(0xC00D1B6AL)
  5717. //
  5718. // MessageId: NS_E_VIDSOURCESIZE
  5719. //
  5720. // MessageText:
  5721. //
  5722. // The video source does not support the requested capture size.%0
  5723. //
  5724. #define NS_E_VIDSOURCESIZE _HRESULT_TYPEDEF_(0xC00D1B6BL)
  5725. //
  5726. // MessageId: NS_E_ICMQUERYFORMAT
  5727. //
  5728. // MessageText:
  5729. //
  5730. // It was not possible to obtain output information from the video compressor.%0
  5731. //
  5732. #define NS_E_ICMQUERYFORMAT _HRESULT_TYPEDEF_(0xC00D1B6CL)
  5733. //
  5734. // MessageId: NS_E_VIDCAPCREATEWINDOW
  5735. //
  5736. // MessageText:
  5737. //
  5738. // It was not possible to create a video capture window.%0
  5739. //
  5740. #define NS_E_VIDCAPCREATEWINDOW _HRESULT_TYPEDEF_(0xC00D1B6DL)
  5741. //
  5742. // MessageId: NS_E_VIDCAPDRVINUSE
  5743. //
  5744. // MessageText:
  5745. //
  5746. // There is already a stream active on this video device.%0
  5747. //
  5748. #define NS_E_VIDCAPDRVINUSE _HRESULT_TYPEDEF_(0xC00D1B6EL)
  5749. //
  5750. // MessageId: NS_E_NO_MEDIAFORMAT_IN_SOURCE
  5751. //
  5752. // MessageText:
  5753. //
  5754. // No media format is set in source.%0
  5755. //
  5756. #define NS_E_NO_MEDIAFORMAT_IN_SOURCE _HRESULT_TYPEDEF_(0xC00D1B6FL)
  5757. //
  5758. // MessageId: NS_E_NO_VALID_OUTPUT_STREAM
  5759. //
  5760. // MessageText:
  5761. //
  5762. // Cannot find a valid output stream from the source.%0
  5763. //
  5764. #define NS_E_NO_VALID_OUTPUT_STREAM _HRESULT_TYPEDEF_(0xC00D1B70L)
  5765. //
  5766. // MessageId: NS_E_NO_VALID_SOURCE_PLUGIN
  5767. //
  5768. // MessageText:
  5769. //
  5770. // It was not possible to find a valid source plug-in for the specified source.%0
  5771. //
  5772. #define NS_E_NO_VALID_SOURCE_PLUGIN _HRESULT_TYPEDEF_(0xC00D1B71L)
  5773. //
  5774. // MessageId: NS_E_NO_ACTIVE_SOURCEGROUP
  5775. //
  5776. // MessageText:
  5777. //
  5778. // No source is currently active.%0
  5779. //
  5780. #define NS_E_NO_ACTIVE_SOURCEGROUP _HRESULT_TYPEDEF_(0xC00D1B72L)
  5781. //
  5782. // MessageId: NS_E_NO_SCRIPT_STREAM
  5783. //
  5784. // MessageText:
  5785. //
  5786. // No script stream is set in the current source.%0
  5787. //
  5788. #define NS_E_NO_SCRIPT_STREAM _HRESULT_TYPEDEF_(0xC00D1B73L)
  5789. //
  5790. // MessageId: NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING
  5791. //
  5792. // MessageText:
  5793. //
  5794. // This operation is not allowed while archiving.%0
  5795. //
  5796. #define NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING _HRESULT_TYPEDEF_(0xC00D1B74L)
  5797. //
  5798. // MessageId: NS_E_INVALIDPACKETSIZE
  5799. //
  5800. // MessageText:
  5801. //
  5802. // The setting for the maximum packet size is not valid.%0
  5803. //
  5804. #define NS_E_INVALIDPACKETSIZE _HRESULT_TYPEDEF_(0xC00D1B75L)
  5805. //
  5806. // MessageId: NS_E_PLUGIN_CLSID_INVALID
  5807. //
  5808. // MessageText:
  5809. //
  5810. // The plug-in CLSID specified is not valid.%0
  5811. //
  5812. #define NS_E_PLUGIN_CLSID_INVALID _HRESULT_TYPEDEF_(0xC00D1B76L)
  5813. //
  5814. // MessageId: NS_E_UNSUPPORTED_ARCHIVETYPE
  5815. //
  5816. // MessageText:
  5817. //
  5818. // This archive type is not supported.%0
  5819. //
  5820. #define NS_E_UNSUPPORTED_ARCHIVETYPE _HRESULT_TYPEDEF_(0xC00D1B77L)
  5821. //
  5822. // MessageId: NS_E_UNSUPPORTED_ARCHIVEOPERATION
  5823. //
  5824. // MessageText:
  5825. //
  5826. // This archive operation is not supported.%0
  5827. //
  5828. #define NS_E_UNSUPPORTED_ARCHIVEOPERATION _HRESULT_TYPEDEF_(0xC00D1B78L)
  5829. //
  5830. // MessageId: NS_E_ARCHIVE_FILENAME_NOTSET
  5831. //
  5832. // MessageText:
  5833. //
  5834. // The local archive file name was not set.%0
  5835. //
  5836. #define NS_E_ARCHIVE_FILENAME_NOTSET _HRESULT_TYPEDEF_(0xC00D1B79L)
  5837. //
  5838. // MessageId: NS_E_SOURCEGROUP_NOTPREPARED
  5839. //
  5840. // MessageText:
  5841. //
  5842. // The source is not yet prepared.%0
  5843. //
  5844. #define NS_E_SOURCEGROUP_NOTPREPARED _HRESULT_TYPEDEF_(0xC00D1B7AL)
  5845. //
  5846. // MessageId: NS_E_PROFILE_MISMATCH
  5847. //
  5848. // MessageText:
  5849. //
  5850. // Profiles on the sources do not match.%0
  5851. //
  5852. #define NS_E_PROFILE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1B7BL)
  5853. //
  5854. // MessageId: NS_E_INCORRECTCLIPSETTINGS
  5855. //
  5856. // MessageText:
  5857. //
  5858. // The specified crop values are not valid.%0
  5859. //
  5860. #define NS_E_INCORRECTCLIPSETTINGS _HRESULT_TYPEDEF_(0xC00D1B7CL)
  5861. //
  5862. // MessageId: NS_E_NOSTATSAVAILABLE
  5863. //
  5864. // MessageText:
  5865. //
  5866. // No statistics are available at this time.%0
  5867. //
  5868. #define NS_E_NOSTATSAVAILABLE _HRESULT_TYPEDEF_(0xC00D1B7DL)
  5869. //
  5870. // MessageId: NS_E_NOTARCHIVING
  5871. //
  5872. // MessageText:
  5873. //
  5874. // The encoder is not archiving.%0
  5875. //
  5876. #define NS_E_NOTARCHIVING _HRESULT_TYPEDEF_(0xC00D1B7EL)
  5877. //
  5878. // MessageId: NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED
  5879. //
  5880. // MessageText:
  5881. //
  5882. // This operation is only allowed during encoding.%0
  5883. //
  5884. #define NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED _HRESULT_TYPEDEF_(0xC00D1B7FL)
  5885. //
  5886. // MessageId: NS_E_NOSOURCEGROUPS
  5887. //
  5888. // MessageText:
  5889. //
  5890. // This SourceGroupCollection doesn't contain any SourceGroups.%0
  5891. //
  5892. #define NS_E_NOSOURCEGROUPS _HRESULT_TYPEDEF_(0xC00D1B80L)
  5893. //
  5894. // MessageId: NS_E_INVALIDINPUTFPS
  5895. //
  5896. // MessageText:
  5897. //
  5898. // This source does not have a frame rate of 30 fps. Therefore, it is not possible to apply the inverse telecine filter to the source.%0
  5899. //
  5900. #define NS_E_INVALIDINPUTFPS _HRESULT_TYPEDEF_(0xC00D1B81L)
  5901. //
  5902. // MessageId: NS_E_NO_DATAVIEW_SUPPORT
  5903. //
  5904. // MessageText:
  5905. //
  5906. // It is not possible to display your source or output video in the Video panel.%0
  5907. //
  5908. #define NS_E_NO_DATAVIEW_SUPPORT _HRESULT_TYPEDEF_(0xC00D1B82L)
  5909. //
  5910. // MessageId: NS_E_CODEC_UNAVAILABLE
  5911. //
  5912. // MessageText:
  5913. //
  5914. // One or more codecs required to open this content could not be found.%0
  5915. //
  5916. #define NS_E_CODEC_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D1B83L)
  5917. //
  5918. // MessageId: NS_E_ARCHIVE_SAME_AS_INPUT
  5919. //
  5920. // MessageText:
  5921. //
  5922. // The archive file has the same name as an input file. Change one of the names before continuing.%0
  5923. //
  5924. #define NS_E_ARCHIVE_SAME_AS_INPUT _HRESULT_TYPEDEF_(0xC00D1B84L)
  5925. //
  5926. // MessageId: NS_E_SOURCE_NOTSPECIFIED
  5927. //
  5928. // MessageText:
  5929. //
  5930. // The source has not been set up completely.%0
  5931. //
  5932. #define NS_E_SOURCE_NOTSPECIFIED _HRESULT_TYPEDEF_(0xC00D1B85L)
  5933. //
  5934. // MessageId: NS_E_NO_REALTIME_TIMECOMPRESSION
  5935. //
  5936. // MessageText:
  5937. //
  5938. // It is not possible to apply time compression to a broadcast session.%0
  5939. //
  5940. #define NS_E_NO_REALTIME_TIMECOMPRESSION _HRESULT_TYPEDEF_(0xC00D1B86L)
  5941. //
  5942. // MessageId: NS_E_UNSUPPORTED_ENCODER_DEVICE
  5943. //
  5944. // MessageText:
  5945. //
  5946. // It is not possible to open this device.%0
  5947. //
  5948. #define NS_E_UNSUPPORTED_ENCODER_DEVICE _HRESULT_TYPEDEF_(0xC00D1B87L)
  5949. //
  5950. // MessageId: NS_E_UNEXPECTED_DISPLAY_SETTINGS
  5951. //
  5952. // MessageText:
  5953. //
  5954. // It is not possible to start encoding because the display size or color has changed since the current session was defined. Restore the previous settings or create a new session.%0
  5955. //
  5956. #define NS_E_UNEXPECTED_DISPLAY_SETTINGS _HRESULT_TYPEDEF_(0xC00D1B88L)
  5957. //
  5958. // MessageId: NS_E_NO_AUDIODATA
  5959. //
  5960. // MessageText:
  5961. //
  5962. // No audio data has been received for several seconds. Check the audio source and restart the encoder.%0
  5963. //
  5964. #define NS_E_NO_AUDIODATA _HRESULT_TYPEDEF_(0xC00D1B89L)
  5965. //
  5966. // MessageId: NS_E_INPUTSOURCE_PROBLEM
  5967. //
  5968. // MessageText:
  5969. //
  5970. // One or all of the specified sources are not working properly. Check that the sources are configured correctly.%0
  5971. //
  5972. #define NS_E_INPUTSOURCE_PROBLEM _HRESULT_TYPEDEF_(0xC00D1B8AL)
  5973. //
  5974. // MessageId: NS_E_WME_VERSION_MISMATCH
  5975. //
  5976. // MessageText:
  5977. //
  5978. // The supplied configuration file is not supported by this version of the encoder.%0
  5979. //
  5980. #define NS_E_WME_VERSION_MISMATCH _HRESULT_TYPEDEF_(0xC00D1B8BL)
  5981. //
  5982. // MessageId: NS_E_NO_REALTIME_PREPROCESS
  5983. //
  5984. // MessageText:
  5985. //
  5986. // It is not possible to use image preprocessing with live encoding.%0
  5987. //
  5988. #define NS_E_NO_REALTIME_PREPROCESS _HRESULT_TYPEDEF_(0xC00D1B8CL)
  5989. //
  5990. // MessageId: NS_E_NO_REPEAT_PREPROCESS
  5991. //
  5992. // MessageText:
  5993. //
  5994. // It is not possible to use two-pass encoding when the source is set to loop.%0
  5995. //
  5996. #define NS_E_NO_REPEAT_PREPROCESS _HRESULT_TYPEDEF_(0xC00D1B8DL)
  5997. //
  5998. // MessageId: NS_E_CANNOT_PAUSE_LIVEBROADCAST
  5999. //
  6000. // MessageText:
  6001. //
  6002. // It is not possible to pause encoding during a broadcast.%0
  6003. //
  6004. #define NS_E_CANNOT_PAUSE_LIVEBROADCAST _HRESULT_TYPEDEF_(0xC00D1B8EL)
  6005. //
  6006. // MessageId: NS_E_DRM_PROFILE_NOT_SET
  6007. //
  6008. // MessageText:
  6009. //
  6010. // A DRM profile has not been set for the current session.%0
  6011. //
  6012. #define NS_E_DRM_PROFILE_NOT_SET _HRESULT_TYPEDEF_(0xC00D1B8FL)
  6013. //
  6014. // MessageId: NS_E_DUPLICATE_DRMPROFILE
  6015. //
  6016. // MessageText:
  6017. //
  6018. // The profile ID is already used by a DRM profile. Specify a different profile ID.%0
  6019. //
  6020. #define NS_E_DUPLICATE_DRMPROFILE _HRESULT_TYPEDEF_(0xC00D1B90L)
  6021. //
  6022. // MessageId: NS_E_INVALID_DEVICE
  6023. //
  6024. // MessageText:
  6025. //
  6026. // The setting of the selected device does not support control for playing back tapes.%0
  6027. //
  6028. #define NS_E_INVALID_DEVICE _HRESULT_TYPEDEF_(0xC00D1B91L)
  6029. //
  6030. // MessageId: NS_E_SPEECHEDL_ON_NON_MIXEDMODE
  6031. //
  6032. // MessageText:
  6033. //
  6034. // You must specify a mixed voice and audio mode in order to use an optimization definition file.%0
  6035. //
  6036. #define NS_E_SPEECHEDL_ON_NON_MIXEDMODE _HRESULT_TYPEDEF_(0xC00D1B92L)
  6037. //
  6038. // MessageId: NS_E_DRM_PASSWORD_TOO_LONG
  6039. //
  6040. // MessageText:
  6041. //
  6042. // The specified password is too long. Type a password with fewer than 8 characters.%0
  6043. //
  6044. #define NS_E_DRM_PASSWORD_TOO_LONG _HRESULT_TYPEDEF_(0xC00D1B93L)
  6045. //
  6046. // MessageId: NS_E_DEVCONTROL_FAILED_SEEK
  6047. //
  6048. // MessageText:
  6049. //
  6050. // It is not possible to seek to the specified mark-in point.%0
  6051. //
  6052. #define NS_E_DEVCONTROL_FAILED_SEEK _HRESULT_TYPEDEF_(0xC00D1B94L)
  6053. //
  6054. // MessageId: NS_E_INTERLACE_REQUIRE_SAMESIZE
  6055. //
  6056. // MessageText:
  6057. //
  6058. // When you choose to maintain the interlacing in your video, the output video size must match the input video size.%0
  6059. //
  6060. #define NS_E_INTERLACE_REQUIRE_SAMESIZE _HRESULT_TYPEDEF_(0xC00D1B95L)
  6061. //
  6062. // MessageId: NS_E_TOO_MANY_DEVICECONTROL
  6063. //
  6064. // MessageText:
  6065. //
  6066. // Only one device control plug-in can control a device.%0
  6067. //
  6068. #define NS_E_TOO_MANY_DEVICECONTROL _HRESULT_TYPEDEF_(0xC00D1B96L)
  6069. //
  6070. // MessageId: NS_E_NO_MULTIPASS_FOR_LIVEDEVICE
  6071. //
  6072. // MessageText:
  6073. //
  6074. // You must also enable storing content to hard disk temporarily in order to use two-pass encoding with the input device.%0
  6075. //
  6076. #define NS_E_NO_MULTIPASS_FOR_LIVEDEVICE _HRESULT_TYPEDEF_(0xC00D1B97L)
  6077. //
  6078. // MessageId: NS_E_MISSING_AUDIENCE
  6079. //
  6080. // MessageText:
  6081. //
  6082. // An audience is missing from the output stream configuration.%0
  6083. //
  6084. #define NS_E_MISSING_AUDIENCE _HRESULT_TYPEDEF_(0xC00D1B98L)
  6085. //
  6086. // MessageId: NS_E_AUDIENCE_CONTENTTYPE_MISMATCH
  6087. //
  6088. // MessageText:
  6089. //
  6090. // All audiences in the output tree must have the same content type.%0
  6091. //
  6092. #define NS_E_AUDIENCE_CONTENTTYPE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1B99L)
  6093. //
  6094. // MessageId: NS_E_MISSING_SOURCE_INDEX
  6095. //
  6096. // MessageText:
  6097. //
  6098. // A source index is missing from the output stream configuration.%0
  6099. //
  6100. #define NS_E_MISSING_SOURCE_INDEX _HRESULT_TYPEDEF_(0xC00D1B9AL)
  6101. //
  6102. // MessageId: NS_E_NUM_LANGUAGE_MISMATCH
  6103. //
  6104. // MessageText:
  6105. //
  6106. // The same source index in different audiences should have the same number of languages.%0
  6107. //
  6108. #define NS_E_NUM_LANGUAGE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1B9BL)
  6109. //
  6110. // MessageId: NS_E_LANGUAGE_MISMATCH
  6111. //
  6112. // MessageText:
  6113. //
  6114. // The same source index in different audiences should have the same languages.%0
  6115. //
  6116. #define NS_E_LANGUAGE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1B9CL)
  6117. //
  6118. // MessageId: NS_E_VBRMODE_MISMATCH
  6119. //
  6120. // MessageText:
  6121. //
  6122. // The same source index in different audiences should use the same VBR encoding mode.%0
  6123. //
  6124. #define NS_E_VBRMODE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1B9DL)
  6125. //
  6126. // MessageId: NS_E_INVALID_INPUT_AUDIENCE_INDEX
  6127. //
  6128. // MessageText:
  6129. //
  6130. // The bit rate index specified is not valid.%0
  6131. //
  6132. #define NS_E_INVALID_INPUT_AUDIENCE_INDEX _HRESULT_TYPEDEF_(0xC00D1B9EL)
  6133. //
  6134. // MessageId: NS_E_INVALID_INPUT_LANGUAGE
  6135. //
  6136. // MessageText:
  6137. //
  6138. // The specified language is not valid.%0
  6139. //
  6140. #define NS_E_INVALID_INPUT_LANGUAGE _HRESULT_TYPEDEF_(0xC00D1B9FL)
  6141. //
  6142. // MessageId: NS_E_INVALID_INPUT_STREAM
  6143. //
  6144. // MessageText:
  6145. //
  6146. // The specified source type is not valid.%0
  6147. //
  6148. #define NS_E_INVALID_INPUT_STREAM _HRESULT_TYPEDEF_(0xC00D1BA0L)
  6149. //
  6150. // MessageId: NS_E_EXPECT_MONO_WAV_INPUT
  6151. //
  6152. // MessageText:
  6153. //
  6154. // The source must be a mono channel .wav file.%0
  6155. //
  6156. #define NS_E_EXPECT_MONO_WAV_INPUT _HRESULT_TYPEDEF_(0xC00D1BA1L)
  6157. //
  6158. // MessageId: NS_E_INPUT_WAVFORMAT_MISMATCH
  6159. //
  6160. // MessageText:
  6161. //
  6162. // All the source .wav files must have the same format.%0
  6163. //
  6164. #define NS_E_INPUT_WAVFORMAT_MISMATCH _HRESULT_TYPEDEF_(0xC00D1BA2L)
  6165. //
  6166. // MessageId: NS_E_RECORDQ_DISK_FULL
  6167. //
  6168. // MessageText:
  6169. //
  6170. // The hard disk being used for temporary storage of content has reached the minimum allowed disk space. Create more space on the hard disk and restart encoding.%0
  6171. //
  6172. #define NS_E_RECORDQ_DISK_FULL _HRESULT_TYPEDEF_(0xC00D1BA3L)
  6173. //
  6174. // MessageId: NS_E_NO_PAL_INVERSE_TELECINE
  6175. //
  6176. // MessageText:
  6177. //
  6178. // It is not possible to apply the inverse telecine feature to PAL content.%0
  6179. //
  6180. #define NS_E_NO_PAL_INVERSE_TELECINE _HRESULT_TYPEDEF_(0xC00D1BA4L)
  6181. //
  6182. // MessageId: NS_E_ACTIVE_SG_DEVICE_DISCONNECTED
  6183. //
  6184. // MessageText:
  6185. //
  6186. // A capture device in the current active source is no longer available.%0
  6187. //
  6188. #define NS_E_ACTIVE_SG_DEVICE_DISCONNECTED _HRESULT_TYPEDEF_(0xC00D1BA5L)
  6189. //
  6190. // MessageId: NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED
  6191. //
  6192. // MessageText:
  6193. //
  6194. // A device used in the current active source for device control is no longer available.%0
  6195. //
  6196. #define NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED _HRESULT_TYPEDEF_(0xC00D1BA6L)
  6197. //
  6198. // MessageId: NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER
  6199. //
  6200. // MessageText:
  6201. //
  6202. // No frames have been submitted to the analyzer for analysis.%0
  6203. //
  6204. #define NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER _HRESULT_TYPEDEF_(0xC00D1BA7L)
  6205. //
  6206. // MessageId: NS_E_INPUT_DOESNOT_SUPPORT_SMPTE
  6207. //
  6208. // MessageText:
  6209. //
  6210. // The source video does not support time codes.%0
  6211. //
  6212. #define NS_E_INPUT_DOESNOT_SUPPORT_SMPTE _HRESULT_TYPEDEF_(0xC00D1BA8L)
  6213. //
  6214. // MessageId: NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS
  6215. //
  6216. // MessageText:
  6217. //
  6218. // It is not possible to generate a time code when there are multiple sources in a session.%0
  6219. //
  6220. #define NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS _HRESULT_TYPEDEF_(0xC00D1BA9L)
  6221. //
  6222. // MessageId: NS_E_BAD_CONTENTEDL
  6223. //
  6224. // MessageText:
  6225. //
  6226. // The voice codec optimization definition file can not be found or is corrupted.%0
  6227. //
  6228. #define NS_E_BAD_CONTENTEDL _HRESULT_TYPEDEF_(0xC00D1BAAL)
  6229. //
  6230. // MessageId: NS_E_INTERLACEMODE_MISMATCH
  6231. //
  6232. // MessageText:
  6233. //
  6234. // The same source index in different audiences should have the same interlace mode.%0
  6235. //
  6236. #define NS_E_INTERLACEMODE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1BABL)
  6237. //
  6238. // MessageId: NS_E_NONSQUAREPIXELMODE_MISMATCH
  6239. //
  6240. // MessageText:
  6241. //
  6242. // The same source index in different audiences should have the same nonsquare pixel mode.%0
  6243. //
  6244. #define NS_E_NONSQUAREPIXELMODE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1BACL)
  6245. //
  6246. // MessageId: NS_E_SMPTEMODE_MISMATCH
  6247. //
  6248. // MessageText:
  6249. //
  6250. // The same source index in different audiences should have the same time code mode.%0
  6251. //
  6252. #define NS_E_SMPTEMODE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1BADL)
  6253. //
  6254. // MessageId: NS_E_END_OF_TAPE
  6255. //
  6256. // MessageText:
  6257. //
  6258. // Either the end of the tape has been reached or there is no tape. Check the device and tape.%0
  6259. //
  6260. #define NS_E_END_OF_TAPE _HRESULT_TYPEDEF_(0xC00D1BAEL)
  6261. //
  6262. // MessageId: NS_E_NO_MEDIA_IN_AUDIENCE
  6263. //
  6264. // MessageText:
  6265. //
  6266. // No audio or video input has been specified.%0
  6267. //
  6268. #define NS_E_NO_MEDIA_IN_AUDIENCE _HRESULT_TYPEDEF_(0xC00D1BAFL)
  6269. //
  6270. // MessageId: NS_E_NO_AUDIENCES
  6271. //
  6272. // MessageText:
  6273. //
  6274. // The profile must contain a bit rate.%0
  6275. //
  6276. #define NS_E_NO_AUDIENCES _HRESULT_TYPEDEF_(0xC00D1BB0L)
  6277. //
  6278. // MessageId: NS_E_NO_AUDIO_COMPAT
  6279. //
  6280. // MessageText:
  6281. //
  6282. // You must specify at least one audio stream to be compatible with Windows Media Player 7.1.%0
  6283. //
  6284. #define NS_E_NO_AUDIO_COMPAT _HRESULT_TYPEDEF_(0xC00D1BB1L)
  6285. //
  6286. // MessageId: NS_E_INVALID_VBR_COMPAT
  6287. //
  6288. // MessageText:
  6289. //
  6290. // Using a VBR encoding mode is not compatible with Windows Media Player 7.1.%0
  6291. //
  6292. #define NS_E_INVALID_VBR_COMPAT _HRESULT_TYPEDEF_(0xC00D1BB2L)
  6293. //
  6294. // MessageId: NS_E_NO_PROFILE_NAME
  6295. //
  6296. // MessageText:
  6297. //
  6298. // You must specify a profile name.%0
  6299. //
  6300. #define NS_E_NO_PROFILE_NAME _HRESULT_TYPEDEF_(0xC00D1BB3L)
  6301. //
  6302. // MessageId: NS_E_INVALID_VBR_WITH_UNCOMP
  6303. //
  6304. // MessageText:
  6305. //
  6306. // It is not possible to use a VBR encoding mode with uncompressed audio or video.%0
  6307. //
  6308. #define NS_E_INVALID_VBR_WITH_UNCOMP _HRESULT_TYPEDEF_(0xC00D1BB4L)
  6309. //
  6310. // MessageId: NS_E_MULTIPLE_VBR_AUDIENCES
  6311. //
  6312. // MessageText:
  6313. //
  6314. // It is not possible to use MBR encoding with VBR encoding.%0
  6315. //
  6316. #define NS_E_MULTIPLE_VBR_AUDIENCES _HRESULT_TYPEDEF_(0xC00D1BB5L)
  6317. //
  6318. // MessageId: NS_E_UNCOMP_COMP_COMBINATION
  6319. //
  6320. // MessageText:
  6321. //
  6322. // It is not possible to mix uncompressed and compressed content in a session.%0
  6323. //
  6324. #define NS_E_UNCOMP_COMP_COMBINATION _HRESULT_TYPEDEF_(0xC00D1BB6L)
  6325. //
  6326. // MessageId: NS_E_MULTIPLE_AUDIO_CODECS
  6327. //
  6328. // MessageText:
  6329. //
  6330. // All audiences must use the same audio codec.%0
  6331. //
  6332. #define NS_E_MULTIPLE_AUDIO_CODECS _HRESULT_TYPEDEF_(0xC00D1BB7L)
  6333. //
  6334. // MessageId: NS_E_MULTIPLE_AUDIO_FORMATS
  6335. //
  6336. // MessageText:
  6337. //
  6338. // All audiences should use the same audio format to be compatible with Windows Media Player 7.1.%0
  6339. //
  6340. #define NS_E_MULTIPLE_AUDIO_FORMATS _HRESULT_TYPEDEF_(0xC00D1BB8L)
  6341. //
  6342. // MessageId: NS_E_AUDIO_BITRATE_STEPDOWN
  6343. //
  6344. // MessageText:
  6345. //
  6346. // The audio bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate.%0
  6347. //
  6348. #define NS_E_AUDIO_BITRATE_STEPDOWN _HRESULT_TYPEDEF_(0xC00D1BB9L)
  6349. //
  6350. // MessageId: NS_E_INVALID_AUDIO_PEAKRATE
  6351. //
  6352. // MessageText:
  6353. //
  6354. // The audio peak bit rate setting is not valid.%0
  6355. //
  6356. #define NS_E_INVALID_AUDIO_PEAKRATE _HRESULT_TYPEDEF_(0xC00D1BBAL)
  6357. //
  6358. // MessageId: NS_E_INVALID_AUDIO_PEAKRATE_2
  6359. //
  6360. // MessageText:
  6361. //
  6362. // The audio peak bit rate setting must be greater than the audio bit rate setting.%0
  6363. //
  6364. #define NS_E_INVALID_AUDIO_PEAKRATE_2 _HRESULT_TYPEDEF_(0xC00D1BBBL)
  6365. //
  6366. // MessageId: NS_E_INVALID_AUDIO_BUFFERMAX
  6367. //
  6368. // MessageText:
  6369. //
  6370. // The setting for the maximum buffer size for audio is not valid.%0
  6371. //
  6372. #define NS_E_INVALID_AUDIO_BUFFERMAX _HRESULT_TYPEDEF_(0xC00D1BBCL)
  6373. //
  6374. // MessageId: NS_E_MULTIPLE_VIDEO_CODECS
  6375. //
  6376. // MessageText:
  6377. //
  6378. // All audiences must use the same video codec.%0
  6379. //
  6380. #define NS_E_MULTIPLE_VIDEO_CODECS _HRESULT_TYPEDEF_(0xC00D1BBDL)
  6381. //
  6382. // MessageId: NS_E_MULTIPLE_VIDEO_SIZES
  6383. //
  6384. // MessageText:
  6385. //
  6386. // All audiences should use the same video size to be compatible with Windows Media Player 7.1.%0
  6387. //
  6388. #define NS_E_MULTIPLE_VIDEO_SIZES _HRESULT_TYPEDEF_(0xC00D1BBEL)
  6389. //
  6390. // MessageId: NS_E_INVALID_VIDEO_BITRATE
  6391. //
  6392. // MessageText:
  6393. //
  6394. // The video bit rate setting is not valid.%0
  6395. //
  6396. #define NS_E_INVALID_VIDEO_BITRATE _HRESULT_TYPEDEF_(0xC00D1BBFL)
  6397. //
  6398. // MessageId: NS_E_VIDEO_BITRATE_STEPDOWN
  6399. //
  6400. // MessageText:
  6401. //
  6402. // The video bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate.%0
  6403. //
  6404. #define NS_E_VIDEO_BITRATE_STEPDOWN _HRESULT_TYPEDEF_(0xC00D1BC0L)
  6405. //
  6406. // MessageId: NS_E_INVALID_VIDEO_PEAKRATE
  6407. //
  6408. // MessageText:
  6409. //
  6410. // The video peak bit rate setting is not valid.%0
  6411. //
  6412. #define NS_E_INVALID_VIDEO_PEAKRATE _HRESULT_TYPEDEF_(0xC00D1BC1L)
  6413. //
  6414. // MessageId: NS_E_INVALID_VIDEO_PEAKRATE_2
  6415. //
  6416. // MessageText:
  6417. //
  6418. // The video peak bit rate setting must be greater than the video bit rate setting.%0
  6419. //
  6420. #define NS_E_INVALID_VIDEO_PEAKRATE_2 _HRESULT_TYPEDEF_(0xC00D1BC2L)
  6421. //
  6422. // MessageId: NS_E_INVALID_VIDEO_WIDTH
  6423. //
  6424. // MessageText:
  6425. //
  6426. // The video width setting is not valid.%0
  6427. //
  6428. #define NS_E_INVALID_VIDEO_WIDTH _HRESULT_TYPEDEF_(0xC00D1BC3L)
  6429. //
  6430. // MessageId: NS_E_INVALID_VIDEO_HEIGHT
  6431. //
  6432. // MessageText:
  6433. //
  6434. // The video height setting is not valid.%0
  6435. //
  6436. #define NS_E_INVALID_VIDEO_HEIGHT _HRESULT_TYPEDEF_(0xC00D1BC4L)
  6437. //
  6438. // MessageId: NS_E_INVALID_VIDEO_FPS
  6439. //
  6440. // MessageText:
  6441. //
  6442. // The video frame rate setting is not valid.%0
  6443. //
  6444. #define NS_E_INVALID_VIDEO_FPS _HRESULT_TYPEDEF_(0xC00D1BC5L)
  6445. //
  6446. // MessageId: NS_E_INVALID_VIDEO_KEYFRAME
  6447. //
  6448. // MessageText:
  6449. //
  6450. // The video key frame setting is not valid.%0
  6451. //
  6452. #define NS_E_INVALID_VIDEO_KEYFRAME _HRESULT_TYPEDEF_(0xC00D1BC6L)
  6453. //
  6454. // MessageId: NS_E_INVALID_VIDEO_IQUALITY
  6455. //
  6456. // MessageText:
  6457. //
  6458. // The video image quality setting is not valid.%0
  6459. //
  6460. #define NS_E_INVALID_VIDEO_IQUALITY _HRESULT_TYPEDEF_(0xC00D1BC7L)
  6461. //
  6462. // MessageId: NS_E_INVALID_VIDEO_CQUALITY
  6463. //
  6464. // MessageText:
  6465. //
  6466. // The video codec quality setting is not valid.%0
  6467. //
  6468. #define NS_E_INVALID_VIDEO_CQUALITY _HRESULT_TYPEDEF_(0xC00D1BC8L)
  6469. //
  6470. // MessageId: NS_E_INVALID_VIDEO_BUFFER
  6471. //
  6472. // MessageText:
  6473. //
  6474. // The video buffer setting is not valid.%0
  6475. //
  6476. #define NS_E_INVALID_VIDEO_BUFFER _HRESULT_TYPEDEF_(0xC00D1BC9L)
  6477. //
  6478. // MessageId: NS_E_INVALID_VIDEO_BUFFERMAX
  6479. //
  6480. // MessageText:
  6481. //
  6482. // The setting for the maximum buffer size for video is not valid.%0
  6483. //
  6484. #define NS_E_INVALID_VIDEO_BUFFERMAX _HRESULT_TYPEDEF_(0xC00D1BCAL)
  6485. //
  6486. // MessageId: NS_E_INVALID_VIDEO_BUFFERMAX_2
  6487. //
  6488. // MessageText:
  6489. //
  6490. // The value of the video maximum buffer size setting must be greater than the video buffer size setting.%0
  6491. //
  6492. #define NS_E_INVALID_VIDEO_BUFFERMAX_2 _HRESULT_TYPEDEF_(0xC00D1BCBL)
  6493. //
  6494. // MessageId: NS_E_INVALID_VIDEO_WIDTH_ALIGN
  6495. //
  6496. // MessageText:
  6497. //
  6498. // The alignment of the video width is not valid.%0
  6499. //
  6500. #define NS_E_INVALID_VIDEO_WIDTH_ALIGN _HRESULT_TYPEDEF_(0xC00D1BCCL)
  6501. //
  6502. // MessageId: NS_E_INVALID_VIDEO_HEIGHT_ALIGN
  6503. //
  6504. // MessageText:
  6505. //
  6506. // The alignment of the video height is not valid.%0
  6507. //
  6508. #define NS_E_INVALID_VIDEO_HEIGHT_ALIGN _HRESULT_TYPEDEF_(0xC00D1BCDL)
  6509. //
  6510. // MessageId: NS_E_MULTIPLE_SCRIPT_BITRATES
  6511. //
  6512. // MessageText:
  6513. //
  6514. // All bit rates must have the same script bit rate.%0
  6515. //
  6516. #define NS_E_MULTIPLE_SCRIPT_BITRATES _HRESULT_TYPEDEF_(0xC00D1BCEL)
  6517. //
  6518. // MessageId: NS_E_INVALID_SCRIPT_BITRATE
  6519. //
  6520. // MessageText:
  6521. //
  6522. // The script bit rate specified is not valid.%0
  6523. //
  6524. #define NS_E_INVALID_SCRIPT_BITRATE _HRESULT_TYPEDEF_(0xC00D1BCFL)
  6525. //
  6526. // MessageId: NS_E_MULTIPLE_FILE_BITRATES
  6527. //
  6528. // MessageText:
  6529. //
  6530. // All bit rates must have the same file transfer bit rate.%0
  6531. //
  6532. #define NS_E_MULTIPLE_FILE_BITRATES _HRESULT_TYPEDEF_(0xC00D1BD0L)
  6533. //
  6534. // MessageId: NS_E_INVALID_FILE_BITRATE
  6535. //
  6536. // MessageText:
  6537. //
  6538. // The file transfer bit rate is not valid.%0
  6539. //
  6540. #define NS_E_INVALID_FILE_BITRATE _HRESULT_TYPEDEF_(0xC00D1BD1L)
  6541. //
  6542. // MessageId: NS_E_SAME_AS_INPUT_COMBINATION
  6543. //
  6544. // MessageText:
  6545. //
  6546. // All audiences in a profile should either be same as input or have video width and height specified.%0
  6547. //
  6548. #define NS_E_SAME_AS_INPUT_COMBINATION _HRESULT_TYPEDEF_(0xC00D1BD2L)
  6549. //
  6550. // MessageId: NS_E_SOURCE_CANNOT_LOOP
  6551. //
  6552. // MessageText:
  6553. //
  6554. // This source type does not support looping.%0
  6555. //
  6556. #define NS_E_SOURCE_CANNOT_LOOP _HRESULT_TYPEDEF_(0xC00D1BD3L)
  6557. //
  6558. // MessageId: NS_E_INVALID_FOLDDOWN_COEFFICIENTS
  6559. //
  6560. // MessageText:
  6561. //
  6562. // The fold-down value needs to be between -144 and 0.%0
  6563. //
  6564. #define NS_E_INVALID_FOLDDOWN_COEFFICIENTS _HRESULT_TYPEDEF_(0xC00D1BD4L)
  6565. //
  6566. // MessageId: NS_E_DRMPROFILE_NOTFOUND
  6567. //
  6568. // MessageText:
  6569. //
  6570. // The specified DRM profile does not exist in the system.%0
  6571. //
  6572. #define NS_E_DRMPROFILE_NOTFOUND _HRESULT_TYPEDEF_(0xC00D1BD5L)
  6573. //
  6574. // MessageId: NS_E_INVALID_TIMECODE
  6575. //
  6576. // MessageText:
  6577. //
  6578. // The specified time code is not valid.%0
  6579. //
  6580. #define NS_E_INVALID_TIMECODE _HRESULT_TYPEDEF_(0xC00D1BD6L)
  6581. //
  6582. // MessageId: NS_E_NO_AUDIO_TIMECOMPRESSION
  6583. //
  6584. // MessageText:
  6585. //
  6586. // It is not possible to apply time compression to a video-only session.%0
  6587. //
  6588. #define NS_E_NO_AUDIO_TIMECOMPRESSION _HRESULT_TYPEDEF_(0xC00D1BD7L)
  6589. //
  6590. // MessageId: NS_E_NO_TWOPASS_TIMECOMPRESSION
  6591. //
  6592. // MessageText:
  6593. //
  6594. // It is not possible to apply time compression to a session that is using two-pass encoding.%0
  6595. //
  6596. #define NS_E_NO_TWOPASS_TIMECOMPRESSION _HRESULT_TYPEDEF_(0xC00D1BD8L)
  6597. //
  6598. // MessageId: NS_E_TIMECODE_REQUIRES_VIDEOSTREAM
  6599. //
  6600. // MessageText:
  6601. //
  6602. // It is not possible to generate a time code for an audio-only session.%0
  6603. //
  6604. #define NS_E_TIMECODE_REQUIRES_VIDEOSTREAM _HRESULT_TYPEDEF_(0xC00D1BD9L)
  6605. //
  6606. // MessageId: NS_E_NO_MBR_WITH_TIMECODE
  6607. //
  6608. // MessageText:
  6609. //
  6610. // It is not possible to generate a time code when you are encoding content at multiple bit rates.%0
  6611. //
  6612. #define NS_E_NO_MBR_WITH_TIMECODE _HRESULT_TYPEDEF_(0xC00D1BDAL)
  6613. //
  6614. // MessageId: NS_E_INVALID_INTERLACEMODE
  6615. //
  6616. // MessageText:
  6617. //
  6618. // The video codec selected does not support maintaining interlacing in video.%0
  6619. //
  6620. #define NS_E_INVALID_INTERLACEMODE _HRESULT_TYPEDEF_(0xC00D1BDBL)
  6621. //
  6622. // MessageId: NS_E_INVALID_INTERLACE_COMPAT
  6623. //
  6624. // MessageText:
  6625. //
  6626. // Maintaining interlacing in video is not compatible with Windows Media Player 7.1.%0
  6627. //
  6628. #define NS_E_INVALID_INTERLACE_COMPAT _HRESULT_TYPEDEF_(0xC00D1BDCL)
  6629. //
  6630. // MessageId: NS_E_INVALID_NONSQUAREPIXEL_COMPAT
  6631. //
  6632. // MessageText:
  6633. //
  6634. // Allowing nonsquare pixel output is not compatible with Windows Media Player 7.1.%0
  6635. //
  6636. #define NS_E_INVALID_NONSQUAREPIXEL_COMPAT _HRESULT_TYPEDEF_(0xC00D1BDDL)
  6637. //
  6638. // MessageId: NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL
  6639. //
  6640. // MessageText:
  6641. //
  6642. // Only capture devices can be used with device control.%0
  6643. //
  6644. #define NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL _HRESULT_TYPEDEF_(0xC00D1BDEL)
  6645. //
  6646. // MessageId: NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR
  6647. //
  6648. // MessageText:
  6649. //
  6650. // It is not possible to generate the stream format file if you are using quality-based VBR encoding for the audio or video stream. Instead use the Windows Media file generated after encoding to create the announcement file.%0
  6651. //
  6652. #define NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR _HRESULT_TYPEDEF_(0xC00D1BDFL)
  6653. //
  6654. // MessageId: NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT
  6655. //
  6656. // MessageText:
  6657. //
  6658. // It is not possible to create a DRM profile because the maximum number of profiles has been reached. You must delete some DRM profiles before creating new ones.%0
  6659. //
  6660. #define NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT _HRESULT_TYPEDEF_(0xC00D1BE0L)
  6661. //
  6662. // MessageId: NS_E_DEVICECONTROL_UNSTABLE
  6663. //
  6664. // MessageText:
  6665. //
  6666. // The device is in an unstable state. Check that the device is functioning properly and a tape is in place.
  6667. //
  6668. #define NS_E_DEVICECONTROL_UNSTABLE _HRESULT_TYPEDEF_(0xC00D1BE1L)
  6669. //
  6670. // MessageId: NS_E_INVALID_PIXEL_ASPECT_RATIO
  6671. //
  6672. // MessageText:
  6673. //
  6674. // The pixel aspect ratio value must be between 1 and 255.
  6675. //
  6676. #define NS_E_INVALID_PIXEL_ASPECT_RATIO _HRESULT_TYPEDEF_(0xC00D1BE2L)
  6677. //
  6678. // MessageId: NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH
  6679. //
  6680. // MessageText:
  6681. //
  6682. // All streams with different languages in the same audience must have same properties.%0
  6683. //
  6684. #define NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1BE3L)
  6685. //
  6686. // MessageId: NS_E_INVALID_PROFILE_CONTENTTYPE
  6687. //
  6688. // MessageText:
  6689. //
  6690. // The profile must contain at least one audio or video stream.%0
  6691. //
  6692. #define NS_E_INVALID_PROFILE_CONTENTTYPE _HRESULT_TYPEDEF_(0xC00D1BE4L)
  6693. //
  6694. // MessageId: NS_E_TRANSFORM_PLUGIN_NOT_FOUND
  6695. //
  6696. // MessageText:
  6697. //
  6698. // The transform plug-in could not be found.%0
  6699. //
  6700. #define NS_E_TRANSFORM_PLUGIN_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D1BE5L)
  6701. //
  6702. // MessageId: NS_E_TRANSFORM_PLUGIN_INVALID
  6703. //
  6704. // MessageText:
  6705. //
  6706. // The transform plug-in is not valid. It may be damaged or you may not have the required permissions to access the plug-in.%0
  6707. //
  6708. #define NS_E_TRANSFORM_PLUGIN_INVALID _HRESULT_TYPEDEF_(0xC00D1BE6L)
  6709. //
  6710. // MessageId: NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS
  6711. //
  6712. // MessageText:
  6713. //
  6714. // To use two-pass encoding, you must enable device control and setup an edit decision list (EDL) that has at least one entry.%0
  6715. //
  6716. #define NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS _HRESULT_TYPEDEF_(0xC00D1BE7L)
  6717. //
  6718. // MessageId: NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING
  6719. //
  6720. // MessageText:
  6721. //
  6722. // When you choose to maintain the interlacing in your video, the output video size must be a multiple of 4.%0
  6723. //
  6724. #define NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING _HRESULT_TYPEDEF_(0xC00D1BE8L)
  6725. /////////////////////////////////////////////////////////////////////////
  6726. //
  6727. // DRM Specific Errors
  6728. //
  6729. // IdRange = 10000..10999
  6730. /////////////////////////////////////////////////////////////////////////
  6731. //
  6732. // MessageId: NS_E_DRM_INVALID_APPLICATION
  6733. //
  6734. // MessageText:
  6735. //
  6736. // A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0
  6737. //
  6738. #define NS_E_DRM_INVALID_APPLICATION _HRESULT_TYPEDEF_(0xC00D2711L)
  6739. //
  6740. // MessageId: NS_E_DRM_LICENSE_STORE_ERROR
  6741. //
  6742. // MessageText:
  6743. //
  6744. // License storage is not working. Contact Microsoft product support.%0
  6745. //
  6746. #define NS_E_DRM_LICENSE_STORE_ERROR _HRESULT_TYPEDEF_(0xC00D2712L)
  6747. //
  6748. // MessageId: NS_E_DRM_SECURE_STORE_ERROR
  6749. //
  6750. // MessageText:
  6751. //
  6752. // Secure storage is not working. Contact Microsoft product support.%0
  6753. //
  6754. #define NS_E_DRM_SECURE_STORE_ERROR _HRESULT_TYPEDEF_(0xC00D2713L)
  6755. //
  6756. // MessageId: NS_E_DRM_LICENSE_STORE_SAVE_ERROR
  6757. //
  6758. // MessageText:
  6759. //
  6760. // License acquisition did not work. Acquire a new license or contact the content provider for further assistance.%0
  6761. //
  6762. #define NS_E_DRM_LICENSE_STORE_SAVE_ERROR _HRESULT_TYPEDEF_(0xC00D2714L)
  6763. //
  6764. // MessageId: NS_E_DRM_SECURE_STORE_UNLOCK_ERROR
  6765. //
  6766. // MessageText:
  6767. //
  6768. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  6769. //
  6770. #define NS_E_DRM_SECURE_STORE_UNLOCK_ERROR _HRESULT_TYPEDEF_(0xC00D2715L)
  6771. //
  6772. // MessageId: NS_E_DRM_INVALID_CONTENT
  6773. //
  6774. // MessageText:
  6775. //
  6776. // The media file is corrupted. Contact the content provider to get a new file.%0
  6777. //
  6778. #define NS_E_DRM_INVALID_CONTENT _HRESULT_TYPEDEF_(0xC00D2716L)
  6779. //
  6780. // MessageId: NS_E_DRM_UNABLE_TO_OPEN_LICENSE
  6781. //
  6782. // MessageText:
  6783. //
  6784. // The license is corrupted. Acquire a new license.%0
  6785. //
  6786. #define NS_E_DRM_UNABLE_TO_OPEN_LICENSE _HRESULT_TYPEDEF_(0xC00D2717L)
  6787. //
  6788. // MessageId: NS_E_DRM_INVALID_LICENSE
  6789. //
  6790. // MessageText:
  6791. //
  6792. // The license is corrupted or invalid. Acquire a new license%0
  6793. //
  6794. #define NS_E_DRM_INVALID_LICENSE _HRESULT_TYPEDEF_(0xC00D2718L)
  6795. //
  6796. // MessageId: NS_E_DRM_INVALID_MACHINE
  6797. //
  6798. // MessageText:
  6799. //
  6800. // Licenses cannot be copied from one computer to another. Use License Management to transfer licenses, or get a new license for the media file.%0
  6801. //
  6802. #define NS_E_DRM_INVALID_MACHINE _HRESULT_TYPEDEF_(0xC00D2719L)
  6803. //
  6804. // MessageId: NS_E_DRM_ENUM_LICENSE_FAILED
  6805. //
  6806. // MessageText:
  6807. //
  6808. // License storage is not working. Contact Microsoft product support.%0
  6809. //
  6810. #define NS_E_DRM_ENUM_LICENSE_FAILED _HRESULT_TYPEDEF_(0xC00D271BL)
  6811. //
  6812. // MessageId: NS_E_DRM_INVALID_LICENSE_REQUEST
  6813. //
  6814. // MessageText:
  6815. //
  6816. // The media file is corrupted. Contact the content provider to get a new file.%0
  6817. //
  6818. #define NS_E_DRM_INVALID_LICENSE_REQUEST _HRESULT_TYPEDEF_(0xC00D271CL)
  6819. //
  6820. // MessageId: NS_E_DRM_UNABLE_TO_INITIALIZE
  6821. //
  6822. // MessageText:
  6823. //
  6824. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  6825. //
  6826. #define NS_E_DRM_UNABLE_TO_INITIALIZE _HRESULT_TYPEDEF_(0xC00D271DL)
  6827. //
  6828. // MessageId: NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE
  6829. //
  6830. // MessageText:
  6831. //
  6832. // The license could not be acquired. Try again later.%0
  6833. //
  6834. #define NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE _HRESULT_TYPEDEF_(0xC00D271EL)
  6835. //
  6836. // MessageId: NS_E_DRM_INVALID_LICENSE_ACQUIRED
  6837. //
  6838. // MessageText:
  6839. //
  6840. // License acquisition did not work. Acquire a new license or contact the content provider for further assistance.%0
  6841. //
  6842. #define NS_E_DRM_INVALID_LICENSE_ACQUIRED _HRESULT_TYPEDEF_(0xC00D271FL)
  6843. //
  6844. // MessageId: NS_E_DRM_NO_RIGHTS
  6845. //
  6846. // MessageText:
  6847. //
  6848. // The requested operation cannot be performed on this file.%0
  6849. //
  6850. #define NS_E_DRM_NO_RIGHTS _HRESULT_TYPEDEF_(0xC00D2720L)
  6851. //
  6852. // MessageId: NS_E_DRM_KEY_ERROR
  6853. //
  6854. // MessageText:
  6855. //
  6856. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  6857. //
  6858. #define NS_E_DRM_KEY_ERROR _HRESULT_TYPEDEF_(0xC00D2721L)
  6859. //
  6860. // MessageId: NS_E_DRM_ENCRYPT_ERROR
  6861. //
  6862. // MessageText:
  6863. //
  6864. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  6865. //
  6866. #define NS_E_DRM_ENCRYPT_ERROR _HRESULT_TYPEDEF_(0xC00D2722L)
  6867. //
  6868. // MessageId: NS_E_DRM_DECRYPT_ERROR
  6869. //
  6870. // MessageText:
  6871. //
  6872. // The media file is corrupted. Contact the content provider to get a new file.%0
  6873. //
  6874. #define NS_E_DRM_DECRYPT_ERROR _HRESULT_TYPEDEF_(0xC00D2723L)
  6875. //
  6876. // MessageId: NS_E_DRM_LICENSE_INVALID_XML
  6877. //
  6878. // MessageText:
  6879. //
  6880. // The license is corrupted. Acquire a new license.%0
  6881. //
  6882. #define NS_E_DRM_LICENSE_INVALID_XML _HRESULT_TYPEDEF_(0xC00D2725L)
  6883. //
  6884. // MessageId: NS_S_DRM_LICENSE_ACQUIRED
  6885. //
  6886. // MessageText:
  6887. //
  6888. // Status message: The license was acquired.%0
  6889. //
  6890. #define NS_S_DRM_LICENSE_ACQUIRED _HRESULT_TYPEDEF_(0x000D2726L)
  6891. //
  6892. // MessageId: NS_S_DRM_INDIVIDUALIZED
  6893. //
  6894. // MessageText:
  6895. //
  6896. // Status message: The security upgrade has been completed.%0
  6897. //
  6898. #define NS_S_DRM_INDIVIDUALIZED _HRESULT_TYPEDEF_(0x000D2727L)
  6899. //
  6900. // MessageId: NS_E_DRM_NEEDS_INDIVIDUALIZATION
  6901. //
  6902. // MessageText:
  6903. //
  6904. // A security upgrade is required to perform the operation on this media file.%0
  6905. //
  6906. #define NS_E_DRM_NEEDS_INDIVIDUALIZATION _HRESULT_TYPEDEF_(0xC00D2728L)
  6907. //
  6908. // MessageId: NS_E_DRM_ALREADY_INDIVIDUALIZED
  6909. //
  6910. // MessageText:
  6911. //
  6912. // You already have the latest security components. No upgrade is necessary at this time.%0
  6913. //
  6914. #define NS_E_DRM_ALREADY_INDIVIDUALIZED _HRESULT_TYPEDEF_(0xC00D2729L)
  6915. //
  6916. // MessageId: NS_E_DRM_ACTION_NOT_QUERIED
  6917. //
  6918. // MessageText:
  6919. //
  6920. // The application cannot perform this action. Contact product support for this application.%0
  6921. //
  6922. #define NS_E_DRM_ACTION_NOT_QUERIED _HRESULT_TYPEDEF_(0xC00D272AL)
  6923. //
  6924. // MessageId: NS_E_DRM_ACQUIRING_LICENSE
  6925. //
  6926. // MessageText:
  6927. //
  6928. // You cannot begin a new license acquisition process until the current one has been completed.%0
  6929. //
  6930. #define NS_E_DRM_ACQUIRING_LICENSE _HRESULT_TYPEDEF_(0xC00D272BL)
  6931. //
  6932. // MessageId: NS_E_DRM_INDIVIDUALIZING
  6933. //
  6934. // MessageText:
  6935. //
  6936. // You cannot begin a new security upgrade until the current one has been completed.%0
  6937. //
  6938. #define NS_E_DRM_INDIVIDUALIZING _HRESULT_TYPEDEF_(0xC00D272CL)
  6939. //
  6940. // MessageId: NS_E_DRM_PARAMETERS_MISMATCHED
  6941. //
  6942. // MessageText:
  6943. //
  6944. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  6945. //
  6946. #define NS_E_DRM_PARAMETERS_MISMATCHED _HRESULT_TYPEDEF_(0xC00D272FL)
  6947. //
  6948. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT
  6949. //
  6950. // MessageText:
  6951. //
  6952. // A license cannot be created for this media file. Reinstall the application.%0
  6953. //
  6954. #define NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT _HRESULT_TYPEDEF_(0xC00D2730L)
  6955. //
  6956. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT
  6957. //
  6958. // MessageText:
  6959. //
  6960. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  6961. //
  6962. #define NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT _HRESULT_TYPEDEF_(0xC00D2731L)
  6963. //
  6964. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT
  6965. //
  6966. // MessageText:
  6967. //
  6968. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  6969. //
  6970. #define NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT _HRESULT_TYPEDEF_(0xC00D2732L)
  6971. //
  6972. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT
  6973. //
  6974. // MessageText:
  6975. //
  6976. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  6977. //
  6978. #define NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT _HRESULT_TYPEDEF_(0xC00D2733L)
  6979. //
  6980. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT
  6981. //
  6982. // MessageText:
  6983. //
  6984. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  6985. //
  6986. #define NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT _HRESULT_TYPEDEF_(0xC00D2734L)
  6987. //
  6988. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT
  6989. //
  6990. // MessageText:
  6991. //
  6992. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  6993. //
  6994. #define NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT _HRESULT_TYPEDEF_(0xC00D2735L)
  6995. //
  6996. // MessageId: NS_E_DRM_INDIVIDUALIZE_ERROR
  6997. //
  6998. // MessageText:
  6999. //
  7000. // The security upgrade failed. Try again later.%0
  7001. //
  7002. #define NS_E_DRM_INDIVIDUALIZE_ERROR _HRESULT_TYPEDEF_(0xC00D2736L)
  7003. //
  7004. // MessageId: NS_E_DRM_LICENSE_OPEN_ERROR
  7005. //
  7006. // MessageText:
  7007. //
  7008. // License storage is not working. Contact Microsoft product support.%0
  7009. //
  7010. #define NS_E_DRM_LICENSE_OPEN_ERROR _HRESULT_TYPEDEF_(0xC00D2737L)
  7011. //
  7012. // MessageId: NS_E_DRM_LICENSE_CLOSE_ERROR
  7013. //
  7014. // MessageText:
  7015. //
  7016. // License storage is not working. Contact Microsoft product support.%0
  7017. //
  7018. #define NS_E_DRM_LICENSE_CLOSE_ERROR _HRESULT_TYPEDEF_(0xC00D2738L)
  7019. //
  7020. // MessageId: NS_E_DRM_GET_LICENSE_ERROR
  7021. //
  7022. // MessageText:
  7023. //
  7024. // License storage is not working. Contact Microsoft product support.%0
  7025. //
  7026. #define NS_E_DRM_GET_LICENSE_ERROR _HRESULT_TYPEDEF_(0xC00D2739L)
  7027. //
  7028. // MessageId: NS_E_DRM_QUERY_ERROR
  7029. //
  7030. // MessageText:
  7031. //
  7032. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7033. //
  7034. #define NS_E_DRM_QUERY_ERROR _HRESULT_TYPEDEF_(0xC00D273AL)
  7035. //
  7036. // MessageId: NS_E_DRM_REPORT_ERROR
  7037. //
  7038. // MessageText:
  7039. //
  7040. // A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0
  7041. //
  7042. #define NS_E_DRM_REPORT_ERROR _HRESULT_TYPEDEF_(0xC00D273BL)
  7043. //
  7044. // MessageId: NS_E_DRM_GET_LICENSESTRING_ERROR
  7045. //
  7046. // MessageText:
  7047. //
  7048. // License storage is not working. Contact Microsoft product support.%0
  7049. //
  7050. #define NS_E_DRM_GET_LICENSESTRING_ERROR _HRESULT_TYPEDEF_(0xC00D273CL)
  7051. //
  7052. // MessageId: NS_E_DRM_GET_CONTENTSTRING_ERROR
  7053. //
  7054. // MessageText:
  7055. //
  7056. // The media file is corrupted. Contact the content provider to get a new file.%0
  7057. //
  7058. #define NS_E_DRM_GET_CONTENTSTRING_ERROR _HRESULT_TYPEDEF_(0xC00D273DL)
  7059. //
  7060. // MessageId: NS_E_DRM_MONITOR_ERROR
  7061. //
  7062. // MessageText:
  7063. //
  7064. // A problem has occurred in the Digital Rights Management component. Try again later.%0
  7065. //
  7066. #define NS_E_DRM_MONITOR_ERROR _HRESULT_TYPEDEF_(0xC00D273EL)
  7067. //
  7068. // MessageId: NS_E_DRM_UNABLE_TO_SET_PARAMETER
  7069. //
  7070. // MessageText:
  7071. //
  7072. // The application has made an invalid call to the Digital Rights Management component. Contact product support for this application.%0
  7073. //
  7074. #define NS_E_DRM_UNABLE_TO_SET_PARAMETER _HRESULT_TYPEDEF_(0xC00D273FL)
  7075. //
  7076. // MessageId: NS_E_DRM_INVALID_APPDATA
  7077. //
  7078. // MessageText:
  7079. //
  7080. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7081. //
  7082. #define NS_E_DRM_INVALID_APPDATA _HRESULT_TYPEDEF_(0xC00D2740L)
  7083. //
  7084. // MessageId: NS_E_DRM_INVALID_APPDATA_VERSION
  7085. //
  7086. // MessageText:
  7087. //
  7088. // A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0.
  7089. //
  7090. #define NS_E_DRM_INVALID_APPDATA_VERSION _HRESULT_TYPEDEF_(0xC00D2741L)
  7091. //
  7092. // MessageId: NS_E_DRM_BACKUP_EXISTS
  7093. //
  7094. // MessageText:
  7095. //
  7096. // Licenses are already backed up in this location.%0
  7097. //
  7098. #define NS_E_DRM_BACKUP_EXISTS _HRESULT_TYPEDEF_(0xC00D2742L)
  7099. //
  7100. // MessageId: NS_E_DRM_BACKUP_CORRUPT
  7101. //
  7102. // MessageText:
  7103. //
  7104. // One or more backed-up licenses are missing or corrupt.%0
  7105. //
  7106. #define NS_E_DRM_BACKUP_CORRUPT _HRESULT_TYPEDEF_(0xC00D2743L)
  7107. //
  7108. // MessageId: NS_E_DRM_BACKUPRESTORE_BUSY
  7109. //
  7110. // MessageText:
  7111. //
  7112. // You cannot begin a new backup process until the current process has been completed.%0
  7113. //
  7114. #define NS_E_DRM_BACKUPRESTORE_BUSY _HRESULT_TYPEDEF_(0xC00D2744L)
  7115. //
  7116. // MessageId: NS_S_DRM_MONITOR_CANCELLED
  7117. //
  7118. // MessageText:
  7119. //
  7120. // Status message: License monitoring has been cancelled.%0
  7121. //
  7122. #define NS_S_DRM_MONITOR_CANCELLED _HRESULT_TYPEDEF_(0x000D2746L)
  7123. //
  7124. // MessageId: NS_S_DRM_ACQUIRE_CANCELLED
  7125. //
  7126. // MessageText:
  7127. //
  7128. // Status message: License acquisition has been cancelled.%0
  7129. //
  7130. #define NS_S_DRM_ACQUIRE_CANCELLED _HRESULT_TYPEDEF_(0x000D2747L)
  7131. //
  7132. // MessageId: NS_E_DRM_LICENSE_UNUSABLE
  7133. //
  7134. // MessageText:
  7135. //
  7136. // The license is invalid. Contact the content provider for further assistance.%0
  7137. //
  7138. #define NS_E_DRM_LICENSE_UNUSABLE _HRESULT_TYPEDEF_(0xC00D2748L)
  7139. //
  7140. // MessageId: NS_E_DRM_INVALID_PROPERTY
  7141. //
  7142. // MessageText:
  7143. //
  7144. // A required property was not set by the application. Contact product support for this application.%0.
  7145. //
  7146. #define NS_E_DRM_INVALID_PROPERTY _HRESULT_TYPEDEF_(0xC00D2749L)
  7147. //
  7148. // MessageId: NS_E_DRM_SECURE_STORE_NOT_FOUND
  7149. //
  7150. // MessageText:
  7151. //
  7152. // A problem has occurred in the Digital Rights Management component of this application. Try to acquire a license again.%0
  7153. //
  7154. #define NS_E_DRM_SECURE_STORE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D274AL)
  7155. //
  7156. // MessageId: NS_E_DRM_CACHED_CONTENT_ERROR
  7157. //
  7158. // MessageText:
  7159. //
  7160. // A license cannot be found for this media file. Use License Management to transfer a license for this file from the original computer, or acquire a new license.%0
  7161. //
  7162. #define NS_E_DRM_CACHED_CONTENT_ERROR _HRESULT_TYPEDEF_(0xC00D274BL)
  7163. //
  7164. // MessageId: NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE
  7165. //
  7166. // MessageText:
  7167. //
  7168. // A problem occurred during the security upgrade. Try again later.%0
  7169. //
  7170. #define NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE _HRESULT_TYPEDEF_(0xC00D274CL)
  7171. //
  7172. // MessageId: NS_E_DRM_DRIVER_AUTH_FAILURE
  7173. //
  7174. // MessageText:
  7175. //
  7176. // Certified driver components are required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware.%0
  7177. //
  7178. #define NS_E_DRM_DRIVER_AUTH_FAILURE _HRESULT_TYPEDEF_(0xC00D274DL)
  7179. //
  7180. // MessageId: NS_E_DRM_NEED_UPGRADE_MSSAP
  7181. //
  7182. // MessageText:
  7183. //
  7184. // One or more of the Secure Audio Path components were not found or an entry point in those components was not found.%0
  7185. //
  7186. #define NS_E_DRM_NEED_UPGRADE_MSSAP _HRESULT_TYPEDEF_(0xC00D274EL)
  7187. //
  7188. // MessageId: NS_E_DRM_REOPEN_CONTENT
  7189. //
  7190. // MessageText:
  7191. //
  7192. // Status message: Reopen the file.%0
  7193. //
  7194. #define NS_E_DRM_REOPEN_CONTENT _HRESULT_TYPEDEF_(0xC00D274FL)
  7195. //
  7196. // MessageId: NS_E_DRM_DRIVER_DIGIOUT_FAILURE
  7197. //
  7198. // MessageText:
  7199. //
  7200. // Certain driver functionality is required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware.%0
  7201. //
  7202. #define NS_E_DRM_DRIVER_DIGIOUT_FAILURE _HRESULT_TYPEDEF_(0xC00D2750L)
  7203. //
  7204. // MessageId: NS_E_DRM_INVALID_SECURESTORE_PASSWORD
  7205. //
  7206. // MessageText:
  7207. //
  7208. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7209. //
  7210. #define NS_E_DRM_INVALID_SECURESTORE_PASSWORD _HRESULT_TYPEDEF_(0xC00D2751L)
  7211. //
  7212. // MessageId: NS_E_DRM_APPCERT_REVOKED
  7213. //
  7214. // MessageText:
  7215. //
  7216. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7217. //
  7218. #define NS_E_DRM_APPCERT_REVOKED _HRESULT_TYPEDEF_(0xC00D2752L)
  7219. //
  7220. // MessageId: NS_E_DRM_RESTORE_FRAUD
  7221. //
  7222. // MessageText:
  7223. //
  7224. // You cannot restore your license(s).%0
  7225. //
  7226. #define NS_E_DRM_RESTORE_FRAUD _HRESULT_TYPEDEF_(0xC00D2753L)
  7227. //
  7228. // MessageId: NS_E_DRM_HARDWARE_INCONSISTENT
  7229. //
  7230. // MessageText:
  7231. //
  7232. // The licenses for your media files are corrupted. Contact Microsoft product support.%0
  7233. //
  7234. #define NS_E_DRM_HARDWARE_INCONSISTENT _HRESULT_TYPEDEF_(0xC00D2754L)
  7235. //
  7236. // MessageId: NS_E_DRM_SDMI_TRIGGER
  7237. //
  7238. // MessageText:
  7239. //
  7240. // To transfer this media file, you must upgrade the application.%0
  7241. //
  7242. #define NS_E_DRM_SDMI_TRIGGER _HRESULT_TYPEDEF_(0xC00D2755L)
  7243. //
  7244. // MessageId: NS_E_DRM_SDMI_NOMORECOPIES
  7245. //
  7246. // MessageText:
  7247. //
  7248. // You cannot make any more copies of this media file.%0
  7249. //
  7250. #define NS_E_DRM_SDMI_NOMORECOPIES _HRESULT_TYPEDEF_(0xC00D2756L)
  7251. //
  7252. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT
  7253. //
  7254. // MessageText:
  7255. //
  7256. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7257. //
  7258. #define NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT _HRESULT_TYPEDEF_(0xC00D2757L)
  7259. //
  7260. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT
  7261. //
  7262. // MessageText:
  7263. //
  7264. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7265. //
  7266. #define NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT _HRESULT_TYPEDEF_(0xC00D2758L)
  7267. ;// This error is never shown to user but needed for program logic.
  7268. //
  7269. // MessageId: NS_E_DRM_LICENSE_NOTACQUIRED
  7270. //
  7271. // MessageText:
  7272. //
  7273. // Unable to obtain license.%0
  7274. //
  7275. #define NS_E_DRM_LICENSE_NOTACQUIRED _HRESULT_TYPEDEF_(0xC00D2759L)
  7276. //
  7277. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT
  7278. //
  7279. // MessageText:
  7280. //
  7281. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7282. //
  7283. #define NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT _HRESULT_TYPEDEF_(0xC00D275AL)
  7284. //
  7285. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT
  7286. //
  7287. // MessageText:
  7288. //
  7289. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7290. //
  7291. #define NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT _HRESULT_TYPEDEF_(0xC00D275BL)
  7292. //
  7293. // MessageId: NS_E_DRM_BUFFER_TOO_SMALL
  7294. //
  7295. // MessageText:
  7296. //
  7297. // The buffer supplied is not sufficient.%0.
  7298. //
  7299. #define NS_E_DRM_BUFFER_TOO_SMALL _HRESULT_TYPEDEF_(0xC00D275CL)
  7300. //
  7301. // MessageId: NS_E_DRM_UNSUPPORTED_PROPERTY
  7302. //
  7303. // MessageText:
  7304. //
  7305. // The property requested is not supported.%0.
  7306. //
  7307. #define NS_E_DRM_UNSUPPORTED_PROPERTY _HRESULT_TYPEDEF_(0xC00D275DL)
  7308. //
  7309. // MessageId: NS_E_DRM_ERROR_BAD_NET_RESP
  7310. //
  7311. // MessageText:
  7312. //
  7313. // The specified server cannot perform the requested operation.%0.
  7314. //
  7315. #define NS_E_DRM_ERROR_BAD_NET_RESP _HRESULT_TYPEDEF_(0xC00D275EL)
  7316. //
  7317. // MessageId: NS_E_DRM_STORE_NOTALLSTORED
  7318. //
  7319. // MessageText:
  7320. //
  7321. // Some of the licenses could not be stored.%0.
  7322. //
  7323. #define NS_E_DRM_STORE_NOTALLSTORED _HRESULT_TYPEDEF_(0xC00D275FL)
  7324. //
  7325. // MessageId: NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID
  7326. //
  7327. // MessageText:
  7328. //
  7329. // The Digital Rights Management security upgrade component could not be validated. Contact Microsoft product support.%0
  7330. //
  7331. #define NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID _HRESULT_TYPEDEF_(0xC00D2760L)
  7332. //
  7333. // MessageId: NS_E_DRM_INVALID_DATA
  7334. //
  7335. // MessageText:
  7336. //
  7337. // Invalid or corrupt data was encountered.%0
  7338. //
  7339. #define NS_E_DRM_INVALID_DATA _HRESULT_TYPEDEF_(0xC00D2761L)
  7340. //
  7341. // MessageId: NS_E_DRM_POLICY_DISABLE_ONLINE
  7342. //
  7343. // MessageText:
  7344. //
  7345. // Unable to contact the server for the requested operation.%0
  7346. //
  7347. #define NS_E_DRM_POLICY_DISABLE_ONLINE _HRESULT_TYPEDEF_(0xC00D2762L)
  7348. //
  7349. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT
  7350. //
  7351. // MessageText:
  7352. //
  7353. // A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7354. //
  7355. #define NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT _HRESULT_TYPEDEF_(0xC00D2763L)
  7356. //
  7357. // MessageId: NS_E_DRM_NOT_CONFIGURED
  7358. //
  7359. // MessageText:
  7360. //
  7361. // Not all of the necessary properties for DRM have been set.%0
  7362. //
  7363. #define NS_E_DRM_NOT_CONFIGURED _HRESULT_TYPEDEF_(0xC00D2764L)
  7364. //
  7365. // MessageId: NS_E_DRM_DEVICE_ACTIVATION_CANCELED
  7366. //
  7367. // MessageText:
  7368. //
  7369. // The portable device does not have the security required to copy protected files to it. To obtain the additional security, try to copy the file to your portable device again. When a message appears, click OK.%0
  7370. //
  7371. #define NS_E_DRM_DEVICE_ACTIVATION_CANCELED _HRESULT_TYPEDEF_(0xC00D2765L)
  7372. //
  7373. // License Reasons Section
  7374. // Error Codes why a license is not usable. Reserve 10200..10300 for this purpose.
  7375. // 10200..10249 is for license reported reasons. 10250..10300 is for client detected reasons.
  7376. //
  7377. //
  7378. // MessageId: NS_E_DRM_LICENSE_EXPIRED
  7379. //
  7380. // MessageText:
  7381. //
  7382. // The license for this file has expired and is no longer valid. Contact your content provider for further assistance.%0
  7383. //
  7384. #define NS_E_DRM_LICENSE_EXPIRED _HRESULT_TYPEDEF_(0xC00D27D8L)
  7385. //
  7386. // MessageId: NS_E_DRM_LICENSE_NOTENABLED
  7387. //
  7388. // MessageText:
  7389. //
  7390. // The license for this file is not valid yet, but will be at a future date.%0
  7391. //
  7392. #define NS_E_DRM_LICENSE_NOTENABLED _HRESULT_TYPEDEF_(0xC00D27D9L)
  7393. //
  7394. // MessageId: NS_E_DRM_LICENSE_APPSECLOW
  7395. //
  7396. // MessageText:
  7397. //
  7398. // The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player.%0
  7399. //
  7400. #define NS_E_DRM_LICENSE_APPSECLOW _HRESULT_TYPEDEF_(0xC00D27DAL)
  7401. //
  7402. // MessageId: NS_E_DRM_STORE_NEEDINDI
  7403. //
  7404. // MessageText:
  7405. //
  7406. // The license cannot be stored as it requires security upgrade of Digital Rights Management component.%0.
  7407. //
  7408. #define NS_E_DRM_STORE_NEEDINDI _HRESULT_TYPEDEF_(0xC00D27DBL)
  7409. //
  7410. // MessageId: NS_E_DRM_STORE_NOTALLOWED
  7411. //
  7412. // MessageText:
  7413. //
  7414. // Your machine does not meet the requirements for storing the license.%0.
  7415. //
  7416. #define NS_E_DRM_STORE_NOTALLOWED _HRESULT_TYPEDEF_(0xC00D27DCL)
  7417. //
  7418. // MessageId: NS_E_DRM_LICENSE_APP_NOTALLOWED
  7419. //
  7420. // MessageText:
  7421. //
  7422. // The license for this file requires an upgraded version of your player or a different player.%0.
  7423. //
  7424. #define NS_E_DRM_LICENSE_APP_NOTALLOWED _HRESULT_TYPEDEF_(0xC00D27DDL)
  7425. //
  7426. // MessageId: NS_S_DRM_NEEDS_INDIVIDUALIZATION
  7427. //
  7428. // MessageText:
  7429. //
  7430. // A security upgrade is required to perform the operation on this media file.%0
  7431. //
  7432. #define NS_S_DRM_NEEDS_INDIVIDUALIZATION _HRESULT_TYPEDEF_(0x000D27DEL)
  7433. //
  7434. // MessageId: NS_E_DRM_LICENSE_CERT_EXPIRED
  7435. //
  7436. // MessageText:
  7437. //
  7438. // The license server's certificate expired. Make sure your system clock is set correctly. Contact your content provider for further assistance. %0.
  7439. //
  7440. #define NS_E_DRM_LICENSE_CERT_EXPIRED _HRESULT_TYPEDEF_(0xC00D27DFL)
  7441. //
  7442. // MessageId: NS_E_DRM_LICENSE_SECLOW
  7443. //
  7444. // MessageText:
  7445. //
  7446. // The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player.%0
  7447. //
  7448. #define NS_E_DRM_LICENSE_SECLOW _HRESULT_TYPEDEF_(0xC00D27E0L)
  7449. //
  7450. // MessageId: NS_E_DRM_LICENSE_CONTENT_REVOKED
  7451. //
  7452. // MessageText:
  7453. //
  7454. // The content owner for the license you just acquired is no longer supporting their content. Contact the content owner for a newer version of the content.%0
  7455. //
  7456. #define NS_E_DRM_LICENSE_CONTENT_REVOKED _HRESULT_TYPEDEF_(0xC00D27E1L)
  7457. //
  7458. // MessageId: NS_E_DRM_LICENSE_NOSAP
  7459. //
  7460. // MessageText:
  7461. //
  7462. // The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance.%0
  7463. //
  7464. #define NS_E_DRM_LICENSE_NOSAP _HRESULT_TYPEDEF_(0xC00D280AL)
  7465. //
  7466. // MessageId: NS_E_DRM_LICENSE_NOSVP
  7467. //
  7468. // MessageText:
  7469. //
  7470. // The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance.%0
  7471. //
  7472. #define NS_E_DRM_LICENSE_NOSVP _HRESULT_TYPEDEF_(0xC00D280BL)
  7473. //
  7474. // MessageId: NS_E_DRM_LICENSE_NOWDM
  7475. //
  7476. // MessageText:
  7477. //
  7478. // The license for this file requires Windows Driver Model (WDM) audio drivers. Contact your sound card manufacturer for further assistance.%0
  7479. //
  7480. #define NS_E_DRM_LICENSE_NOWDM _HRESULT_TYPEDEF_(0xC00D280CL)
  7481. //
  7482. // MessageId: NS_E_DRM_LICENSE_NOTRUSTEDCODEC
  7483. //
  7484. // MessageText:
  7485. //
  7486. // The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player.%0
  7487. //
  7488. #define NS_E_DRM_LICENSE_NOTRUSTEDCODEC _HRESULT_TYPEDEF_(0xC00D280DL)
  7489. //
  7490. // End of License Reasons Section
  7491. //
  7492. //
  7493. // MessageId: NS_E_DRM_NEEDS_UPGRADE_TEMPFILE
  7494. //
  7495. // MessageText:
  7496. //
  7497. // An updated version of your media player is required to play the selected content.%0
  7498. //
  7499. #define NS_E_DRM_NEEDS_UPGRADE_TEMPFILE _HRESULT_TYPEDEF_(0xC00D283DL)
  7500. //
  7501. // MessageId: NS_E_DRM_NEED_UPGRADE_PD
  7502. //
  7503. // MessageText:
  7504. //
  7505. // A new version of the Digital Rights Management component is required. Contact product support for this application to get the latest version.%0
  7506. //
  7507. #define NS_E_DRM_NEED_UPGRADE_PD _HRESULT_TYPEDEF_(0xC00D283EL)
  7508. //
  7509. // MessageId: NS_E_DRM_SIGNATURE_FAILURE
  7510. //
  7511. // MessageText:
  7512. //
  7513. // Failed to either create or verify the content header.%0
  7514. //
  7515. #define NS_E_DRM_SIGNATURE_FAILURE _HRESULT_TYPEDEF_(0xC00D283FL)
  7516. //
  7517. // MessageId: NS_E_DRM_LICENSE_SERVER_INFO_MISSING
  7518. //
  7519. // MessageText:
  7520. //
  7521. // Could not read the necessary information from the system registry.%0
  7522. //
  7523. #define NS_E_DRM_LICENSE_SERVER_INFO_MISSING _HRESULT_TYPEDEF_(0xC00D2840L)
  7524. //
  7525. // MessageId: NS_E_DRM_BUSY
  7526. //
  7527. // MessageText:
  7528. //
  7529. // The DRM subsystem is currently locked by another application or user. Try again later.%0
  7530. //
  7531. #define NS_E_DRM_BUSY _HRESULT_TYPEDEF_(0xC00D2841L)
  7532. //
  7533. // MessageId: NS_E_DRM_PD_TOO_MANY_DEVICES
  7534. //
  7535. // MessageText:
  7536. //
  7537. // There are too many target devices registered on the portable media.%0
  7538. //
  7539. #define NS_E_DRM_PD_TOO_MANY_DEVICES _HRESULT_TYPEDEF_(0xC00D2842L)
  7540. //
  7541. // MessageId: NS_E_DRM_INDIV_FRAUD
  7542. //
  7543. // MessageText:
  7544. //
  7545. // The security upgrade cannot be completed because the allowed number of daily upgrades has been exceeded. Try again tomorrow.%0
  7546. //
  7547. #define NS_E_DRM_INDIV_FRAUD _HRESULT_TYPEDEF_(0xC00D2843L)
  7548. //
  7549. // MessageId: NS_E_DRM_INDIV_NO_CABS
  7550. //
  7551. // MessageText:
  7552. //
  7553. // The security upgrade cannot be completed because the server is unable to perform the operation. Try again later.%0
  7554. //
  7555. #define NS_E_DRM_INDIV_NO_CABS _HRESULT_TYPEDEF_(0xC00D2844L)
  7556. //
  7557. // MessageId: NS_E_DRM_INDIV_SERVICE_UNAVAILABLE
  7558. //
  7559. // MessageText:
  7560. //
  7561. // The security upgrade cannot be performed because the server is not available. Try again later.%0
  7562. //
  7563. #define NS_E_DRM_INDIV_SERVICE_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D2845L)
  7564. //
  7565. // MessageId: NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE
  7566. //
  7567. // MessageText:
  7568. //
  7569. // Windows Media Player cannot restore your licenses because the server is not available. Try again later.%0
  7570. //
  7571. #define NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D2846L)
  7572. /////////////////////////////////////////////////////////////////////////
  7573. //
  7574. // Windows Media Setup Specific Errors
  7575. //
  7576. // IdRange = 11000..11999
  7577. /////////////////////////////////////////////////////////////////////////
  7578. //
  7579. // MessageId: NS_S_REBOOT_RECOMMENDED
  7580. //
  7581. // MessageText:
  7582. //
  7583. // The requested operation is successful. Some cleanup will not be complete until the system is rebooted.%0
  7584. //
  7585. #define NS_S_REBOOT_RECOMMENDED _HRESULT_TYPEDEF_(0x000D2AF8L)
  7586. //
  7587. // MessageId: NS_S_REBOOT_REQUIRED
  7588. //
  7589. // MessageText:
  7590. //
  7591. // The requested operation is successful. The system will not function correctly until the system is rebooted.%0
  7592. //
  7593. #define NS_S_REBOOT_REQUIRED _HRESULT_TYPEDEF_(0x000D2AF9L)
  7594. //
  7595. // MessageId: NS_E_REBOOT_RECOMMENDED
  7596. //
  7597. // MessageText:
  7598. //
  7599. // The requested operation failed. Some cleanup will not be complete until the system is rebooted.%0
  7600. //
  7601. #define NS_E_REBOOT_RECOMMENDED _HRESULT_TYPEDEF_(0xC00D2AFAL)
  7602. //
  7603. // MessageId: NS_E_REBOOT_REQUIRED
  7604. //
  7605. // MessageText:
  7606. //
  7607. // The requested operation failed. The system will not function correctly until the system is rebooted.%0
  7608. //
  7609. #define NS_E_REBOOT_REQUIRED _HRESULT_TYPEDEF_(0xC00D2AFBL)
  7610. /////////////////////////////////////////////////////////////////////////
  7611. //
  7612. // Windows Media Networking Errors
  7613. //
  7614. // IdRange = 12000..12999
  7615. /////////////////////////////////////////////////////////////////////////
  7616. //
  7617. // MessageId: NS_E_UNKNOWN_PROTOCOL
  7618. //
  7619. // MessageText:
  7620. //
  7621. // The specified protocol is not supported.%0
  7622. //
  7623. #define NS_E_UNKNOWN_PROTOCOL _HRESULT_TYPEDEF_(0xC00D2EE0L)
  7624. //
  7625. // MessageId: NS_E_REDIRECT_TO_PROXY
  7626. //
  7627. // MessageText:
  7628. //
  7629. // The client is redirected to a proxy server.%0
  7630. //
  7631. #define NS_E_REDIRECT_TO_PROXY _HRESULT_TYPEDEF_(0xC00D2EE1L)
  7632. //
  7633. // MessageId: NS_E_INTERNAL_SERVER_ERROR
  7634. //
  7635. // MessageText:
  7636. //
  7637. // The server encountered an unexpected condition which prevented it from fulfilling the request.%0
  7638. //
  7639. #define NS_E_INTERNAL_SERVER_ERROR _HRESULT_TYPEDEF_(0xC00D2EE2L)
  7640. //
  7641. // MessageId: NS_E_BAD_REQUEST
  7642. //
  7643. // MessageText:
  7644. //
  7645. // The request could not be understood by the server.%0
  7646. //
  7647. #define NS_E_BAD_REQUEST _HRESULT_TYPEDEF_(0xC00D2EE3L)
  7648. //
  7649. // MessageId: NS_E_ERROR_FROM_PROXY
  7650. //
  7651. // MessageText:
  7652. //
  7653. // The proxy experienced an error while attempting to contact the media server.%0
  7654. //
  7655. #define NS_E_ERROR_FROM_PROXY _HRESULT_TYPEDEF_(0xC00D2EE4L)
  7656. //
  7657. // MessageId: NS_E_PROXY_TIMEOUT
  7658. //
  7659. // MessageText:
  7660. //
  7661. // The proxy did not receive a timely response while attempting to contact the media server.%0
  7662. //
  7663. #define NS_E_PROXY_TIMEOUT _HRESULT_TYPEDEF_(0xC00D2EE5L)
  7664. //
  7665. // MessageId: NS_E_SERVER_UNAVAILABLE
  7666. //
  7667. // MessageText:
  7668. //
  7669. // The server is currently unable to handle the request due to a temporary overloading or maintenance of the server.%0
  7670. //
  7671. #define NS_E_SERVER_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D2EE6L)
  7672. //
  7673. // MessageId: NS_E_REFUSED_BY_SERVER
  7674. //
  7675. // MessageText:
  7676. //
  7677. // The server is refusing to fulfill the requested operation.%0
  7678. //
  7679. #define NS_E_REFUSED_BY_SERVER _HRESULT_TYPEDEF_(0xC00D2EE7L)
  7680. //
  7681. // MessageId: NS_E_INCOMPATIBLE_SERVER
  7682. //
  7683. // MessageText:
  7684. //
  7685. // The server is not a compatible streaming media server.%0
  7686. //
  7687. #define NS_E_INCOMPATIBLE_SERVER _HRESULT_TYPEDEF_(0xC00D2EE8L)
  7688. //
  7689. // MessageId: NS_E_MULTICAST_DISABLED
  7690. //
  7691. // MessageText:
  7692. //
  7693. // The content cannot be streamed because the Multicast protocol has been disabled.%0
  7694. //
  7695. #define NS_E_MULTICAST_DISABLED _HRESULT_TYPEDEF_(0xC00D2EE9L)
  7696. //
  7697. // MessageId: NS_E_INVALID_REDIRECT
  7698. //
  7699. // MessageText:
  7700. //
  7701. // The server redirected the player to an invalid location.%0
  7702. //
  7703. #define NS_E_INVALID_REDIRECT _HRESULT_TYPEDEF_(0xC00D2EEAL)
  7704. //
  7705. // MessageId: NS_E_ALL_PROTOCOLS_DISABLED
  7706. //
  7707. // MessageText:
  7708. //
  7709. // The content cannot be streamed because all protocols have been disabled.%0
  7710. //
  7711. #define NS_E_ALL_PROTOCOLS_DISABLED _HRESULT_TYPEDEF_(0xC00D2EEBL)
  7712. //
  7713. // MessageId: NS_E_MSBD_NO_LONGER_SUPPORTED
  7714. //
  7715. // MessageText:
  7716. //
  7717. // The MSBD protocol is no longer supported. Please use HTTP to connect to the Windows Media stream.%0
  7718. //
  7719. #define NS_E_MSBD_NO_LONGER_SUPPORTED _HRESULT_TYPEDEF_(0xC00D2EECL)
  7720. //
  7721. // MessageId: NS_E_PROXY_NOT_FOUND
  7722. //
  7723. // MessageText:
  7724. //
  7725. // The proxy server could not be located. Please check your proxy server configuration.%0
  7726. //
  7727. #define NS_E_PROXY_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D2EEDL)
  7728. //
  7729. // MessageId: NS_E_CANNOT_CONNECT_TO_PROXY
  7730. //
  7731. // MessageText:
  7732. //
  7733. // Unable to establish a connection to the proxy server. Please check your proxy server configuration.%0
  7734. //
  7735. #define NS_E_CANNOT_CONNECT_TO_PROXY _HRESULT_TYPEDEF_(0xC00D2EEEL)
  7736. //
  7737. // MessageId: NS_E_SERVER_DNS_TIMEOUT
  7738. //
  7739. // MessageText:
  7740. //
  7741. // Unable to locate the media server. The operation timed out.%0
  7742. //
  7743. #define NS_E_SERVER_DNS_TIMEOUT _HRESULT_TYPEDEF_(0xC00D2EEFL)
  7744. //
  7745. // MessageId: NS_E_PROXY_DNS_TIMEOUT
  7746. //
  7747. // MessageText:
  7748. //
  7749. // Unable to locate the proxy server. The operation timed out.%0
  7750. //
  7751. #define NS_E_PROXY_DNS_TIMEOUT _HRESULT_TYPEDEF_(0xC00D2EF0L)
  7752. //
  7753. // MessageId: NS_E_CLOSED_ON_SUSPEND
  7754. //
  7755. // MessageText:
  7756. //
  7757. // Media closed because Windows was shut down.%0
  7758. //
  7759. #define NS_E_CLOSED_ON_SUSPEND _HRESULT_TYPEDEF_(0xC00D2EF1L)
  7760. //
  7761. // MessageId: NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER
  7762. //
  7763. // MessageText:
  7764. //
  7765. // Unable to read the contents of a playlist file from a media server.%0
  7766. //
  7767. #define NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER _HRESULT_TYPEDEF_(0xC00D2EF2L)
  7768. //
  7769. // MessageId: NS_E_SESSION_NOT_FOUND
  7770. //
  7771. // MessageText:
  7772. //
  7773. // Session not found.%0
  7774. //
  7775. #define NS_E_SESSION_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D2EF3L)
  7776. //
  7777. // MessageId: NS_E_REQUIRE_STREAMING_CLIENT
  7778. //
  7779. // MessageText:
  7780. //
  7781. // Content requires a streaming media client.%0
  7782. //
  7783. #define NS_E_REQUIRE_STREAMING_CLIENT _HRESULT_TYPEDEF_(0xC00D2EF4L)
  7784. //
  7785. // MessageId: NS_E_PLAYLIST_ENTRY_HAS_CHANGED
  7786. //
  7787. // MessageText:
  7788. //
  7789. // A command applies to a previous playlist entry.%0
  7790. //
  7791. #define NS_E_PLAYLIST_ENTRY_HAS_CHANGED _HRESULT_TYPEDEF_(0xC00D2EF5L)
  7792. //
  7793. // MessageId: NS_E_PROXY_ACCESSDENIED
  7794. //
  7795. // MessageText:
  7796. //
  7797. // The proxy server is denying access. The username and/or password might be incorrect.%0
  7798. //
  7799. #define NS_E_PROXY_ACCESSDENIED _HRESULT_TYPEDEF_(0xC00D2EF6L)
  7800. //
  7801. // MessageId: NS_E_PROXY_SOURCE_ACCESSDENIED
  7802. //
  7803. // MessageText:
  7804. //
  7805. // The proxy could not provide valid authentication credentials to the media server.%0
  7806. //
  7807. #define NS_E_PROXY_SOURCE_ACCESSDENIED _HRESULT_TYPEDEF_(0xC00D2EF7L)
  7808. //
  7809. // MessageId: NS_E_NETWORK_SINK_WRITE
  7810. //
  7811. // MessageText:
  7812. //
  7813. // The network sink failed to write data to the network.%0
  7814. //
  7815. #define NS_E_NETWORK_SINK_WRITE _HRESULT_TYPEDEF_(0xC00D2EF8L)
  7816. //
  7817. // MessageId: NS_E_FIREWALL
  7818. //
  7819. // MessageText:
  7820. //
  7821. // Packets are not being received from the server. The packets might be blocked by a filtering device, such as a network firewall.%0
  7822. //
  7823. #define NS_E_FIREWALL _HRESULT_TYPEDEF_(0xC00D2EF9L)
  7824. //
  7825. // MessageId: NS_E_MMS_NOT_SUPPORTED
  7826. //
  7827. // MessageText:
  7828. //
  7829. // The MMS protocol is not supported. Please use HTTP or RTSP to connect to the Windows Media stream.%0
  7830. //
  7831. #define NS_E_MMS_NOT_SUPPORTED _HRESULT_TYPEDEF_(0xC00D2EFAL)
  7832. //
  7833. // MessageId: NS_E_SERVER_ACCESSDENIED
  7834. //
  7835. // MessageText:
  7836. //
  7837. // The Windows Media server is denying access. The username and/or password might be incorrect.%0
  7838. //
  7839. #define NS_E_SERVER_ACCESSDENIED _HRESULT_TYPEDEF_(0xC00D2EFBL)
  7840. //
  7841. // MessageId: NS_E_RESOURCE_GONE
  7842. //
  7843. // MessageText:
  7844. //
  7845. // The Publishing Point or file on the Windows Media Server is no longer available.%0
  7846. //
  7847. #define NS_E_RESOURCE_GONE _HRESULT_TYPEDEF_(0xC00D2EFCL)
  7848. //
  7849. // MessageId: NS_E_NO_EXISTING_PACKETIZER
  7850. //
  7851. // MessageText:
  7852. //
  7853. // There is no existing packetizer plugin for a stream.%0
  7854. //
  7855. #define NS_E_NO_EXISTING_PACKETIZER _HRESULT_TYPEDEF_(0xC00D2EFDL)
  7856. //
  7857. // MessageId: NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE
  7858. //
  7859. // MessageText:
  7860. //
  7861. // The response from the media server could not be understood. This might be caused by an incompatible proxy server or media server.%0
  7862. //
  7863. #define NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE _HRESULT_TYPEDEF_(0xC00D2EFEL)
  7864. //
  7865. // MessageId: NS_I_RECONNECTED
  7866. //
  7867. // MessageText:
  7868. //
  7869. // The client is reconnected.%0
  7870. //
  7871. #define NS_I_RECONNECTED _HRESULT_TYPEDEF_(0x400D2EFFL)
  7872. //
  7873. // MessageId: NS_E_RESET_SOCKET_CONNECTION
  7874. //
  7875. // MessageText:
  7876. //
  7877. // The Windows Media Server reset the network connection.%0
  7878. //
  7879. #define NS_E_RESET_SOCKET_CONNECTION _HRESULT_TYPEDEF_(0xC00D2F00L)
  7880. //
  7881. // MessageId: NS_I_NOLOG_STOP
  7882. //
  7883. // MessageText:
  7884. //
  7885. // Forcing a switch to a pending header on start.%0
  7886. //
  7887. #define NS_I_NOLOG_STOP _HRESULT_TYPEDEF_(0x400D2F01L)
  7888. //
  7889. // MessageId: NS_E_TOO_MANY_HOPS
  7890. //
  7891. // MessageText:
  7892. //
  7893. // The request could not reach the media server (too many hops).%0
  7894. //
  7895. #define NS_E_TOO_MANY_HOPS _HRESULT_TYPEDEF_(0xC00D2F02L)
  7896. //
  7897. // MessageId: NS_I_EXISTING_PACKETIZER
  7898. //
  7899. // MessageText:
  7900. //
  7901. // There is already an existing packetizer plugin for the stream.%0
  7902. //
  7903. #define NS_I_EXISTING_PACKETIZER _HRESULT_TYPEDEF_(0x400D2F03L)
  7904. //
  7905. // MessageId: NS_I_MANUAL_PROXY
  7906. //
  7907. // MessageText:
  7908. //
  7909. // The proxy setting is manual.%0
  7910. //
  7911. #define NS_I_MANUAL_PROXY _HRESULT_TYPEDEF_(0x400D2F04L)
  7912. //
  7913. // MessageId: NS_E_TOO_MUCH_DATA_FROM_SERVER
  7914. //
  7915. // MessageText:
  7916. //
  7917. // The server is sending too much data. The connection has been terminated.%0
  7918. //
  7919. #define NS_E_TOO_MUCH_DATA_FROM_SERVER _HRESULT_TYPEDEF_(0xC00D2F05L)
  7920. //
  7921. // MessageId: NS_E_CONNECT_TIMEOUT
  7922. //
  7923. // MessageText:
  7924. //
  7925. // It was not possible to establish a connection to the media server in a timely manner. The media server may be down for maintenance, or it may be necessary to use a proxy server to access this media server.%0
  7926. //
  7927. #define NS_E_CONNECT_TIMEOUT _HRESULT_TYPEDEF_(0xC00D2F06L)
  7928. //
  7929. // MessageId: NS_E_PROXY_CONNECT_TIMEOUT
  7930. //
  7931. // MessageText:
  7932. //
  7933. // It was not possible to establish a connection to the proxy server in a timely manner. Please check your proxy server configuration.%0
  7934. //
  7935. #define NS_E_PROXY_CONNECT_TIMEOUT _HRESULT_TYPEDEF_(0xC00D2F07L)
  7936. //
  7937. // MessageId: NS_E_SESSION_INVALID
  7938. //
  7939. // MessageText:
  7940. //
  7941. // Session not found.%0
  7942. //
  7943. #define NS_E_SESSION_INVALID _HRESULT_TYPEDEF_(0xC00D2F08L)
  7944. //
  7945. // MessageId: NS_S_EOSRECEDING
  7946. //
  7947. // MessageText:
  7948. //
  7949. // EOS hit during rewinding.%0
  7950. //
  7951. #define NS_S_EOSRECEDING _HRESULT_TYPEDEF_(0x000D2F09L)
  7952. //
  7953. // MessageId: NS_E_PACKETSINK_UNKNOWN_FEC_STREAM
  7954. //
  7955. // MessageText:
  7956. //
  7957. // Unknown packet sink stream.%0
  7958. //
  7959. #define NS_E_PACKETSINK_UNKNOWN_FEC_STREAM _HRESULT_TYPEDEF_(0xC00D2F0AL)
  7960. //
  7961. // MessageId: NS_E_PUSH_CANNOTCONNECT
  7962. //
  7963. // MessageText:
  7964. //
  7965. // Unable to establish a connection to the server. Ensure Windows Media Services is started and the HTTP Server control protocol is properly enabled.%0
  7966. //
  7967. #define NS_E_PUSH_CANNOTCONNECT _HRESULT_TYPEDEF_(0xC00D2F0BL)
  7968. //
  7969. // MessageId: NS_E_INCOMPATIBLE_PUSH_SERVER
  7970. //
  7971. // MessageText:
  7972. //
  7973. // The Server service that received the HTTP push request is not a compatible version of Windows Media Services (WMS). This error may indicate the push request was received by IIS instead of WMS. Ensure WMS is started and has the HTTP Server control protocol properly enabled and try again.%0
  7974. //
  7975. #define NS_E_INCOMPATIBLE_PUSH_SERVER _HRESULT_TYPEDEF_(0xC00D2F0CL)
  7976. //
  7977. // MessageId: NS_S_CHANGENOTICE
  7978. //
  7979. // MessageText:
  7980. //
  7981. // Internal.%0
  7982. //
  7983. #define NS_S_CHANGENOTICE _HRESULT_TYPEDEF_(0x000D2F0DL)
  7984. /////////////////////////////////////////////////////////////////////////
  7985. //
  7986. // Windows Media Client Media Services
  7987. //
  7988. // IdRange = 13000..13999 (0x32C8-0x36AF)
  7989. /////////////////////////////////////////////////////////////////////////
  7990. //
  7991. // MessageId: NS_E_END_OF_PLAYLIST
  7992. //
  7993. // MessageText:
  7994. //
  7995. // The playlist has reached its end.%0
  7996. //
  7997. #define NS_E_END_OF_PLAYLIST _HRESULT_TYPEDEF_(0xC00D32C8L)
  7998. //
  7999. // MessageId: NS_E_USE_FILE_SOURCE
  8000. //
  8001. // MessageText:
  8002. //
  8003. // Use file source.%0
  8004. //
  8005. #define NS_E_USE_FILE_SOURCE _HRESULT_TYPEDEF_(0xC00D32C9L)
  8006. //
  8007. // MessageId: NS_E_PROPERTY_NOT_FOUND
  8008. //
  8009. // MessageText:
  8010. //
  8011. // The property was not found.%0
  8012. //
  8013. #define NS_E_PROPERTY_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D32CAL)
  8014. //
  8015. // MessageId: NS_E_PROPERTY_READ_ONLY
  8016. //
  8017. // MessageText:
  8018. //
  8019. // The property is read only.%0
  8020. //
  8021. #define NS_E_PROPERTY_READ_ONLY _HRESULT_TYPEDEF_(0xC00D32CCL)
  8022. //
  8023. // MessageId: NS_E_TABLE_KEY_NOT_FOUND
  8024. //
  8025. // MessageText:
  8026. //
  8027. // The table key was not found.%0
  8028. //
  8029. #define NS_E_TABLE_KEY_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D32CDL)
  8030. //
  8031. // MessageId: NS_E_INVALID_QUERY_OPERATOR
  8032. //
  8033. // MessageText:
  8034. //
  8035. // Invalid query operator.%0
  8036. //
  8037. #define NS_E_INVALID_QUERY_OPERATOR _HRESULT_TYPEDEF_(0xC00D32CFL)
  8038. //
  8039. // MessageId: NS_E_INVALID_QUERY_PROPERTY
  8040. //
  8041. // MessageText:
  8042. //
  8043. // Invalid query property.%0
  8044. //
  8045. #define NS_E_INVALID_QUERY_PROPERTY _HRESULT_TYPEDEF_(0xC00D32D0L)
  8046. //
  8047. // MessageId: NS_E_PROPERTY_NOT_SUPPORTED
  8048. //
  8049. // MessageText:
  8050. //
  8051. // The property is not supported.%0
  8052. //
  8053. #define NS_E_PROPERTY_NOT_SUPPORTED _HRESULT_TYPEDEF_(0xC00D32D2L)
  8054. //
  8055. // MessageId: NS_E_SCHEMA_CLASSIFY_FAILURE
  8056. //
  8057. // MessageText:
  8058. //
  8059. // Schema classification failure.%0
  8060. //
  8061. #define NS_E_SCHEMA_CLASSIFY_FAILURE _HRESULT_TYPEDEF_(0xC00D32D4L)
  8062. //
  8063. // MessageId: NS_E_METADATA_FORMAT_NOT_SUPPORTED
  8064. //
  8065. // MessageText:
  8066. //
  8067. // The metadata format is not supported.%0
  8068. //
  8069. #define NS_E_METADATA_FORMAT_NOT_SUPPORTED _HRESULT_TYPEDEF_(0xC00D32D5L)
  8070. //
  8071. // MessageId: NS_E_METADATA_NO_EDITING_CAPABILITY
  8072. //
  8073. // MessageText:
  8074. //
  8075. // Cannot edit the metadata.%0
  8076. //
  8077. #define NS_E_METADATA_NO_EDITING_CAPABILITY _HRESULT_TYPEDEF_(0xC00D32D6L)
  8078. //
  8079. // MessageId: NS_E_METADATA_CANNOT_SET_LOCALE
  8080. //
  8081. // MessageText:
  8082. //
  8083. // Cannot set the locale id.%0
  8084. //
  8085. #define NS_E_METADATA_CANNOT_SET_LOCALE _HRESULT_TYPEDEF_(0xC00D32D7L)
  8086. //
  8087. // MessageId: NS_E_METADATA_LANGUAGE_NOT_SUPORTED
  8088. //
  8089. // MessageText:
  8090. //
  8091. // The language is not supported in the format.%0
  8092. //
  8093. #define NS_E_METADATA_LANGUAGE_NOT_SUPORTED _HRESULT_TYPEDEF_(0xC00D32D8L)
  8094. //
  8095. // MessageId: NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE
  8096. //
  8097. // MessageText:
  8098. //
  8099. // There is no RFC1766 name translation for the supplied locale id.%0
  8100. //
  8101. #define NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE _HRESULT_TYPEDEF_(0xC00D32D9L)
  8102. //
  8103. // MessageId: NS_E_METADATA_NOT_AVAILABLE
  8104. //
  8105. // MessageText:
  8106. //
  8107. // The metadata (or metadata item) is not available.%0
  8108. //
  8109. #define NS_E_METADATA_NOT_AVAILABLE _HRESULT_TYPEDEF_(0xC00D32DAL)
  8110. //
  8111. // MessageId: NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE
  8112. //
  8113. // MessageText:
  8114. //
  8115. // The cached metadata (or metadata item) is not available.%0
  8116. //
  8117. #define NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE _HRESULT_TYPEDEF_(0xC00D32DBL)
  8118. //
  8119. // MessageId: NS_E_METADATA_INVALID_DOCUMENT_TYPE
  8120. //
  8121. // MessageText:
  8122. //
  8123. // The metadata document is invalid.%0
  8124. //
  8125. #define NS_E_METADATA_INVALID_DOCUMENT_TYPE _HRESULT_TYPEDEF_(0xC00D32DCL)
  8126. //
  8127. // MessageId: NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE
  8128. //
  8129. // MessageText:
  8130. //
  8131. // The metadata content identifier is not available.%0
  8132. //
  8133. #define NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE _HRESULT_TYPEDEF_(0xC00D32DDL)
  8134. //
  8135. // MessageId: NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE
  8136. //
  8137. // MessageText:
  8138. //
  8139. // Cannot retrieve metadata from the offline metadata cache.%0
  8140. //
  8141. #define NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE _HRESULT_TYPEDEF_(0xC00D32DEL)
  8142. #endif // _NSERROR_H