dmerror.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:27k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /************************************************************************
  2. *                                                                       *
  3. *   dmerror.h -- Error code returned by DirectMusic API's               *
  4. *                                                                       *
  5. *   Copyright (c) 1998-1999 Microsoft Corporation
  6. *                                                                       *
  7. ************************************************************************/
  8. #ifndef _DMERROR_
  9. #define _DMERROR_
  10. #define FACILITY_DIRECTMUSIC      0x878       /* Shared with DirectSound */
  11. #define DMUS_ERRBASE              0x1000      /* Make error codes human readable in hex */
  12. #ifndef MAKE_HRESULT
  13. #define MAKE_HRESULT(sev,fac,code) 
  14.     ((HRESULT) (((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))) )
  15. #endif
  16.     
  17. #define MAKE_DMHRESULTSUCCESS(code)     MAKE_HRESULT(0, FACILITY_DIRECTMUSIC, (DMUS_ERRBASE + (code)))
  18. #define MAKE_DMHRESULTERROR(code)       MAKE_HRESULT(1, FACILITY_DIRECTMUSIC, (DMUS_ERRBASE + (code)))
  19. /* DMUS_S_PARTIALLOAD
  20.  *
  21.  * The object could only load partially. This can happen if some components are
  22.  * not registered properly, such as embedded tracks and tools. This can also happen
  23.  * if some content is missing. For example, if a segment uses a DLS collection that
  24.  * is not in the loader's current search directory.
  25.  */
  26. #define DMUS_S_PARTIALLOAD              MAKE_DMHRESULTSUCCESS(0x091)
  27. /* DMUS_S_PARTIALDOWNLOAD
  28.  *
  29.  * Return value from IDirectMusicBand::Download() which indicates that
  30.  * some of the instruments safely downloaded, but others failed. This usually
  31.  * occurs when some instruments are on PChannels not supported by the performance
  32.  * or port.
  33.  */
  34. #define DMUS_S_PARTIALDOWNLOAD          MAKE_DMHRESULTSUCCESS(0x092)
  35. /* DMUS_S_REQUEUE
  36.  *
  37.  * Return value from IDirectMusicTool::ProcessPMsg() which indicates to the
  38.  * performance that it should cue the PMsg again automatically.
  39.  */
  40. #define DMUS_S_REQUEUE                  MAKE_DMHRESULTSUCCESS(0x200)
  41. /* DMUS_S_FREE
  42.  *
  43.  * Return value from IDirectMusicTool::ProcessPMsg() which indicates to the
  44.  * performance that it should free the PMsg automatically.
  45.  */
  46. #define DMUS_S_FREE                     MAKE_DMHRESULTSUCCESS(0x201)
  47. /* DMUS_S_END
  48.  *
  49.  * Return value from IDirectMusicTrack::Play() which indicates to the
  50.  * segment that the track has no more data after mtEnd.
  51.  */
  52. #define DMUS_S_END                      MAKE_DMHRESULTSUCCESS(0x202)
  53. /* DMUS_S_STRING_TRUNCATED
  54.  *
  55.  * Returned string has been truncated to fit the buffer size.
  56.  */
  57. #define DMUS_S_STRING_TRUNCATED         MAKE_DMHRESULTSUCCESS(0x210)
  58. /* DMUS_S_LAST_TOOL
  59.  *
  60.  * Returned from IDirectMusicGraph::StampPMsg(), this indicates that the PMsg
  61.  * is already stamped with the last tool in the graph. The returned PMsg's
  62.  * tool pointer is now NULL.
  63.  */
  64. #define DMUS_S_LAST_TOOL                MAKE_DMHRESULTSUCCESS(0x211)
  65. /* DMUS_S_OVER_CHORD
  66.  *
  67.  * Returned from IDirectMusicPerformance::MusicToMIDI(), this indicates 
  68.  * that no note has been calculated because the music value has the note 
  69.  * at a position higher than the top note of the chord. This applies only
  70.  * to DMUS_PLAYMODE_NORMALCHORD play mode. This success code indicates
  71.  * that the caller should not do anything with the note. It is not meant
  72.  * to be played against this chord.
  73.  */
  74. #define DMUS_S_OVER_CHORD               MAKE_DMHRESULTSUCCESS(0x212)
  75. /* DMUS_S_UP_OCTAVE
  76.  *
  77.  * Returned from IDirectMusicPerformance::MIDIToMusic(),  and
  78.  * IDirectMusicPerformance::MusicToMIDI(), this indicates 
  79.  * that the note conversion generated a note value that is below 0, 
  80.  * so it has been bumped up one or more octaves to be in the proper
  81.  * MIDI range of 0 through 127. 
  82.  * Note that this is valid for MIDIToMusic() when using play modes
  83.  * DMUS_PLAYMODE_FIXEDTOCHORD and DMUS_PLAYMODE_FIXEDTOKEY, both of
  84.  * which store MIDI values in wMusicValue. With MusicToMIDI(), it is
  85.  * valid for all play modes.
  86.  * Ofcourse, DMUS_PLAYMODE_FIXED will never return this success code.
  87.  */
  88. #define DMUS_S_UP_OCTAVE                MAKE_DMHRESULTSUCCESS(0x213)
  89. /* DMUS_S_DOWN_OCTAVE
  90.  *
  91.  * Returned from IDirectMusicPerformance::MIDIToMusic(),  and
  92.  * IDirectMusicPerformance::MusicToMIDI(), this indicates 
  93.  * that the note conversion generated a note value that is above 127, 
  94.  * so it has been bumped down one or more octaves to be in the proper
  95.  * MIDI range of 0 through 127. 
  96.  * Note that this is valid for MIDIToMusic() when using play modes
  97.  * DMUS_PLAYMODE_FIXEDTOCHORD and DMUS_PLAYMODE_FIXEDTOKEY, both of
  98.  * which store MIDI values in wMusicValue. With MusicToMIDI(), it is
  99.  * valid for all play modes.
  100.  * Ofcourse, DMUS_PLAYMODE_FIXED will never return this success code.
  101.  */
  102. #define DMUS_S_DOWN_OCTAVE              MAKE_DMHRESULTSUCCESS(0x214)
  103. /* DMUS_S_NOBUFFERCONTROL
  104.  *
  105.  * Although the audio output from the port will be routed to the
  106.  * same device as the given DirectSound buffer, buffer controls
  107.  * such as pan and volume will not affect the output.
  108.  *
  109.  */
  110. #define DMUS_S_NOBUFFERCONTROL          MAKE_DMHRESULTSUCCESS(0x215)
  111. /* DMUS_S_GARBAGE_COLLECTED
  112.  *
  113.  * The requested operation was not performed because during CollectGarbage
  114.  * the loader determined that the object had been released.
  115.  */
  116. #define DMUS_S_GARBAGE_COLLECTED        MAKE_DMHRESULTSUCCESS(0x216)
  117. /* DMUS_E_DRIVER_FAILED
  118.  *
  119.  * An unexpected error was returned from a device driver, indicating
  120.  * possible failure of the driver or hardware.
  121.  */
  122. #define DMUS_E_DRIVER_FAILED            MAKE_DMHRESULTERROR(0x0101)
  123. /* DMUS_E_PORTS_OPEN
  124.  *
  125.  * The requested operation cannot be performed while there are 
  126.  * instantiated ports in any process in the system.
  127.  */
  128. #define DMUS_E_PORTS_OPEN               MAKE_DMHRESULTERROR(0x0102)
  129. /* DMUS_E_DEVICE_IN_USE
  130.  *
  131.  * The requested device is already in use (possibly by a non-DirectMusic
  132.  * client) and cannot be opened again.
  133.  */
  134. #define DMUS_E_DEVICE_IN_USE            MAKE_DMHRESULTERROR(0x0103)
  135. /* DMUS_E_INSUFFICIENTBUFFER
  136.  *
  137.  * Buffer is not large enough for requested operation.
  138.  */
  139. #define DMUS_E_INSUFFICIENTBUFFER       MAKE_DMHRESULTERROR(0x0104)
  140. /* DMUS_E_BUFFERNOTSET
  141.  *
  142.  * No buffer was prepared for the download data.
  143.  */
  144. #define DMUS_E_BUFFERNOTSET             MAKE_DMHRESULTERROR(0x0105)
  145. /* DMUS_E_BUFFERNOTAVAILABLE
  146.  *
  147.  * Download failed due to inability to access or create download buffer.
  148.  */
  149. #define DMUS_E_BUFFERNOTAVAILABLE       MAKE_DMHRESULTERROR(0x0106)
  150. /* DMUS_E_NOTADLSCOL
  151.  *
  152.  * Error parsing DLS collection. File is corrupt.
  153.  */
  154. #define DMUS_E_NOTADLSCOL               MAKE_DMHRESULTERROR(0x0108)
  155. /* DMUS_E_INVALIDOFFSET
  156.  *
  157.  * Wave chunks in DLS collection file are at incorrect offsets.
  158.  */
  159. #define DMUS_E_INVALIDOFFSET            MAKE_DMHRESULTERROR(0x0109)
  160. /* DMUS_E_ALREADY_LOADED
  161.  *
  162.  * Second attempt to load a DLS collection that is currently open. 
  163.  */
  164. #define DMUS_E_ALREADY_LOADED           MAKE_DMHRESULTERROR(0x0111)
  165. /* DMUS_E_INVALIDPOS
  166.  *
  167.  * Error reading wave data from DLS collection. Indicates bad file.
  168.  */
  169. #define DMUS_E_INVALIDPOS               MAKE_DMHRESULTERROR(0x0113)
  170. /* DMUS_E_INVALIDPATCH
  171.  *
  172.  * There is no instrument in the collection that matches patch number.
  173.  */
  174. #define DMUS_E_INVALIDPATCH             MAKE_DMHRESULTERROR(0x0114)
  175. /* DMUS_E_CANNOTSEEK
  176.  *
  177.  * The IStream* doesn't support Seek().
  178.  */
  179. #define DMUS_E_CANNOTSEEK               MAKE_DMHRESULTERROR(0x0115)
  180. /* DMUS_E_CANNOTWRITE
  181.  *
  182.  * The IStream* doesn't support Write().
  183.  */
  184. #define DMUS_E_CANNOTWRITE              MAKE_DMHRESULTERROR(0x0116)
  185. /* DMUS_E_CHUNKNOTFOUND
  186.  *
  187.  * The RIFF parser doesn't contain a required chunk while parsing file.
  188.  */
  189. #define DMUS_E_CHUNKNOTFOUND            MAKE_DMHRESULTERROR(0x0117)
  190. /* DMUS_E_INVALID_DOWNLOADID
  191.  *
  192.  * Invalid download id was used in the process of creating a download buffer.
  193.  */
  194. #define DMUS_E_INVALID_DOWNLOADID       MAKE_DMHRESULTERROR(0x0119)
  195. /* DMUS_E_NOT_DOWNLOADED_TO_PORT
  196.  *
  197.  * Tried to unload an object that was not downloaded or previously unloaded.
  198.  */
  199. #define DMUS_E_NOT_DOWNLOADED_TO_PORT   MAKE_DMHRESULTERROR(0x0120)
  200. /* DMUS_E_ALREADY_DOWNLOADED
  201.  *
  202.  * Buffer was already downloaded to synth.
  203.  */
  204. #define DMUS_E_ALREADY_DOWNLOADED       MAKE_DMHRESULTERROR(0x0121)
  205. /* DMUS_E_UNKNOWN_PROPERTY
  206.  *
  207.  * The specified property item was not recognized by the target object.
  208.  */
  209. #define DMUS_E_UNKNOWN_PROPERTY         MAKE_DMHRESULTERROR(0x0122)
  210. /* DMUS_E_SET_UNSUPPORTED
  211.  *
  212.  * The specified property item may not be set on the target object.
  213.  */
  214. #define DMUS_E_SET_UNSUPPORTED          MAKE_DMHRESULTERROR(0x0123)
  215. /* DMUS_E_GET_UNSUPPORTED
  216.  *
  217.  * The specified property item may not be retrieved from the target object.
  218.  */ 
  219. #define DMUS_E_GET_UNSUPPORTED          MAKE_DMHRESULTERROR(0x0124)
  220. /* DMUS_E_NOTMONO
  221.  *
  222.  * Wave chunk has more than one interleaved channel. DLS format requires MONO.
  223.  */
  224. #define DMUS_E_NOTMONO                  MAKE_DMHRESULTERROR(0x0125)
  225. /* DMUS_E_BADARTICULATION
  226.  *
  227.  * Invalid articulation chunk in DLS collection.
  228.  */
  229. #define DMUS_E_BADARTICULATION          MAKE_DMHRESULTERROR(0x0126)
  230. /* DMUS_E_BADINSTRUMENT
  231.  *
  232.  * Invalid instrument chunk in DLS collection.
  233.  */
  234. #define DMUS_E_BADINSTRUMENT            MAKE_DMHRESULTERROR(0x0127)
  235. /* DMUS_E_BADWAVELINK
  236.  *
  237.  * Wavelink chunk in DLS collection points to invalid wave.
  238.  */
  239. #define DMUS_E_BADWAVELINK              MAKE_DMHRESULTERROR(0x0128)
  240. /* DMUS_E_NOARTICULATION
  241.  *
  242.  * Articulation missing from instrument in DLS collection.
  243.  */
  244. #define DMUS_E_NOARTICULATION           MAKE_DMHRESULTERROR(0x0129)
  245. /* DMUS_E_NOTPCM
  246.  *
  247.  * Downoaded DLS wave is not in PCM format. 
  248. */
  249. #define DMUS_E_NOTPCM                   MAKE_DMHRESULTERROR(0x012A)
  250. /* DMUS_E_BADWAVE
  251.  *
  252.  * Bad wave chunk in DLS collection
  253.  */
  254. #define DMUS_E_BADWAVE                  MAKE_DMHRESULTERROR(0x012B)
  255. /* DMUS_E_BADOFFSETTABLE
  256.  *
  257.  * Offset Table for download buffer has errors. 
  258.  */
  259. #define DMUS_E_BADOFFSETTABLE           MAKE_DMHRESULTERROR(0x012C)
  260. /* DMUS_E_UNKNOWNDOWNLOAD
  261.  *
  262.  * Attempted to download unknown data type.
  263.  */
  264. #define DMUS_E_UNKNOWNDOWNLOAD          MAKE_DMHRESULTERROR(0x012D)
  265. /* DMUS_E_NOSYNTHSINK
  266.  *
  267.  * The operation could not be completed because no sink was connected to
  268.  * the synthesizer.
  269.  */
  270. #define DMUS_E_NOSYNTHSINK              MAKE_DMHRESULTERROR(0x012E)
  271. /* DMUS_E_ALREADYOPEN
  272.  *
  273.  * An attempt was made to open the software synthesizer while it was already 
  274.  * open.
  275.  * ASSERT?
  276.  */
  277. #define DMUS_E_ALREADYOPEN              MAKE_DMHRESULTERROR(0x012F)
  278. /* DMUS_E_ALREADYCLOSE
  279.  *
  280.  * An attempt was made to close the software synthesizer while it was already 
  281.  * open.
  282.  * ASSERT?
  283.  */
  284. #define DMUS_E_ALREADYCLOSED            MAKE_DMHRESULTERROR(0x0130)
  285. /* DMUS_E_SYNTHNOTCONFIGURED
  286.  *
  287.  * The operation could not be completed because the software synth has not 
  288.  * yet been fully configured.
  289.  * ASSERT?
  290.  */
  291. #define DMUS_E_SYNTHNOTCONFIGURED       MAKE_DMHRESULTERROR(0x0131)
  292. /* DMUS_E_SYNTHACTIVE
  293.  *
  294.  * The operation cannot be carried out while the synthesizer is active.
  295.  */
  296. #define DMUS_E_SYNTHACTIVE              MAKE_DMHRESULTERROR(0x0132)
  297. /* DMUS_E_CANNOTREAD
  298.  *
  299.  * An error occurred while attempting to read from the IStream* object.
  300.  */
  301. #define DMUS_E_CANNOTREAD               MAKE_DMHRESULTERROR(0x0133)
  302. /* DMUS_E_DMUSIC_RELEASED
  303.  *
  304.  * The operation cannot be performed because the final instance of the
  305.  * DirectMusic object was released. Ports cannot be used after final 
  306.  * release of the DirectMusic object.
  307.  */
  308. #define DMUS_E_DMUSIC_RELEASED          MAKE_DMHRESULTERROR(0x0134)
  309. /* DMUS_E_BUFFER_EMPTY
  310.  *
  311.  * There was no data in the referenced buffer.
  312.  */
  313. #define DMUS_E_BUFFER_EMPTY             MAKE_DMHRESULTERROR(0x0135)
  314. /* DMUS_E_BUFFER_FULL
  315.  *
  316.  * There is insufficient space to insert the given event into the buffer.
  317.  */
  318. #define DMUS_E_BUFFER_FULL              MAKE_DMHRESULTERROR(0x0136)
  319. /* DMUS_E_PORT_NOT_CAPTURE
  320.  *
  321.  * The given operation could not be carried out because the port is a
  322.  * capture port.
  323.  */
  324. #define DMUS_E_PORT_NOT_CAPTURE         MAKE_DMHRESULTERROR(0x0137)
  325. /* DMUS_E_PORT_NOT_RENDER
  326.  *
  327.  * The given operation could not be carried out because the port is a
  328.  * render port.
  329.  */
  330. #define DMUS_E_PORT_NOT_RENDER          MAKE_DMHRESULTERROR(0x0138)
  331. /* DMUS_E_DSOUND_NOT_SET
  332.  *
  333.  * The port could not be created because no DirectSound has been specified.
  334.  * Specify a DirectSound interface via the IDirectMusic::SetDirectSound
  335.  * method; pass NULL to have DirectMusic manage usage of DirectSound.
  336.  */
  337. #define DMUS_E_DSOUND_NOT_SET           MAKE_DMHRESULTERROR(0x0139)
  338. /* DMUS_E_ALREADY_ACTIVATED
  339.  *
  340.  * The operation cannot be carried out while the port is active.
  341.  */
  342. #define DMUS_E_ALREADY_ACTIVATED        MAKE_DMHRESULTERROR(0x013A)
  343. /* DMUS_E_INVALIDBUFFER
  344.  *
  345.  * Invalid DirectSound buffer was handed to port. 
  346.  */
  347. #define DMUS_E_INVALIDBUFFER            MAKE_DMHRESULTERROR(0x013B)
  348. /* DMUS_E_WAVEFORMATNOTSUPPORTED
  349.  *
  350.  * Invalid buffer format was handed to the synth sink.
  351.  */
  352. #define DMUS_E_WAVEFORMATNOTSUPPORTED   MAKE_DMHRESULTERROR(0x013C)
  353. /* DMUS_E_SYNTHINACTIVE
  354.  *
  355.  * The operation cannot be carried out while the synthesizer is inactive.
  356.  */
  357. #define DMUS_E_SYNTHINACTIVE            MAKE_DMHRESULTERROR(0x013D)
  358. /* DMUS_E_DSOUND_ALREADY_SET
  359.  *
  360.  * IDirectMusic::SetDirectSound has already been called. It may not be
  361.  * changed while in use.
  362.  */
  363. #define DMUS_E_DSOUND_ALREADY_SET       MAKE_DMHRESULTERROR(0x013E)
  364. /* DMUS_E_INVALID_EVENT
  365.  *
  366.  * The given event is invalid (either it is not a valid MIDI message
  367.  * or it makes use of running status). The event cannot be packed
  368.  * into the buffer.
  369.  */
  370. #define DMUS_E_INVALID_EVENT            MAKE_DMHRESULTERROR(0x013F)
  371. /* DMUS_E_UNSUPPORTED_STREAM
  372.  *
  373.  * The IStream* object does not contain data supported by the loading object.
  374.  */
  375. #define DMUS_E_UNSUPPORTED_STREAM       MAKE_DMHRESULTERROR(0x0150)
  376. /* DMUS_E_ALREADY_INITED
  377.  *
  378.  * The object has already been initialized.
  379.  */
  380. #define DMUS_E_ALREADY_INITED           MAKE_DMHRESULTERROR(0x0151)
  381. /* DMUS_E_INVALID_BAND
  382.  *
  383.  * The file does not contain a valid band.
  384.  */
  385. #define DMUS_E_INVALID_BAND             MAKE_DMHRESULTERROR(0x0152)
  386. /* DMUS_E_TRACK_HDR_NOT_FIRST_CK
  387.  *
  388.  * The IStream* object's data does not have a track header as the first chunk,
  389.  * and therefore can not be read by the segment object.
  390.  */
  391. #define DMUS_E_TRACK_HDR_NOT_FIRST_CK   MAKE_DMHRESULTERROR(0x0155)
  392. /* DMUS_E_TOOL_HDR_NOT_FIRST_CK
  393.  *
  394.  * The IStream* object's data does not have a tool header as the first chunk,
  395.  * and therefore can not be read by the graph object.
  396.  */
  397. #define DMUS_E_TOOL_HDR_NOT_FIRST_CK    MAKE_DMHRESULTERROR(0x0156)
  398. /* DMUS_E_INVALID_TRACK_HDR
  399.  *
  400.  * The IStream* object's data contains an invalid track header (ckid is 0 and
  401.  * fccType is NULL,) and therefore can not be read by the segment object.
  402.  */
  403. #define DMUS_E_INVALID_TRACK_HDR        MAKE_DMHRESULTERROR(0x0157)
  404. /* DMUS_E_INVALID_TOOL_HDR
  405.  *
  406.  * The IStream* object's data contains an invalid tool header (ckid is 0 and
  407.  * fccType is NULL,) and therefore can not be read by the graph object.
  408.  */
  409. #define DMUS_E_INVALID_TOOL_HDR         MAKE_DMHRESULTERROR(0x0158)
  410. /* DMUS_E_ALL_TOOLS_FAILED
  411.  *
  412.  * The graph object was unable to load all tools from the IStream* object data.
  413.  * This may be due to errors in the stream, or the tools being incorrectly
  414.  * registered on the client.
  415.  */
  416. #define DMUS_E_ALL_TOOLS_FAILED         MAKE_DMHRESULTERROR(0x0159)
  417. /* DMUS_E_ALL_TRACKS_FAILED
  418.  *
  419.  * The segment object was unable to load all tracks from the IStream* object data.
  420.  * This may be due to errors in the stream, or the tracks being incorrectly
  421.  * registered on the client.
  422.  */
  423. #define DMUS_E_ALL_TRACKS_FAILED        MAKE_DMHRESULTERROR(0x0160)
  424. /* DMUS_E_NOT_FOUND
  425.  *
  426.  * The requested item was not contained by the object.
  427.  */
  428. #define DMUS_E_NOT_FOUND                MAKE_DMHRESULTERROR(0x0161)
  429. /* DMUS_E_NOT_INIT
  430.  *
  431.  * A required object is not initialized or failed to initialize.
  432.  */
  433. #define DMUS_E_NOT_INIT                 MAKE_DMHRESULTERROR(0x0162)
  434. /* DMUS_E_TYPE_DISABLED
  435.  *
  436.  * The requested parameter type is currently disabled. Parameter types may
  437.  * be enabled and disabled by certain calls to SetParam().
  438.  */
  439. #define DMUS_E_TYPE_DISABLED            MAKE_DMHRESULTERROR(0x0163)
  440. /* DMUS_E_TYPE_UNSUPPORTED
  441.  *
  442.  * The requested parameter type is not supported on the object.
  443.  */
  444. #define DMUS_E_TYPE_UNSUPPORTED         MAKE_DMHRESULTERROR(0x0164)
  445. /* DMUS_E_TIME_PAST
  446.  *
  447.  * The time is in the past, and the operation can not succeed.
  448.  */
  449. #define DMUS_E_TIME_PAST                MAKE_DMHRESULTERROR(0x0165)
  450. /* DMUS_E_TRACK_NOT_FOUND
  451.  *
  452.  * The requested track is not contained by the segment.
  453.  */
  454. #define DMUS_E_TRACK_NOT_FOUND MAKE_DMHRESULTERROR(0x0166)
  455. /* DMUS_E_TRACK_NO_CLOCKTIME_SUPPORT
  456.  *
  457.  * The track does not support clock time playback or getparam.
  458.  */
  459. #define DMUS_E_TRACK_NO_CLOCKTIME_SUPPORT   MAKE_DMHRESULTERROR(0x0167)
  460.  
  461. /* DMUS_E_NO_MASTER_CLOCK
  462.  *
  463.  * There is no master clock in the performance. Be sure to call
  464.  * IDirectMusicPerformance::Init().
  465.  */
  466. #define DMUS_E_NO_MASTER_CLOCK          MAKE_DMHRESULTERROR(0x0170)
  467. /* DMUS_E_LOADER_NOCLASSID
  468.  *
  469.  * The class id field is required and missing in the DMUS_OBJECTDESC.
  470.  */
  471. #define DMUS_E_LOADER_NOCLASSID         MAKE_DMHRESULTERROR(0x0180)
  472. /* DMUS_E_LOADER_BADPATH
  473.  *
  474.  * The requested file path is invalid.
  475.  */
  476. #define DMUS_E_LOADER_BADPATH           MAKE_DMHRESULTERROR(0x0181)
  477. /* DMUS_E_LOADER_FAILEDOPEN
  478.  *
  479.  * File open failed - either file doesn't exist or is locked.
  480.  */
  481. #define DMUS_E_LOADER_FAILEDOPEN        MAKE_DMHRESULTERROR(0x0182)
  482. /* DMUS_E_LOADER_FORMATNOTSUPPORTED
  483.  *
  484.  * Search data type is not supported.
  485.  */
  486. #define DMUS_E_LOADER_FORMATNOTSUPPORTED    MAKE_DMHRESULTERROR(0x0183)
  487. /* DMUS_E_LOADER_FAILEDCREATE
  488.  *
  489.  * Unable to find or create object.
  490.  */
  491. #define DMUS_E_LOADER_FAILEDCREATE      MAKE_DMHRESULTERROR(0x0184)
  492. /* DMUS_E_LOADER_OBJECTNOTFOUND
  493.  *
  494.  * Object was not found.
  495.  */
  496. #define DMUS_E_LOADER_OBJECTNOTFOUND    MAKE_DMHRESULTERROR(0x0185)
  497. /* DMUS_E_LOADER_NOFILENAME
  498.  *
  499.  * The file name is missing from the DMUS_OBJECTDESC.
  500.  */
  501. #define DMUS_E_LOADER_NOFILENAME     MAKE_DMHRESULTERROR(0x0186)
  502. /* DMUS_E_INVALIDFILE
  503.  *
  504.  * The file requested is not a valid file.
  505.  */
  506. #define DMUS_E_INVALIDFILE              MAKE_DMHRESULTERROR(0x0200)
  507. /* DMUS_E_ALREADY_EXISTS
  508.  *
  509.  * The tool is already contained in the graph. Create a new instance.
  510.  */
  511. #define DMUS_E_ALREADY_EXISTS           MAKE_DMHRESULTERROR(0x0201)
  512. /* DMUS_E_OUT_OF_RANGE
  513.  *
  514.  * Value is out of range, for instance the requested length is longer than
  515.  * the segment.
  516.  */
  517. #define DMUS_E_OUT_OF_RANGE             MAKE_DMHRESULTERROR(0x0202)
  518. /* DMUS_E_SEGMENT_INIT_FAILED
  519.  *
  520.  * Segment initialization failed, most likely due to a critical memory situation.
  521.  */
  522. #define DMUS_E_SEGMENT_INIT_FAILED      MAKE_DMHRESULTERROR(0x0203)
  523. /* DMUS_E_ALREADY_SENT
  524.  *
  525.  * The DMUS_PMSG has already been sent to the performance object via
  526.  * IDirectMusicPerformance::SendPMsg().
  527.  */
  528. #define DMUS_E_ALREADY_SENT             MAKE_DMHRESULTERROR(0x0204)
  529. /* DMUS_E_CANNOT_FREE
  530.  *
  531.  * The DMUS_PMSG was either not allocated by the performance via
  532.  * IDirectMusicPerformance::AllocPMsg(), or it was already freed via
  533.  * IDirectMusicPerformance::FreePMsg().
  534.  */
  535. #define DMUS_E_CANNOT_FREE              MAKE_DMHRESULTERROR(0x0205)
  536. /* DMUS_E_CANNOT_OPEN_PORT
  537.  *
  538.  * The default system port could not be opened.
  539.  */
  540. #define DMUS_E_CANNOT_OPEN_PORT         MAKE_DMHRESULTERROR(0x0206)
  541. /* DMUS_E_CANNOT_CONVERT
  542.  *
  543.  * A call to MIDIToMusic() or MusicToMIDI() resulted in an error because
  544.  * the requested conversion could not happen. This usually occurs when the
  545.  * provided DMUS_CHORD_KEY structure has an invalid chord or scale pattern.
  546.  */
  547. #define DMUS_E_CANNOT_CONVERT           MAKE_DMHRESULTERROR(0x0207)
  548. /* misspelling in previous versions of DirectX preserved for backward compatibility */
  549. #define DMUS_E_CONNOT_CONVERT           DMUS_E_CANNOT_CONVERT
  550. /* DMUS_E_DESCEND_CHUNK_FAIL
  551.  * 
  552.  * DMUS_E_DESCEND_CHUNK_FAIL is returned when the end of the file 
  553.  * was reached before the desired chunk was found.
  554.  */
  555. #define DMUS_E_DESCEND_CHUNK_FAIL       MAKE_DMHRESULTERROR(0x0210)
  556. /* DMUS_E_NOT_LOADED
  557.  *
  558.  * An attempt to use this object failed because it first needs to
  559.  * be loaded.
  560.  */
  561. #define DMUS_E_NOT_LOADED               MAKE_DMHRESULTERROR(0x0211)
  562. /* DMUS_E_SCRIPT_LANGUAGE_INCOMPATIBLE
  563.  *
  564.  * The activeX scripting engine for the script's language is not compatible with
  565.  * DirectMusic.
  566.  *
  567.  */
  568. #define DMUS_E_SCRIPT_LANGUAGE_INCOMPATIBLE  MAKE_DMHRESULTERROR(0x0213)
  569. /* DMUS_E_SCRIPT_UNSUPPORTED_VARTYPE
  570.  *
  571.  * A varient was used that had a type that is not supported by DirectMusic.
  572.  *
  573.  */
  574. #define DMUS_E_SCRIPT_UNSUPPORTED_VARTYPE    MAKE_DMHRESULTERROR(0x0214)
  575. /* DMUS_E_SCRIPT_ERROR_IN_SCRIPT
  576.  *
  577.  * An error was encountered while parsing or executing the script.
  578.  * The pErrorInfo parameter (if supplied) was filled with information about the error.
  579.  */
  580. #define DMUS_E_SCRIPT_ERROR_IN_SCRIPT        MAKE_DMHRESULTERROR(0x0215)
  581. /* DMUS_E_SCRIPT_CANTLOAD_OLEAUT32
  582.  *
  583.  * Loading of oleaut32.dll failed.  VBScript and other activeX scripting languages
  584.  * require use of oleaut32.dll.  On platforms where oleaut32.dll is not present, only
  585.  * the DirectMusicScript language, which doesn't require oleaut32.dll can be used.
  586.  */
  587. #define DMUS_E_SCRIPT_CANTLOAD_OLEAUT32      MAKE_DMHRESULTERROR(0x0216)
  588. /* DMUS_E_SCRIPT_LOADSCRIPT_ERROR
  589.  *
  590.  * An error occured while parsing a script loaded using LoadScript.  The script that
  591.  * was loaded contains an error.
  592.  */
  593. #define DMUS_E_SCRIPT_LOADSCRIPT_ERROR       MAKE_DMHRESULTERROR(0x0217)
  594. /* DMUS_E_SCRIPT_INVALID_FILE
  595.  *
  596.  * The script file is invalid.
  597.  */
  598. #define DMUS_E_SCRIPT_INVALID_FILE           MAKE_DMHRESULTERROR(0x0218)
  599. /* DMUS_E_INVALID_SCRIPTTRACK
  600.  *
  601.  * The file contains an invalid script track.
  602.  */
  603. #define DMUS_E_INVALID_SCRIPTTRACK           MAKE_DMHRESULTERROR(0x0219)
  604. /* DMUS_E_SCRIPT_VARIABLE_NOT_FOUND
  605.  *
  606.  * The script does not contain a variable with the specified name.
  607.  */
  608. #define DMUS_E_SCRIPT_VARIABLE_NOT_FOUND     MAKE_DMHRESULTERROR(0x021A)
  609. /* DMUS_E_SCRIPT_ROUTINE_NOT_FOUND
  610.  *
  611.  * The script does not contain a routine with the specified name.
  612.  */
  613. #define DMUS_E_SCRIPT_ROUTINE_NOT_FOUND      MAKE_DMHRESULTERROR(0x021B)
  614. /* DMUS_E_SCRIPT_CONTENT_READONLY
  615.  *
  616.  * Scripts variables for content referenced or embedded in a script cannot be set.
  617.  */
  618. #define DMUS_E_SCRIPT_CONTENT_READONLY       MAKE_DMHRESULTERROR(0x021C)
  619. /* DMUS_E_SCRIPT_NOT_A_REFERENCE
  620.  *
  621.  * Attempt was made to set a script's variable by reference to a value that was
  622.  * not an object type.
  623.  */
  624. #define DMUS_E_SCRIPT_NOT_A_REFERENCE        MAKE_DMHRESULTERROR(0x021D)
  625. /* DMUS_E_SCRIPT_VALUE_NOT_SUPPORTED
  626.  *
  627.  * Attempt was made to set a script's variable by value to an object that does
  628.  * not support a default value property.
  629.  */
  630. #define DMUS_E_SCRIPT_VALUE_NOT_SUPPORTED    MAKE_DMHRESULTERROR(0x021E)
  631. /* DMUS_E_INVALID_SEGMENTTRIGGERTRACK
  632.  *
  633.  * The file contains an invalid segment trigger track.
  634.  */
  635. #define DMUS_E_INVALID_SEGMENTTRIGGERTRACK   MAKE_DMHRESULTERROR(0x0220)
  636. /* DMUS_E_INVALID_LYRICSTRACK
  637.  *
  638.  * The file contains an invalid lyrics track.
  639.  */
  640. #define DMUS_E_INVALID_LYRICSTRACK           MAKE_DMHRESULTERROR(0x0221)
  641. /* DMUS_E_INVALID_PARAMCONTROLTRACK
  642.  *
  643.  * The file contains an invalid parameter control track.
  644.  */
  645. #define DMUS_E_INVALID_PARAMCONTROLTRACK     MAKE_DMHRESULTERROR(0x0222)
  646. /* DMUS_E_AUDIOVBSCRIPT_SYNTAXERROR
  647.  *
  648.  * A script written in AudioVBScript could not be read because it contained a statement that
  649.  * is not allowed by the AudioVBScript language.
  650.  */
  651. #define DMUS_E_AUDIOVBSCRIPT_SYNTAXERROR     MAKE_DMHRESULTERROR(0x0223)
  652. /* DMUS_E_AUDIOVBSCRIPT_RUNTIMEERROR
  653.  *
  654.  * A script routine written in AudioVBScript failed because an invalid operation occurred.  For example,
  655.  * adding the number 3 to a segment object would produce this error.  So would attempting to call a routine
  656.  * that doesn't exist.
  657.  */
  658. #define DMUS_E_AUDIOVBSCRIPT_RUNTIMEERROR     MAKE_DMHRESULTERROR(0x0224)
  659. /* DMUS_E_AUDIOVBSCRIPT_OPERATIONFAILURE
  660.  *
  661.  * A script routine written in AudioVBScript failed because a function outside of a script failed to complete.
  662.  * For example, a call to PlaySegment that fails to play because of low memory would return this error.
  663.  */
  664. #define DMUS_E_AUDIOVBSCRIPT_OPERATIONFAILURE     MAKE_DMHRESULTERROR(0x0225)
  665. /* DMUS_E_AUDIOPATHS_NOT_VALID
  666.  *
  667.  * The Performance has set up some PChannels using the AssignPChannel command, which 
  668.  * makes it not capable of supporting audio paths.
  669.  */
  670. #define DMUS_E_AUDIOPATHS_NOT_VALID     MAKE_DMHRESULTERROR(0x0226)
  671. /* DMUS_E_AUDIOPATHS_IN_USE
  672.  *
  673.  * This is the inverse of the previous error. 
  674.  * The Performance has set up some audio paths, which makes is incompatible
  675.  * with the calls to allocate pchannels, etc. 
  676.  */
  677. #define DMUS_E_AUDIOPATHS_IN_USE     MAKE_DMHRESULTERROR(0x0227)
  678. /* DMUS_E_NO_AUDIOPATH_CONFIG
  679.  *
  680.  * A segment or song was asked for its embedded audio path configuration,
  681.  * but there isn't any. 
  682.  */
  683. #define DMUS_E_NO_AUDIOPATH_CONFIG     MAKE_DMHRESULTERROR(0x0228)
  684. /* DMUS_E_AUDIOPATH_INACTIVE
  685.  *
  686.  * An audiopath is inactive, perhaps because closedown was called.
  687.  */
  688. #define DMUS_E_AUDIOPATH_INACTIVE     MAKE_DMHRESULTERROR(0x0229)
  689. /* DMUS_E_AUDIOPATH_NOBUFFER
  690.  *
  691.  * An audiopath failed to create because a requested buffer could not be created.
  692.  */
  693. #define DMUS_E_AUDIOPATH_NOBUFFER     MAKE_DMHRESULTERROR(0x022A)
  694. /* DMUS_E_AUDIOPATH_NOPORT
  695.  *
  696.  * An audiopath could not be used for playback because it lacked port assignments.
  697.  */
  698. #define DMUS_E_AUDIOPATH_NOPORT     MAKE_DMHRESULTERROR(0x022B)
  699. /* DMUS_E_NO_AUDIOPATH
  700.  *
  701.  * Attempt was made to play segment in audiopath mode and there was no audiopath.
  702.  */
  703. #define DMUS_E_NO_AUDIOPATH     MAKE_DMHRESULTERROR(0x022C)
  704. /* DMUS_E_INVALIDCHUNK
  705.  *
  706.  * Invalid data was found in a RIFF file chunk.
  707.  */
  708. #define DMUS_E_INVALIDCHUNK     MAKE_DMHRESULTERROR(0x022D)
  709. /* DMUS_E_AUDIOPATH_NOGLOBALFXBUFFER
  710.  *
  711.  * Attempt was made to create an audiopath that sends to a global effects buffer which did not exist.
  712.  */
  713. #define DMUS_E_AUDIOPATH_NOGLOBALFXBUFFER     MAKE_DMHRESULTERROR(0x022E)
  714. /* DMUS_E_INVALID_CONTAINER_OBJECT
  715.  *
  716.  * The file does not contain a valid container object.
  717.  */
  718. #define DMUS_E_INVALID_CONTAINER_OBJECT    MAKE_DMHRESULTERROR(0x022F)
  719. #endif