nserror.h
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:234k
- /*++
- Microsoft Windows Media Technology
- Copyright (C) Microsoft Corporation. All Rights Reserved.
- Module Name:
- nserror.mc
- Abstract:
- Definitions for Windows Media events.
- Author:
- Revision History:
- Notes:
- This file is used by the MC tool to generate the nserror.h file
- **************************** READ ME ******************************************
- Here are the commented error ranges for the Windows Media Technologies Group
- LEGACY RANGES
- 0 - 199 = General NetShow errors
- 200 - 399 = NetShow error events
- 400 - 599 = NetShow monitor events
- 600 - 799 = NetShow IMmsAutoServer errors
- 1000 - 1199 = NetShow MCMADM errors
- NEW RANGES
- 2000 - 2999 = ASF (defined in ASFERR.MC)
- 3000 - 3999 = Windows Media SDK
- 4000 - 4999 = Windows Media Player
- 5000 - 5999 = Windows Media Server
- 6000 - 6999 = Windows Media HTTP/RTSP result codes (defined in NETERROR.MC)
- 7000 - 7999 = Windows Media Tools
- 8000 - 8999 = Windows Media Content Discovery
- 9000 - 9999 = Windows Media Real Time Collaboration
- 10000 - 10999 = Windows Media Digital Rights Management
- 11000 - 11999 = Windows Media Setup
- 12000 - 12999 = Windows Media Networking
- 13000 - 13999 = Windows Media Client Media Services
- **************************** READ ME ******************************************
- --*/
- #ifndef _NSERROR_H
- #define _NSERROR_H
- #define STATUS_SEVERITY(hr) (((hr) >> 30) & 0x3)
- #ifdef RC_INVOKED
- #define _HRESULT_TYPEDEF_(_sc) _sc
- #else // RC_INVOKED
- #define _HRESULT_TYPEDEF_(_sc) ((HRESULT)_sc)
- #endif // RC_INVOKED
- /////////////////////////////////////////////////////////////////////////
- //
- // NETSHOW Success Events
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // Values are 32 bit values layed out as follows:
- //
- // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
- // 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
- // +---+-+-+-----------------------+-------------------------------+
- // |Sev|C|R| Facility | Code |
- // +---+-+-+-----------------------+-------------------------------+
- //
- // where
- //
- // Sev - is the severity code
- //
- // 00 - Success
- // 01 - Informational
- // 10 - Warning
- // 11 - Error
- //
- // C - is the Customer code flag
- //
- // R - is a reserved bit
- //
- // Facility - is the facility code
- //
- // Code - is the facility's status code
- //
- //
- // Define the facility codes
- //
- #define FACILITY_NS_WIN32 0x7
- #define FACILITY_NS 0xD
- //
- // Define the severity codes
- //
- #define STATUS_SEVERITY_WARNING 0x2
- #define STATUS_SEVERITY_SUCCESS 0x0
- #define STATUS_SEVERITY_INFORMATIONAL 0x1
- #define STATUS_SEVERITY_ERROR 0x3
- //
- // MessageId: NS_S_CALLPENDING
- //
- // MessageText:
- //
- // The requested operation is pending completion.%0
- //
- #define NS_S_CALLPENDING _HRESULT_TYPEDEF_(0x000D0000L)
- //
- // MessageId: NS_S_CALLABORTED
- //
- // MessageText:
- //
- // The requested operation was aborted by the client.%0
- //
- #define NS_S_CALLABORTED _HRESULT_TYPEDEF_(0x000D0001L)
- //
- // MessageId: NS_S_STREAM_TRUNCATED
- //
- // MessageText:
- //
- // The stream was purposefully stopped before completion.%0
- //
- #define NS_S_STREAM_TRUNCATED _HRESULT_TYPEDEF_(0x000D0002L)
- /////////////////////////////////////////////////////////////////////////
- //
- // NETSHOW Warning Events
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: NS_W_SERVER_BANDWIDTH_LIMIT
- //
- // MessageText:
- //
- // The maximum filebitrate value specified is greater than the server's configured maximum bandwidth.%0
- //
- #define NS_W_SERVER_BANDWIDTH_LIMIT _HRESULT_TYPEDEF_(0x800D0003L)
- //
- // MessageId: NS_W_FILE_BANDWIDTH_LIMIT
- //
- // MessageText:
- //
- // The maximum bandwidth value specified is less than the maximum filebitrate.%0
- //
- #define NS_W_FILE_BANDWIDTH_LIMIT _HRESULT_TYPEDEF_(0x800D0004L)
- /////////////////////////////////////////////////////////////////////////
- //
- // NETSHOW Error Events
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: NS_E_NOCONNECTION
- //
- // MessageText:
- //
- // There is no connection established with the Windows Media server. The operation failed.%0
- //
- #define NS_E_NOCONNECTION _HRESULT_TYPEDEF_(0xC00D0005L)
- //
- // MessageId: NS_E_CANNOTCONNECT
- //
- // MessageText:
- //
- // Unable to establish a connection to the server.%0
- //
- #define NS_E_CANNOTCONNECT _HRESULT_TYPEDEF_(0xC00D0006L)
- //
- // MessageId: NS_E_CANNOTDESTROYTITLE
- //
- // MessageText:
- //
- // Unable to destroy the title.%0
- //
- #define NS_E_CANNOTDESTROYTITLE _HRESULT_TYPEDEF_(0xC00D0007L)
- //
- // MessageId: NS_E_CANNOTRENAMETITLE
- //
- // MessageText:
- //
- // Unable to rename the title.%0
- //
- #define NS_E_CANNOTRENAMETITLE _HRESULT_TYPEDEF_(0xC00D0008L)
- //
- // MessageId: NS_E_CANNOTOFFLINEDISK
- //
- // MessageText:
- //
- // Unable to offline disk.%0
- //
- #define NS_E_CANNOTOFFLINEDISK _HRESULT_TYPEDEF_(0xC00D0009L)
- //
- // MessageId: NS_E_CANNOTONLINEDISK
- //
- // MessageText:
- //
- // Unable to online disk.%0
- //
- #define NS_E_CANNOTONLINEDISK _HRESULT_TYPEDEF_(0xC00D000AL)
- //
- // MessageId: NS_E_NOREGISTEREDWALKER
- //
- // MessageText:
- //
- // There is no file parser registered for this type of file.%0
- //
- #define NS_E_NOREGISTEREDWALKER _HRESULT_TYPEDEF_(0xC00D000BL)
- //
- // MessageId: NS_E_NOFUNNEL
- //
- // MessageText:
- //
- // There is no data connection established.%0
- //
- #define NS_E_NOFUNNEL _HRESULT_TYPEDEF_(0xC00D000CL)
- //
- // MessageId: NS_E_NO_LOCALPLAY
- //
- // MessageText:
- //
- // Failed to load the local play DLL.%0
- //
- #define NS_E_NO_LOCALPLAY _HRESULT_TYPEDEF_(0xC00D000DL)
- //
- // MessageId: NS_E_NETWORK_BUSY
- //
- // MessageText:
- //
- // The network is busy.%0
- //
- #define NS_E_NETWORK_BUSY _HRESULT_TYPEDEF_(0xC00D000EL)
- //
- // MessageId: NS_E_TOO_MANY_SESS
- //
- // MessageText:
- //
- // The server session limit was exceeded.%0
- //
- #define NS_E_TOO_MANY_SESS _HRESULT_TYPEDEF_(0xC00D000FL)
- //
- // MessageId: NS_E_ALREADY_CONNECTED
- //
- // MessageText:
- //
- // The network connection already exists.%0
- //
- #define NS_E_ALREADY_CONNECTED _HRESULT_TYPEDEF_(0xC00D0010L)
- //
- // MessageId: NS_E_INVALID_INDEX
- //
- // MessageText:
- //
- // Index %1 is invalid.%0
- //
- #define NS_E_INVALID_INDEX _HRESULT_TYPEDEF_(0xC00D0011L)
- //
- // MessageId: NS_E_PROTOCOL_MISMATCH
- //
- // MessageText:
- //
- // There is no protocol or protocol version supported by both the client and the server.%0
- //
- #define NS_E_PROTOCOL_MISMATCH _HRESULT_TYPEDEF_(0xC00D0012L)
- //
- // MessageId: NS_E_TIMEOUT
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_TIMEOUT _HRESULT_TYPEDEF_(0xC00D0013L)
- //
- // MessageId: NS_E_NET_WRITE
- //
- // MessageText:
- //
- // Error writing to the network.%0
- //
- #define NS_E_NET_WRITE _HRESULT_TYPEDEF_(0xC00D0014L)
- //
- // MessageId: NS_E_NET_READ
- //
- // MessageText:
- //
- // Error reading from the network.%0
- //
- #define NS_E_NET_READ _HRESULT_TYPEDEF_(0xC00D0015L)
- //
- // MessageId: NS_E_DISK_WRITE
- //
- // MessageText:
- //
- // Error writing to a disk.%0
- //
- #define NS_E_DISK_WRITE _HRESULT_TYPEDEF_(0xC00D0016L)
- //
- // MessageId: NS_E_DISK_READ
- //
- // MessageText:
- //
- // Error reading from a disk.%0
- //
- #define NS_E_DISK_READ _HRESULT_TYPEDEF_(0xC00D0017L)
- //
- // MessageId: NS_E_FILE_WRITE
- //
- // MessageText:
- //
- // Error writing to a file.%0
- //
- #define NS_E_FILE_WRITE _HRESULT_TYPEDEF_(0xC00D0018L)
- //
- // MessageId: NS_E_FILE_READ
- //
- // MessageText:
- //
- // Error reading from a file.%0
- //
- #define NS_E_FILE_READ _HRESULT_TYPEDEF_(0xC00D0019L)
- //
- // MessageId: NS_E_FILE_NOT_FOUND
- //
- // MessageText:
- //
- // The system cannot find the file specified.%0
- //
- #define NS_E_FILE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D001AL)
- //
- // MessageId: NS_E_FILE_EXISTS
- //
- // MessageText:
- //
- // The file already exists.%0
- //
- #define NS_E_FILE_EXISTS _HRESULT_TYPEDEF_(0xC00D001BL)
- //
- // MessageId: NS_E_INVALID_NAME
- //
- // MessageText:
- //
- // The file name, directory name, or volume label syntax is incorrect.%0
- //
- #define NS_E_INVALID_NAME _HRESULT_TYPEDEF_(0xC00D001CL)
- //
- // MessageId: NS_E_FILE_OPEN_FAILED
- //
- // MessageText:
- //
- // Failed to open a file.%0
- //
- #define NS_E_FILE_OPEN_FAILED _HRESULT_TYPEDEF_(0xC00D001DL)
- //
- // MessageId: NS_E_FILE_ALLOCATION_FAILED
- //
- // MessageText:
- //
- // Unable to allocate a file.%0
- //
- #define NS_E_FILE_ALLOCATION_FAILED _HRESULT_TYPEDEF_(0xC00D001EL)
- //
- // MessageId: NS_E_FILE_INIT_FAILED
- //
- // MessageText:
- //
- // Unable to initialize a file.%0
- //
- #define NS_E_FILE_INIT_FAILED _HRESULT_TYPEDEF_(0xC00D001FL)
- //
- // MessageId: NS_E_FILE_PLAY_FAILED
- //
- // MessageText:
- //
- // Unable to play a file.%0
- //
- #define NS_E_FILE_PLAY_FAILED _HRESULT_TYPEDEF_(0xC00D0020L)
- //
- // MessageId: NS_E_SET_DISK_UID_FAILED
- //
- // MessageText:
- //
- // Could not set the disk UID.%0
- //
- #define NS_E_SET_DISK_UID_FAILED _HRESULT_TYPEDEF_(0xC00D0021L)
- //
- // MessageId: NS_E_INDUCED
- //
- // MessageText:
- //
- // An error was induced for testing purposes.%0
- //
- #define NS_E_INDUCED _HRESULT_TYPEDEF_(0xC00D0022L)
- //
- // MessageId: NS_E_CCLINK_DOWN
- //
- // MessageText:
- //
- // Two Content Servers failed to communicate.%0
- //
- #define NS_E_CCLINK_DOWN _HRESULT_TYPEDEF_(0xC00D0023L)
- //
- // MessageId: NS_E_INTERNAL
- //
- // MessageText:
- //
- // An unknown error occurred.%0
- //
- #define NS_E_INTERNAL _HRESULT_TYPEDEF_(0xC00D0024L)
- //
- // MessageId: NS_E_BUSY
- //
- // MessageText:
- //
- // The requested resource is in use.%0
- //
- #define NS_E_BUSY _HRESULT_TYPEDEF_(0xC00D0025L)
- //
- // MessageId: NS_E_UNRECOGNIZED_STREAM_TYPE
- //
- // MessageText:
- //
- // The specified protocol is not recognized. Be sure that the file name and syntax, such as slashes, are correct for the protocol.%0
- //
- #define NS_E_UNRECOGNIZED_STREAM_TYPE _HRESULT_TYPEDEF_(0xC00D0026L)
- //
- // MessageId: NS_E_NETWORK_SERVICE_FAILURE
- //
- // MessageText:
- //
- // The network service provider failed.%0
- //
- #define NS_E_NETWORK_SERVICE_FAILURE _HRESULT_TYPEDEF_(0xC00D0027L)
- //
- // MessageId: NS_E_NETWORK_RESOURCE_FAILURE
- //
- // MessageText:
- //
- // An attempt to acquire a network resource failed.%0
- //
- #define NS_E_NETWORK_RESOURCE_FAILURE _HRESULT_TYPEDEF_(0xC00D0028L)
- //
- // MessageId: NS_E_CONNECTION_FAILURE
- //
- // MessageText:
- //
- // The network connection has failed.%0
- //
- #define NS_E_CONNECTION_FAILURE _HRESULT_TYPEDEF_(0xC00D0029L)
- //
- // MessageId: NS_E_SHUTDOWN
- //
- // MessageText:
- //
- // The session is being terminated locally.%0
- //
- #define NS_E_SHUTDOWN _HRESULT_TYPEDEF_(0xC00D002AL)
- //
- // MessageId: NS_E_INVALID_REQUEST
- //
- // MessageText:
- //
- // The request is invalid in the current state.%0
- //
- #define NS_E_INVALID_REQUEST _HRESULT_TYPEDEF_(0xC00D002BL)
- //
- // MessageId: NS_E_INSUFFICIENT_BANDWIDTH
- //
- // MessageText:
- //
- // There is insufficient bandwidth available to fulfill the request.%0
- //
- #define NS_E_INSUFFICIENT_BANDWIDTH _HRESULT_TYPEDEF_(0xC00D002CL)
- //
- // MessageId: NS_E_NOT_REBUILDING
- //
- // MessageText:
- //
- // The disk is not rebuilding.%0
- //
- #define NS_E_NOT_REBUILDING _HRESULT_TYPEDEF_(0xC00D002DL)
- //
- // MessageId: NS_E_LATE_OPERATION
- //
- // MessageText:
- //
- // An operation requested for a particular time could not be carried out on schedule.%0
- //
- #define NS_E_LATE_OPERATION _HRESULT_TYPEDEF_(0xC00D002EL)
- //
- // MessageId: NS_E_INVALID_DATA
- //
- // MessageText:
- //
- // Invalid or corrupt data was encountered.%0
- //
- #define NS_E_INVALID_DATA _HRESULT_TYPEDEF_(0xC00D002FL)
- //
- // MessageId: NS_E_FILE_BANDWIDTH_LIMIT
- //
- // MessageText:
- //
- // The bandwidth required to stream a file is higher than the maximum file bandwidth allowed on the server.%0
- //
- #define NS_E_FILE_BANDWIDTH_LIMIT _HRESULT_TYPEDEF_(0xC00D0030L)
- //
- // MessageId: NS_E_OPEN_FILE_LIMIT
- //
- // MessageText:
- //
- // The client cannot have any more files open simultaneously.%0
- //
- #define NS_E_OPEN_FILE_LIMIT _HRESULT_TYPEDEF_(0xC00D0031L)
- //
- // MessageId: NS_E_BAD_CONTROL_DATA
- //
- // MessageText:
- //
- // The server received invalid data from the client on the control connection.%0
- //
- #define NS_E_BAD_CONTROL_DATA _HRESULT_TYPEDEF_(0xC00D0032L)
- //
- // MessageId: NS_E_NO_STREAM
- //
- // MessageText:
- //
- // There is no stream available.%0
- //
- #define NS_E_NO_STREAM _HRESULT_TYPEDEF_(0xC00D0033L)
- //
- // MessageId: NS_E_STREAM_END
- //
- // MessageText:
- //
- // There is no more data in the stream.%0
- //
- #define NS_E_STREAM_END _HRESULT_TYPEDEF_(0xC00D0034L)
- //
- // MessageId: NS_E_SERVER_NOT_FOUND
- //
- // MessageText:
- //
- // The specified server could not be found.%0
- //
- #define NS_E_SERVER_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D0035L)
- //
- // MessageId: NS_E_DUPLICATE_NAME
- //
- // MessageText:
- //
- // The specified name is already in use.
- //
- #define NS_E_DUPLICATE_NAME _HRESULT_TYPEDEF_(0xC00D0036L)
- //
- // MessageId: NS_E_DUPLICATE_ADDRESS
- //
- // MessageText:
- //
- // The specified address is already in use.
- //
- #define NS_E_DUPLICATE_ADDRESS _HRESULT_TYPEDEF_(0xC00D0037L)
- //
- // MessageId: NS_E_BAD_MULTICAST_ADDRESS
- //
- // MessageText:
- //
- // The specified address is not a valid multicast address.
- //
- #define NS_E_BAD_MULTICAST_ADDRESS _HRESULT_TYPEDEF_(0xC00D0038L)
- //
- // MessageId: NS_E_BAD_ADAPTER_ADDRESS
- //
- // MessageText:
- //
- // The specified adapter address is invalid.
- //
- #define NS_E_BAD_ADAPTER_ADDRESS _HRESULT_TYPEDEF_(0xC00D0039L)
- //
- // MessageId: NS_E_BAD_DELIVERY_MODE
- //
- // MessageText:
- //
- // The specified delivery mode is invalid.
- //
- #define NS_E_BAD_DELIVERY_MODE _HRESULT_TYPEDEF_(0xC00D003AL)
- //
- // MessageId: NS_E_INVALID_CHANNEL
- //
- // MessageText:
- //
- // The specified station does not exist.
- //
- #define NS_E_INVALID_CHANNEL _HRESULT_TYPEDEF_(0xC00D003BL)
- //
- // MessageId: NS_E_INVALID_STREAM
- //
- // MessageText:
- //
- // The specified stream does not exist.
- //
- #define NS_E_INVALID_STREAM _HRESULT_TYPEDEF_(0xC00D003CL)
- //
- // MessageId: NS_E_INVALID_ARCHIVE
- //
- // MessageText:
- //
- // The specified archive could not be opened.
- //
- #define NS_E_INVALID_ARCHIVE _HRESULT_TYPEDEF_(0xC00D003DL)
- //
- // MessageId: NS_E_NOTITLES
- //
- // MessageText:
- //
- // The system cannot find any titles on the server.%0
- //
- #define NS_E_NOTITLES _HRESULT_TYPEDEF_(0xC00D003EL)
- //
- // MessageId: NS_E_INVALID_CLIENT
- //
- // MessageText:
- //
- // The system cannot find the client specified.%0
- //
- #define NS_E_INVALID_CLIENT _HRESULT_TYPEDEF_(0xC00D003FL)
- //
- // MessageId: NS_E_INVALID_BLACKHOLE_ADDRESS
- //
- // MessageText:
- //
- // The Blackhole Address is not initialized.%0
- //
- #define NS_E_INVALID_BLACKHOLE_ADDRESS _HRESULT_TYPEDEF_(0xC00D0040L)
- //
- // MessageId: NS_E_INCOMPATIBLE_FORMAT
- //
- // MessageText:
- //
- // The station does not support the stream format.
- //
- #define NS_E_INCOMPATIBLE_FORMAT _HRESULT_TYPEDEF_(0xC00D0041L)
- //
- // MessageId: NS_E_INVALID_KEY
- //
- // MessageText:
- //
- // The specified key is not valid.
- //
- #define NS_E_INVALID_KEY _HRESULT_TYPEDEF_(0xC00D0042L)
- //
- // MessageId: NS_E_INVALID_PORT
- //
- // MessageText:
- //
- // The specified port is not valid.
- //
- #define NS_E_INVALID_PORT _HRESULT_TYPEDEF_(0xC00D0043L)
- //
- // MessageId: NS_E_INVALID_TTL
- //
- // MessageText:
- //
- // The specified TTL is not valid.
- //
- #define NS_E_INVALID_TTL _HRESULT_TYPEDEF_(0xC00D0044L)
- //
- // MessageId: NS_E_STRIDE_REFUSED
- //
- // MessageText:
- //
- // The request to fast forward or rewind could not be fulfilled.
- //
- #define NS_E_STRIDE_REFUSED _HRESULT_TYPEDEF_(0xC00D0045L)
- //
- // IMmsAutoServer Errors
- //
- //
- // MessageId: NS_E_MMSAUTOSERVER_CANTFINDWALKER
- //
- // MessageText:
- //
- // Unable to load the appropriate file parser.%0
- //
- #define NS_E_MMSAUTOSERVER_CANTFINDWALKER _HRESULT_TYPEDEF_(0xC00D0046L)
- //
- // MessageId: NS_E_MAX_BITRATE
- //
- // MessageText:
- //
- // Cannot exceed the maximum bandwidth limit.%0
- //
- #define NS_E_MAX_BITRATE _HRESULT_TYPEDEF_(0xC00D0047L)
- //
- // MessageId: NS_E_LOGFILEPERIOD
- //
- // MessageText:
- //
- // Invalid value for LogFilePeriod.%0
- //
- #define NS_E_LOGFILEPERIOD _HRESULT_TYPEDEF_(0xC00D0048L)
- //
- // MessageId: NS_E_MAX_CLIENTS
- //
- // MessageText:
- //
- // Cannot exceed the maximum client limit.%0
- //
- //
- #define NS_E_MAX_CLIENTS _HRESULT_TYPEDEF_(0xC00D0049L)
- //
- // MessageId: NS_E_LOG_FILE_SIZE
- //
- // MessageText:
- //
- // The maximum log file size has been reached.%0
- //
- //
- #define NS_E_LOG_FILE_SIZE _HRESULT_TYPEDEF_(0xC00D004AL)
- //
- // MessageId: NS_E_MAX_FILERATE
- //
- // MessageText:
- //
- // Cannot exceed the maximum file rate.%0
- //
- #define NS_E_MAX_FILERATE _HRESULT_TYPEDEF_(0xC00D004BL)
- //
- // File Walker Errors
- //
- //
- // MessageId: NS_E_WALKER_UNKNOWN
- //
- // MessageText:
- //
- // Unknown file type.%0
- //
- #define NS_E_WALKER_UNKNOWN _HRESULT_TYPEDEF_(0xC00D004CL)
- //
- // MessageId: NS_E_WALKER_SERVER
- //
- // MessageText:
- //
- // The specified file, %1, cannot be loaded onto the specified server, %2.%0
- //
- #define NS_E_WALKER_SERVER _HRESULT_TYPEDEF_(0xC00D004DL)
- //
- // MessageId: NS_E_WALKER_USAGE
- //
- // MessageText:
- //
- // There was a usage error with file parser.%0
- //
- #define NS_E_WALKER_USAGE _HRESULT_TYPEDEF_(0xC00D004EL)
- /////////////////////////////////////////////////////////////////////////
- //
- // NETSHOW Monitor Events
- //
- /////////////////////////////////////////////////////////////////////////
- // Tiger Events
- // %1 is the tiger name
- //
- // MessageId: NS_I_TIGER_START
- //
- // MessageText:
- //
- // The Title Server %1 is running.%0
- //
- #define NS_I_TIGER_START _HRESULT_TYPEDEF_(0x400D004FL)
- //
- // MessageId: NS_E_TIGER_FAIL
- //
- // MessageText:
- //
- // The Title Server %1 has failed.%0
- //
- #define NS_E_TIGER_FAIL _HRESULT_TYPEDEF_(0xC00D0050L)
- // Cub Events
- // %1 is the cub ID
- // %2 is the cub name
- //
- // MessageId: NS_I_CUB_START
- //
- // MessageText:
- //
- // Content Server %1 (%2) is starting.%0
- //
- #define NS_I_CUB_START _HRESULT_TYPEDEF_(0x400D0051L)
- //
- // MessageId: NS_I_CUB_RUNNING
- //
- // MessageText:
- //
- // Content Server %1 (%2) is running.%0
- //
- #define NS_I_CUB_RUNNING _HRESULT_TYPEDEF_(0x400D0052L)
- //
- // MessageId: NS_E_CUB_FAIL
- //
- // MessageText:
- //
- // Content Server %1 (%2) has failed.%0
- //
- #define NS_E_CUB_FAIL _HRESULT_TYPEDEF_(0xC00D0053L)
- // Disk Events
- // %1 is the tiger disk ID
- // %2 is the device name
- // %3 is the cub ID
- //
- // MessageId: NS_I_DISK_START
- //
- // MessageText:
- //
- // Disk %1 ( %2 ) on Content Server %3, is running.%0
- //
- #define NS_I_DISK_START _HRESULT_TYPEDEF_(0x400D0054L)
- //
- // MessageId: NS_E_DISK_FAIL
- //
- // MessageText:
- //
- // Disk %1 ( %2 ) on Content Server %3, has failed.%0
- //
- #define NS_E_DISK_FAIL _HRESULT_TYPEDEF_(0xC00D0055L)
- //
- // MessageId: NS_I_DISK_REBUILD_STARTED
- //
- // MessageText:
- //
- // Started rebuilding disk %1 ( %2 ) on Content Server %3.%0
- //
- #define NS_I_DISK_REBUILD_STARTED _HRESULT_TYPEDEF_(0x400D0056L)
- //
- // MessageId: NS_I_DISK_REBUILD_FINISHED
- //
- // MessageText:
- //
- // Finished rebuilding disk %1 ( %2 ) on Content Server %3.%0
- //
- #define NS_I_DISK_REBUILD_FINISHED _HRESULT_TYPEDEF_(0x400D0057L)
- //
- // MessageId: NS_I_DISK_REBUILD_ABORTED
- //
- // MessageText:
- //
- // Aborted rebuilding disk %1 ( %2 ) on Content Server %3.%0
- //
- #define NS_I_DISK_REBUILD_ABORTED _HRESULT_TYPEDEF_(0x400D0058L)
- // Admin Events
- //
- // MessageId: NS_I_LIMIT_FUNNELS
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 set the data stream limit to %2 streams.%0
- //
- #define NS_I_LIMIT_FUNNELS _HRESULT_TYPEDEF_(0x400D0059L)
- //
- // MessageId: NS_I_START_DISK
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 started disk %2.%0
- //
- #define NS_I_START_DISK _HRESULT_TYPEDEF_(0x400D005AL)
- //
- // MessageId: NS_I_STOP_DISK
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 stopped disk %2.%0
- //
- #define NS_I_STOP_DISK _HRESULT_TYPEDEF_(0x400D005BL)
- //
- // MessageId: NS_I_STOP_CUB
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 stopped Content Server %2.%0
- //
- #define NS_I_STOP_CUB _HRESULT_TYPEDEF_(0x400D005CL)
- //
- // MessageId: NS_I_KILL_USERSESSION
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 aborted user session %2 from the system.%0
- //
- #define NS_I_KILL_USERSESSION _HRESULT_TYPEDEF_(0x400D005DL)
- //
- // MessageId: NS_I_KILL_CONNECTION
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 aborted obsolete connection %2 from the system.%0
- //
- #define NS_I_KILL_CONNECTION _HRESULT_TYPEDEF_(0x400D005EL)
- //
- // MessageId: NS_I_REBUILD_DISK
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 started rebuilding disk %2.%0
- //
- #define NS_I_REBUILD_DISK _HRESULT_TYPEDEF_(0x400D005FL)
- //
- // MessageId: NS_W_UNKNOWN_EVENT
- //
- // MessageText:
- //
- // Unknown %1 event encountered.%0
- //
- #define NS_W_UNKNOWN_EVENT _HRESULT_TYPEDEF_(0x800D0060L)
- // Alerts
- //
- // MessageId: NS_E_MAX_FUNNELS_ALERT
- //
- // MessageText:
- //
- // The NetShow data stream limit of %1 streams was reached.%0
- //
- #define NS_E_MAX_FUNNELS_ALERT _HRESULT_TYPEDEF_(0xC00D0060L)
- //
- // MessageId: NS_E_ALLOCATE_FILE_FAIL
- //
- // MessageText:
- //
- // The NetShow Video Server was unable to allocate a %1 block file named %2.%0
- //
- #define NS_E_ALLOCATE_FILE_FAIL _HRESULT_TYPEDEF_(0xC00D0061L)
- //
- // MessageId: NS_E_PAGING_ERROR
- //
- // MessageText:
- //
- // A Content Server was unable to page a block.%0
- //
- #define NS_E_PAGING_ERROR _HRESULT_TYPEDEF_(0xC00D0062L)
- //
- // MessageId: NS_E_BAD_BLOCK0_VERSION
- //
- // MessageText:
- //
- // Disk %1 has unrecognized control block version %2.%0
- //
- #define NS_E_BAD_BLOCK0_VERSION _HRESULT_TYPEDEF_(0xC00D0063L)
- //
- // MessageId: NS_E_BAD_DISK_UID
- //
- // MessageText:
- //
- // Disk %1 has incorrect uid %2.%0
- //
- #define NS_E_BAD_DISK_UID _HRESULT_TYPEDEF_(0xC00D0064L)
- //
- // MessageId: NS_E_BAD_FSMAJOR_VERSION
- //
- // MessageText:
- //
- // Disk %1 has unsupported file system major version %2.%0
- //
- #define NS_E_BAD_FSMAJOR_VERSION _HRESULT_TYPEDEF_(0xC00D0065L)
- //
- // MessageId: NS_E_BAD_STAMPNUMBER
- //
- // MessageText:
- //
- // Disk %1 has bad stamp number in control block.%0
- //
- #define NS_E_BAD_STAMPNUMBER _HRESULT_TYPEDEF_(0xC00D0066L)
- //
- // MessageId: NS_E_PARTIALLY_REBUILT_DISK
- //
- // MessageText:
- //
- // Disk %1 is partially reconstructed.%0
- //
- #define NS_E_PARTIALLY_REBUILT_DISK _HRESULT_TYPEDEF_(0xC00D0067L)
- //
- // MessageId: NS_E_ENACTPLAN_GIVEUP
- //
- // MessageText:
- //
- // EnactPlan gives up.%0
- //
- #define NS_E_ENACTPLAN_GIVEUP _HRESULT_TYPEDEF_(0xC00D0068L)
- // MCMADM warnings/errors
- //
- // MessageId: MCMADM_I_NO_EVENTS
- //
- // MessageText:
- //
- // Event initialization failed, there will be no MCM events.%0
- //
- #define MCMADM_I_NO_EVENTS _HRESULT_TYPEDEF_(0x400D0069L)
- //
- // MessageId: MCMADM_E_REGKEY_NOT_FOUND
- //
- // MessageText:
- //
- // The key was not found in the registry.%0
- //
- #define MCMADM_E_REGKEY_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D006AL)
- //
- // MessageId: NS_E_NO_FORMATS
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_NO_FORMATS _HRESULT_TYPEDEF_(0xC00D006BL)
- //
- // MessageId: NS_E_NO_REFERENCES
- //
- // MessageText:
- //
- // No reference URLs were found in an ASX file.%0
- //
- #define NS_E_NO_REFERENCES _HRESULT_TYPEDEF_(0xC00D006CL)
- //
- // MessageId: NS_E_WAVE_OPEN
- //
- // MessageText:
- //
- // Error opening wave device, the device might be in use.%0
- //
- #define NS_E_WAVE_OPEN _HRESULT_TYPEDEF_(0xC00D006DL)
- //
- // MessageId: NS_I_LOGGING_FAILED
- //
- // MessageText:
- //
- // The logging operation failed.
- //
- #define NS_I_LOGGING_FAILED _HRESULT_TYPEDEF_(0x400D006EL)
- //
- // MessageId: NS_E_CANNOTCONNECTEVENTS
- //
- // MessageText:
- //
- // Unable to establish a connection to the NetShow event monitor service.%0
- //
- #define NS_E_CANNOTCONNECTEVENTS _HRESULT_TYPEDEF_(0xC00D006FL)
- //
- // MessageId: NS_I_LIMIT_BANDWIDTH
- //
- // MessageText:
- //
- // A NetShow administrator at network location %1 set the maximum bandwidth limit to %2 bps.%0
- //
- #define NS_I_LIMIT_BANDWIDTH _HRESULT_TYPEDEF_(0x400D0070L)
- //
- // MessageId: NS_E_NO_DEVICE
- //
- // MessageText:
- //
- // No device driver is present on the system.%0
- //
- #define NS_E_NO_DEVICE _HRESULT_TYPEDEF_(0xC00D0071L)
- //
- // MessageId: NS_E_NO_SPECIFIED_DEVICE
- //
- // MessageText:
- //
- // No specified device driver is present.%0
- //
- #define NS_E_NO_SPECIFIED_DEVICE _HRESULT_TYPEDEF_(0xC00D0072L)
- // NOTENOTE!!!
- //
- // Due to legacy problems these error codes live inside the ASF error code range
- //
- //
- // MessageId: NS_E_NOTHING_TO_DO
- //
- // MessageText:
- //
- // NS_E_NOTHING_TO_DO
- //
- #define NS_E_NOTHING_TO_DO _HRESULT_TYPEDEF_(0xC00D07F1L)
- //
- // MessageId: NS_E_NO_MULTICAST
- //
- // MessageText:
- //
- // Not receiving data from the server.%0
- //
- #define NS_E_NO_MULTICAST _HRESULT_TYPEDEF_(0xC00D07F2L)
- /////////////////////////////////////////////////////////////////////////
- //
- // NETSHOW Error Events
- //
- // IdRange = 200..399
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: NS_E_MONITOR_GIVEUP
- //
- // MessageText:
- //
- // Netshow Events Monitor is not operational and has been disconnected.%0
- //
- #define NS_E_MONITOR_GIVEUP _HRESULT_TYPEDEF_(0xC00D00C8L)
- //
- // MessageId: NS_E_REMIRRORED_DISK
- //
- // MessageText:
- //
- // Disk %1 is remirrored.%0
- //
- #define NS_E_REMIRRORED_DISK _HRESULT_TYPEDEF_(0xC00D00C9L)
- //
- // MessageId: NS_E_INSUFFICIENT_DATA
- //
- // MessageText:
- //
- // Insufficient data found.%0
- //
- #define NS_E_INSUFFICIENT_DATA _HRESULT_TYPEDEF_(0xC00D00CAL)
- //
- // MessageId: NS_E_ASSERT
- //
- // MessageText:
- //
- // %1 failed in file %2 line %3.%0
- //
- #define NS_E_ASSERT _HRESULT_TYPEDEF_(0xC00D00CBL)
- //
- // MessageId: NS_E_BAD_ADAPTER_NAME
- //
- // MessageText:
- //
- // The specified adapter name is invalid.%0
- //
- #define NS_E_BAD_ADAPTER_NAME _HRESULT_TYPEDEF_(0xC00D00CCL)
- //
- // MessageId: NS_E_NOT_LICENSED
- //
- // MessageText:
- //
- // The application is not licensed for this feature.%0
- //
- #define NS_E_NOT_LICENSED _HRESULT_TYPEDEF_(0xC00D00CDL)
- //
- // MessageId: NS_E_NO_SERVER_CONTACT
- //
- // MessageText:
- //
- // Unable to contact the server.%0
- //
- #define NS_E_NO_SERVER_CONTACT _HRESULT_TYPEDEF_(0xC00D00CEL)
- //
- // MessageId: NS_E_TOO_MANY_TITLES
- //
- // MessageText:
- //
- // Maximum number of titles exceeded.%0
- //
- #define NS_E_TOO_MANY_TITLES _HRESULT_TYPEDEF_(0xC00D00CFL)
- //
- // MessageId: NS_E_TITLE_SIZE_EXCEEDED
- //
- // MessageText:
- //
- // Maximum size of a title exceeded.%0
- //
- #define NS_E_TITLE_SIZE_EXCEEDED _HRESULT_TYPEDEF_(0xC00D00D0L)
- //
- // MessageId: NS_E_UDP_DISABLED
- //
- // MessageText:
- //
- // UDP protocol not enabled. Not trying %1!ls!.%0
- //
- #define NS_E_UDP_DISABLED _HRESULT_TYPEDEF_(0xC00D00D1L)
- //
- // MessageId: NS_E_TCP_DISABLED
- //
- // MessageText:
- //
- // TCP protocol not enabled. Not trying %1!ls!.%0
- //
- #define NS_E_TCP_DISABLED _HRESULT_TYPEDEF_(0xC00D00D2L)
- //
- // MessageId: NS_E_HTTP_DISABLED
- //
- // MessageText:
- //
- // HTTP protocol not enabled. Not trying %1!ls!.%0
- //
- #define NS_E_HTTP_DISABLED _HRESULT_TYPEDEF_(0xC00D00D3L)
- //
- // MessageId: NS_E_LICENSE_EXPIRED
- //
- // MessageText:
- //
- // The product license has expired.%0
- //
- #define NS_E_LICENSE_EXPIRED _HRESULT_TYPEDEF_(0xC00D00D4L)
- //
- // MessageId: NS_E_TITLE_BITRATE
- //
- // MessageText:
- //
- // Source file exceeds the per title maximum bitrate. See NetShow Theater documentation for more information.%0
- //
- #define NS_E_TITLE_BITRATE _HRESULT_TYPEDEF_(0xC00D00D5L)
- //
- // MessageId: NS_E_EMPTY_PROGRAM_NAME
- //
- // MessageText:
- //
- // The program name cannot be empty.%0
- //
- #define NS_E_EMPTY_PROGRAM_NAME _HRESULT_TYPEDEF_(0xC00D00D6L)
- //
- // MessageId: NS_E_MISSING_CHANNEL
- //
- // MessageText:
- //
- // Station %1 does not exist.%0
- //
- #define NS_E_MISSING_CHANNEL _HRESULT_TYPEDEF_(0xC00D00D7L)
- //
- // MessageId: NS_E_NO_CHANNELS
- //
- // MessageText:
- //
- // You need to define at least one station before this operation can complete.%0
- //
- #define NS_E_NO_CHANNELS _HRESULT_TYPEDEF_(0xC00D00D8L)
- /////////////////////////////////////////////////////////////////////
- // This error message is to replace previous NS_E_INVALID_INDEX which
- // takes an index value for the error message string. For some application
- // obtain the idex value at reporting error time is very difficult, so we
- // use this string to avoid the problem.
- //////////////////////////////////////////////////////////////////////
- //
- // MessageId: NS_E_INVALID_INDEX2
- //
- // MessageText:
- //
- // The index specified is invalid.%0
- //
- #define NS_E_INVALID_INDEX2 _HRESULT_TYPEDEF_(0xC00D00D9L)
- /////////////////////////////////////////////////////////////////////////
- //
- // NETSHOW Monitor Events
- //
- // IdRange = 400..599
- //
- // Admin Events:
- //
- // Alerts:
- //
- // Title Server:
- // %1 is the Title Server name
- //
- // Content Server:
- // %1 is the Content Server ID
- // %2 is the Content Server name
- // %3 is the Peer Content Server name (optional)
- //
- // Disks:
- // %1 is the Title Server disk ID
- // %2 is the device name
- // %3 is the Content Server ID
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: NS_E_CUB_FAIL_LINK
- //
- // MessageText:
- //
- // Content Server %1 (%2) has failed its link to Content Server %3.%0
- //
- #define NS_E_CUB_FAIL_LINK _HRESULT_TYPEDEF_(0xC00D0190L)
- //
- // MessageId: NS_I_CUB_UNFAIL_LINK
- //
- // MessageText:
- //
- // Content Server %1 (%2) has established its link to Content Server %3.%0
- //
- #define NS_I_CUB_UNFAIL_LINK _HRESULT_TYPEDEF_(0x400D0191L)
- //
- // MessageId: NS_E_BAD_CUB_UID
- //
- // MessageText:
- //
- // Content Server %1 (%2) has incorrect uid %3.%0
- //
- #define NS_E_BAD_CUB_UID _HRESULT_TYPEDEF_(0xC00D0192L)
- //
- // MessageId: NS_I_RESTRIPE_START
- //
- // MessageText:
- //
- // Restripe operation has started.%0
- //
- #define NS_I_RESTRIPE_START _HRESULT_TYPEDEF_(0x400D0193L)
- //
- // MessageId: NS_I_RESTRIPE_DONE
- //
- // MessageText:
- //
- // Restripe operation has completed.%0
- //
- #define NS_I_RESTRIPE_DONE _HRESULT_TYPEDEF_(0x400D0194L)
- //
- // MessageId: NS_E_GLITCH_MODE
- //
- // MessageText:
- //
- // Server unreliable because multiple components failed.%0
- //
- #define NS_E_GLITCH_MODE _HRESULT_TYPEDEF_(0xC00D0195L)
- //
- // MessageId: NS_I_RESTRIPE_DISK_OUT
- //
- // MessageText:
- //
- // Content disk %1 (%2) on Content Server %3 has been restriped out.%0
- //
- #define NS_I_RESTRIPE_DISK_OUT _HRESULT_TYPEDEF_(0x400D0196L)
- //
- // MessageId: NS_I_RESTRIPE_CUB_OUT
- //
- // MessageText:
- //
- // Content server %1 (%2) has been restriped out.%0
- //
- #define NS_I_RESTRIPE_CUB_OUT _HRESULT_TYPEDEF_(0x400D0197L)
- //
- // MessageId: NS_I_DISK_STOP
- //
- // MessageText:
- //
- // Disk %1 ( %2 ) on Content Server %3, has been offlined.%0
- //
- #define NS_I_DISK_STOP _HRESULT_TYPEDEF_(0x400D0198L)
- //
- // MessageId: NS_I_CATATONIC_FAILURE
- //
- // MessageText:
- //
- // Disk %1 ( %2 ) on Content Server %3, will be failed because it is catatonic.%0
- //
- #define NS_I_CATATONIC_FAILURE _HRESULT_TYPEDEF_(0x800D0199L)
- //
- // MessageId: NS_I_CATATONIC_AUTO_UNFAIL
- //
- // MessageText:
- //
- // Disk %1 ( %2 ) on Content Server %3, auto online from catatonic state.%0
- //
- #define NS_I_CATATONIC_AUTO_UNFAIL _HRESULT_TYPEDEF_(0x800D019AL)
- //
- // MessageId: NS_E_NO_MEDIA_PROTOCOL
- //
- // MessageText:
- //
- // Content Server %1 (%2) is unable to communicate with the Media System Network Protocol.%0
- //
- #define NS_E_NO_MEDIA_PROTOCOL _HRESULT_TYPEDEF_(0xC00D019BL)
- //
- // Advanced Streaming Format (ASF) codes occupy MessageIds 2000-2999
- //
- // See ASFErr.mc for more details - please do not define any symbols
- // in that range in this file.
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // Windows Media SDK Errors
- //
- // IdRange = 3000-3199
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: NS_E_INVALID_INPUT_FORMAT
- //
- // MessageText:
- //
- // The input media format is invalid.%0
- //
- #define NS_E_INVALID_INPUT_FORMAT _HRESULT_TYPEDEF_(0xC00D0BB8L)
- //
- // MessageId: NS_E_MSAUDIO_NOT_INSTALLED
- //
- // MessageText:
- //
- // The MSAudio codec is not installed on this system.%0
- //
- #define NS_E_MSAUDIO_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D0BB9L)
- //
- // MessageId: NS_E_UNEXPECTED_MSAUDIO_ERROR
- //
- // MessageText:
- //
- // An unexpected error occurred with the MSAudio codec.%0
- //
- #define NS_E_UNEXPECTED_MSAUDIO_ERROR _HRESULT_TYPEDEF_(0xC00D0BBAL)
- //
- // MessageId: NS_E_INVALID_OUTPUT_FORMAT
- //
- // MessageText:
- //
- // The output media format is invalid.%0
- //
- #define NS_E_INVALID_OUTPUT_FORMAT _HRESULT_TYPEDEF_(0xC00D0BBBL)
- //
- // MessageId: NS_E_NOT_CONFIGURED
- //
- // MessageText:
- //
- // The object must be fully configured before audio samples can be processed.%0
- //
- #define NS_E_NOT_CONFIGURED _HRESULT_TYPEDEF_(0xC00D0BBCL)
- //
- // MessageId: NS_E_PROTECTED_CONTENT
- //
- // MessageText:
- //
- // You need a license to perform the requested operation on this media file.%0
- //
- #define NS_E_PROTECTED_CONTENT _HRESULT_TYPEDEF_(0xC00D0BBDL)
- //
- // MessageId: NS_E_LICENSE_REQUIRED
- //
- // MessageText:
- //
- // You need a license to perform the requested operation on this media file.%0
- //
- #define NS_E_LICENSE_REQUIRED _HRESULT_TYPEDEF_(0xC00D0BBEL)
- //
- // MessageId: NS_E_TAMPERED_CONTENT
- //
- // MessageText:
- //
- // This media file is corrupted or invalid. Contact the content provider for a new file.%0
- //
- #define NS_E_TAMPERED_CONTENT _HRESULT_TYPEDEF_(0xC00D0BBFL)
- //
- // MessageId: NS_E_LICENSE_OUTOFDATE
- //
- // MessageText:
- //
- // The license for this media file has expired. Get a new license or contact the content provider for further assistance.%0
- //
- #define NS_E_LICENSE_OUTOFDATE _HRESULT_TYPEDEF_(0xC00D0BC0L)
- //
- // MessageId: NS_E_LICENSE_INCORRECT_RIGHTS
- //
- // MessageText:
- //
- // You are not allowed to open this file. Contact the content provider for further assistance.%0
- //
- #define NS_E_LICENSE_INCORRECT_RIGHTS _HRESULT_TYPEDEF_(0xC00D0BC1L)
- //
- // MessageId: NS_E_AUDIO_CODEC_NOT_INSTALLED
- //
- // MessageText:
- //
- // The requested audio codec is not installed on this system.%0
- //
- #define NS_E_AUDIO_CODEC_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D0BC2L)
- //
- // MessageId: NS_E_AUDIO_CODEC_ERROR
- //
- // MessageText:
- //
- // An unexpected error occurred with the audio codec.%0
- //
- #define NS_E_AUDIO_CODEC_ERROR _HRESULT_TYPEDEF_(0xC00D0BC3L)
- //
- // MessageId: NS_E_VIDEO_CODEC_NOT_INSTALLED
- //
- // MessageText:
- //
- // The requested video codec is not installed on this system.%0
- //
- #define NS_E_VIDEO_CODEC_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D0BC4L)
- //
- // MessageId: NS_E_VIDEO_CODEC_ERROR
- //
- // MessageText:
- //
- // An unexpected error occurred with the video codec.%0
- //
- #define NS_E_VIDEO_CODEC_ERROR _HRESULT_TYPEDEF_(0xC00D0BC5L)
- //
- // MessageId: NS_E_INVALIDPROFILE
- //
- // MessageText:
- //
- // The Profile is invalid.%0
- //
- #define NS_E_INVALIDPROFILE _HRESULT_TYPEDEF_(0xC00D0BC6L)
- //
- // MessageId: NS_E_INCOMPATIBLE_VERSION
- //
- // MessageText:
- //
- // A new version of the SDK is needed to play the requested content.%0
- //
- #define NS_E_INCOMPATIBLE_VERSION _HRESULT_TYPEDEF_(0xC00D0BC7L)
- //
- // MessageId: NS_S_REBUFFERING
- //
- // MessageText:
- //
- // The requested operation has caused the source to rebuffer.%0
- //
- #define NS_S_REBUFFERING _HRESULT_TYPEDEF_(0x000D0BC8L)
- //
- // MessageId: NS_S_DEGRADING_QUALITY
- //
- // MessageText:
- //
- // The requested operation has caused the source to degrade codec quality.%0
- //
- #define NS_S_DEGRADING_QUALITY _HRESULT_TYPEDEF_(0x000D0BC9L)
- //
- // MessageId: NS_E_OFFLINE_MODE
- //
- // MessageText:
- //
- // The requested URL is not available in offline mode.%0
- //
- #define NS_E_OFFLINE_MODE _HRESULT_TYPEDEF_(0xC00D0BCAL)
- //
- // MessageId: NS_E_NOT_CONNECTED
- //
- // MessageText:
- //
- // The requested URL cannot be accessed because there is no network connection.%0
- //
- #define NS_E_NOT_CONNECTED _HRESULT_TYPEDEF_(0xC00D0BCBL)
- //
- // MessageId: NS_E_TOO_MUCH_DATA
- //
- // MessageText:
- //
- // The encoding process was unable to keep up with the amount of supplied data.%0
- //
- #define NS_E_TOO_MUCH_DATA _HRESULT_TYPEDEF_(0xC00D0BCCL)
- //
- // MessageId: NS_E_UNSUPPORTED_PROPERTY
- //
- // MessageText:
- //
- // The given property is not supported.%0
- //
- #define NS_E_UNSUPPORTED_PROPERTY _HRESULT_TYPEDEF_(0xC00D0BCDL)
- //
- // MessageId: NS_E_8BIT_WAVE_UNSUPPORTED
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_8BIT_WAVE_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D0BCEL)
- //
- // MessageId: NS_E_NO_MORE_SAMPLES
- //
- // MessageText:
- //
- // There are no more samples in the current range.%0
- //
- #define NS_E_NO_MORE_SAMPLES _HRESULT_TYPEDEF_(0xC00D0BCFL)
- //
- // MessageId: NS_E_INVALID_SAMPLING_RATE
- //
- // MessageText:
- //
- // The given sampling rate is invalid.%0
- //
- #define NS_E_INVALID_SAMPLING_RATE _HRESULT_TYPEDEF_(0xC00D0BD0L)
- //
- // MessageId: NS_E_MAX_PACKET_SIZE_TOO_SMALL
- //
- // MessageText:
- //
- // The given maximum packet size is too small to accommodate this profile
- //
- #define NS_E_MAX_PACKET_SIZE_TOO_SMALL _HRESULT_TYPEDEF_(0xC00D0BD1L)
- //
- // MessageId: NS_E_LATE_PACKET
- //
- // MessageText:
- //
- // The packet arrived too late to be of use
- //
- #define NS_E_LATE_PACKET _HRESULT_TYPEDEF_(0xC00D0BD2L)
- //
- // MessageId: NS_E_DUPLICATE_PACKET
- //
- // MessageText:
- //
- // The packet is a duplicate of one received before
- //
- #define NS_E_DUPLICATE_PACKET _HRESULT_TYPEDEF_(0xC00D0BD3L)
- //
- // MessageId: NS_E_SDK_BUFFERTOOSMALL
- //
- // MessageText:
- //
- // Supplied buffer is too small
- //
- #define NS_E_SDK_BUFFERTOOSMALL _HRESULT_TYPEDEF_(0xC00D0BD4L)
- //
- // MessageId: NS_E_INVALID_NUM_PASSES
- //
- // MessageText:
- //
- // The wrong number of preprocessing passes was used for the stream's output type
- //
- #define NS_E_INVALID_NUM_PASSES _HRESULT_TYPEDEF_(0xC00D0BD5L)
- //
- // MessageId: NS_E_ATTRIBUTE_READ_ONLY
- //
- // MessageText:
- //
- // An attempt was made to add, modify, or delete a read only attribute
- //
- #define NS_E_ATTRIBUTE_READ_ONLY _HRESULT_TYPEDEF_(0xC00D0BD6L)
- //
- // MessageId: NS_E_ATTRIBUTE_NOT_ALLOWED
- //
- // MessageText:
- //
- // An attempt was made to add attribute that is not allowed for the given media type
- //
- #define NS_E_ATTRIBUTE_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D0BD7L)
- //
- // MessageId: NS_E_INVALID_EDL
- //
- // MessageText:
- //
- // The EDL provided is invalid
- //
- #define NS_E_INVALID_EDL _HRESULT_TYPEDEF_(0xC00D0BD8L)
- //
- // MessageId: NS_E_DATA_UNIT_EXTENSION_TOO_LARGE
- //
- // MessageText:
- //
- // The Data Unit Extension data was too large to be used.%0
- //
- #define NS_E_DATA_UNIT_EXTENSION_TOO_LARGE _HRESULT_TYPEDEF_(0xC00D0BD9L)
- //
- // MessageId: NS_E_CODEC_DMO_ERROR
- //
- // MessageText:
- //
- // An unexpected error occurred with a DMO codec.%0
- //
- #define NS_E_CODEC_DMO_ERROR _HRESULT_TYPEDEF_(0xC00D0BDAL)
- /////////////////////////////////////////////////////////////////////////
- //
- // Windows Media Player Errors
- //
- // IdRange = 4000 - 4999
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // WMP CD Filter Error codes
- //
- //
- // MessageId: NS_E_NO_CD
- //
- // MessageText:
- //
- // There is no CD in the CD-ROM drive. Insert a CD, and try again.%0
- //
- #define NS_E_NO_CD _HRESULT_TYPEDEF_(0xC00D0FA0L)
- //
- // MessageId: NS_E_CANT_READ_DIGITAL
- //
- // MessageText:
- //
- // Unable to perform digital reads on this compact disc drive. Please try analog playback via the Tools Options menu.%0
- //
- #define NS_E_CANT_READ_DIGITAL _HRESULT_TYPEDEF_(0xC00D0FA1L)
- //
- // MessageId: NS_E_DEVICE_DISCONNECTED
- //
- // MessageText:
- //
- // Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and then try copying the file again.%0
- //
- #define NS_E_DEVICE_DISCONNECTED _HRESULT_TYPEDEF_(0xC00D0FA2L)
- //
- // MessageId: NS_E_DEVICE_NOT_SUPPORT_FORMAT
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file. The portable device does not support the specified format.%0
- //
- #define NS_E_DEVICE_NOT_SUPPORT_FORMAT _HRESULT_TYPEDEF_(0xC00D0FA3L)
- //
- // MessageId: NS_E_SLOW_READ_DIGITAL
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_SLOW_READ_DIGITAL _HRESULT_TYPEDEF_(0xC00D0FA4L)
- //
- // MessageId: NS_E_MIXER_INVALID_LINE
- //
- // MessageText:
- //
- // An invalid line error occurred in the mixer.%0
- //
- #define NS_E_MIXER_INVALID_LINE _HRESULT_TYPEDEF_(0xC00D0FA5L)
- //
- // MessageId: NS_E_MIXER_INVALID_CONTROL
- //
- // MessageText:
- //
- // An invalid control error occurred in the mixer.%0
- //
- #define NS_E_MIXER_INVALID_CONTROL _HRESULT_TYPEDEF_(0xC00D0FA6L)
- //
- // MessageId: NS_E_MIXER_INVALID_VALUE
- //
- // MessageText:
- //
- // An invalid value error occurred in the mixer.%0
- //
- #define NS_E_MIXER_INVALID_VALUE _HRESULT_TYPEDEF_(0xC00D0FA7L)
- //
- // MessageId: NS_E_MIXER_UNKNOWN_MMRESULT
- //
- // MessageText:
- //
- // An unrecognized MMRESULT occurred in the mixer.%0
- //
- #define NS_E_MIXER_UNKNOWN_MMRESULT _HRESULT_TYPEDEF_(0xC00D0FA8L)
- //
- // MessageId: NS_E_USER_STOP
- //
- // MessageText:
- //
- // User has stopped the operation.%0
- //
- #define NS_E_USER_STOP _HRESULT_TYPEDEF_(0xC00D0FA9L)
- //
- // MessageId: NS_E_MP3_FORMAT_NOT_FOUND
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_MP3_FORMAT_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D0FAAL)
- //
- // MessageId: NS_E_CD_READ_ERROR_NO_CORRECTION
- //
- // MessageText:
- //
- // Windows Media Player cannot read the CD. It may contain flaws. Turn on error correction and try again.%0
- //
- #define NS_E_CD_READ_ERROR_NO_CORRECTION _HRESULT_TYPEDEF_(0xC00D0FABL)
- //
- // MessageId: NS_E_CD_READ_ERROR
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_CD_READ_ERROR _HRESULT_TYPEDEF_(0xC00D0FACL)
- //
- // MessageId: NS_E_CD_SLOW_COPY
- //
- // MessageText:
- //
- // To speed up the copy process, do not play CD tracks while copying.%0
- //
- #define NS_E_CD_SLOW_COPY _HRESULT_TYPEDEF_(0xC00D0FADL)
- //
- // MessageId: NS_E_CD_COPYTO_CD
- //
- // MessageText:
- //
- // Cannot copy directly from a CDROM to a CD drive.%0
- //
- #define NS_E_CD_COPYTO_CD _HRESULT_TYPEDEF_(0xC00D0FAEL)
- //
- // MessageId: NS_E_MIXER_NODRIVER
- //
- // MessageText:
- //
- // Could not open a sound mixer driver.%0
- //
- #define NS_E_MIXER_NODRIVER _HRESULT_TYPEDEF_(0xC00D0FAFL)
- //
- // MessageId: NS_E_REDBOOK_ENABLED_WHILE_COPYING
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_REDBOOK_ENABLED_WHILE_COPYING _HRESULT_TYPEDEF_(0xC00D0FB0L)
- //
- // MessageId: NS_E_CD_REFRESH
- //
- // MessageText:
- //
- // Trying to refresh the CD playlist.%0
- //
- #define NS_E_CD_REFRESH _HRESULT_TYPEDEF_(0xC00D0FB1L)
- //
- // MessageId: NS_E_CD_DRIVER_PROBLEM
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_CD_DRIVER_PROBLEM _HRESULT_TYPEDEF_(0xC00D0FB2L)
- //
- // MessageId: NS_E_WONT_DO_DIGITAL
- //
- // MessageText:
- //
- // Windows Media Player must switch to analog mode because there is a problem reading the CD-ROM drive in digital mode.%0
- //
- #define NS_E_WONT_DO_DIGITAL _HRESULT_TYPEDEF_(0xC00D0FB3L)
- //
- // WMP IWMPXMLParser Error codes
- //
- //
- // MessageId: NS_E_WMPXML_NOERROR
- //
- // MessageText:
- //
- // A call was made to GetParseError on the XML parser but there was no error to retrieve.%0
- //
- #define NS_E_WMPXML_NOERROR _HRESULT_TYPEDEF_(0xC00D0FB4L)
- //
- // MessageId: NS_E_WMPXML_ENDOFDATA
- //
- // MessageText:
- //
- // The XML Parser ran out of data while parsing.%0
- //
- #define NS_E_WMPXML_ENDOFDATA _HRESULT_TYPEDEF_(0xC00D0FB5L)
- //
- // MessageId: NS_E_WMPXML_PARSEERROR
- //
- // MessageText:
- //
- // A generic parse error occurred in the XML parser but no information is available.%0
- //
- #define NS_E_WMPXML_PARSEERROR _HRESULT_TYPEDEF_(0xC00D0FB6L)
- //
- // MessageId: NS_E_WMPXML_ATTRIBUTENOTFOUND
- //
- // MessageText:
- //
- // A call get GetNamedAttribute or GetNamedAttributeIndex on the XML parser resulted in the index not being found.%0
- //
- #define NS_E_WMPXML_ATTRIBUTENOTFOUND _HRESULT_TYPEDEF_(0xC00D0FB7L)
- //
- // MessageId: NS_E_WMPXML_PINOTFOUND
- //
- // MessageText:
- //
- // A call was made go GetNamedPI on the XML parser, but the requested Processing Instruction was not found.%0
- //
- #define NS_E_WMPXML_PINOTFOUND _HRESULT_TYPEDEF_(0xC00D0FB8L)
- //
- // MessageId: NS_E_WMPXML_EMPTYDOC
- //
- // MessageText:
- //
- // Persist was called on the XML parser, but the parser has no data to persist.%0
- //
- #define NS_E_WMPXML_EMPTYDOC _HRESULT_TYPEDEF_(0xC00D0FB9L)
- //
- // Miscellaneous Media Player Error codes
- //
- //
- // MessageId: NS_E_WMP_WINDOWSAPIFAILURE
- //
- // MessageText:
- //
- // A Windows API call failed but no error information was available.%0
- //
- #define NS_E_WMP_WINDOWSAPIFAILURE _HRESULT_TYPEDEF_(0xC00D0FC8L)
- //
- // MessageId: NS_E_WMP_RECORDING_NOT_ALLOWED
- //
- // MessageText:
- //
- // Windows Media Player cannot copy the file. Either the license restricts copying, or you must obtain a license to copy the file.%0
- //
- #define NS_E_WMP_RECORDING_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D0FC9L)
- //
- // MessageId: NS_E_DEVICE_NOT_READY
- //
- // MessageText:
- //
- // Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and try again.%0
- //
- #define NS_E_DEVICE_NOT_READY _HRESULT_TYPEDEF_(0xC00D0FCAL)
- //
- // MessageId: NS_E_DAMAGED_FILE
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file because it is either damaged or corrupt.%0
- //
- #define NS_E_DAMAGED_FILE _HRESULT_TYPEDEF_(0xC00D0FCBL)
- //
- // MessageId: NS_E_MPDB_GENERIC
- //
- // MessageText:
- //
- // An error occurred when the Player was attempting to access information in your media library. Try closing and then reopening the Player.%0
- //
- #define NS_E_MPDB_GENERIC _HRESULT_TYPEDEF_(0xC00D0FCCL)
- //
- // MessageId: NS_E_FILE_FAILED_CHECKS
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_FILE_FAILED_CHECKS _HRESULT_TYPEDEF_(0xC00D0FCDL)
- //
- // MessageId: NS_E_MEDIA_LIBRARY_FAILED
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_MEDIA_LIBRARY_FAILED _HRESULT_TYPEDEF_(0xC00D0FCEL)
- //
- // MessageId: NS_E_SHARING_VIOLATION
- //
- // MessageText:
- //
- // The file is already in use. Close other programs that may be using the file, or stop playing the file, and try again.%0
- //
- #define NS_E_SHARING_VIOLATION _HRESULT_TYPEDEF_(0xC00D0FCFL)
- //
- // MessageId: NS_E_NO_ERROR_STRING_FOUND
- //
- // MessageText:
- //
- // Windows Media Player has encountered an unknown error.%0
- //
- #define NS_E_NO_ERROR_STRING_FOUND _HRESULT_TYPEDEF_(0xC00D0FD0L)
- //
- // MessageId: NS_E_WMPOCX_NO_REMOTE_CORE
- //
- // MessageText:
- //
- // The Windows Media Player control was unable to connect to remote media services, but will continue with local media services.%0
- //
- #define NS_E_WMPOCX_NO_REMOTE_CORE _HRESULT_TYPEDEF_(0xC00D0FD1L)
- //
- // MessageId: NS_E_WMPOCX_NO_ACTIVE_CORE
- //
- // MessageText:
- //
- // The requested method or property is not available because the Windows Media Player control has not been properly activated.%0
- //
- #define NS_E_WMPOCX_NO_ACTIVE_CORE _HRESULT_TYPEDEF_(0xC00D0FD2L)
- //
- // MessageId: NS_E_WMPOCX_NOT_RUNNING_REMOTELY
- //
- // MessageText:
- //
- // Windows Media Player ActiveX control is not running in remote mode.%0
- //
- #define NS_E_WMPOCX_NOT_RUNNING_REMOTELY _HRESULT_TYPEDEF_(0xC00D0FD3L)
- //
- // MessageId: NS_E_WMPOCX_NO_REMOTE_WINDOW
- //
- // MessageText:
- //
- // An error occurred when trying to get remote Windows Media Player window.%0
- //
- #define NS_E_WMPOCX_NO_REMOTE_WINDOW _HRESULT_TYPEDEF_(0xC00D0FD4L)
- //
- // MessageId: NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE
- //
- // MessageText:
- //
- // Windows Media Player has encountered an unknown error.%0
- //
- #define NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE _HRESULT_TYPEDEF_(0xC00D0FD5L)
- //
- // MessageId: NS_E_PLUGIN_NOTSHUTDOWN
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_PLUGIN_NOTSHUTDOWN _HRESULT_TYPEDEF_(0xC00D0FD6L)
- //
- // MessageId: NS_E_WMP_CANNOT_FIND_FOLDER
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_CANNOT_FIND_FOLDER _HRESULT_TYPEDEF_(0xC00D0FD7L)
- //
- // MessageId: NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED
- //
- // MessageText:
- //
- // Windows Media Player cannot copy streaming media.%0
- //
- #define NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D0FD8L)
- //
- // MessageId: NS_E_WMP_PLUGINDLL_NOTFOUND
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_PLUGINDLL_NOTFOUND _HRESULT_TYPEDEF_(0xC00D0FD9L)
- //
- // MessageId: NS_E_NEED_TO_ASK_USER
- //
- // MessageText:
- //
- // Action requires input from the user.%0
- //
- #define NS_E_NEED_TO_ASK_USER _HRESULT_TYPEDEF_(0xC00D0FDAL)
- //
- // MessageId: NS_E_WMPOCX_PLAYER_NOT_DOCKED
- //
- // MessageText:
- //
- // The Windows Media Player control must be in a docked state for this action to succeed.%0
- //
- #define NS_E_WMPOCX_PLAYER_NOT_DOCKED _HRESULT_TYPEDEF_(0xC00D0FDBL)
- //
- // MessageId: NS_E_WMP_EXTERNAL_NOTREADY
- //
- // MessageText:
- //
- // Media Player external object is not ready.%0
- //
- #define NS_E_WMP_EXTERNAL_NOTREADY _HRESULT_TYPEDEF_(0xC00D0FDCL)
- //
- // MessageId: NS_E_WMP_MLS_STALE_DATA
- //
- // MessageText:
- //
- // Metadata is stale. The operation failed.%0
- //
- #define NS_E_WMP_MLS_STALE_DATA _HRESULT_TYPEDEF_(0xC00D0FDDL)
- //
- // Generic Media PlayerUI error codes
- //
- //
- // MessageId: NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED
- //
- // MessageText:
- //
- // The control (%s) does not support creation of sub-controls, yet (%d) sub-controls have been specified.%0
- //
- #define NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED _HRESULT_TYPEDEF_(0xC00D0FDEL)
- //
- // MessageId: NS_E_WMP_UI_VERSIONMISMATCH
- //
- // MessageText:
- //
- // Version mismatch: (%.1f required, %.1f found).%0
- //
- #define NS_E_WMP_UI_VERSIONMISMATCH _HRESULT_TYPEDEF_(0xC00D0FDFL)
- //
- // MessageId: NS_E_WMP_UI_NOTATHEMEFILE
- //
- // MessageText:
- //
- // The layout manager was given valid XML that wasn't a theme file.%0
- //
- #define NS_E_WMP_UI_NOTATHEMEFILE _HRESULT_TYPEDEF_(0xC00D0FE0L)
- //
- // MessageId: NS_E_WMP_UI_SUBELEMENTNOTFOUND
- //
- // MessageText:
- //
- // The %s subelement could not be found on the %s object.%0
- //
- #define NS_E_WMP_UI_SUBELEMENTNOTFOUND _HRESULT_TYPEDEF_(0xC00D0FE1L)
- //
- // MessageId: NS_E_WMP_UI_VERSIONPARSE
- //
- // MessageText:
- //
- // An error occurred parsing the version tag.nValid version tags are of the form:nnt<?wmp version='1.0'?>.%0
- //
- #define NS_E_WMP_UI_VERSIONPARSE _HRESULT_TYPEDEF_(0xC00D0FE2L)
- //
- // MessageId: NS_E_WMP_UI_VIEWIDNOTFOUND
- //
- // MessageText:
- //
- // The view specified in for the 'currentViewID' property (%s) was not found in this theme file.%0
- //
- #define NS_E_WMP_UI_VIEWIDNOTFOUND _HRESULT_TYPEDEF_(0xC00D0FE3L)
- //
- // MessageId: NS_E_WMP_UI_PASSTHROUGH
- //
- // MessageText:
- //
- // This error used internally for hit testing.%0
- //
- #define NS_E_WMP_UI_PASSTHROUGH _HRESULT_TYPEDEF_(0xC00D0FE4L)
- //
- // MessageId: NS_E_WMP_UI_OBJECTNOTFOUND
- //
- // MessageText:
- //
- // Attributes were specified for the %s object, but the object was not available to send them to.%0
- //
- #define NS_E_WMP_UI_OBJECTNOTFOUND _HRESULT_TYPEDEF_(0xC00D0FE5L)
- //
- // MessageId: NS_E_WMP_UI_SECONDHANDLER
- //
- // MessageText:
- //
- // The %s event already has a handler, the second handler was ignored.%0
- //
- #define NS_E_WMP_UI_SECONDHANDLER _HRESULT_TYPEDEF_(0xC00D0FE6L)
- //
- // MessageId: NS_E_WMP_UI_NOSKININZIP
- //
- // MessageText:
- //
- // No .wms file found in skin archive.%0
- //
- #define NS_E_WMP_UI_NOSKININZIP _HRESULT_TYPEDEF_(0xC00D0FE7L)
- //
- // MessageId: NS_S_WMP_UI_VERSIONMISMATCH
- //
- // MessageText:
- //
- // An upgrade may be needed for the theme manager to correctly show this skin. Skin reports version: %.1f.%0
- //
- #define NS_S_WMP_UI_VERSIONMISMATCH _HRESULT_TYPEDEF_(0x000D0FE8L)
- //
- // MessageId: NS_S_WMP_EXCEPTION
- //
- // MessageText:
- //
- // An error occurred in one of the UI components.%0
- //
- #define NS_S_WMP_EXCEPTION _HRESULT_TYPEDEF_(0x000D0FE9L)
- //
- // MessageId: NS_E_WMP_URLDOWNLOADFAILED
- //
- // MessageText:
- //
- // Windows Media Player cannot save the file.%0
- //
- #define NS_E_WMP_URLDOWNLOADFAILED _HRESULT_TYPEDEF_(0xC00D0FEAL)
- //
- // MessageId: NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN
- //
- // MessageText:
- //
- // The Windows Media Player Control was unable to load the requested uiMode and could not successfully roll back to the existing uiMode.%0
- //
- #define NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN _HRESULT_TYPEDEF_(0xC00D0FEBL)
- //
- // MessageId: NS_E_WMP_INVALID_SKIN
- //
- // MessageText:
- //
- // The skin file is invalid.%0
- //
- #define NS_E_WMP_INVALID_SKIN _HRESULT_TYPEDEF_(0xC00D0FECL)
- //
- // MessageId: NS_E_WMP_SENDMAILFAILED
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_SENDMAILFAILED _HRESULT_TYPEDEF_(0xC00D0FEDL)
- //Save As
- //
- // MessageId: NS_E_WMP_SAVEAS_READONLY
- //
- // MessageText:
- //
- // The Windows Media Player cannot overwrite a read only file. Choose another file to save as or change the file attributes.%0
- //
- #define NS_E_WMP_SAVEAS_READONLY _HRESULT_TYPEDEF_(0xC00D0FF0L)
- //
- // WMP Regional button control
- //
- //
- // MessageId: NS_E_WMP_RBC_JPGMAPPINGIMAGE
- //
- // MessageText:
- //
- // JPG Images are not recommended for use as a mappingImage.%0
- //
- #define NS_E_WMP_RBC_JPGMAPPINGIMAGE _HRESULT_TYPEDEF_(0xC00D1004L)
- //
- // MessageId: NS_E_WMP_JPGTRANSPARENCY
- //
- // MessageText:
- //
- // JPG Images are not recommended when using a transparencyColor.%0
- //
- #define NS_E_WMP_JPGTRANSPARENCY _HRESULT_TYPEDEF_(0xC00D1005L)
- //
- // WMP Slider control
- //
- //
- // MessageId: NS_E_WMP_INVALID_MAX_VAL
- //
- // MessageText:
- //
- // The Max property cannot be less than Min property.%0
- //
- #define NS_E_WMP_INVALID_MAX_VAL _HRESULT_TYPEDEF_(0xC00D1009L)
- //
- // MessageId: NS_E_WMP_INVALID_MIN_VAL
- //
- // MessageText:
- //
- // The Min property cannot be greater than Max property.%0
- //
- #define NS_E_WMP_INVALID_MIN_VAL _HRESULT_TYPEDEF_(0xC00D100AL)
- //
- // WMP CustomSlider control
- //
- //
- // MessageId: NS_E_WMP_CS_JPGPOSITIONIMAGE
- //
- // MessageText:
- //
- // JPG Images are not recommended for use as a positionImage.%0
- //
- #define NS_E_WMP_CS_JPGPOSITIONIMAGE _HRESULT_TYPEDEF_(0xC00D100EL)
- //
- // MessageId: NS_E_WMP_CS_NOTEVENLYDIVISIBLE
- //
- // MessageText:
- //
- // The (%s) image's size is not evenly divisible by the positionImage's size.%0
- //
- #define NS_E_WMP_CS_NOTEVENLYDIVISIBLE _HRESULT_TYPEDEF_(0xC00D100FL)
- //
- // WMP ZIP Decoder
- //
- //
- // MessageId: NS_E_WMPZIP_NOTAZIPFILE
- //
- // MessageText:
- //
- // The ZIP reader opened a file and its signature didn't match that of ZIP files.%0
- //
- #define NS_E_WMPZIP_NOTAZIPFILE _HRESULT_TYPEDEF_(0xC00D1018L)
- //
- // MessageId: NS_E_WMPZIP_CORRUPT
- //
- // MessageText:
- //
- // The ZIP reader has detected that the file is corrupt.%0
- //
- #define NS_E_WMPZIP_CORRUPT _HRESULT_TYPEDEF_(0xC00D1019L)
- //
- // MessageId: NS_E_WMPZIP_FILENOTFOUND
- //
- // MessageText:
- //
- // GetFileStream, SaveToFile, or SaveTemp file was called on the ZIP reader with a filename that was not found in the zip file.%0
- //
- #define NS_E_WMPZIP_FILENOTFOUND _HRESULT_TYPEDEF_(0xC00D101AL)
- //
- // WMP Image Decoding Error codes
- //
- //
- // MessageId: NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED
- //
- // MessageText:
- //
- // Image type not supported.%0
- //
- #define NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D1022L)
- //
- // MessageId: NS_E_WMP_IMAGE_INVALID_FORMAT
- //
- // MessageText:
- //
- // Image file may be corrupt.%0
- //
- #define NS_E_WMP_IMAGE_INVALID_FORMAT _HRESULT_TYPEDEF_(0xC00D1023L)
- //
- // MessageId: NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE
- //
- // MessageText:
- //
- // Unexpected end of file. GIF file may be corrupt.%0
- //
- #define NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE _HRESULT_TYPEDEF_(0xC00D1024L)
- //
- // MessageId: NS_E_WMP_GIF_INVALID_FORMAT
- //
- // MessageText:
- //
- // Invalid GIF file.%0
- //
- #define NS_E_WMP_GIF_INVALID_FORMAT _HRESULT_TYPEDEF_(0xC00D1025L)
- //
- // MessageId: NS_E_WMP_GIF_BAD_VERSION_NUMBER
- //
- // MessageText:
- //
- // Invalid GIF version. Only 87a or 89a supported.%0
- //
- #define NS_E_WMP_GIF_BAD_VERSION_NUMBER _HRESULT_TYPEDEF_(0xC00D1026L)
- //
- // MessageId: NS_E_WMP_GIF_NO_IMAGE_IN_FILE
- //
- // MessageText:
- //
- // No images found in GIF file.%0
- //
- #define NS_E_WMP_GIF_NO_IMAGE_IN_FILE _HRESULT_TYPEDEF_(0xC00D1027L)
- //
- // MessageId: NS_E_WMP_PNG_INVALIDFORMAT
- //
- // MessageText:
- //
- // Invalid PNG image file format.%0
- //
- #define NS_E_WMP_PNG_INVALIDFORMAT _HRESULT_TYPEDEF_(0xC00D1028L)
- //
- // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH
- //
- // MessageText:
- //
- // PNG bitdepth not supported.%0
- //
- #define NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH _HRESULT_TYPEDEF_(0xC00D1029L)
- //
- // MessageId: NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION
- //
- // MessageText:
- //
- // Compression format defined in PNG file not supported,%0
- //
- #define NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION _HRESULT_TYPEDEF_(0xC00D102AL)
- //
- // MessageId: NS_E_WMP_PNG_UNSUPPORTED_FILTER
- //
- // MessageText:
- //
- // Filter method defined in PNG file not supported.%0
- //
- #define NS_E_WMP_PNG_UNSUPPORTED_FILTER _HRESULT_TYPEDEF_(0xC00D102BL)
- //
- // MessageId: NS_E_WMP_PNG_UNSUPPORTED_INTERLACE
- //
- // MessageText:
- //
- // Interlace method defined in PNG file not supported.%0
- //
- #define NS_E_WMP_PNG_UNSUPPORTED_INTERLACE _HRESULT_TYPEDEF_(0xC00D102CL)
- //
- // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC
- //
- // MessageText:
- //
- // Bad CRC in PNG file.%0
- //
- #define NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC _HRESULT_TYPEDEF_(0xC00D102DL)
- //
- // MessageId: NS_E_WMP_BMP_INVALID_BITMASK
- //
- // MessageText:
- //
- // Invalid bitmask in BMP file.%0
- //
- #define NS_E_WMP_BMP_INVALID_BITMASK _HRESULT_TYPEDEF_(0xC00D102EL)
- //
- // MessageId: NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED
- //
- // MessageText:
- //
- // Topdown DIB not supported.%0
- //
- #define NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D102FL)
- //
- // MessageId: NS_E_WMP_BMP_BITMAP_NOT_CREATED
- //
- // MessageText:
- //
- // Bitmap could not be created.%0
- //
- #define NS_E_WMP_BMP_BITMAP_NOT_CREATED _HRESULT_TYPEDEF_(0xC00D1030L)
- //
- // MessageId: NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED
- //
- // MessageText:
- //
- // Compression format defined in BMP not supported.%0
- //
- #define NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D1031L)
- //
- // MessageId: NS_E_WMP_BMP_INVALID_FORMAT
- //
- // MessageText:
- //
- // Invalid Bitmap format.%0
- //
- #define NS_E_WMP_BMP_INVALID_FORMAT _HRESULT_TYPEDEF_(0xC00D1032L)
- //
- // MessageId: NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL
- //
- // MessageText:
- //
- // JPEG Arithmetic coding not supported.%0
- //
- #define NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL _HRESULT_TYPEDEF_(0xC00D1033L)
- //
- // MessageId: NS_E_WMP_JPG_INVALID_FORMAT
- //
- // MessageText:
- //
- // Invalid JPEG format.%0
- //
- #define NS_E_WMP_JPG_INVALID_FORMAT _HRESULT_TYPEDEF_(0xC00D1034L)
- //
- // MessageId: NS_E_WMP_JPG_BAD_DCTSIZE
- //
- // MessageText:
- //
- // Invalid JPEG format.%0
- //
- #define NS_E_WMP_JPG_BAD_DCTSIZE _HRESULT_TYPEDEF_(0xC00D1035L)
- //
- // MessageId: NS_E_WMP_JPG_BAD_VERSION_NUMBER
- //
- // MessageText:
- //
- // Internal version error. Unexpected JPEG library version.%0
- //
- #define NS_E_WMP_JPG_BAD_VERSION_NUMBER _HRESULT_TYPEDEF_(0xC00D1036L)
- //
- // MessageId: NS_E_WMP_JPG_BAD_PRECISION
- //
- // MessageText:
- //
- // Internal JPEG Library error. Unsupported JPEG data precision.%0
- //
- #define NS_E_WMP_JPG_BAD_PRECISION _HRESULT_TYPEDEF_(0xC00D1037L)
- //
- // MessageId: NS_E_WMP_JPG_CCIR601_NOTIMPL
- //
- // MessageText:
- //
- // JPEG CCIR601 not supported.%0
- //
- #define NS_E_WMP_JPG_CCIR601_NOTIMPL _HRESULT_TYPEDEF_(0xC00D1038L)
- //
- // MessageId: NS_E_WMP_JPG_NO_IMAGE_IN_FILE
- //
- // MessageText:
- //
- // No image found in JPEG file.%0
- //
- #define NS_E_WMP_JPG_NO_IMAGE_IN_FILE _HRESULT_TYPEDEF_(0xC00D1039L)
- //
- // MessageId: NS_E_WMP_JPG_READ_ERROR
- //
- // MessageText:
- //
- // Could not read JPEG file.%0
- //
- #define NS_E_WMP_JPG_READ_ERROR _HRESULT_TYPEDEF_(0xC00D103AL)
- //
- // MessageId: NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL
- //
- // MessageText:
- //
- // JPEG Fractional sampling not supported.%0
- //
- #define NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL _HRESULT_TYPEDEF_(0xC00D103BL)
- //
- // MessageId: NS_E_WMP_JPG_IMAGE_TOO_BIG
- //
- // MessageText:
- //
- // JPEG image too large. Maximum image size supported is 65500 X 65500.%0
- //
- #define NS_E_WMP_JPG_IMAGE_TOO_BIG _HRESULT_TYPEDEF_(0xC00D103CL)
- //
- // MessageId: NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE
- //
- // MessageText:
- //
- // Unexpected end of file reached in JPEG file.%0
- //
- #define NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE _HRESULT_TYPEDEF_(0xC00D103DL)
- //
- // MessageId: NS_E_WMP_JPG_SOF_UNSUPPORTED
- //
- // MessageText:
- //
- // Unsupported JPEG SOF marker found.%0
- //
- #define NS_E_WMP_JPG_SOF_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D103EL)
- //
- // MessageId: NS_E_WMP_JPG_UNKNOWN_MARKER
- //
- // MessageText:
- //
- // Unknown JPEG marker found.%0
- //
- #define NS_E_WMP_JPG_UNKNOWN_MARKER _HRESULT_TYPEDEF_(0xC00D103FL)
- //
- // MessageId: NS_S_WMP_LOADED_GIF_IMAGE
- //
- // MessageText:
- //
- // Successfully loaded a GIF file.%0
- //
- #define NS_S_WMP_LOADED_GIF_IMAGE _HRESULT_TYPEDEF_(0x000D1040L)
- //
- // MessageId: NS_S_WMP_LOADED_PNG_IMAGE
- //
- // MessageText:
- //
- // Successfully loaded a PNG file.%0
- //
- #define NS_S_WMP_LOADED_PNG_IMAGE _HRESULT_TYPEDEF_(0x000D1041L)
- //
- // MessageId: NS_S_WMP_LOADED_BMP_IMAGE
- //
- // MessageText:
- //
- // Successfully loaded a BMP file.%0
- //
- #define NS_S_WMP_LOADED_BMP_IMAGE _HRESULT_TYPEDEF_(0x000D1042L)
- //
- // MessageId: NS_S_WMP_LOADED_JPG_IMAGE
- //
- // MessageText:
- //
- // Successfully loaded a JPG file.%0
- //
- #define NS_S_WMP_LOADED_JPG_IMAGE _HRESULT_TYPEDEF_(0x000D1043L)
- //
- // WMP WM Runtime Error codes
- //
- //
- // MessageId: NS_E_WMG_RATEUNAVAILABLE
- //
- // MessageText:
- //
- // The requested playback rate is unavailable on this content.%0
- //
- #define NS_E_WMG_RATEUNAVAILABLE _HRESULT_TYPEDEF_(0xC00D104AL)
- //
- // MessageId: NS_E_WMG_PLUGINUNAVAILABLE
- //
- // MessageText:
- //
- // The rendering or digital signal processing plugin could not be instantiated.%0
- //
- #define NS_E_WMG_PLUGINUNAVAILABLE _HRESULT_TYPEDEF_(0xC00D104BL)
- //
- // MessageId: NS_E_WMG_CANNOTQUEUE
- //
- // MessageText:
- //
- // The file cannot be queued for seamless playback.%0
- //
- #define NS_E_WMG_CANNOTQUEUE _HRESULT_TYPEDEF_(0xC00D104CL)
- //
- // MessageId: NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED
- //
- // MessageText:
- //
- // Windows Media Player cannot acquire the license for a file that is being prerolled.%0
- //
- #define NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED _HRESULT_TYPEDEF_(0xC00D104DL)
- //
- // MessageId: NS_E_WMG_UNEXPECTEDPREROLLSTATUS
- //
- // MessageText:
- //
- // Windows Media Player received an unexpected message while attempting to preroll a file.%0
- //
- #define NS_E_WMG_UNEXPECTEDPREROLLSTATUS _HRESULT_TYPEDEF_(0xC00D104EL)
- //
- // MessageId: NS_E_WMG_INVALIDSTATE
- //
- // MessageText:
- //
- // Operation attempted in an invalid graph state.%0
- //
- #define NS_E_WMG_INVALIDSTATE _HRESULT_TYPEDEF_(0xC00D1054L)
- //
- // MessageId: NS_E_WMG_SINKALREADYEXISTS
- //
- // MessageText:
- //
- // A renderer cannot be inserted in a stream while one already exists.%0
- //
- #define NS_E_WMG_SINKALREADYEXISTS _HRESULT_TYPEDEF_(0xC00D1055L)
- //
- // MessageId: NS_E_WMG_NOSDKINTERFACE
- //
- // MessageText:
- //
- // A necessary WM SDK interface to complete the operation doesn't exist at this time.%0
- //
- #define NS_E_WMG_NOSDKINTERFACE _HRESULT_TYPEDEF_(0xC00D1056L)
- //
- // MessageId: NS_E_WMG_NOTALLOUTPUTSRENDERED
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMG_NOTALLOUTPUTSRENDERED _HRESULT_TYPEDEF_(0xC00D1057L)
- //
- // MessageId: NS_E_WMG_FILETRANSFERNOTALLOWED
- //
- // MessageText:
- //
- // File transfer streams are not allowed in the stand alone player.%0
- //
- #define NS_E_WMG_FILETRANSFERNOTALLOWED _HRESULT_TYPEDEF_(0xC00D1058L)
- //
- // MessageId: NS_E_WMR_UNSUPPORTEDSTREAM
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file. The Player does not support the format you are trying to play.%0
- //
- #define NS_E_WMR_UNSUPPORTEDSTREAM _HRESULT_TYPEDEF_(0xC00D1059L)
- //
- // MessageId: NS_E_WMR_PINNOTFOUND
- //
- // MessageText:
- //
- // An operation was attempted on a pin that doesn't exist in the DirectShow filter graph.%0
- //
- #define NS_E_WMR_PINNOTFOUND _HRESULT_TYPEDEF_(0xC00D105AL)
- //
- // MessageId: NS_E_WMR_WAITINGONFORMATSWITCH
- //
- // MessageText:
- //
- // Specified operation cannot be completed while waiting for a media format change from the SDK.%0
- //
- #define NS_E_WMR_WAITINGONFORMATSWITCH _HRESULT_TYPEDEF_(0xC00D105BL)
- //
- // MessageId: NS_E_WMR_NOSOURCEFILTER
- //
- // MessageText:
- //
- // Specified operation cannot be completed because the source filter does not exist.%0
- //
- #define NS_E_WMR_NOSOURCEFILTER _HRESULT_TYPEDEF_(0xC00D105CL)
- //
- // MessageId: NS_E_WMR_PINTYPENOMATCH
- //
- // MessageText:
- //
- // The specified type does not match this pin.%0
- //
- #define NS_E_WMR_PINTYPENOMATCH _HRESULT_TYPEDEF_(0xC00D105DL)
- //
- // MessageId: NS_E_WMR_NOCALLBACKAVAILABLE
- //
- // MessageText:
- //
- // The WMR Source Filter does not have a callback available.%0
- //
- #define NS_E_WMR_NOCALLBACKAVAILABLE _HRESULT_TYPEDEF_(0xC00D105EL)
- //
- // MessageId: NS_S_WMR_ALREADYRENDERED
- //
- // MessageText:
- //
- // The specified stream has already been rendered.%0
- //
- #define NS_S_WMR_ALREADYRENDERED _HRESULT_TYPEDEF_(0x000D105FL)
- //
- // MessageId: NS_S_WMR_PINTYPEPARTIALMATCH
- //
- // MessageText:
- //
- // The specified type partially matches this pin type.%0
- //
- #define NS_S_WMR_PINTYPEPARTIALMATCH _HRESULT_TYPEDEF_(0x000D1060L)
- //
- // MessageId: NS_S_WMR_PINTYPEFULLMATCH
- //
- // MessageText:
- //
- // The specified type fully matches this pin type.%0
- //
- #define NS_S_WMR_PINTYPEFULLMATCH _HRESULT_TYPEDEF_(0x000D1061L)
- //
- // MessageId: NS_E_WMR_SAMPLEPROPERTYNOTSET
- //
- // MessageText:
- //
- // The specified property has not been set on this sample.%0
- //
- #define NS_E_WMR_SAMPLEPROPERTYNOTSET _HRESULT_TYPEDEF_(0xC00D1062L)
- //
- // MessageId: NS_E_WMR_CANNOT_RENDER_BINARY_STREAM
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMR_CANNOT_RENDER_BINARY_STREAM _HRESULT_TYPEDEF_(0xC00D1063L)
- //
- // MessageId: NS_E_WMG_LICENSE_TAMPERED
- //
- // MessageText:
- //
- // The file cannot be played, the content has been tampered.%0
- //
- #define NS_E_WMG_LICENSE_TAMPERED _HRESULT_TYPEDEF_(0xC00D1064L)
- //
- // MessageId: NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM
- //
- // MessageText:
- //
- // The content you are trying to play is protected content and the player will not render binary streams from protected content.%0
- //
- #define NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM _HRESULT_TYPEDEF_(0xC00D1065L)
- //
- // WMP Playlist Error codes
- //
- //
- // MessageId: NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT
- //
- // MessageText:
- //
- // The format of this file was not recognized as a valid playlist format.%0
- //
- #define NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT _HRESULT_TYPEDEF_(0xC00D1068L)
- //
- // MessageId: NS_E_ASX_INVALIDFORMAT
- //
- // MessageText:
- //
- // This file was believed to be an ASX playlist, but the format was not recognized.%0
- //
- #define NS_E_ASX_INVALIDFORMAT _HRESULT_TYPEDEF_(0xC00D1069L)
- //
- // MessageId: NS_E_ASX_INVALIDVERSION
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_ASX_INVALIDVERSION _HRESULT_TYPEDEF_(0xC00D106AL)
- //
- // MessageId: NS_E_ASX_INVALID_REPEAT_BLOCK
- //
- // MessageText:
- //
- // Format of a REPEAT loop within the current playlist file is invalid.%0
- //
- #define NS_E_ASX_INVALID_REPEAT_BLOCK _HRESULT_TYPEDEF_(0xC00D106BL)
- //
- // MessageId: NS_E_ASX_NOTHING_TO_WRITE
- //
- // MessageText:
- //
- // Windows Media Player cannot export the playlist because it is empty.%0
- //
- #define NS_E_ASX_NOTHING_TO_WRITE _HRESULT_TYPEDEF_(0xC00D106CL)
- //
- // MessageId: NS_E_URLLIST_INVALIDFORMAT
- //
- // MessageText:
- //
- // Windows Media Player does not recognize this file as a supported playlist.%0
- //
- #define NS_E_URLLIST_INVALIDFORMAT _HRESULT_TYPEDEF_(0xC00D106DL)
- //
- // MessageId: NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST
- //
- // MessageText:
- //
- // The specified attribute does not exist.%0
- //
- #define NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST _HRESULT_TYPEDEF_(0xC00D106EL)
- //
- // MessageId: NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS
- //
- // MessageText:
- //
- // The specified attribute already exists.%0
- //
- #define NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS _HRESULT_TYPEDEF_(0xC00D106FL)
- //
- // MessageId: NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE
- //
- // MessageText:
- //
- // Can not retrieve the specified attribute.%0
- //
- #define NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE _HRESULT_TYPEDEF_(0xC00D1070L)
- //
- // MessageId: NS_E_WMX_ITEM_DOES_NOT_EXIST
- //
- // MessageText:
- //
- // The specified item does not exist in the current playlist.%0
- //
- #define NS_E_WMX_ITEM_DOES_NOT_EXIST _HRESULT_TYPEDEF_(0xC00D1071L)
- //
- // MessageId: NS_E_WMX_ITEM_TYPE_ILLEGAL
- //
- // MessageText:
- //
- // Items of the specified type can not be created within the current playlist.%0
- //
- #define NS_E_WMX_ITEM_TYPE_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1072L)
- //
- // MessageId: NS_E_WMX_ITEM_UNSETTABLE
- //
- // MessageText:
- //
- // The specified item can not be set in the current playlist.%0
- //
- #define NS_E_WMX_ITEM_UNSETTABLE _HRESULT_TYPEDEF_(0xC00D1073L)
- //
- // MessageId: NS_E_WMX_PLAYLIST_EMPTY
- //
- // MessageText:
- //
- // The specified playlist is empty.%0
- //
- #define NS_E_WMX_PLAYLIST_EMPTY _HRESULT_TYPEDEF_(0xC00D1074L)
- //
- // MessageId: NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED
- //
- // MessageText:
- //
- // Playlist load error: The specified autoplaylist contains a filter type which is either invalid or is not installed on this computer%0
- //
- #define NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED _HRESULT_TYPEDEF_(0xC00D1075L)
- //
- // MessageId: NS_E_WMX_INVALID_FORMAT_OVER_NESTING
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file because the associated Windows Media metafile playlist is not valid.%0
- //
- #define NS_E_WMX_INVALID_FORMAT_OVER_NESTING _HRESULT_TYPEDEF_(0xC00D1076L)
- //
- // WMP Core Error codes
- //
- //
- // MessageId: NS_E_WMPCORE_NOSOURCEURLSTRING
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPCORE_NOSOURCEURLSTRING _HRESULT_TYPEDEF_(0xC00D107CL)
- //
- // MessageId: NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT
- //
- // MessageText:
- //
- // Failed to create the Global Interface Table.%0
- //
- #define NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT _HRESULT_TYPEDEF_(0xC00D107DL)
- //
- // MessageId: NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE
- //
- // MessageText:
- //
- // Failed to get the marshaled graph event handler interface.%0
- //
- #define NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE _HRESULT_TYPEDEF_(0xC00D107EL)
- //
- // MessageId: NS_E_WMPCORE_BUFFERTOOSMALL
- //
- // MessageText:
- //
- // Buffer is too small for copying media type.%0
- //
- #define NS_E_WMPCORE_BUFFERTOOSMALL _HRESULT_TYPEDEF_(0xC00D107FL)
- //
- // MessageId: NS_E_WMPCORE_UNAVAILABLE
- //
- // MessageText:
- //
- // Current state of the player does not allow the operation.%0
- //
- #define NS_E_WMPCORE_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D1080L)
- //
- // MessageId: NS_E_WMPCORE_INVALIDPLAYLISTMODE
- //
- // MessageText:
- //
- // Playlist manager does not understand the current play mode (shuffle, normal etc).%0
- //
- #define NS_E_WMPCORE_INVALIDPLAYLISTMODE _HRESULT_TYPEDEF_(0xC00D1081L)
- //
- // MessageId: NS_E_WMPCORE_ITEMNOTINPLAYLIST
- //
- // MessageText:
- //
- // The item is not in the playlist.%0
- //
- #define NS_E_WMPCORE_ITEMNOTINPLAYLIST _HRESULT_TYPEDEF_(0xC00D1086L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLISTEMPTY
- //
- // MessageText:
- //
- // There are no items in this playlist. Add items to the playlist, and try again.%0
- //
- #define NS_E_WMPCORE_PLAYLISTEMPTY _HRESULT_TYPEDEF_(0xC00D1087L)
- //
- // MessageId: NS_E_WMPCORE_NOBROWSER
- //
- // MessageText:
- //
- // The Web site cannot be accessed. A Web browser is not detected on your computer.%0
- //
- #define NS_E_WMPCORE_NOBROWSER _HRESULT_TYPEDEF_(0xC00D1088L)
- //
- // MessageId: NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL _HRESULT_TYPEDEF_(0xC00D1089L)
- //
- // MessageId: NS_E_WMPCORE_GRAPH_NOT_IN_LIST
- //
- // MessageText:
- //
- // Graph with the specified URL was not found in the prerolled graph list.%0
- //
- #define NS_E_WMPCORE_GRAPH_NOT_IN_LIST _HRESULT_TYPEDEF_(0xC00D108AL)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA
- //
- // MessageText:
- //
- // There is only one item in the playlist.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA _HRESULT_TYPEDEF_(0xC00D108BL)
- //
- // MessageId: NS_E_WMPCORE_ERRORSINKNOTREGISTERED
- //
- // MessageText:
- //
- // An error sink was never registered for the calling object.%0
- //
- #define NS_E_WMPCORE_ERRORSINKNOTREGISTERED _HRESULT_TYPEDEF_(0xC00D108CL)
- //
- // MessageId: NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE
- //
- // MessageText:
- //
- // The error manager is not available to respond to errors.%0
- //
- #define NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE _HRESULT_TYPEDEF_(0xC00D108DL)
- //
- // MessageId: NS_E_WMPCORE_WEBHELPFAILED
- //
- // MessageText:
- //
- // Failed launching WebHelp URL.%0
- //
- #define NS_E_WMPCORE_WEBHELPFAILED _HRESULT_TYPEDEF_(0xC00D108EL)
- //
- // MessageId: NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED
- //
- // MessageText:
- //
- // Could not resume playing next item in playlist.%0
- //
- #define NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED _HRESULT_TYPEDEF_(0xC00D108FL)
- //
- // MessageId: NS_E_WMPCORE_NO_REF_IN_ENTRY
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file because the associated Windows Media metafile playlist is not valid.%0
- //
- #define NS_E_WMPCORE_NO_REF_IN_ENTRY _HRESULT_TYPEDEF_(0xC00D1090L)
- //
- // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY
- //
- // MessageText:
- //
- // An empty string for playlist attribute name was found.%0
- //
- #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY _HRESULT_TYPEDEF_(0xC00D1091L)
- //
- // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL
- //
- // MessageText:
- //
- // An invalid playlist attribute name was found.%0
- //
- #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1092L)
- //
- // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY
- //
- // MessageText:
- //
- // An empty string for a playlist attribute value was found.%0
- //
- #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY _HRESULT_TYPEDEF_(0xC00D1093L)
- //
- // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL
- //
- // MessageText:
- //
- // An illegal value for a playlist attribute was found.%0
- //
- #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1094L)
- //
- // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY
- //
- // MessageText:
- //
- // An empty string for a playlist item attribute name was found.%0
- //
- #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY _HRESULT_TYPEDEF_(0xC00D1095L)
- //
- // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL
- //
- // MessageText:
- //
- // An illegal value for a playlist item attribute name was found.%0
- //
- #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1096L)
- //
- // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY
- //
- // MessageText:
- //
- // An illegal value for a playlist item attribute was found.%0
- //
- #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY _HRESULT_TYPEDEF_(0xC00D1097L)
- //
- // MessageId: NS_E_WMPCORE_LIST_ENTRY_NO_REF
- //
- // MessageText:
- //
- // No entries found in the playlist file.%0
- //
- #define NS_E_WMPCORE_LIST_ENTRY_NO_REF _HRESULT_TYPEDEF_(0xC00D1098L)
- //
- // MessageId: NS_E_WMPCORE_MISNAMED_FILE
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPCORE_MISNAMED_FILE _HRESULT_TYPEDEF_(0xC00D1099L)
- //
- // MessageId: NS_E_WMPCORE_CODEC_NOT_TRUSTED
- //
- // MessageText:
- //
- // The codec downloaded for this media does not appear to be properly signed. Installation is not possible.%0
- //
- #define NS_E_WMPCORE_CODEC_NOT_TRUSTED _HRESULT_TYPEDEF_(0xC00D109AL)
- //
- // MessageId: NS_E_WMPCORE_CODEC_NOT_FOUND
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file. One or more codecs required to play the file could not be found.%0
- //
- #define NS_E_WMPCORE_CODEC_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D109BL)
- //
- // MessageId: NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D109CL)
- //
- // MessageId: NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST
- //
- // MessageText:
- //
- // Failed to download the playlist file.%0
- //
- #define NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST _HRESULT_TYPEDEF_(0xC00D109DL)
- //
- // MessageId: NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST
- //
- // MessageText:
- //
- // Failed to build the playlist.%0
- //
- #define NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST _HRESULT_TYPEDEF_(0xC00D109EL)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE
- //
- // MessageText:
- //
- // Playlist has no alternates to switch into.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE _HRESULT_TYPEDEF_(0xC00D109FL)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED
- //
- // MessageText:
- //
- // No more playlist alternates available to switch to.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED _HRESULT_TYPEDEF_(0xC00D10A0L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND
- //
- // MessageText:
- //
- // Could not find the name of the alternate playlist to switch into.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10A1L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED
- //
- // MessageText:
- //
- // Failed to switch to an alternate for this media.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED _HRESULT_TYPEDEF_(0xC00D10A2L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED
- //
- // MessageText:
- //
- // Failed to initialize an alternate for the media.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED _HRESULT_TYPEDEF_(0xC00D10A3L)
- //
- // MessageId: NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY
- //
- // MessageText:
- //
- // No URL specified for the roll over Refs in the playlist file.%0
- //
- #define NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY _HRESULT_TYPEDEF_(0xC00D10A4L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME
- //
- // MessageText:
- //
- // Encountered a playlist with no name.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME _HRESULT_TYPEDEF_(0xC00D10A5L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT
- //
- // MessageText:
- //
- // A required attribute in the event block of the playlist was not found.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT _HRESULT_TYPEDEF_(0xC00D10A6L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY
- //
- // MessageText:
- //
- // No items were found in the event block of the playlist.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY _HRESULT_TYPEDEF_(0xC00D10A7L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_STACK_EMPTY
- //
- // MessageText:
- //
- // No playlist was found while returning from a nested playlist.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_STACK_EMPTY _HRESULT_TYPEDEF_(0xC00D10A8L)
- //
- // MessageId: NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE
- //
- // MessageText:
- //
- // The media item is not active currently.%0
- //
- #define NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE _HRESULT_TYPEDEF_(0xC00D10A9L)
- //
- // MessageId: NS_E_WMPCORE_USER_CANCEL
- //
- // MessageText:
- //
- // Open was aborted by user.%0
- //
- #define NS_E_WMPCORE_USER_CANCEL _HRESULT_TYPEDEF_(0xC00D10ABL)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY
- //
- // MessageText:
- //
- // No items were found inside the playlist repeat block.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY _HRESULT_TYPEDEF_(0xC00D10ACL)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE
- //
- // MessageText:
- //
- // Media object corresponding to start of a playlist repeat block was not found.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE _HRESULT_TYPEDEF_(0xC00D10ADL)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE
- //
- // MessageText:
- //
- // Media object corresponding to the end of a playlist repeat block was not found.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE _HRESULT_TYPEDEF_(0xC00D10AEL)
- //
- // MessageId: NS_E_WMPCORE_INVALID_PLAYLIST_URL
- //
- // MessageText:
- //
- // Playlist URL supplied to the playlist manager is invalid.%0
- //
- #define NS_E_WMPCORE_INVALID_PLAYLIST_URL _HRESULT_TYPEDEF_(0xC00D10AFL)
- //
- // MessageId: NS_E_WMPCORE_MISMATCHED_RUNTIME
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file because it is corrupted.%0
- //
- #define NS_E_WMPCORE_MISMATCHED_RUNTIME _HRESULT_TYPEDEF_(0xC00D10B0L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS
- //
- // MessageText:
- //
- // Windows Media Player cannot import the playlist to Media Library because the playlist is empty.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS _HRESULT_TYPEDEF_(0xC00D10B1L)
- //
- // MessageId: NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION
- //
- // MessageText:
- //
- // An error has occurred that could prevent the changing of the video contrast on this media.%0
- //
- #define NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION _HRESULT_TYPEDEF_(0xC00D10B2L)
- //
- // MessageId: NS_E_WMPCORE_MEDIA_UNAVAILABLE
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPCORE_MEDIA_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D10B3L)
- //
- // MessageId: NS_E_WMPCORE_WMX_ENTRYREF_NO_REF
- //
- // MessageText:
- //
- // The playlist contains an ENTRYREF for which no href was parsed. Check the syntax of playlist file.%0
- //
- #define NS_E_WMPCORE_WMX_ENTRYREF_NO_REF _HRESULT_TYPEDEF_(0xC00D10B4L)
- //
- // MessageId: NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST _HRESULT_TYPEDEF_(0xC00D10B5L)
- //
- // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS
- //
- // MessageText:
- //
- // Windows Media Player cannot play some or all of the playlist items.%0
- //
- #define NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS _HRESULT_TYPEDEF_(0xC00D10B6L)
- //
- // MessageId: NS_E_WMPCORE_BUSY
- //
- // MessageText:
- //
- // Windows Media Player cannot play the file at this time. Try again later.%0
- //
- #define NS_E_WMPCORE_BUSY _HRESULT_TYPEDEF_(0xC00D10B7L)
- //
- // MessageId: NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE
- //
- // MessageText:
- //
- // There is no child playlist available for this media item at this time.%0
- //
- #define NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D10B8L)
- //
- // MessageId: NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST
- //
- // MessageText:
- //
- // There is no child playlist for this media item.%0
- //
- #define NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST _HRESULT_TYPEDEF_(0xC00D10B9L)
- //
- // MessageId: NS_E_WMPCORE_FILE_NOT_FOUND
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPCORE_FILE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10BAL)
- //
- // MessageId: NS_E_WMPCORE_TEMP_FILE_NOT_FOUND
- //
- // MessageText:
- //
- // The temporary file was not found.%0
- //
- #define NS_E_WMPCORE_TEMP_FILE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10BBL)
- //
- // MessageId: NS_E_WMDM_REVOKED
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMDM_REVOKED _HRESULT_TYPEDEF_(0xC00D10BCL)
- //
- // MessageId: NS_E_DDRAW_GENERIC
- //
- // MessageText:
- //
- // Windows Media Player cannot play the video stream because of a problem with your video card.%0
- //
- #define NS_E_DDRAW_GENERIC _HRESULT_TYPEDEF_(0xC00D10BDL)
- //
- // MessageId: NS_E_DISPLAY_MODE_CHANGE_FAILED
- //
- // MessageText:
- //
- // Windows Media Player failed to change the screen mode for fullscreen video playback.%0
- //
- #define NS_E_DISPLAY_MODE_CHANGE_FAILED _HRESULT_TYPEDEF_(0xC00D10BEL)
- //
- // MessageId: NS_E_PLAYLIST_CONTAINS_ERRORS
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_PLAYLIST_CONTAINS_ERRORS _HRESULT_TYPEDEF_(0xC00D10BFL)
- //
- // MessageId: NS_E_CHANGING_PROXY_NAME
- //
- // MessageText:
- //
- // Can't change proxy name if the proxy setting is not set to custom.%0
- //
- #define NS_E_CHANGING_PROXY_NAME _HRESULT_TYPEDEF_(0xC00D10C0L)
- //
- // MessageId: NS_E_CHANGING_PROXY_PORT
- //
- // MessageText:
- //
- // Can't change proxy port if the proxy setting is not set to custom.%0
- //
- #define NS_E_CHANGING_PROXY_PORT _HRESULT_TYPEDEF_(0xC00D10C1L)
- //
- // MessageId: NS_E_CHANGING_PROXY_EXCEPTIONLIST
- //
- // MessageText:
- //
- // Can't change proxy exception list if the proxy setting is not set to custom.%0
- //
- #define NS_E_CHANGING_PROXY_EXCEPTIONLIST _HRESULT_TYPEDEF_(0xC00D10C2L)
- //
- // MessageId: NS_E_CHANGING_PROXYBYPASS
- //
- // MessageText:
- //
- // Can't change proxy bypass flag if the proxy setting is not set to custom.%0
- //
- #define NS_E_CHANGING_PROXYBYPASS _HRESULT_TYPEDEF_(0xC00D10C3L)
- //
- // MessageId: NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND
- //
- // MessageText:
- //
- // Can't find specified protocol.%0
- //
- #define NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10C4L)
- //
- // MessageId: NS_E_GRAPH_NOAUDIOLANGUAGE
- //
- // MessageText:
- //
- // Can't change language settings. Either the graph has no audio, or the audio only supports one language.%0
- //
- #define NS_E_GRAPH_NOAUDIOLANGUAGE _HRESULT_TYPEDEF_(0xC00D10C5L)
- //
- // MessageId: NS_E_GRAPH_NOAUDIOLANGUAGESELECTED
- //
- // MessageText:
- //
- // The graph has no audio language selected.%0
- //
- #define NS_E_GRAPH_NOAUDIOLANGUAGESELECTED _HRESULT_TYPEDEF_(0xC00D10C6L)
- //
- // MessageId: NS_E_CORECD_NOTAMEDIACD
- //
- // MessageText:
- //
- // This is not a media CD.%0
- //
- #define NS_E_CORECD_NOTAMEDIACD _HRESULT_TYPEDEF_(0xC00D10C7L)
- //
- // MessageId: NS_E_WMPCORE_MEDIA_URL_TOO_LONG
- //
- // MessageText:
- //
- // Windows Media Player cannot play this file because the URL is too long.%0
- //
- #define NS_E_WMPCORE_MEDIA_URL_TOO_LONG _HRESULT_TYPEDEF_(0xC00D10C8L)
- //
- // MessageId: NS_E_WMPFLASH_CANT_FIND_COM_SERVER
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPFLASH_CANT_FIND_COM_SERVER _HRESULT_TYPEDEF_(0xC00D10C9L)
- //
- // MessageId: NS_E_WMPFLASH_INCOMPATIBLEVERSION
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPFLASH_INCOMPATIBLEVERSION _HRESULT_TYPEDEF_(0xC00D10CAL)
- //
- // MessageId: NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS _HRESULT_TYPEDEF_(0xC00D10CBL)
- //
- // MessageId: NS_E_NEED_CORE_REFERENCE
- //
- // MessageText:
- //
- // The use of this method requires an existing reference to the Player object.%0
- //
- #define NS_E_NEED_CORE_REFERENCE _HRESULT_TYPEDEF_(0xC00D10CCL)
- //
- // MessageId: NS_E_MEDIACD_READ_ERROR
- //
- // MessageText:
- //
- // There was an error reading from the CD-ROM.%0
- //
- #define NS_E_MEDIACD_READ_ERROR _HRESULT_TYPEDEF_(0xC00D10CDL)
- //
- // MessageId: NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS
- //
- // MessageText:
- //
- // Internet Explorer is set to disallow ActiveX controls.%0
- //
- #define NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS _HRESULT_TYPEDEF_(0xC00D10CEL)
- //
- // MessageId: NS_E_FLASH_PLAYBACK_NOT_ALLOWED
- //
- // MessageText:
- //
- // Flash playback has been turned off in Windows Media Player.%0
- //
- #define NS_E_FLASH_PLAYBACK_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D10CFL)
- //
- // MessageId: NS_E_UNABLE_TO_CREATE_RIP_LOCATION
- //
- // MessageText:
- //
- // Media Player was unable to create a valid location to copy the CD track.%0
- //
- #define NS_E_UNABLE_TO_CREATE_RIP_LOCATION _HRESULT_TYPEDEF_(0xC00D10D0L)
- //
- // MessageId: NS_E_WMPCORE_SOME_CODECS_MISSING
- //
- // MessageText:
- //
- // One or more codecs required to open this content could not be found.%0
- //
- #define NS_E_WMPCORE_SOME_CODECS_MISSING _HRESULT_TYPEDEF_(0xC00D10D1L)
- //
- // WMP Core Success codes
- //
- //
- // MessageId: NS_S_WMPCORE_PLAYLISTCLEARABORT
- //
- // MessageText:
- //
- // Failed to clear playlist because it was aborted by user.%0
- //
- #define NS_S_WMPCORE_PLAYLISTCLEARABORT _HRESULT_TYPEDEF_(0x000D10FEL)
- //
- // MessageId: NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT
- //
- // MessageText:
- //
- // Failed to remove item in the playlist since it was aborted by user.%0
- //
- #define NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT _HRESULT_TYPEDEF_(0x000D10FFL)
- //
- // MessageId: NS_S_WMPCORE_PLAYLIST_CREATION_PENDING
- //
- // MessageText:
- //
- // Playlist is being generated asynchronously.%0
- //
- #define NS_S_WMPCORE_PLAYLIST_CREATION_PENDING _HRESULT_TYPEDEF_(0x000D1102L)
- //
- // MessageId: NS_S_WMPCORE_MEDIA_VALIDATION_PENDING
- //
- // MessageText:
- //
- // Validation of the media is pending...%0
- //
- #define NS_S_WMPCORE_MEDIA_VALIDATION_PENDING _HRESULT_TYPEDEF_(0x000D1103L)
- //
- // MessageId: NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED
- //
- // MessageText:
- //
- // Encountered more than one Repeat block during ASX processing.%0
- //
- #define NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED _HRESULT_TYPEDEF_(0x000D1104L)
- //
- // MessageId: NS_S_WMPCORE_COMMAND_NOT_AVAILABLE
- //
- // MessageText:
- //
- // Current state of WMP disallows calling this method or property.%0
- //
- #define NS_S_WMPCORE_COMMAND_NOT_AVAILABLE _HRESULT_TYPEDEF_(0x000D1105L)
- //
- // MessageId: NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED
- //
- // MessageText:
- //
- // Name for the playlist has been auto generated.%0
- //
- #define NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED _HRESULT_TYPEDEF_(0x000D1106L)
- //
- // MessageId: NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS
- //
- // MessageText:
- //
- // The imported playlist does not contain all items from the original.%0
- //
- #define NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS _HRESULT_TYPEDEF_(0x000D1107L)
- //
- // MessageId: NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA
- //
- // MessageText:
- //
- // The M3U playlist has been ignored because it only contains one item.%0
- //
- #define NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA _HRESULT_TYPEDEF_(0x000D1108L)
- //
- // MessageId: NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING
- //
- // MessageText:
- //
- // The open for the child playlist associated with this media is pending.%0
- //
- #define NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING _HRESULT_TYPEDEF_(0x000D1109L)
- //
- // MessageId: NS_S_WMPCORE_MORE_NODES_AVAIABLE
- //
- // MessageText:
- //
- // More nodes support the interface requested, but the array for returning them is full.%0
- //
- #define NS_S_WMPCORE_MORE_NODES_AVAIABLE _HRESULT_TYPEDEF_(0x000D110AL)
- //
- // WMP Internet Manager error codes
- //
- //
- // MessageId: NS_E_WMPIM_USEROFFLINE
- //
- // MessageText:
- //
- // Windows Media Player has detected that you are not connected to the Internet. Connect to the Internet, and then try again.%0
- //
- #define NS_E_WMPIM_USEROFFLINE _HRESULT_TYPEDEF_(0xC00D1126L)
- //
- // MessageId: NS_E_WMPIM_USERCANCELED
- //
- // MessageText:
- //
- // User cancelled attempt to connect to the Internet.%0
- //
- #define NS_E_WMPIM_USERCANCELED _HRESULT_TYPEDEF_(0xC00D1127L)
- //
- // MessageId: NS_E_WMPIM_DIALUPFAILED
- //
- // MessageText:
- //
- // Attempt to dial connection to the Internet failed.%0
- //
- #define NS_E_WMPIM_DIALUPFAILED _HRESULT_TYPEDEF_(0xC00D1128L)
- //
- // MessageId: NS_E_WINSOCK_ERROR_STRING
- //
- // MessageText:
- //
- // Windows Media Player has encountered an unknown network error.%0
- //
- #define NS_E_WINSOCK_ERROR_STRING _HRESULT_TYPEDEF_(0xC00D1129L)
- //
- // WMP Backup and restore error and success codes
- //
- //
- // MessageId: NS_E_WMPBR_NOLISTENER
- //
- // MessageText:
- //
- // No window is currently listening to Backup and Restore events.%0
- //
- #define NS_E_WMPBR_NOLISTENER _HRESULT_TYPEDEF_(0xC00D1130L)
- //
- // MessageId: NS_E_WMPBR_BACKUPCANCEL
- //
- // MessageText:
- //
- // Backup of your licenses has been cancelled. Please try again to ensure license backup.%0
- //
- #define NS_E_WMPBR_BACKUPCANCEL _HRESULT_TYPEDEF_(0xC00D1131L)
- //
- // MessageId: NS_E_WMPBR_RESTORECANCEL
- //
- // MessageText:
- //
- // The licenses were not restored because the restoration was cancelled.%0
- //
- #define NS_E_WMPBR_RESTORECANCEL _HRESULT_TYPEDEF_(0xC00D1132L)
- //
- // MessageId: NS_E_WMPBR_ERRORWITHURL
- //
- // MessageText:
- //
- // An error occurred during the backup or restore operation that requires a web page be displayed to the user.%0
- //
- #define NS_E_WMPBR_ERRORWITHURL _HRESULT_TYPEDEF_(0xC00D1133L)
- //
- // MessageId: NS_E_WMPBR_NAMECOLLISION
- //
- // MessageText:
- //
- // The licenses were not backed up because the backup was cancelled.%0
- //
- #define NS_E_WMPBR_NAMECOLLISION _HRESULT_TYPEDEF_(0xC00D1134L)
- //
- // MessageId: NS_S_WMPBR_SUCCESS
- //
- // MessageText:
- //
- // Backup or Restore successful!.%0
- //
- #define NS_S_WMPBR_SUCCESS _HRESULT_TYPEDEF_(0x000D1135L)
- //
- // MessageId: NS_S_WMPBR_PARTIALSUCCESS
- //
- // MessageText:
- //
- // Transfer complete with limitations.%0
- //
- #define NS_S_WMPBR_PARTIALSUCCESS _HRESULT_TYPEDEF_(0x000D1136L)
- //
- // MessageId: NS_E_WMPBR_DRIVE_INVALID
- //
- // MessageText:
- //
- // The location specified for restoring licenses is not valid. Choose another location, and then try again.%0
- //
- #define NS_E_WMPBR_DRIVE_INVALID _HRESULT_TYPEDEF_(0xC00D1137L)
- //
- // WMP Effects Success codes
- //
- //
- // MessageId: NS_S_WMPEFFECT_TRANSPARENT
- //
- // MessageText:
- //
- // Request to the effects control to change transparency status to transparent.%0
- //
- #define NS_S_WMPEFFECT_TRANSPARENT _HRESULT_TYPEDEF_(0x000D1144L)
- //
- // MessageId: NS_S_WMPEFFECT_OPAQUE
- //
- // MessageText:
- //
- // Request to the effects control to change transparency status to opaque.%0
- //
- #define NS_S_WMPEFFECT_OPAQUE _HRESULT_TYPEDEF_(0x000D1145L)
- //
- // WMP Application Success codes
- //
- //
- // MessageId: NS_S_OPERATION_PENDING
- //
- // MessageText:
- //
- // The requested application pane is performing an operation and will not be relased.%0
- //
- #define NS_S_OPERATION_PENDING _HRESULT_TYPEDEF_(0x000D114EL)
- //
- // WMP DVD Error Codes
- //
- //
- // MessageId: NS_E_DVD_NO_SUBPICTURE_STREAM
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_NO_SUBPICTURE_STREAM _HRESULT_TYPEDEF_(0xC00D1162L)
- //
- // MessageId: NS_E_DVD_COPY_PROTECT
- //
- // MessageText:
- //
- // Windows Media Player cannot play this DVD because a problem occurred with digital copyright protection.%0
- //
- #define NS_E_DVD_COPY_PROTECT _HRESULT_TYPEDEF_(0xC00D1163L)
- //
- // MessageId: NS_E_DVD_AUTHORING_PROBLEM
- //
- // MessageText:
- //
- // Windows Media Player cannot play this DVD because the disc is incompatible with the Player.%0
- //
- #define NS_E_DVD_AUTHORING_PROBLEM _HRESULT_TYPEDEF_(0xC00D1164L)
- //
- // MessageId: NS_E_DVD_INVALID_DISC_REGION
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_INVALID_DISC_REGION _HRESULT_TYPEDEF_(0xC00D1165L)
- //
- // MessageId: NS_E_DVD_COMPATIBLE_VIDEO_CARD
- //
- // MessageText:
- //
- // Windows Media Player cannot play this DVD because your video card does not support DVD playback.%0
- //
- #define NS_E_DVD_COMPATIBLE_VIDEO_CARD _HRESULT_TYPEDEF_(0xC00D1166L)
- //
- // MessageId: NS_E_DVD_MACROVISION
- //
- // MessageText:
- //
- // Windows Media Player cannot play this DVD because a problem occurred with copyright protection.%0
- //
- #define NS_E_DVD_MACROVISION _HRESULT_TYPEDEF_(0xC00D1167L)
- //
- // MessageId: NS_E_DVD_SYSTEM_DECODER_REGION
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_SYSTEM_DECODER_REGION _HRESULT_TYPEDEF_(0xC00D1168L)
- //
- // MessageId: NS_E_DVD_DISC_DECODER_REGION
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_DISC_DECODER_REGION _HRESULT_TYPEDEF_(0xC00D1169L)
- //
- // MessageId: NS_E_DVD_NO_VIDEO_STREAM
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_NO_VIDEO_STREAM _HRESULT_TYPEDEF_(0xC00D116AL)
- //
- // MessageId: NS_E_DVD_NO_AUDIO_STREAM
- //
- // MessageText:
- //
- // Windows Media Player cannot play DVD audio. Verify that your sound card is set up correctly, and then try again.%0
- //
- #define NS_E_DVD_NO_AUDIO_STREAM _HRESULT_TYPEDEF_(0xC00D116BL)
- //
- // MessageId: NS_E_DVD_GRAPH_BUILDING
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_GRAPH_BUILDING _HRESULT_TYPEDEF_(0xC00D116CL)
- //
- // MessageId: NS_E_DVD_NO_DECODER
- //
- // MessageText:
- //
- // Windows Media Player cannot play this DVD because a compatible DVD decoder is not installed on your computer.%0
- //
- #define NS_E_DVD_NO_DECODER _HRESULT_TYPEDEF_(0xC00D116DL)
- //
- // MessageId: NS_E_DVD_PARENTAL
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_PARENTAL _HRESULT_TYPEDEF_(0xC00D116EL)
- //
- // MessageId: NS_E_DVD_CANNOT_JUMP
- //
- // MessageText:
- //
- // Windows Media Player cannot skip to the requested location in the DVD at this time.%0
- //
- #define NS_E_DVD_CANNOT_JUMP _HRESULT_TYPEDEF_(0xC00D116FL)
- //
- // MessageId: NS_E_DVD_DEVICE_CONTENTION
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_DVD_DEVICE_CONTENTION _HRESULT_TYPEDEF_(0xC00D1170L)
- //
- // MessageId: NS_E_DVD_NO_VIDEO_MEMORY
- //
- // MessageText:
- //
- // Windows Media Player cannot play DVD video. Double-click Display in Control Panel to lower your screen resolution and color quality settings.%0
- //
- #define NS_E_DVD_NO_VIDEO_MEMORY _HRESULT_TYPEDEF_(0xC00D1171L)
- //
- // MessageId: NS_E_DVD_CANNOT_COPY_PROTECTED
- //
- // MessageText:
- //
- // Windows Media Player cannot copy this DVD because it is copy protected.%0
- //
- #define NS_E_DVD_CANNOT_COPY_PROTECTED _HRESULT_TYPEDEF_(0xC00D1172L)
- //
- // MessageId: NS_E_DVD_REQUIRED_PROPERTY_NOT_SET
- //
- // MessageText:
- //
- // One of more of the required properties has not been set.%0
- //
- #define NS_E_DVD_REQUIRED_PROPERTY_NOT_SET _HRESULT_TYPEDEF_(0xC00D1173L)
- //
- // MessageId: NS_E_DVD_INVALID_TITLE_CHAPTER
- //
- // MessageText:
- //
- // The specified title and/or chapter number does not exist on this DVD.%0
- //
- #define NS_E_DVD_INVALID_TITLE_CHAPTER _HRESULT_TYPEDEF_(0xC00D1174L)
- //
- // WMP PDA Error codes
- //
- //
- // MessageId: NS_E_NO_CD_BURNER
- //
- // MessageText:
- //
- // A CD recorder (burner) was not detected. Connect a CD recorder, and try copying again.%0
- //
- #define NS_E_NO_CD_BURNER _HRESULT_TYPEDEF_(0xC00D1176L)
- //
- // MessageId: NS_E_DEVICE_IS_NOT_READY
- //
- // MessageText:
- //
- // Windows Media Player does not detect any storage media in the selected device. Insert media into the device.%0
- //
- #define NS_E_DEVICE_IS_NOT_READY _HRESULT_TYPEDEF_(0xC00D1177L)
- //
- // MessageId: NS_E_PDA_UNSUPPORTED_FORMAT
- //
- // MessageText:
- //
- // Windows Media Player cannot play the specified file. Your portable device does not support the specified format.%0
- //
- #define NS_E_PDA_UNSUPPORTED_FORMAT _HRESULT_TYPEDEF_(0xC00D1178L)
- //
- // MessageId: NS_E_NO_PDA
- //
- // MessageText:
- //
- // Windows Media Player cannot detect a connected portable device. Connect your portable device, and try again.%0
- //
- #define NS_E_NO_PDA _HRESULT_TYPEDEF_(0xC00D1179L)
- //
- // MessageId: NS_E_PDA_UNSPECIFIED_ERROR
- //
- // MessageText:
- //
- // Windows Media Player has encountered an error on the portable device.%0
- //
- #define NS_E_PDA_UNSPECIFIED_ERROR _HRESULT_TYPEDEF_(0xC00D117AL)
- //
- // MessageId: NS_E_MEMSTORAGE_BAD_DATA
- //
- // MessageText:
- //
- // Windows Media Player encountered an internal error in accessing a memory-based storage during a CD burning task.%0
- //
- #define NS_E_MEMSTORAGE_BAD_DATA _HRESULT_TYPEDEF_(0xC00D117BL)
- //
- // MessageId: NS_E_PDA_FAIL_SELECT_DEVICE
- //
- // MessageText:
- //
- // Windows Media Player encountered an internal error when selecting a PDA or CD device.%0
- //
- #define NS_E_PDA_FAIL_SELECT_DEVICE _HRESULT_TYPEDEF_(0xC00D117CL)
- //
- // MessageId: NS_E_PDA_FAIL_READ_WAVE_FILE
- //
- // MessageText:
- //
- // Windows Media Player failed to open or read data from a wave file.%0
- //
- #define NS_E_PDA_FAIL_READ_WAVE_FILE _HRESULT_TYPEDEF_(0xC00D117DL)
- //
- // MessageId: NS_E_IMAPI_LOSSOFSTREAMING
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_IMAPI_LOSSOFSTREAMING _HRESULT_TYPEDEF_(0xC00D117EL)
- //
- // MessageId: NS_E_PDA_DEVICE_FULL
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_PDA_DEVICE_FULL _HRESULT_TYPEDEF_(0xC00D117FL)
- //
- // MessageId: NS_E_FAIL_LAUNCH_ROXIO_PLUGIN
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_FAIL_LAUNCH_ROXIO_PLUGIN _HRESULT_TYPEDEF_(0xC00D1180L)
- //
- // MessageId: NS_E_PDA_DEVICE_FULL_IN_SESSION
- //
- // MessageText:
- //
- // Windows Media Player failed to copy some files to device because the device is out of space.%0
- //
- #define NS_E_PDA_DEVICE_FULL_IN_SESSION _HRESULT_TYPEDEF_(0xC00D1181L)
- //
- // MessageId: NS_E_IMAPI_MEDIUM_INVALIDTYPE
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_IMAPI_MEDIUM_INVALIDTYPE _HRESULT_TYPEDEF_(0xC00D1182L)
- //
- // General Remapped Error codes in WMP
- //
- //
- // MessageId: NS_E_WMP_PROTOCOL_PROBLEM
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_PROTOCOL_PROBLEM _HRESULT_TYPEDEF_(0xC00D1194L)
- //
- // MessageId: NS_E_WMP_NO_DISK_SPACE
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_NO_DISK_SPACE _HRESULT_TYPEDEF_(0xC00D1195L)
- //
- // MessageId: NS_E_WMP_LOGON_FAILURE
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_LOGON_FAILURE _HRESULT_TYPEDEF_(0xC00D1196L)
- //
- // MessageId: NS_E_WMP_CANNOT_FIND_FILE
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_CANNOT_FIND_FILE _HRESULT_TYPEDEF_(0xC00D1197L)
- //
- // MessageId: NS_E_WMP_SERVER_INACCESSIBLE
- //
- // MessageText:
- //
- // Windows Media Player cannot connect to the server. The server name may be incorrect or the server is busy. Try again later.%0
- //
- #define NS_E_WMP_SERVER_INACCESSIBLE _HRESULT_TYPEDEF_(0xC00D1198L)
- //
- // MessageId: NS_E_WMP_UNSUPPORTED_FORMAT
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_UNSUPPORTED_FORMAT _HRESULT_TYPEDEF_(0xC00D1199L)
- //
- // MessageId: NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT
- //
- // MessageText:
- //
- // 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
- //
- #define NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT _HRESULT_TYPEDEF_(0xC00D119AL)
- //
- // MessageId: NS_E_WMP_PLAYLIST_EXISTS
- //
- // MessageText:
- //
- // Windows Media Player cannot create the playlist because the name already exists. Type a different playlist name.%0
- //
- #define NS_E_WMP_PLAYLIST_EXISTS _HRESULT_TYPEDEF_(0xC00D119BL)